SAP CSDE_BOM_AENNR_TABLE Function Module for NOTRANSL: Alle Stücklisten, die durch Änderungen an einer Änderungsnummer
CSDE_BOM_AENNR_TABLE is a standard csde bom aennr table 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: Alle Stücklisten, die durch Änderungen an einer Änderungsnummer 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 csde bom aennr table FM, simply by entering the name CSDE_BOM_AENNR_TABLE into the relevant SAP transaction such as SE37 or SE38.
Function Group: CSDE
Program Name: SAPLCSDE
Main Program:
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CSDE_BOM_AENNR_TABLE 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 'CSDE_BOM_AENNR_TABLE'"NOTRANSL: Alle Stücklisten, die durch Änderungen an einer Änderungsnummer.
EXPORTING
EAENNR = "Change Number
* FLG_WA_ONLY = ' ' "Checkbox
* FLG_UNIT_EXPL = "Checkbox
TABLES
WA = "EC Management : BOM Links
* WAD = "Engin. Change Mgmt : Identification Structure BOM via Doc.
* WAE = "EC Management : BOM to Equipment Link
* WAK = "Engineering Change Mgmt: BOM ID Structure via Sales Order
* WAM = "EC Management : BOM to Material Link
* WAS = "Engineering Change Mgmt: Standard BOM ID Structure
* WAT = "Engineering Change Mgmt: BOM ID Structure via Func. Location
IMPORTING Parameters details for CSDE_BOM_AENNR_TABLE
EAENNR - Change Number
Data type: AENR-AENNROptional: No
Call by Reference: No ( called with pass by value option)
FLG_WA_ONLY - Checkbox
Data type: CSDATA-XFELDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
FLG_UNIT_EXPL - Checkbox
Data type: CSDATA-XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CSDE_BOM_AENNR_TABLE
WA - EC Management : BOM Links
Data type: CCSTLOptional: No
Call by Reference: No ( called with pass by value option)
WAD - Engin. Change Mgmt : Identification Structure BOM via Doc.
Data type: CCSTDOptional: Yes
Call by Reference: No ( called with pass by value option)
WAE - EC Management : BOM to Equipment Link
Data type: CCSTEOptional: Yes
Call by Reference: No ( called with pass by value option)
WAK - Engineering Change Mgmt: BOM ID Structure via Sales Order
Data type: CCSTKOptional: Yes
Call by Reference: No ( called with pass by value option)
WAM - EC Management : BOM to Material Link
Data type: CCSTMOptional: Yes
Call by Reference: No ( called with pass by value option)
WAS - Engineering Change Mgmt: Standard BOM ID Structure
Data type: CCSTSOptional: Yes
Call by Reference: No ( called with pass by value option)
WAT - Engineering Change Mgmt: BOM ID Structure via Func. Location
Data type: CCSTTOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CSDE_BOM_AENNR_TABLE 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: | ||||
| lt_wa | TYPE STANDARD TABLE OF CCSTL, " | |||
| lv_eaennr | TYPE AENR-AENNR, " | |||
| lt_wad | TYPE STANDARD TABLE OF CCSTD, " | |||
| lv_flg_wa_only | TYPE CSDATA-XFELD, " SPACE | |||
| lt_wae | TYPE STANDARD TABLE OF CCSTE, " | |||
| lv_flg_unit_expl | TYPE CSDATA-XFELD, " | |||
| lt_wak | TYPE STANDARD TABLE OF CCSTK, " | |||
| lt_wam | TYPE STANDARD TABLE OF CCSTM, " | |||
| lt_was | TYPE STANDARD TABLE OF CCSTS, " | |||
| lt_wat | TYPE STANDARD TABLE OF CCSTT. " |
|   CALL FUNCTION 'CSDE_BOM_AENNR_TABLE' "NOTRANSL: Alle Stücklisten, die durch Änderungen an einer Änderungsnummer |
| EXPORTING | ||
| EAENNR | = lv_eaennr | |
| FLG_WA_ONLY | = lv_flg_wa_only | |
| FLG_UNIT_EXPL | = lv_flg_unit_expl | |
| TABLES | ||
| WA | = lt_wa | |
| WAD | = lt_wad | |
| WAE | = lt_wae | |
| WAK | = lt_wak | |
| WAM | = lt_wam | |
| WAS | = lt_was | |
| WAT | = lt_wat | |
| . " CSDE_BOM_AENNR_TABLE | ||
ABAP code using 7.40 inline data declarations to call FM CSDE_BOM_AENNR_TABLE
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 AENNR FROM AENR INTO @DATA(ld_eaennr). | ||||
| "SELECT single XFELD FROM CSDATA INTO @DATA(ld_flg_wa_only). | ||||
| DATA(ld_flg_wa_only) | = ' '. | |||
| "SELECT single XFELD FROM CSDATA INTO @DATA(ld_flg_unit_expl). | ||||
Search for further information about these or an SAP related objects