RNLLST00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program enables you to create a list of services...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RNLLST00 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
NT07 - IS-H: Display Service Catalog
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.
Selection Text: ZUO_LIST = Display Assignments?
Selection Text: ZOTYP = If Yes: Asgmt Type only
Selection Text: TGRKZ = Service Group
Selection Text: TASPA = If Yes: Column only
Selection Text: TARIF = Service Catalog
Selection Text: TAGRU = Service Category
Selection Text: SP_LIST = Display Column Values?
Selection Text: SPRAS = Language
Selection Text: SE_EINRI = Institution
Selection Text: NO_SPZUO = w/o Columns/Assignments
Selection Text: LEIST = Service
Selection Text: KTXT1 = Service Short Text
Selection Text: ENTGA = Charge Type
Selection Text: ENDDT = Valid To
Selection Text: BEGDT = Valid From
Title: IS-H: Service List
Text Symbol: S11 = Do Not Display
Text Symbol: S05 = To
Text Symbol: S04 = Service Validity Period
Text Symbol: S03 = Assignments
Text Symbol: S02 = Column Values
Text Symbol: S01 = Institution
Text Symbol: 021 = Columns/Assignments
Text Symbol: 020 = Further Restrictions (Optional)
Text Symbol: 016 = Service List
Text Symbol: 003 = With Assignments
Text Symbol: 002 = With Column Values
INCLUDE RNSSEINR.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_CHARGE_MASTER_DISPLAY CALL FUNCTION 'ISH_CHARGE_MASTER_DISPLAY' EXPORTING EINRI = SE_EINRI NO_SPZUO = NO_SPZUO SP_LIST = SP_LIST ZUO_LIST = ZUO_LIST SPRAS = SPRAS BEGDT = BEGDT ENDDT = ENDDT CALLBACK_PROGRAM = G_REPID TABLES SS_NTPK = INTPK RANGES_KTXT1 = KTXT1 RANGES_TASPA = TASPA RANGES_ZUOTYP = ZOTYP EXCEPTIONS OTHERS = 1.
ISH_CALL_LIST_HEAD CALL FUNCTION 'ISH_CALL_LIST_HEAD' EXPORTING EINRI = SE_EINRI LINE_SIZE = LSIZE REPID = 'RNLLST00' TITLE_LIN1 = TITLE1 TITLE_LIN2 = TITLE2 ULINE = OFF EXCEPTIONS INVALID_EINRI = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.