GENARF01 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 GENARF01 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 Checks Sel. Screen
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
WR20_CHECK_CLASSTYPE CALL FUNCTION 'WR20_CHECK_CLASSTYPE' EXPORTING I_BGAPP = APPLICATION I_CLASS = P_FILKL I_POPUP = LC_POPUP I_VONDT = SY-DATUM I_BISDT = SY-DATUM TABLES O_KLAH = HT_KLAH EXCEPTIONS INVALID_PARAMETERS = 1 NO_ENTRIES_FOUND = 2 ONE_ENTRY_FOUND = 3 MORE_ENTRIES_FOUND = 4 USER_ABBORT = 5 INVALID_PERIOD = 6 OTHERS = 7.
CLCA_PROCESS_CLASSTYPE CALL FUNCTION 'CLCA_PROCESS_CLASSTYPE' EXPORTING CLASSTYPE = T622-AKLAR IMPORTING TYPETEXT = H_AKLAT EXCEPTIONS NOT_FOUND = 01 NO_AUTH_KLART = 02.
PERIOD_AND_DATE_CONVERT_OUTPUT * CALL FUNCTION 'PERIOD_AND_DATE_CONVERT_OUTPUT' * EXPORTING * INTERNAL_DATE = SY-DATUM * INTERNAL_PERIOD = TPRG-PRGRS "internal format * LANGUAGE = SY-LANGU ** i_periv = ** I_WERKS = ** I_MRPPP = * IMPORTING * EXTERNAL_DATE = PER_LOW.
PERIOD_AND_DATE_CONVERT_INPUT CALL FUNCTION 'PERIOD_AND_DATE_CONVERT_INPUT' EXPORTING DIALOG_DATE_IS_IN_THE_PAST = ' ' EXTERNAL_DATE = h_ext_date EXTERNAL_PERIOD = TPRG-PRGBZ * INTERNAL_PERIOD = ' ' * I_PERIV = * I_WERKS = * I_MRPPP = IMPORTING INTERNAL_DATE = h_date * INTERNAL_PERIOD = EXCEPTIONS DATE_INVALID = 1 NO_DATA = 2 PERIOD_INVALID = 3 OTHERS = 4.
PERIOD_AND_DATE_CONVERT_OUTPUT CALL FUNCTION 'PERIOD_AND_DATE_CONVERT_OUTPUT' EXPORTING INTERNAL_DATE = h_date INTERNAL_PERIOD = TPRG-PRGRS "internal format LANGUAGE = SY-LANGU * i_periv = * I_WERKS = * I_MRPPP = IMPORTING EXTERNAL_DATE = h_ext_date * external_period = * EXTERNAL_PRINTTEXT = exceptions date_invalid = 1 periode_invalid = 2 others = 3.
PERIOD_AND_DATE_CONVERT_OUTPUT CALL FUNCTION 'PERIOD_AND_DATE_CONVERT_OUTPUT' EXPORTING INTERNAL_DATE = h_date INTERNAL_PERIOD = TPRG-PRGRS "internal format LANGUAGE = SY-LANGU * i_periv = * I_WERKS = * I_MRPPP = IMPORTING EXTERNAL_DATE = PER_LOW * external_period = * EXTERNAL_PRINTTEXT = EXCEPTIONS date_invalid = 1 periode_invalid = 2 others = 3.
PERIOD_AND_DATE_CONVERT_INPUT CALL FUNCTION 'PERIOD_AND_DATE_CONVERT_INPUT' EXPORTING DIALOG_DATE_IS_IN_THE_PAST = ' ' EXTERNAL_DATE = H_DATE EXTERNAL_PERIOD = G_PER_TYPE_EXT * I_PERIV = IMPORTING INTERNAL_DATE = H_COMP_DATE INTERNAL_PERIOD = G_PERIOD_TYPE_INT.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.