SAP SDS_CHECK_CIF Function Module for NOTRANSL: APO-Relevanz für Vertriebslieferplanposition pruefen
SDS_CHECK_CIF is a standard sds check cif 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: APO-Relevanz für Vertriebslieferplanposition pruefen 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 sds check cif FM, simply by entering the name SDS_CHECK_CIF into the relevant SAP transaction such as SE37 or SE38.
Function Group: V45L_CF
Program Name: SAPLV45L_CF
Main Program: SAPLV45L_CF
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SDS_CHECK_CIF 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 'SDS_CHECK_CIF'"NOTRANSL: APO-Relevanz für Vertriebslieferplanposition pruefen.
EXPORTING
* I_VBAK = "Sales Document: Header Data
* I_VBAP = "Sales Document: Item Data
* IV_VBELN = "Sales Document
* IV_POSNR = "Sales document item
IMPORTING
E_LOGSYS_APO = "Logical System
EXCEPTIONS
MULTIPLE_DESTINATIONS = 1
IMPORTING Parameters details for SDS_CHECK_CIF
I_VBAK - Sales Document: Header Data
Data type: VBAKOptional: Yes
Call by Reference: Yes
I_VBAP - Sales Document: Item Data
Data type: VBAPOptional: Yes
Call by Reference: Yes
IV_VBELN - Sales Document
Data type: VBELN_VAOptional: Yes
Call by Reference: Yes
IV_POSNR - Sales document item
Data type: POSNR_VAOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for SDS_CHECK_CIF
E_LOGSYS_APO - Logical System
Data type: LOGSYSOptional: No
Call by Reference: Yes
EXCEPTIONS details
MULTIPLE_DESTINATIONS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SDS_CHECK_CIF 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_vbak | TYPE VBAK, " | |||
| lv_e_logsys_apo | TYPE LOGSYS, " | |||
| lv_multiple_destinations | TYPE LOGSYS, " | |||
| lv_i_vbap | TYPE VBAP, " | |||
| lv_iv_vbeln | TYPE VBELN_VA, " | |||
| lv_iv_posnr | TYPE POSNR_VA. " |
|   CALL FUNCTION 'SDS_CHECK_CIF' "NOTRANSL: APO-Relevanz für Vertriebslieferplanposition pruefen |
| EXPORTING | ||
| I_VBAK | = lv_i_vbak | |
| I_VBAP | = lv_i_vbap | |
| IV_VBELN | = lv_iv_vbeln | |
| IV_POSNR | = lv_iv_posnr | |
| IMPORTING | ||
| E_LOGSYS_APO | = lv_e_logsys_apo | |
| EXCEPTIONS | ||
| MULTIPLE_DESTINATIONS = 1 | ||
| . " SDS_CHECK_CIF | ||
ABAP code using 7.40 inline data declarations to call FM SDS_CHECK_CIF
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.Search for further information about these or an SAP related objects