SAP SDOK_CONT_SERVER_INTRODUCE Function Module for
SDOK_CONT_SERVER_INTRODUCE is a standard sdok cont server introduce 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 sdok cont server introduce FM, simply by entering the name SDOK_CONT_SERVER_INTRODUCE into the relevant SAP transaction such as SE37 or SE38.
Function Group: SDCI
Program Name: SAPLSDCI
Main Program: SAPLSDCI
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function SDOK_CONT_SERVER_INTRODUCE 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 'SDOK_CONT_SERVER_INTRODUCE'".
EXPORTING
CONT_SERVER = "
CONT_SERVER_PGM = "
PROT_VERSION = "
CONT_SERVER_INSTANCE = "
* CONT_SERVER_USER = "
* CONT_SERVER_PASSWORD = "
EXCEPTIONS
WRONG_RELEASE = 1 NO_VACANT_CATEGORY = 2 STOR_REP_CANNOT_CREATE = 3 AMBIGUOUS = 4
IMPORTING Parameters details for SDOK_CONT_SERVER_INTRODUCE
CONT_SERVER -
Data type: TOAAR-HTTP_SERVOptional: No
Call by Reference: No ( called with pass by value option)
CONT_SERVER_PGM -
Data type: TOAAR-SCRIPTOptional: No
Call by Reference: No ( called with pass by value option)
PROT_VERSION -
Data type: TOAAR-VERSIONOptional: No
Call by Reference: No ( called with pass by value option)
CONT_SERVER_INSTANCE -
Data type: SDOKCSINSTOptional: No
Call by Reference: No ( called with pass by value option)
CONT_SERVER_USER -
Data type: WWWOBJIDOptional: Yes
Call by Reference: No ( called with pass by value option)
CONT_SERVER_PASSWORD -
Data type: WWWPASSOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
WRONG_RELEASE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_VACANT_CATEGORY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
STOR_REP_CANNOT_CREATE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
AMBIGUOUS -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SDOK_CONT_SERVER_INTRODUCE 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_cont_server | TYPE TOAAR-HTTP_SERV, " | |||
| lv_wrong_release | TYPE TOAAR, " | |||
| lv_cont_server_pgm | TYPE TOAAR-SCRIPT, " | |||
| lv_no_vacant_category | TYPE TOAAR, " | |||
| lv_prot_version | TYPE TOAAR-VERSION, " | |||
| lv_stor_rep_cannot_create | TYPE TOAAR, " | |||
| lv_ambiguous | TYPE TOAAR, " | |||
| lv_cont_server_instance | TYPE SDOKCSINST, " | |||
| lv_cont_server_user | TYPE WWWOBJID, " | |||
| lv_cont_server_password | TYPE WWWPASS. " |
|   CALL FUNCTION 'SDOK_CONT_SERVER_INTRODUCE' " |
| EXPORTING | ||
| CONT_SERVER | = lv_cont_server | |
| CONT_SERVER_PGM | = lv_cont_server_pgm | |
| PROT_VERSION | = lv_prot_version | |
| CONT_SERVER_INSTANCE | = lv_cont_server_instance | |
| CONT_SERVER_USER | = lv_cont_server_user | |
| CONT_SERVER_PASSWORD | = lv_cont_server_password | |
| EXCEPTIONS | ||
| WRONG_RELEASE = 1 | ||
| NO_VACANT_CATEGORY = 2 | ||
| STOR_REP_CANNOT_CREATE = 3 | ||
| AMBIGUOUS = 4 | ||
| . " SDOK_CONT_SERVER_INTRODUCE | ||
ABAP code using 7.40 inline data declarations to call FM SDOK_CONT_SERVER_INTRODUCE
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 HTTP_SERV FROM TOAAR INTO @DATA(ld_cont_server). | ||||
| "SELECT single SCRIPT FROM TOAAR INTO @DATA(ld_cont_server_pgm). | ||||
| "SELECT single VERSION FROM TOAAR INTO @DATA(ld_prot_version). | ||||
Search for further information about these or an SAP related objects