SAP Function Modules

SLW_TRAN2_SHOW_DEVC_POPUP_TABL SAP Function module







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

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


Pattern for FM SLW_TRAN2_SHOW_DEVC_POPUP_TABL - SLW TRAN2 SHOW DEVC POPUP TABL





CALL FUNCTION 'SLW_TRAN2_SHOW_DEVC_POPUP_TABL' "
* EXPORTING
*   language = ''               " t002-spras
*   check_basis = ''            " c
*   show_only = ''              " c
  TABLES
    devc_tab =                  " slwtr_devc_tab
*   devc_tab_basis =            " slwtr_devc_tab
  EXCEPTIONS
    DB_PROBLEM = 1              "
    .  "  SLW_TRAN2_SHOW_DEVC_POPUP_TABL

ABAP code example for Function Module SLW_TRAN2_SHOW_DEVC_POPUP_TABL





The ABAP code below is a full code listing to execute function module SLW_TRAN2_SHOW_DEVC_POPUP_TABL 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_devc_tab  TYPE STANDARD TABLE OF SLWTR_DEVC_TAB,"TABLES PARAM
wa_devc_tab  LIKE LINE OF it_devc_tab ,
it_devc_tab_basis  TYPE STANDARD TABLE OF SLWTR_DEVC_TAB,"TABLES PARAM
wa_devc_tab_basis  LIKE LINE OF it_devc_tab_basis .


SELECT single SPRAS
FROM T002
INTO @DATA(ld_language).

DATA(ld_check_basis) = 'Check type of data required'.
DATA(ld_show_only) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_devc_tab to it_devc_tab.

"populate fields of struture and append to itab
append wa_devc_tab_basis to it_devc_tab_basis. . CALL FUNCTION 'SLW_TRAN2_SHOW_DEVC_POPUP_TABL' * EXPORTING * language = ld_language * check_basis = ld_check_basis * show_only = ld_show_only TABLES devc_tab = it_devc_tab * devc_tab_basis = it_devc_tab_basis EXCEPTIONS DB_PROBLEM = 1 . " SLW_TRAN2_SHOW_DEVC_POPUP_TABL
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_language  TYPE T002-SPRAS ,
it_devc_tab  TYPE STANDARD TABLE OF SLWTR_DEVC_TAB ,
wa_devc_tab  LIKE LINE OF it_devc_tab,
ld_check_basis  TYPE C ,
it_devc_tab_basis  TYPE STANDARD TABLE OF SLWTR_DEVC_TAB ,
wa_devc_tab_basis  LIKE LINE OF it_devc_tab_basis,
ld_show_only  TYPE C .


SELECT single SPRAS
FROM T002
INTO ld_language.


"populate fields of struture and append to itab
append wa_devc_tab to it_devc_tab.
ld_check_basis = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_devc_tab_basis to it_devc_tab_basis.
ld_show_only = 'Check type of data required'.

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