SAP FAGL_RW_NRRANGE_CREATE Function Module for
FAGL_RW_NRRANGE_CREATE is a standard fagl rw nrrange create 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 fagl rw nrrange create FM, simply by entering the name FAGL_RW_NRRANGE_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: FAGL_ALLOCATION
Program Name: SAPLFAGL_ALLOCATION
Main Program: SAPLFAGL_ALLOCATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FAGL_RW_NRRANGE_CREATE 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 'FAGL_RW_NRRANGE_CREATE'".
EXPORTING
I_NR_RANGE_NR = "Number Range Number
I_OBJECT = "Name of Number Range Object
* I_QUANTITY = '1' "Number of numbers to be assigned
* I_SUBOBJECT = ' ' "Value of sub-object
* I_TOYEAR = '0000' "'To' Fiscal Year
* I_WITH_GET = ' ' "
IMPORTING
E_NUMBER = "free number
E_QUANTITY = "Number of numbers to be assigned
E_RETURNCODE = "Return Code
EXCEPTIONS
INTERVAL_EXISTS = 1 ERROR_OCCURRED = 2
IMPORTING Parameters details for FAGL_RW_NRRANGE_CREATE
I_NR_RANGE_NR - Number Range Number
Data type: INRI-NRRANGENROptional: No
Call by Reference: No ( called with pass by value option)
I_OBJECT - Name of Number Range Object
Data type: INRI-OBJECTOptional: No
Call by Reference: No ( called with pass by value option)
I_QUANTITY - Number of numbers to be assigned
Data type: INRI-QUANTITYDefault: '1'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SUBOBJECT - Value of sub-object
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_TOYEAR - 'To' Fiscal Year
Data type: INRI-TOYEARDefault: '0000'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_WITH_GET -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FAGL_RW_NRRANGE_CREATE
E_NUMBER - free number
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_QUANTITY - Number of numbers to be assigned
Data type: INRI-QUANTITYOptional: No
Call by Reference: No ( called with pass by value option)
E_RETURNCODE - Return Code
Data type: INRI-RETURNCODEOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INTERVAL_EXISTS -
Data type:Optional: No
Call by Reference: Yes
ERROR_OCCURRED - Errors have occurred
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FAGL_RW_NRRANGE_CREATE 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_e_number | TYPE STRING, " | |||
| lv_i_nr_range_nr | TYPE INRI-NRRANGENR, " | |||
| lv_interval_exists | TYPE INRI, " | |||
| lv_i_object | TYPE INRI-OBJECT, " | |||
| lv_e_quantity | TYPE INRI-QUANTITY, " | |||
| lv_error_occurred | TYPE INRI, " | |||
| lv_i_quantity | TYPE INRI-QUANTITY, " '1' | |||
| lv_e_returncode | TYPE INRI-RETURNCODE, " | |||
| lv_i_subobject | TYPE INRI, " SPACE | |||
| lv_i_toyear | TYPE INRI-TOYEAR, " '0000' | |||
| lv_i_with_get | TYPE INRI. " SPACE |
|   CALL FUNCTION 'FAGL_RW_NRRANGE_CREATE' " |
| EXPORTING | ||
| I_NR_RANGE_NR | = lv_i_nr_range_nr | |
| I_OBJECT | = lv_i_object | |
| I_QUANTITY | = lv_i_quantity | |
| I_SUBOBJECT | = lv_i_subobject | |
| I_TOYEAR | = lv_i_toyear | |
| I_WITH_GET | = lv_i_with_get | |
| IMPORTING | ||
| E_NUMBER | = lv_e_number | |
| E_QUANTITY | = lv_e_quantity | |
| E_RETURNCODE | = lv_e_returncode | |
| EXCEPTIONS | ||
| INTERVAL_EXISTS = 1 | ||
| ERROR_OCCURRED = 2 | ||
| . " FAGL_RW_NRRANGE_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM FAGL_RW_NRRANGE_CREATE
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 NRRANGENR FROM INRI INTO @DATA(ld_i_nr_range_nr). | ||||
| "SELECT single OBJECT FROM INRI INTO @DATA(ld_i_object). | ||||
| "SELECT single QUANTITY FROM INRI INTO @DATA(ld_e_quantity). | ||||
| "SELECT single QUANTITY FROM INRI INTO @DATA(ld_i_quantity). | ||||
| DATA(ld_i_quantity) | = '1'. | |||
| "SELECT single RETURNCODE FROM INRI INTO @DATA(ld_e_returncode). | ||||
| DATA(ld_i_subobject) | = ' '. | |||
| "SELECT single TOYEAR FROM INRI INTO @DATA(ld_i_toyear). | ||||
| DATA(ld_i_toyear) | = '0000'. | |||
| DATA(ld_i_with_get) | = ' '. | |||
Search for further information about these or an SAP related objects