SAP CS_CL_S_PBM_PROVIDE Function Module for NOTRANSL: Bereitstellung von PSP-Stücklisten Zuordnungen
CS_CL_S_PBM_PROVIDE is a standard cs cl s pbm provide 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: Bereitstellung von PSP-Stücklisten Zuordnungen 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 cs cl s pbm provide FM, simply by entering the name CS_CL_S_PBM_PROVIDE into the relevant SAP transaction such as SE37 or SE38.
Function Group: CSCL_PBM
Program Name: SAPLCSCL_PBM
Main Program: SAPLCSCL_BOM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CS_CL_S_PBM_PROVIDE 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 'CS_CL_S_PBM_PROVIDE'"NOTRANSL: Bereitstellung von PSP-Stücklisten Zuordnungen.
EXPORTING
* I_PSPNR = "Work Breakdown Structure Element (WBS Element)
* I_MATNR = "Material Number
* I_WERKS = "Plant
* I_STLAN = "BOM Usage
* I_STLNR = "Bill of Material
* I_STLAL = "Alternative BOM
TABLES
E_PBM_CLASS_DATA = "Data for the class of the project BOM assignment
EXCEPTIONS
WRONG_KEY = 1
IMPORTING Parameters details for CS_CL_S_PBM_PROVIDE
I_PSPNR - Work Breakdown Structure Element (WBS Element)
Data type: PBM_CLASS_DATA-PSPNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_MATNR - Material Number
Data type: PBM_CLASS_DATA-MATNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_WERKS - Plant
Data type: PBM_CLASS_DATA-WERKSOptional: Yes
Call by Reference: No ( called with pass by value option)
I_STLAN - BOM Usage
Data type: PBM_CLASS_DATA-STLANOptional: Yes
Call by Reference: No ( called with pass by value option)
I_STLNR - Bill of Material
Data type: PBM_CLASS_DATA-STLNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_STLAL - Alternative BOM
Data type: PBM_CLASS_DATA-STLALOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CS_CL_S_PBM_PROVIDE
E_PBM_CLASS_DATA - Data for the class of the project BOM assignment
Data type: PBM_CLASS_DATAOptional: No
Call by Reference: Yes
EXCEPTIONS details
WRONG_KEY -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for CS_CL_S_PBM_PROVIDE 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_pspnr | TYPE PBM_CLASS_DATA-PSPNR, " | |||
| lv_wrong_key | TYPE PBM_CLASS_DATA, " | |||
| lt_e_pbm_class_data | TYPE STANDARD TABLE OF PBM_CLASS_DATA, " | |||
| lv_i_matnr | TYPE PBM_CLASS_DATA-MATNR, " | |||
| lv_i_werks | TYPE PBM_CLASS_DATA-WERKS, " | |||
| lv_i_stlan | TYPE PBM_CLASS_DATA-STLAN, " | |||
| lv_i_stlnr | TYPE PBM_CLASS_DATA-STLNR, " | |||
| lv_i_stlal | TYPE PBM_CLASS_DATA-STLAL. " |
|   CALL FUNCTION 'CS_CL_S_PBM_PROVIDE' "NOTRANSL: Bereitstellung von PSP-Stücklisten Zuordnungen |
| EXPORTING | ||
| I_PSPNR | = lv_i_pspnr | |
| I_MATNR | = lv_i_matnr | |
| I_WERKS | = lv_i_werks | |
| I_STLAN | = lv_i_stlan | |
| I_STLNR | = lv_i_stlnr | |
| I_STLAL | = lv_i_stlal | |
| TABLES | ||
| E_PBM_CLASS_DATA | = lt_e_pbm_class_data | |
| EXCEPTIONS | ||
| WRONG_KEY = 1 | ||
| . " CS_CL_S_PBM_PROVIDE | ||
ABAP code using 7.40 inline data declarations to call FM CS_CL_S_PBM_PROVIDE
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 PSPNR FROM PBM_CLASS_DATA INTO @DATA(ld_i_pspnr). | ||||
| "SELECT single MATNR FROM PBM_CLASS_DATA INTO @DATA(ld_i_matnr). | ||||
| "SELECT single WERKS FROM PBM_CLASS_DATA INTO @DATA(ld_i_werks). | ||||
| "SELECT single STLAN FROM PBM_CLASS_DATA INTO @DATA(ld_i_stlan). | ||||
| "SELECT single STLNR FROM PBM_CLASS_DATA INTO @DATA(ld_i_stlnr). | ||||
| "SELECT single STLAL FROM PBM_CLASS_DATA INTO @DATA(ld_i_stlal). | ||||
Search for further information about these or an SAP related objects