SAP SX_TRACE_INITIALIZE Function Module for SAPconnect: Create New Trace, Open or Close
SX_TRACE_INITIALIZE is a standard sx trace initialize SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SAPconnect: Create New Trace, Open or Close 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 sx trace initialize FM, simply by entering the name SX_TRACE_INITIALIZE into the relevant SAP transaction such as SE37 or SE38.
Function Group: SX06
Program Name: SAPLSX06
Main Program:
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SX_TRACE_INITIALIZE 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 'SX_TRACE_INITIALIZE'"SAPconnect: Create New Trace, Open or Close.
EXPORTING
* OUTBOUND_OBJ_ID = "
* INBOUND_OBJ_ID = "
* GLOBAL_OBJ_ID = "
* OBJ_TITLE = ' ' "Title of Document
* CHANGE_TITLE = ' ' "
IMPORTING Parameters details for SX_TRACE_INITIALIZE
OUTBOUND_OBJ_ID -
Data type: SX_OBJ_IDOptional: Yes
Call by Reference: No ( called with pass by value option)
INBOUND_OBJ_ID -
Data type: SX_REF_IDOptional: Yes
Call by Reference: No ( called with pass by value option)
GLOBAL_OBJ_ID -
Data type: SX_OBJ_IDOptional: Yes
Call by Reference: No ( called with pass by value option)
OBJ_TITLE - Title of Document
Data type: SODOCCHGI1-OBJ_DESCRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
CHANGE_TITLE -
Data type: SX_BOOLEANDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SX_TRACE_INITIALIZE 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_outbound_obj_id | TYPE SX_OBJ_ID, " | |||
| lv_inbound_obj_id | TYPE SX_REF_ID, " | |||
| lv_global_obj_id | TYPE SX_OBJ_ID, " | |||
| lv_obj_title | TYPE SODOCCHGI1-OBJ_DESCR, " SPACE | |||
| lv_change_title | TYPE SX_BOOLEAN. " SPACE |
|   CALL FUNCTION 'SX_TRACE_INITIALIZE' "SAPconnect: Create New Trace, Open or Close |
| EXPORTING | ||
| OUTBOUND_OBJ_ID | = lv_outbound_obj_id | |
| INBOUND_OBJ_ID | = lv_inbound_obj_id | |
| GLOBAL_OBJ_ID | = lv_global_obj_id | |
| OBJ_TITLE | = lv_obj_title | |
| CHANGE_TITLE | = lv_change_title | |
| . " SX_TRACE_INITIALIZE | ||
ABAP code using 7.40 inline data declarations to call FM SX_TRACE_INITIALIZE
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.| "SELECT single OBJ_DESCR FROM SODOCCHGI1 INTO @DATA(ld_obj_title). | ||||
| DATA(ld_obj_title) | = ' '. | |||
| DATA(ld_change_title) | = ' '. | |||
Search for further information about these or an SAP related objects