SAP ISH_CHECK_NUMBER_RANGE_EXTERN Function Module for









ISH_CHECK_NUMBER_RANGE_EXTERN is a standard ish check number range extern SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for ish check number range extern FM, simply by entering the name ISH_CHECK_NUMBER_RANGE_EXTERN into the relevant SAP transaction such as SE37 or SE38.

Function Group: NNUM
Program Name: SAPLNNUM
Main Program: SAPLNNUM
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISH_CHECK_NUMBER_RANGE_EXTERN pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'ISH_CHECK_NUMBER_RANGE_EXTERN'"
EXPORTING
* EINRI = ' ' "Institution
* MODUS = 'N' "Mode
NUMBER = "Number, if assigned externally
OBJECT = "Number range object
SUBOBJECT = "Number range sub-object

EXCEPTIONS
INTERVAL_NOT_FOUND = 1 INVALID_OBJEKT = 2 NO_EXTERNAL = 3 NO_NUMBER = 4 NUMBER_RANGE_NOT_EXTERN = 5 RANGE_ERROR_EXTERN = 6
.



IMPORTING Parameters details for ISH_CHECK_NUMBER_RANGE_EXTERN

EINRI - Institution

Data type: TNKRS-EINRI
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

MODUS - Mode

Data type: TNKRS-MODUS
Default: 'N'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NUMBER - Number, if assigned externally

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

OBJECT - Number range object

Data type: TNKRS-NKOBJ
Optional: No
Call by Reference: No ( called with pass by value option)

SUBOBJECT - Number range sub-object

Data type: TNKRS-OBKEY
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

INTERVAL_NOT_FOUND - Number range interval not found

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

INVALID_OBJEKT - Object name does not exist

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_EXTERNAL - External number asgmt not supported

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_NUMBER - No number transferred

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NUMBER_RANGE_NOT_EXTERN - Number range interval is not external

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

RANGE_ERROR_EXTERN - External number within number range interval

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISH_CHECK_NUMBER_RANGE_EXTERN Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_einri  TYPE TNKRS-EINRI, "   SPACE
lv_interval_not_found  TYPE TNKRS, "   
lv_modus  TYPE TNKRS-MODUS, "   'N'
lv_invalid_objekt  TYPE TNKRS, "   
lv_number  TYPE TNKRS, "   
lv_no_external  TYPE TNKRS, "   
lv_object  TYPE TNKRS-NKOBJ, "   
lv_no_number  TYPE TNKRS, "   
lv_subobject  TYPE TNKRS-OBKEY, "   
lv_number_range_not_extern  TYPE TNKRS, "   
lv_range_error_extern  TYPE TNKRS. "   

  CALL FUNCTION 'ISH_CHECK_NUMBER_RANGE_EXTERN'  "
    EXPORTING
         EINRI = lv_einri
         MODUS = lv_modus
         NUMBER = lv_number
         OBJECT = lv_object
         SUBOBJECT = lv_subobject
    EXCEPTIONS
        INTERVAL_NOT_FOUND = 1
        INVALID_OBJEKT = 2
        NO_EXTERNAL = 3
        NO_NUMBER = 4
        NUMBER_RANGE_NOT_EXTERN = 5
        RANGE_ERROR_EXTERN = 6
. " ISH_CHECK_NUMBER_RANGE_EXTERN




ABAP code using 7.40 inline data declarations to call FM ISH_CHECK_NUMBER_RANGE_EXTERN

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

"SELECT single EINRI FROM TNKRS INTO @DATA(ld_einri).
DATA(ld_einri) = ' '.
 
 
"SELECT single MODUS FROM TNKRS INTO @DATA(ld_modus).
DATA(ld_modus) = 'N'.
 
 
 
 
"SELECT single NKOBJ FROM TNKRS INTO @DATA(ld_object).
 
 
"SELECT single OBKEY FROM TNKRS INTO @DATA(ld_subobject).
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!