RNSELRF1 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RNSELRF1 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: IS-H: Determine Internal Number for Collective Invoice
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
NUMBER_GET_NEXT CALL FUNCTION 'NUMBER_GET_NEXT' EXPORTING NR_RANGE_NR = INTNK OBJECT = $OBJECT IMPORTING NUMBER = NXT_NO RETURNCODE = IRC EXCEPTIONS INTERVAL_NOT_FOUND = 1 NUMBER_RANGE_NOT_INTERN = 2 OBJECT_NOT_FOUND = 3 QUANTITY_IS_0 = 4 QUANTITY_IS_NOT_1 = 5 INTERVAL_OVERFLOW = 6 BUFFER_OVERFLOW = 7 OTHERS = 8.
ISH_CHECK_NUMBER_RANGE CALL FUNCTION 'ISH_CHECK_NUMBER_RANGE' EXPORTING NUMBER = ' ' OBJECT = $OBJ SUBOBJECT = '*' IMPORTING NR_RANGE_NR = NRKRS 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_ALPHA = 8 RANGE_ERROR_EXTERN = 9 OTHERS = 10.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.