SAP REXA_GUI_LOG_APPL Function Module for Display Posting Log
REXA_GUI_LOG_APPL is a standard rexa gui log appl SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Display Posting Log processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for rexa gui log appl FM, simply by entering the name REXA_GUI_LOG_APPL into the relevant SAP transaction such as SE37 or SE38.
Function Group: REXA_GUI_LOG_APPL
Program Name: SAPLREXA_GUI_LOG_APPL
Main Program: SAPLREXA_GUI_LOG_APPL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function REXA_GUI_LOG_APPL pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'REXA_GUI_LOG_APPL'"Display Posting Log.
EXPORTING
* IO_MSGLIST = "Message Collector
* ID_MODE = 'S' "
* IF_SUMMARY = ' ' "
* IF_SHOW_BILL_DOC = ' ' "Display Billing Document
* IT_REFDOCID = "
* IT_SEL_PARAM = "Ranges for Saving Selection Screen Values
IT_DOC_HEADER = "Document header
IT_DOC_ITEM = "Document Items
* IT_DOC_HEADER_FI = "Document Header for Output
* IT_DOC_ITEM_FI = "Document Item for Output
* IT_DOC_HEADER_BILL = "Header of Billing Document for List Display
* IT_DOC_ITEM_BILL = "Item of Billing Document for List Display
* IS_SUMMARY = "Summary of Results of a Posting Run
IMPORTING Parameters details for REXA_GUI_LOG_APPL
IO_MSGLIST - Message Collector
Data type: IF_RECA_MESSAGE_LISTOptional: Yes
Call by Reference: No ( called with pass by value option)
ID_MODE -
Data type: RECAPROCESSMODEDefault: 'S'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IF_SUMMARY -
Data type: RECABOOLDefault: ' '
Optional: No
Call by Reference: Yes
IF_SHOW_BILL_DOC - Display Billing Document
Data type: RECABOOLDefault: ' '
Optional: Yes
Call by Reference: Yes
IT_REFDOCID -
Data type: RE_T_REFDOCIDOptional: Yes
Call by Reference: Yes
IT_SEL_PARAM - Ranges for Saving Selection Screen Values
Data type: RE_T_RANGEOptional: Yes
Call by Reference: Yes
IT_DOC_HEADER - Document header
Data type: RE_T_XA_DOC_HEADEROptional: No
Call by Reference: Yes
IT_DOC_ITEM - Document Items
Data type: RE_T_XA_DOC_ITEMOptional: No
Call by Reference: Yes
IT_DOC_HEADER_FI - Document Header for Output
Data type: RE_T_EX_DOC_HEADEROptional: Yes
Call by Reference: Yes
IT_DOC_ITEM_FI - Document Item for Output
Data type: RE_T_EX_DOC_ITEMOptional: Yes
Call by Reference: Yes
IT_DOC_HEADER_BILL - Header of Billing Document for List Display
Data type: RE_T_XA_GUI_BILL_DOC_HEADER_LOptional: Yes
Call by Reference: Yes
IT_DOC_ITEM_BILL - Item of Billing Document for List Display
Data type: RE_T_XA_GUI_BILL_DOC_ITEM_LOptional: Yes
Call by Reference: Yes
IS_SUMMARY - Summary of Results of a Posting Run
Data type: RERA_POSTING_SUMMARYOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for REXA_GUI_LOG_APPL Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_io_msglist | TYPE IF_RECA_MESSAGE_LIST, " | |||
| lv_id_mode | TYPE RECAPROCESSMODE, " 'S' | |||
| lv_if_summary | TYPE RECABOOL, " ' ' | |||
| lv_if_show_bill_doc | TYPE RECABOOL, " ' ' | |||
| lv_it_refdocid | TYPE RE_T_REFDOCID, " | |||
| lv_it_sel_param | TYPE RE_T_RANGE, " | |||
| lv_it_doc_header | TYPE RE_T_XA_DOC_HEADER, " | |||
| lv_it_doc_item | TYPE RE_T_XA_DOC_ITEM, " | |||
| lv_it_doc_header_fi | TYPE RE_T_EX_DOC_HEADER, " | |||
| lv_it_doc_item_fi | TYPE RE_T_EX_DOC_ITEM, " | |||
| lv_it_doc_header_bill | TYPE RE_T_XA_GUI_BILL_DOC_HEADER_L, " | |||
| lv_it_doc_item_bill | TYPE RE_T_XA_GUI_BILL_DOC_ITEM_L, " | |||
| lv_is_summary | TYPE RERA_POSTING_SUMMARY. " |
|   CALL FUNCTION 'REXA_GUI_LOG_APPL' "Display Posting Log |
| EXPORTING | ||
| IO_MSGLIST | = lv_io_msglist | |
| ID_MODE | = lv_id_mode | |
| IF_SUMMARY | = lv_if_summary | |
| IF_SHOW_BILL_DOC | = lv_if_show_bill_doc | |
| IT_REFDOCID | = lv_it_refdocid | |
| IT_SEL_PARAM | = lv_it_sel_param | |
| IT_DOC_HEADER | = lv_it_doc_header | |
| IT_DOC_ITEM | = lv_it_doc_item | |
| IT_DOC_HEADER_FI | = lv_it_doc_header_fi | |
| IT_DOC_ITEM_FI | = lv_it_doc_item_fi | |
| IT_DOC_HEADER_BILL | = lv_it_doc_header_bill | |
| IT_DOC_ITEM_BILL | = lv_it_doc_item_bill | |
| IS_SUMMARY | = lv_is_summary | |
| . " REXA_GUI_LOG_APPL | ||
ABAP code using 7.40 inline data declarations to call FM REXA_GUI_LOG_APPL
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_id_mode) | = 'S'. | |||
| DATA(ld_if_summary) | = ' '. | |||
| DATA(ld_if_show_bill_doc) | = ' '. | |||
Search for further information about these or an SAP related objects