SAP Function Modules

MC_GE_STRUKTUR SAP Function module







MC_GE_STRUKTUR 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 MC_GE_STRUKTUR into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM MC_GE_STRUKTUR - MC GE STRUKTUR





CALL FUNCTION 'MC_GE_STRUKTUR' "
  EXPORTING
*   idatub = SY-DATUM           " sy-datum      To-date for product group explosion
*   idatuv = SY-DATUM           " sy-datum      From-date for product group explosion
*   ioperation = '1'            " char01
    iplobj =                    " pgan-plobo    Product group number
  TABLES
    ipgmit =                    " pgan          Table of product group members (materials)
  EXCEPTIONS
    NO_MEMBERS_FOUND = 1        "
    .  "  MC_GE_STRUKTUR

ABAP code example for Function Module MC_GE_STRUKTUR





The ABAP code below is a full code listing to execute function module MC_GE_STRUKTUR 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_ipgmit  TYPE STANDARD TABLE OF PGAN,"TABLES PARAM
wa_ipgmit  LIKE LINE OF it_ipgmit .

DATA(ld_idatub) = '20210129'.
DATA(ld_idatuv) = '20210129'.
DATA(ld_ioperation) = '20210129'.

SELECT single PLOBO
FROM PGAN
INTO @DATA(ld_iplobj).


"populate fields of struture and append to itab
append wa_ipgmit to it_ipgmit. . CALL FUNCTION 'MC_GE_STRUKTUR' EXPORTING * idatub = ld_idatub * idatuv = ld_idatuv * ioperation = ld_ioperation iplobj = ld_iplobj TABLES ipgmit = it_ipgmit EXCEPTIONS NO_MEMBERS_FOUND = 1 . " MC_GE_STRUKTUR
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_idatub  TYPE SY-DATUM ,
it_ipgmit  TYPE STANDARD TABLE OF PGAN ,
wa_ipgmit  LIKE LINE OF it_ipgmit,
ld_idatuv  TYPE SY-DATUM ,
ld_ioperation  TYPE CHAR01 ,
ld_iplobj  TYPE PGAN-PLOBO .

ld_idatub = '20210129'.

"populate fields of struture and append to itab
append wa_ipgmit to it_ipgmit.
ld_idatuv = '20210129'.
ld_ioperation = '20210129'.

SELECT single PLOBO
FROM PGAN
INTO ld_iplobj.

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 MC_GE_STRUKTUR or its description.