FIBL_RPCODE_LIST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for List of repetitive codes This program generates a list of
If you would like to execute this report or see the full code listing simply enter FIBL_RPCODE_LIST 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.
Selection Text: P_VARI = D Layout
Selection Text: S_BUKRS = D Company Code
Selection Text: S_HBKID = D House Bank
Selection Text: S_RPCODE = D Repetitive code (recurr.pmnts)
Title: List of Repetitive Codes
Text Symbol: 001 = Selections
Text Symbol: 002 = Output Control
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING I_SAVE = 'A' CHANGING CS_VARIANT = GX_VARIANT EXCEPTIONS NOT_FOUND = 4.
REUSE_ALV_VARIANT_F4 CALL FUNCTION 'REUSE_ALV_VARIANT_F4' EXPORTING IS_VARIANT = G_VARIANT I_SAVE = 'A' IMPORTING E_EXIT = G_EXIT ES_VARIANT = GX_VARIANT EXCEPTIONS NOT_FOUND = 2.
REUSE_ALV_VARIANT_EXISTENCE CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE' EXPORTING I_SAVE = 'A' CHANGING CS_VARIANT = GX_VARIANT.
FIBL_RPCODE_ALV_LIST CALL FUNCTION 'FIBL_RPCODE_ALV_LIST' EXPORTING IS_VARIANT = G_VARIANT TABLES IT_R_BUKRS_SEL = S_bukrs IT_R_HBKID_SEL = S_hbkid IT_R_RPCODE_SEL = S_rpcode EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.