SAP Function Modules

T482_READ SAP Function module







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

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


Pattern for FM T482_READ - T482 READ





CALL FUNCTION 'T482_READ' "
* EXPORTING
*   i_termkz =                  " t482-termkz
*   i_flg_nterm =               "
*   i_flg_rueckw =              "
*   i_flg_vorw =                "
*   i_eck_uhrzt =               " t482-eck_uhrzt
*   i_spras =                   " t482t-spras
  IMPORTING
    t482_exp =                  " t482
    e_termkz =                  " t482-termkz
    e_text =                    " t482t-txt
  EXCEPTIONS
    NO_ENTRY = 1                "               No entry found in table
    .  "  T482_READ

ABAP code example for Function Module T482_READ





The ABAP code below is a full code listing to execute function module T482_READ 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:
ld_t482_exp  TYPE T482 ,
ld_e_termkz  TYPE T482-TERMKZ ,
ld_e_text  TYPE T482T-TXT .


SELECT single TERMKZ
FROM T482
INTO @DATA(ld_i_termkz).

DATA(ld_i_flg_nterm) = 'some text here'.
DATA(ld_i_flg_rueckw) = 'some text here'.
DATA(ld_i_flg_vorw) = 'some text here'.

SELECT single ECK_UHRZT
FROM T482
INTO @DATA(ld_i_eck_uhrzt).


SELECT single SPRAS
FROM T482T
INTO @DATA(ld_i_spras).
. CALL FUNCTION 'T482_READ' * EXPORTING * i_termkz = ld_i_termkz * i_flg_nterm = ld_i_flg_nterm * i_flg_rueckw = ld_i_flg_rueckw * i_flg_vorw = ld_i_flg_vorw * i_eck_uhrzt = ld_i_eck_uhrzt * i_spras = ld_i_spras IMPORTING t482_exp = ld_t482_exp e_termkz = ld_e_termkz e_text = ld_e_text EXCEPTIONS NO_ENTRY = 1 . " T482_READ
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_t482_exp  TYPE T482 ,
ld_i_termkz  TYPE T482-TERMKZ ,
ld_e_termkz  TYPE T482-TERMKZ ,
ld_i_flg_nterm  TYPE STRING ,
ld_e_text  TYPE T482T-TXT ,
ld_i_flg_rueckw  TYPE STRING ,
ld_i_flg_vorw  TYPE STRING ,
ld_i_eck_uhrzt  TYPE T482-ECK_UHRZT ,
ld_i_spras  TYPE T482T-SPRAS .


SELECT single TERMKZ
FROM T482
INTO ld_i_termkz.

ld_i_flg_nterm = 'some text here'.
ld_i_flg_rueckw = 'some text here'.
ld_i_flg_vorw = 'some text here'.

SELECT single ECK_UHRZT
FROM T482
INTO ld_i_eck_uhrzt.


SELECT single SPRAS
FROM T482T
INTO ld_i_spras.

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