J_3RFBS5_FORMS 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 J_3RFBS5_FORMS 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: Include J_3RFBS5_FORMS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GLO_FAA_TD_READ_MULTIPLE call function 'GLO_FAA_TD_READ_MULTIPLE' exporting ID_ORGUNIT = ANLAV-BUKRS ID_ASSET = ANLAV-ANLN1 ID_SUBNUMBER = ANLAV-ANLN2 ID_FROM_DATE = FIRST_DAY_IN_YEAR ID_TO_DATE = FIRST_DAY_IN_YEAR * IB_SORT_DESCENDING = ' ' * IB_BYPASSING_MEMORY = ' ' * IB_RESET_BUFFER = ' ' tables ET_GLOFAATMDPNDNT = IT_GLOTMD exceptions NOT_FOUND = 1 NOT_ACTIVATED = 2 others = 3 .
FP_JOB_OPEN CALL FUNCTION 'FP_JOB_OPEN' CHANGING ie_outputparams = fp_outputparams EXCEPTIONS cancel = 1 usage_error = 2 system_error = 3 internal_error = 4 OTHERS = 5.
FP_JOB_CLOSE CALL FUNCTION 'FP_JOB_CLOSE' * IMPORTING * E_RESULT = EXCEPTIONS usage_error = 1 system_error = 2 internal_error = 3 OTHERS = 4.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING OBJECT = text-001.
MESSAGES_INITIALIZE call function 'MESSAGES_INITIALIZE' * EXPORTING * COLLECT_AND_SEND = ' ' * RESET = 'X' * LINE_FROM = ' ' * LINE_TO = ' ' * I_STORE_DUPLICATES = 'X' * I_NO_DUPLICATE_COUNT = 500 * I_IDENTIFICATION = * CHECK_ON_COMMIT = 'X' * I_ALLOW_FOREIGN_RESET = 'X' * I_RESET_LINE = 'X' * IMPORTING * E_IDENTIFICATION = EXCEPTIONS LOG_NOT_ACTIVE = 1 WRONG_IDENTIFICATION = 2 OTHERS = 3 .
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = 'J3RBS5_MESS' msgty = msgty msgv1 = msgv1 msgv2 = msgv2 msgv3 = msgv3 msgv4 = msgv4 txtnr = msgno zeile = error_count EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING arbgb = arbgb msgty = msgty msgv1 = msgv1 msgv2 = msgv2 msgv3 = msgv3 msgv4 = msgv4 txtnr = msgno zeile = error_count EXCEPTIONS OTHERS = 1.
FP_FUNCTION_MODULE_NAME CALL FUNCTION 'FP_FUNCTION_MODULE_NAME' EXPORTING i_name = pa_adobe IMPORTING e_funcname = func_module_name.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.