SAP Function Modules

SDU_MODEL_GRAPHIC SAP Function module - UDM Graphic: nested data models ( Display, Maintain )







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

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


Pattern for FM SDU_MODEL_GRAPHIC - SDU MODEL GRAPHIC





CALL FUNCTION 'SDU_MODEL_GRAPHIC' "UDM Graphic: nested data models ( Display, Maintain )
* EXPORTING
*   langu = SY-LANGU            " dm02t-sprache  Language
*   sel_mode = 'U'              "               Mode: U=undeleted L=deleted, otherwise: all
*   cua_status = SPACE          " sy-pfkey      CUA status (space -> default status)
*   readonly = 'Y'              " dmctl-read_only
  TABLES
    entities =                  " dm02v         Out: entity types
    hierarchy =                 " dm41s         Out: hierarchy
    hierarchy_graphic =         " dm41s         Out: graphical hierarchy
    models =                    " dm40v         Out: models
    models_graphic =            " dm40i         Out: graphical models
    object_list =               " dmobject      In: object list (all selected)
    relations =                 " dm42v         Out: relationships
    speccats =                  " dm45v         Out: specialization categories
    specials =                  " dm46s         Out: specializations
  EXCEPTIONS
    NOT_FOUND = 1               "
    .  "  SDU_MODEL_GRAPHIC

ABAP code example for Function Module SDU_MODEL_GRAPHIC





The ABAP code below is a full code listing to execute function module SDU_MODEL_GRAPHIC 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_entities  TYPE STANDARD TABLE OF DM02V,"TABLES PARAM
wa_entities  LIKE LINE OF it_entities ,
it_hierarchy  TYPE STANDARD TABLE OF DM41S,"TABLES PARAM
wa_hierarchy  LIKE LINE OF it_hierarchy ,
it_hierarchy_graphic  TYPE STANDARD TABLE OF DM41S,"TABLES PARAM
wa_hierarchy_graphic  LIKE LINE OF it_hierarchy_graphic ,
it_models  TYPE STANDARD TABLE OF DM40V,"TABLES PARAM
wa_models  LIKE LINE OF it_models ,
it_models_graphic  TYPE STANDARD TABLE OF DM40I,"TABLES PARAM
wa_models_graphic  LIKE LINE OF it_models_graphic ,
it_object_list  TYPE STANDARD TABLE OF DMOBJECT,"TABLES PARAM
wa_object_list  LIKE LINE OF it_object_list ,
it_relations  TYPE STANDARD TABLE OF DM42V,"TABLES PARAM
wa_relations  LIKE LINE OF it_relations ,
it_speccats  TYPE STANDARD TABLE OF DM45V,"TABLES PARAM
wa_speccats  LIKE LINE OF it_speccats ,
it_specials  TYPE STANDARD TABLE OF DM46S,"TABLES PARAM
wa_specials  LIKE LINE OF it_specials .


SELECT single SPRACHE
FROM DM02T
INTO @DATA(ld_langu).

DATA(ld_sel_mode) = 'some text here'.
DATA(ld_cua_status) = 'some text here'.

DATA(ld_readonly) = some text here

"populate fields of struture and append to itab
append wa_entities to it_entities.

"populate fields of struture and append to itab
append wa_hierarchy to it_hierarchy.

"populate fields of struture and append to itab
append wa_hierarchy_graphic to it_hierarchy_graphic.

"populate fields of struture and append to itab
append wa_models to it_models.

"populate fields of struture and append to itab
append wa_models_graphic to it_models_graphic.

"populate fields of struture and append to itab
append wa_object_list to it_object_list.

"populate fields of struture and append to itab
append wa_relations to it_relations.

"populate fields of struture and append to itab
append wa_speccats to it_speccats.

"populate fields of struture and append to itab
append wa_specials to it_specials. . CALL FUNCTION 'SDU_MODEL_GRAPHIC' * EXPORTING * langu = ld_langu * sel_mode = ld_sel_mode * cua_status = ld_cua_status * readonly = ld_readonly TABLES entities = it_entities hierarchy = it_hierarchy hierarchy_graphic = it_hierarchy_graphic models = it_models models_graphic = it_models_graphic object_list = it_object_list relations = it_relations speccats = it_speccats specials = it_specials EXCEPTIONS NOT_FOUND = 1 . " SDU_MODEL_GRAPHIC
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_langu  TYPE DM02T-SPRACHE ,
it_entities  TYPE STANDARD TABLE OF DM02V ,
wa_entities  LIKE LINE OF it_entities,
ld_sel_mode  TYPE STRING ,
it_hierarchy  TYPE STANDARD TABLE OF DM41S ,
wa_hierarchy  LIKE LINE OF it_hierarchy,
ld_cua_status  TYPE SY-PFKEY ,
it_hierarchy_graphic  TYPE STANDARD TABLE OF DM41S ,
wa_hierarchy_graphic  LIKE LINE OF it_hierarchy_graphic,
ld_readonly  TYPE DMCTL-READ_ONLY ,
it_models  TYPE STANDARD TABLE OF DM40V ,
wa_models  LIKE LINE OF it_models,
it_models_graphic  TYPE STANDARD TABLE OF DM40I ,
wa_models_graphic  LIKE LINE OF it_models_graphic,
it_object_list  TYPE STANDARD TABLE OF DMOBJECT ,
wa_object_list  LIKE LINE OF it_object_list,
it_relations  TYPE STANDARD TABLE OF DM42V ,
wa_relations  LIKE LINE OF it_relations,
it_speccats  TYPE STANDARD TABLE OF DM45V ,
wa_speccats  LIKE LINE OF it_speccats,
it_specials  TYPE STANDARD TABLE OF DM46S ,
wa_specials  LIKE LINE OF it_specials.


SELECT single SPRACHE
FROM DM02T
INTO ld_langu.


"populate fields of struture and append to itab
append wa_entities to it_entities.
ld_sel_mode = 'some text here'.

"populate fields of struture and append to itab
append wa_hierarchy to it_hierarchy.
ld_cua_status = 'some text here'.

"populate fields of struture and append to itab
append wa_hierarchy_graphic to it_hierarchy_graphic.

ld_readonly = some text here

"populate fields of struture and append to itab
append wa_models to it_models.

"populate fields of struture and append to itab
append wa_models_graphic to it_models_graphic.

"populate fields of struture and append to itab
append wa_object_list to it_object_list.

"populate fields of struture and append to itab
append wa_relations to it_relations.

"populate fields of struture and append to itab
append wa_speccats to it_speccats.

"populate fields of struture and append to itab
append wa_specials to it_specials.

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