SAP SD_DEADLINES_CONFIGURE Function Module for NOTRANSL: Termine: Pflegedialog konfigurieren
SD_DEADLINES_CONFIGURE is a standard sd deadlines configure SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Termine: Pflegedialog konfigurieren 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 sd deadlines configure FM, simply by entering the name SD_DEADLINES_CONFIGURE into the relevant SAP transaction such as SE37 or SE38.
Function Group: V51T
Program Name: SAPLV51T
Main Program: SAPLV51T
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SD_DEADLINES_CONFIGURE 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 'SD_DEADLINES_CONFIGURE'"NOTRANSL: Termine: Pflegedialog konfigurieren.
EXPORTING
* I_CALL_BACK_PROGRAM = 'SAPLV51T' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_EXT_PAI_FCODE_PROCESS = 'EXT_PAI_FCODE_PROC' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_EXT_PAI_FCODE_CHECK = 'EXT_PAI_FCODE_CHECK' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_EXT_PBO_STATUS_SET = 'EXT_PBO_STATUS_SET' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_HEADER_SUBSCREEN_PROGRAM = 'SAPLV51T' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_HEADER_SUBSCREEN_DYNNR = '0001' "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING Parameters details for SD_DEADLINES_CONFIGURE
I_CALL_BACK_PROGRAM - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-REPIDDefault: 'SAPLV51T'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_EXT_PAI_FCODE_PROCESS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: 'EXT_PAI_FCODE_PROC'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_EXT_PAI_FCODE_CHECK - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: 'EXT_PAI_FCODE_CHECK'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_EXT_PBO_STATUS_SET - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: 'EXT_PBO_STATUS_SET'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_HEADER_SUBSCREEN_PROGRAM - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-REPIDDefault: 'SAPLV51T'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_HEADER_SUBSCREEN_DYNNR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-DYNNRDefault: '0001'
Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SD_DEADLINES_CONFIGURE 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_i_call_back_program | TYPE SY-REPID, " 'SAPLV51T' | |||
| lv_i_ext_pai_fcode_process | TYPE C, " 'EXT_PAI_FCODE_PROC' | |||
| lv_i_ext_pai_fcode_check | TYPE C, " 'EXT_PAI_FCODE_CHECK' | |||
| lv_i_ext_pbo_status_set | TYPE C, " 'EXT_PBO_STATUS_SET' | |||
| lv_i_header_subscreen_program | TYPE SY-REPID, " 'SAPLV51T' | |||
| lv_i_header_subscreen_dynnr | TYPE SY-DYNNR. " '0001' |
|   CALL FUNCTION 'SD_DEADLINES_CONFIGURE' "NOTRANSL: Termine: Pflegedialog konfigurieren |
| EXPORTING | ||
| I_CALL_BACK_PROGRAM | = lv_i_call_back_program | |
| I_EXT_PAI_FCODE_PROCESS | = lv_i_ext_pai_fcode_process | |
| I_EXT_PAI_FCODE_CHECK | = lv_i_ext_pai_fcode_check | |
| I_EXT_PBO_STATUS_SET | = lv_i_ext_pbo_status_set | |
| I_HEADER_SUBSCREEN_PROGRAM | = lv_i_header_subscreen_program | |
| I_HEADER_SUBSCREEN_DYNNR | = lv_i_header_subscreen_dynnr | |
| . " SD_DEADLINES_CONFIGURE | ||
ABAP code using 7.40 inline data declarations to call FM SD_DEADLINES_CONFIGURE
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 REPID FROM SY INTO @DATA(ld_i_call_back_program). | ||||
| DATA(ld_i_call_back_program) | = 'SAPLV51T'. | |||
| DATA(ld_i_ext_pai_fcode_process) | = 'EXT_PAI_FCODE_PROC'. | |||
| DATA(ld_i_ext_pai_fcode_check) | = 'EXT_PAI_FCODE_CHECK'. | |||
| DATA(ld_i_ext_pbo_status_set) | = 'EXT_PBO_STATUS_SET'. | |||
| "SELECT single REPID FROM SY INTO @DATA(ld_i_header_subscreen_program). | ||||
| DATA(ld_i_header_subscreen_program) | = 'SAPLV51T'. | |||
| "SELECT single DYNNR FROM SY INTO @DATA(ld_i_header_subscreen_dynnr). | ||||
| DATA(ld_i_header_subscreen_dynnr) | = '0001'. | |||
Search for further information about these or an SAP related objects