SAP Reports / Programs

EWULISLS SAP ABAP Report - EMU: Load Control Tables with LIS Objects







EWULISLS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The program analyzes the tables from the LIS, that is tables S000 to S999 and S000E to S999E providing they exist in the system...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter EWULISLS into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT EWULISLS. "Basic submit
SUBMIT EWULISLS AND RETURN. "Return to original report after report execution complete
SUBMIT EWULISLS VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: GC_SHOW = List Display
Selection Text: GC_UPDA = Update Run
Title: EMU: Load Control Tables with LIS Objects
Text Symbol: 033 = - Table is not active in the system
Text Symbol: 035 = - Table does not contain any relevant fields
Text Symbol: 036 = - Field does not have a currency type assigned to it
Text Symbol: 051 = Application:
Text Symbol: 052 = (all application classes)
Text Symbol: 054 = Table
Text Symbol: 055 = Field
Text Symbol: 056 = DTyp
Text Symbol: 057 = Key
Text Symbol: 058 = Domain
Text Symbol: 059 = Reference
Text Symbol: 060 = Field text


INCLUDES used within this REPORT EWULISLS

INCLUDE EWUSTDDD.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

EWU_GET_CUKEY_T445A CALL FUNCTION 'EWU_GET_CUKEY_T445A' EXPORTING gstru = ps_stru-gstru IMPORTING stwae = ps_stru-waers EXCEPTIONS no_record_found = 1 OTHERS = 2.

DD_GET_NAMETAB_HEADER CALL FUNCTION 'DD_GET_NAMETAB_HEADER' EXPORTING * STATUS = 'A' tabname = xt_sxxx-gstru "#EC * IMPORTING x030l_wa = ls_x030l EXCEPTIONS not_found = 1 OTHERS = 2.

DD_GET_NAMETAB CALL FUNCTION 'DD_GET_NAMETAB' EXPORTING * STATUS = 'A' tabname = xt_sxxxe-tabname "#EC * IMPORTING x030l_wa = ls_x030l TABLES x031l_tab = lt_x031l EXCEPTIONS not_found = 1 no_fields = 2 OTHERS = 3.

GET_FIELDTAB CALL FUNCTION 'GET_FIELDTAB' EXPORTING langu = sy-langu only = 'T' tabname = xt_sxxx-gstru "#EC * withtext = 'X' TABLES fieldtab = gt_fieldtab EXCEPTIONS internal_error = 1 no_texts_found = 2 table_has_no_fields = 3 table_not_activ = 4.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name EWULISLS or its description.