ACE_REP_ALV 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 ACE_REP_ALV 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ACE_COMP_SET CALL FUNCTION 'ACE_COMP_SET' * EXPORTING * I_COMP = ' ' * I_POPUP = ' ' IMPORTING E_COMP = LD_COMP * E_ACTION = EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING * CORRECTIONS_OPTION = ' ' * CORRECTIONS_FUNC_TEXT = ' ' LINE_FROM = GDC_MSG_LINE_ID LINE_TO = GDC_MSG_LINE_ID * OBJECT = ' ' * SEND_IF_ONE = ' ' * BATCH_LIST_TYPE = 'J' SHOW_LINNO = ' ' * SHOW_LINNO_TEXT = ' ' * SHOW_LINNO_TEXT_LEN = '3' I_USE_GRID = ' ' I_AMODAL_WINDOW = 'X' * IMPORTING * CORRECTIONS_WANTED = * E_EXIT_COMMAND = EXCEPTIONS INCONSISTENT_RANGE = 1 NO_MESSAGES = 2 OTHERS = 3.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING I_LIST_TYPE = 0 IMPORTING ET_EVENTS = RT_EVENTS.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING * I_LOGO = 'ENJOYSAP_LOGO' IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.
ACEPS13_AWKEY_DECODE CALL FUNCTION 'ACEPS13_AWKEY_DECODE' EXPORTING ID_AWKEY =
IMPORTING ED_AWORG = LD_AWORG ED_AWREF = LD_AWREF.
ACEPS_ACCOUNTING_DOCS_DISPLAY CALL FUNCTION 'ACEPS_ACCOUNTING_DOCS_DISPLAY' EXPORTING ID_COMP = ID_COMP ID_AWTYP =
ID_AWREF = LD_AWREF ID_AWORG = LD_AWORG ID_AWSYS = IMPORTING ET_RETURN = LT_RETURN.
ACE_DISPLAY_SINGLE_ACE_OBJECT CALL FUNCTION 'ACE_DISPLAY_SINGLE_ACE_OBJECT' EXPORTING ID_COMP = ID_COMP ID_BUKRS =
ID_OBJID = ID_SUBID = ID_KEYDATE = * ID_MODE = '03' * ID_DISPLAY_TREE = * ID_TREE_VARIANT = EXCEPTIONS NOT_FOUND = 1 NO_AUTHORIZATION = 2 ERROR_OCCURRED = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.