SAP C1L0_BOMBOS_INTERFACE_CS000010 Function Module for NOTRANSL: EHS: BOMBOS - Verbuchung Stückliste
C1L0_BOMBOS_INTERFACE_CS000010 is a standard c1l0 bombos interface cs000010 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: EHS: BOMBOS - Verbuchung Stückliste 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 c1l0 bombos interface cs000010 FM, simply by entering the name C1L0_BOMBOS_INTERFACE_CS000010 into the relevant SAP transaction such as SE37 or SE38.
Function Group: C1L0
Program Name: SAPLC1L0
Main Program: SAPLC1L0
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function C1L0_BOMBOS_INTERFACE_CS000010 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 'C1L0_BOMBOS_INTERFACE_CS000010'"NOTRANSL: EHS: BOMBOS - Verbuchung Stückliste.
EXPORTING
I_STZUB = "Permanent BOM data
TABLES
T_CLRKB = "Recursiveness Info on Objects in Classes for BOM
T_STPOB = "BOM item document table
T_STPUB = "BOMs - sub-item documents
T_STSTB = "Buffer Table for STST Records
T_TPSTB = "Buffer Table for TPST Records
T_CLSTB = "Buffer table for CLST records
T_DOSTB = "Document Table for DOST Records
T_EQSTB = "Document Table for EQST Records
T_KDSTB = "Buffer Table for KDST Records
T_MASTB = "Document table for MAST records
T_PRSTB = "Buffer table for PRST records
T_STASB = "Document Table for STAS Records
T_STKOB = "BOM Header Document Table
IMPORTING Parameters details for C1L0_BOMBOS_INTERFACE_CS000010
I_STZUB - Permanent BOM data
Data type: STZUBOptional: No
Call by Reference: Yes
TABLES Parameters details for C1L0_BOMBOS_INTERFACE_CS000010
T_CLRKB - Recursiveness Info on Objects in Classes for BOM
Data type: CSCLRKOptional: No
Call by Reference: No ( called with pass by value option)
T_STPOB - BOM item document table
Data type: STPOBOptional: No
Call by Reference: No ( called with pass by value option)
T_STPUB - BOMs - sub-item documents
Data type: STPUBOptional: No
Call by Reference: No ( called with pass by value option)
T_STSTB - Buffer Table for STST Records
Data type: STSTBOptional: No
Call by Reference: No ( called with pass by value option)
T_TPSTB - Buffer Table for TPST Records
Data type: TPSTBOptional: No
Call by Reference: No ( called with pass by value option)
T_CLSTB - Buffer table for CLST records
Data type: CLSTBOptional: No
Call by Reference: No ( called with pass by value option)
T_DOSTB - Document Table for DOST Records
Data type: DOSTBOptional: No
Call by Reference: No ( called with pass by value option)
T_EQSTB - Document Table for EQST Records
Data type: EQSTBOptional: No
Call by Reference: No ( called with pass by value option)
T_KDSTB - Buffer Table for KDST Records
Data type: KDSTBOptional: No
Call by Reference: No ( called with pass by value option)
T_MASTB - Document table for MAST records
Data type: MASTBOptional: No
Call by Reference: No ( called with pass by value option)
T_PRSTB - Buffer table for PRST records
Data type: PRSTBOptional: No
Call by Reference: No ( called with pass by value option)
T_STASB - Document Table for STAS Records
Data type: STASBOptional: No
Call by Reference: No ( called with pass by value option)
T_STKOB - BOM Header Document Table
Data type: STKOBOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for C1L0_BOMBOS_INTERFACE_CS000010 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_stzub | TYPE STZUB, " | |||
| lt_t_clrkb | TYPE STANDARD TABLE OF CSCLRK, " | |||
| lt_t_stpob | TYPE STANDARD TABLE OF STPOB, " | |||
| lt_t_stpub | TYPE STANDARD TABLE OF STPUB, " | |||
| lt_t_ststb | TYPE STANDARD TABLE OF STSTB, " | |||
| lt_t_tpstb | TYPE STANDARD TABLE OF TPSTB, " | |||
| lt_t_clstb | TYPE STANDARD TABLE OF CLSTB, " | |||
| lt_t_dostb | TYPE STANDARD TABLE OF DOSTB, " | |||
| lt_t_eqstb | TYPE STANDARD TABLE OF EQSTB, " | |||
| lt_t_kdstb | TYPE STANDARD TABLE OF KDSTB, " | |||
| lt_t_mastb | TYPE STANDARD TABLE OF MASTB, " | |||
| lt_t_prstb | TYPE STANDARD TABLE OF PRSTB, " | |||
| lt_t_stasb | TYPE STANDARD TABLE OF STASB, " | |||
| lt_t_stkob | TYPE STANDARD TABLE OF STKOB. " |
|   CALL FUNCTION 'C1L0_BOMBOS_INTERFACE_CS000010' "NOTRANSL: EHS: BOMBOS - Verbuchung Stückliste |
| EXPORTING | ||
| I_STZUB | = lv_i_stzub | |
| TABLES | ||
| T_CLRKB | = lt_t_clrkb | |
| T_STPOB | = lt_t_stpob | |
| T_STPUB | = lt_t_stpub | |
| T_STSTB | = lt_t_ststb | |
| T_TPSTB | = lt_t_tpstb | |
| T_CLSTB | = lt_t_clstb | |
| T_DOSTB | = lt_t_dostb | |
| T_EQSTB | = lt_t_eqstb | |
| T_KDSTB | = lt_t_kdstb | |
| T_MASTB | = lt_t_mastb | |
| T_PRSTB | = lt_t_prstb | |
| T_STASB | = lt_t_stasb | |
| T_STKOB | = lt_t_stkob | |
| . " C1L0_BOMBOS_INTERFACE_CS000010 | ||
ABAP code using 7.40 inline data declarations to call FM C1L0_BOMBOS_INTERFACE_CS000010
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