SAP SCDT_CREATE_GEN_SYNCOBJECTS Function Module for
SCDT_CREATE_GEN_SYNCOBJECTS is a standard scdt create gen syncobjects SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 scdt create gen syncobjects FM, simply by entering the name SCDT_CREATE_GEN_SYNCOBJECTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCDT_GET_MAPPING_DATA
Program Name: SAPLSCDT_GET_MAPPING_DATA
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SCDT_CREATE_GEN_SYNCOBJECTS 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 'SCDT_CREATE_GEN_SYNCOBJECTS'".
EXPORTING
ID = "
SYSTEM_TRG = "
* RFCDEST_SOLMAN = ' ' "
* DEVCLASS = "
TABLES
IT_SCDTOBJECT = "
IT_SCDTOBJMAP = "
IT_SCDTOBJSEL = "
IT_SCDTSOURCE = "
EXCEPTIONS
COMPONENT_NOT_FOUND = 1
IMPORTING Parameters details for SCDT_CREATE_GEN_SYNCOBJECTS
ID -
Data type: SCDT_IDOptional: No
Call by Reference: Yes
SYSTEM_TRG -
Data type: DLVUNITOptional: No
Call by Reference: Yes
RFCDEST_SOLMAN -
Data type: RFCDESTDefault: ' '
Optional: Yes
Call by Reference: Yes
DEVCLASS -
Data type: DEVCLASSOptional: Yes
Call by Reference: Yes
TABLES Parameters details for SCDT_CREATE_GEN_SYNCOBJECTS
IT_SCDTOBJECT -
Data type: SCDTOBJECTOptional: No
Call by Reference: Yes
IT_SCDTOBJMAP -
Data type: SCDTOBJMAPOptional: No
Call by Reference: Yes
IT_SCDTOBJSEL -
Data type: SCDTOBJSELOptional: No
Call by Reference: Yes
IT_SCDTSOURCE -
Data type: SCDTSOURCEOptional: No
Call by Reference: Yes
EXCEPTIONS details
COMPONENT_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SCDT_CREATE_GEN_SYNCOBJECTS 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_id | TYPE SCDT_ID, " | |||
| lt_it_scdtobject | TYPE STANDARD TABLE OF SCDTOBJECT, " | |||
| lv_component_not_found | TYPE SCDTOBJECT, " | |||
| lv_system_trg | TYPE DLVUNIT, " | |||
| lt_it_scdtobjmap | TYPE STANDARD TABLE OF SCDTOBJMAP, " | |||
| lt_it_scdtobjsel | TYPE STANDARD TABLE OF SCDTOBJSEL, " | |||
| lv_rfcdest_solman | TYPE RFCDEST, " ' ' | |||
| lv_devclass | TYPE DEVCLASS, " | |||
| lt_it_scdtsource | TYPE STANDARD TABLE OF SCDTSOURCE. " |
|   CALL FUNCTION 'SCDT_CREATE_GEN_SYNCOBJECTS' " |
| EXPORTING | ||
| ID | = lv_id | |
| SYSTEM_TRG | = lv_system_trg | |
| RFCDEST_SOLMAN | = lv_rfcdest_solman | |
| DEVCLASS | = lv_devclass | |
| TABLES | ||
| IT_SCDTOBJECT | = lt_it_scdtobject | |
| IT_SCDTOBJMAP | = lt_it_scdtobjmap | |
| IT_SCDTOBJSEL | = lt_it_scdtobjsel | |
| IT_SCDTSOURCE | = lt_it_scdtsource | |
| EXCEPTIONS | ||
| COMPONENT_NOT_FOUND = 1 | ||
| . " SCDT_CREATE_GEN_SYNCOBJECTS | ||
ABAP code using 7.40 inline data declarations to call FM SCDT_CREATE_GEN_SYNCOBJECTS
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_rfcdest_solman) | = ' '. | |||
Search for further information about these or an SAP related objects