SAP Reports / Programs | Master Data | SAP Utilities | Master Data(IS-U-MD) SAP IS

IECCLOG SAP ABAP INCLUDE - IS-U Dereg.: Macros for EDI Application Log







IECCLOG 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 IECCLOG 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 IECCLOG. "Basic submit
SUBMIT IECCLOG AND RETURN. "Return to original report after report execution complete
SUBMIT IECCLOG VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: IS-U Dereg.: Macros for EDI Application Log


INCLUDES used within this REPORT IECCLOG

No INCLUDES are used within this REPORT code!


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:

ECCLOG_SELECT call function 'ECCLOG_SELECT' exporting x_logid = &1 x_initialize = 'X' * IMPORTING * Y_HANDLE = exceptions logid_invalid = 1 others = 2.

ECCLOG_SAVE call function 'ECCLOG_SAVE' * EXPORTING * X_HANDLE = * X_DEL_DATE = * X_DEL_BEFORE = exceptions invalid_handle = 1 not_selected = 2 system_error = 3 others = 4.

ECCLOG_SAVE call function 'ECCLOG_SAVE' exporting * X_HANDLE = x_del_date = &1 x_del_before = &2 exceptions invalid_handle = 1 not_selected = 2 system_error = 3 others = 4.

ECCLOG_ADD_MESSAGE call function 'ECCLOG_ADD_MESSAGE' exporting * X_HANDLE = x_msgty = '&1' x_msgid = '&3' x_msgno = '&2' exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_ADD_MESSAGE call function 'ECCLOG_ADD_MESSAGE' exporting * X_HANDLE = x_msgty = '&1' x_msgid = '&3' x_msgno = '&2' x_msgv1 = &4 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_ADD_MESSAGE call function 'ECCLOG_ADD_MESSAGE' exporting * X_HANDLE = x_msgty = '&1' x_msgid = '&3' x_msgno = '&2' x_msgv1 = &4 x_msgv2 = &5 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_ADD_MESSAGE call function 'ECCLOG_ADD_MESSAGE' exporting * X_HANDLE = x_msgty = '&1' x_msgid = '&3' x_msgno = '&2' x_msgv1 = &4 x_msgv2 = &5 x_msgv3 = &6 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_ADD_MESSAGE call function 'ECCLOG_ADD_MESSAGE' exporting * X_HANDLE = x_msgty = '&1' x_msgid = '&3' x_msgno = '&2' x_msgv1 = &4 x_msgv2 = &5 x_msgv3 = &6 x_msgv4 = &7 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_ADD_MESSAGE call function 'ECCLOG_ADD_MESSAGE' exporting * X_HANDLE = x_msgty = &1 x_msgid = &3 x_msgno = &2 x_msgv1 = &4 x_msgv2 = &5 x_msgv3 = &6 x_msgv4 = &7 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_ADD_MESSAGE call function 'ECCLOG_ADD_MESSAGE' exporting * X_HANDLE = x_msgty = &1 x_msgid = sy-msgid x_msgno = sy-msgno x_msgv1 = sy-msgv1 x_msgv2 = sy-msgv2 x_msgv3 = sy-msgv3 x_msgv4 = sy-msgv4 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_BLOCK_START call function 'ECCLOG_BLOCK_START' * EXPORTING * X_HANDLE = * IMPORTING * Y_LEVEL = exceptions invalid_handle = 1 not_selected = 2 others = 3.

ECCLOG_BLOCK_START call function 'ECCLOG_BLOCK_START' exporting * x_handle = x_subobject = &1 * IMPORTING * Y_LEVEL = exceptions invalid_handle = 1 not_selected = 2 others = 3.

ECCLOG_BLOCK_END call function 'ECCLOG_BLOCK_END' exporting * X_HANDLE = * x_level = x_suppress = &1 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_BLOCK_END call function 'ECCLOG_BLOCK_END' exporting * X_HANDLE = * x_level = x_suppress = &1 x_msgty = '&2' x_msgid = '&4' x_msgno = '&3' exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_BLOCK_END call function 'ECCLOG_BLOCK_END' exporting * X_HANDLE = * x_level = x_suppress = &1 x_msgty = '&2' x_msgid = '&4' x_msgno = '&3' x_msgv1 = &5 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_BLOCK_END call function 'ECCLOG_BLOCK_END' exporting * X_HANDLE = * x_level = x_suppress = &1 x_msgty = '&2' x_msgid = '&4' x_msgno = '&3' x_msgv1 = &5 x_msgv2 = &6 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_BLOCK_END call function 'ECCLOG_BLOCK_END' exporting * X_HANDLE = * x_level = x_suppress = &1 x_msgty = '&2' x_msgid = '&4' x_msgno = '&3' x_msgv1 = &5 x_msgv2 = &6 x_msgv3 = &7 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_BLOCK_END call function 'ECCLOG_BLOCK_END' exporting * X_HANDLE = * x_level = x_suppress = &1 x_msgty = '&2' x_msgid = '&4' x_msgno = '&3' x_msgv1 = &5 x_msgv2 = &6 x_msgv3 = &7 x_msgv4 = &8 exceptions handle_invalid = 1 not_selected = 2 others = 3.

ECCLOG_FREE





call function 'ECCLOG_FREE'.



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 IECCLOG or its description.