SAP ISH_CHECK_NUMBER_RANGE Function Module for









ISH_CHECK_NUMBER_RANGE is a standard ish check number range 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 FM, simply by entering the name ISH_CHECK_NUMBER_RANGE 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 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'"
EXPORTING
* EINRI = ' ' "Institution
* MODUS = 'N' "Mode
NUMBER = "Number, if assigned externally
OBJECT = "Number range object
SUBOBJECT = "Number range sub-object

IMPORTING
FROM_NUMBER = "
NR_RANGE_NR = "Number range for internal number assignment
NR_RANGE_TYPE = "Number range type
TO_NUMBER = "

EXCEPTIONS
INTERVAL_NOT_FOUND = 1 INVALID_OBJECT = 2 NO_ALPHA = 3 NO_EXTERNAL = 4 NO_INTERNAL = 5 NUMBER_RANGE_NOT_EXTERN = 6 NUMBER_RANGE_NOT_INTERN = 7 RANGE_ERROR_EXTERN = 8 RANGE_ERROR_ALPHA = 9
.



IMPORTING Parameters details for ISH_CHECK_NUMBER_RANGE

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)

EXPORTING Parameters details for ISH_CHECK_NUMBER_RANGE

FROM_NUMBER -

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

NR_RANGE_NR - Number range for internal number assignment

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

NR_RANGE_TYPE - Number range type

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

TO_NUMBER -

Data type: NRIV-TONUMBER
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_OBJECT - Object name does not exist

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

NO_ALPHA - Alphanumeric number assignment not supported

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_INTERNAL - Internal number assignment not supported

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)

NUMBER_RANGE_NOT_INTERN - Number range interval is not internal

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

RANGE_ERROR_EXTERN - External number not in number range interval

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

RANGE_ERROR_ALPHA - Collision with internal number range, if alpha

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 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_from_number  TYPE NRIV-FROMNUMBER, "   
lv_interval_not_found  TYPE NRIV, "   
lv_modus  TYPE TNKRS-MODUS, "   'N'
lv_nr_range_nr  TYPE NRIV-NRRANGENR, "   
lv_invalid_object  TYPE NRIV, "   
lv_number  TYPE NRIV, "   
lv_no_alpha  TYPE NRIV, "   
lv_nr_range_type  TYPE NRIV, "   
lv_object  TYPE TNKRS-NKOBJ, "   
lv_to_number  TYPE NRIV-TONUMBER, "   
lv_no_external  TYPE NRIV, "   
lv_subobject  TYPE TNKRS-OBKEY, "   
lv_no_internal  TYPE TNKRS, "   
lv_number_range_not_extern  TYPE TNKRS, "   
lv_number_range_not_intern  TYPE TNKRS, "   
lv_range_error_extern  TYPE TNKRS, "   
lv_range_error_alpha  TYPE TNKRS. "   

  CALL FUNCTION 'ISH_CHECK_NUMBER_RANGE'  "
    EXPORTING
         EINRI = lv_einri
         MODUS = lv_modus
         NUMBER = lv_number
         OBJECT = lv_object
         SUBOBJECT = lv_subobject
    IMPORTING
         FROM_NUMBER = lv_from_number
         NR_RANGE_NR = lv_nr_range_nr
         NR_RANGE_TYPE = lv_nr_range_type
         TO_NUMBER = lv_to_number
    EXCEPTIONS
        INTERVAL_NOT_FOUND = 1
        INVALID_OBJECT = 2
        NO_ALPHA = 3
        NO_EXTERNAL = 4
        NO_INTERNAL = 5
        NUMBER_RANGE_NOT_EXTERN = 6
        NUMBER_RANGE_NOT_INTERN = 7
        RANGE_ERROR_EXTERN = 8
        RANGE_ERROR_ALPHA = 9
. " ISH_CHECK_NUMBER_RANGE




ABAP code using 7.40 inline data declarations to call FM ISH_CHECK_NUMBER_RANGE

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 FROMNUMBER FROM NRIV INTO @DATA(ld_from_number).
 
 
"SELECT single MODUS FROM TNKRS INTO @DATA(ld_modus).
DATA(ld_modus) = 'N'.
 
"SELECT single NRRANGENR FROM NRIV INTO @DATA(ld_nr_range_nr).
 
 
 
 
 
"SELECT single NKOBJ FROM TNKRS INTO @DATA(ld_object).
 
"SELECT single TONUMBER FROM NRIV INTO @DATA(ld_to_number).
 
 
"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!