SAP Function Modules

JIT06_BOM_EXPLOSION SAP Function module







JIT06_BOM_EXPLOSION is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name JIT06_BOM_EXPLOSION into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: JIT06
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM JIT06_BOM_EXPLOSION - JIT06 BOM EXPLOSION





CALL FUNCTION 'JIT06_BOM_EXPLOSION' "
  EXPORTING
    matnr_iv =                  " mara-matnr
    werks_iv =                  " marc-werks
*   cuobj_iv =                  " cuobj         Configuration (Internal Object Number)
*   verid_iv =                  " mkal-verid
    datum_iv =                  " sy-datum
    menge_iv =                  " plaf-gsmng
  TABLES
    mdpm_et =                   " mdpm
  EXCEPTIONS
    NO_BOM_FOUND = 1            "
    .  "  JIT06_BOM_EXPLOSION

ABAP code example for Function Module JIT06_BOM_EXPLOSION





The ABAP code below is a full code listing to execute function module JIT06_BOM_EXPLOSION including all data declarations. The code uses 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 original method of declaring data variables up front. 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).

DATA:
it_mdpm_et  TYPE STANDARD TABLE OF MDPM,"TABLES PARAM
wa_mdpm_et  LIKE LINE OF it_mdpm_et .


SELECT single MATNR
FROM MARA
INTO @DATA(ld_matnr_iv).


SELECT single WERKS
FROM MARC
INTO @DATA(ld_werks_iv).

DATA(ld_cuobj_iv) = 'Check type of data required'.

SELECT single VERID
FROM MKAL
INTO @DATA(ld_verid_iv).

DATA(ld_datum_iv) = '20210129'.

SELECT single GSMNG
FROM PLAF
INTO @DATA(ld_menge_iv).


"populate fields of struture and append to itab
append wa_mdpm_et to it_mdpm_et. . CALL FUNCTION 'JIT06_BOM_EXPLOSION' EXPORTING matnr_iv = ld_matnr_iv werks_iv = ld_werks_iv * cuobj_iv = ld_cuobj_iv * verid_iv = ld_verid_iv datum_iv = ld_datum_iv menge_iv = ld_menge_iv TABLES mdpm_et = it_mdpm_et EXCEPTIONS NO_BOM_FOUND = 1 . " JIT06_BOM_EXPLOSION
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_matnr_iv  TYPE MARA-MATNR ,
it_mdpm_et  TYPE STANDARD TABLE OF MDPM ,
wa_mdpm_et  LIKE LINE OF it_mdpm_et,
ld_werks_iv  TYPE MARC-WERKS ,
ld_cuobj_iv  TYPE CUOBJ ,
ld_verid_iv  TYPE MKAL-VERID ,
ld_datum_iv  TYPE SY-DATUM ,
ld_menge_iv  TYPE PLAF-GSMNG .


SELECT single MATNR
FROM MARA
INTO ld_matnr_iv.


"populate fields of struture and append to itab
append wa_mdpm_et to it_mdpm_et.

SELECT single WERKS
FROM MARC
INTO ld_werks_iv.

ld_cuobj_iv = '20210129'.

SELECT single VERID
FROM MKAL
INTO ld_verid_iv.

ld_datum_iv = '20210129'.

SELECT single GSMNG
FROM PLAF
INTO ld_menge_iv.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name JIT06_BOM_EXPLOSION or its description.