GENARF05 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 GENARF05 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: Forms Log
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' EXCEPTIONS OTHERS = 1.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = IM_MSG_TBL-ARBGB MSGTY = IM_MSG_TBL-MSGTY MSGV1 = IM_MSG_TBL-MSGV1 MSGV2 = IM_MSG_TBL-MSGV2 MSGV3 = IM_MSG_TBL-MSGV3 MSGV4 = IM_MSG_TBL-MSGV4 TXTNR = IM_MSG_TBL-TXTNR ZEILE = IM_MSG_TBL-ZEILE EXCEPTIONS message_type_not_valid = 01 not_active = 02.
MESSAGES_STOP CALL FUNCTION 'MESSAGES_STOP' EXCEPTIONS a_message = 01 e_message = 02 i_message = 03 w_message = 04.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING corrections_option = ' ' line_from = space line_to = space OBJECT = LC_PROT_HEADER send_if_one = ' ' show_linno = space * IMPORTING * CORRECTIONS_WANTED = EXCEPTIONS inconsistent_range = 01 no_messages = 02.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE' EXCEPTIONS OTHERS = 1.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING LANGUAGE = SY-LANGU MESSAGE_ID = MSG_TBL-ARBGB MESSAGE_NUMBER = H_MSG_NUMBER MESSAGE_VAR1 = MSG_TBL-MSGV1 MESSAGE_VAR2 = MSG_TBL-MSGV2 MESSAGE_VAR3 = MSG_TBL-MSGV3 MESSAGE_VAR4 = MSG_TBL-MSGV4 IMPORTING MESSAGE_TEXT = SY-LISEL * TABLES * LONGTEXT = EXCEPTIONS MESSAGE_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.