SAP Function Modules

SDU_SPECCAT_FETCH SAP Function module







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

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


Pattern for FM SDU_SPECCAT_FETCH - SDU SPECCAT FETCH





CALL FUNCTION 'SDU_SPECCAT_FETCH' "
  EXPORTING
    entity =                    " dm45l-entid   Entity type
    specid =                    " dm45l-spezid  Specializ. category
*   as4local = 'A'              " dm45l-as4local  Validity
*   langu = SY-LANGU            " sy-langu      Language
*   longtxt = '*'               " dm45t-langbez
  TABLES
    speccats =                  " dm45v         Specialization categories
  EXCEPTIONS
    NOT_FOUND = 1               "               Specialization category not found
    .  "  SDU_SPECCAT_FETCH

ABAP code example for Function Module SDU_SPECCAT_FETCH





The ABAP code below is a full code listing to execute function module SDU_SPECCAT_FETCH 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_speccats  TYPE STANDARD TABLE OF DM45V,"TABLES PARAM
wa_speccats  LIKE LINE OF it_speccats .


SELECT single ENTID
FROM DM45L
INTO @DATA(ld_entity).


SELECT single SPEZID
FROM DM45L
INTO @DATA(ld_specid).


SELECT single AS4LOCAL
FROM DM45L
INTO @DATA(ld_as4local).

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

SELECT single LANGBEZ
FROM DM45T
INTO @DATA(ld_longtxt).


"populate fields of struture and append to itab
append wa_speccats to it_speccats. . CALL FUNCTION 'SDU_SPECCAT_FETCH' EXPORTING entity = ld_entity specid = ld_specid * as4local = ld_as4local * langu = ld_langu * longtxt = ld_longtxt TABLES speccats = it_speccats EXCEPTIONS NOT_FOUND = 1 . " SDU_SPECCAT_FETCH
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_entity  TYPE DM45L-ENTID ,
it_speccats  TYPE STANDARD TABLE OF DM45V ,
wa_speccats  LIKE LINE OF it_speccats,
ld_specid  TYPE DM45L-SPEZID ,
ld_as4local  TYPE DM45L-AS4LOCAL ,
ld_langu  TYPE SY-LANGU ,
ld_longtxt  TYPE DM45T-LANGBEZ .


SELECT single ENTID
FROM DM45L
INTO ld_entity.


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

SELECT single SPEZID
FROM DM45L
INTO ld_specid.


SELECT single AS4LOCAL
FROM DM45L
INTO ld_as4local.

ld_langu = 'Check type of data required'.

SELECT single LANGBEZ
FROM DM45T
INTO ld_longtxt.

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