SAP Function Modules

TTE_4_DOCUMENT_SELECT_AR SAP Function module - Get list of TTE documents from archive







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

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


Pattern for FM TTE_4_DOCUMENT_SELECT_AR - TTE 4 DOCUMENT SELECT AR





CALL FUNCTION 'TTE_4_DOCUMENT_SELECT_AR' "Get list of TTE documents from archive
* EXPORTING
*   it_obj_key =                " table         Select option fur OBJ_KEY
*   it_chng_date =              " table         Select option fur CHNG_DATE
*   it_crea_date =              " table         Select option fur CREA_DATE
*   it_crea_user =              " table         Select option fur CREA_USER
*   i_only_cancelled = SPACE    " boole_d       'X' -> get only cancelled documents
*   i_use_infosys = 'X'         " boole_d       'X' -> automatic access to the archive
*   it_arch_sel =               " as_t_rng_archiv  Ranges Table for Archive File Selection
  TABLES
    t_document =                " ttepdt_document  TTE Persistency Document
    .  "  TTE_4_DOCUMENT_SELECT_AR

ABAP code example for Function Module TTE_4_DOCUMENT_SELECT_AR





The ABAP code below is a full code listing to execute function module TTE_4_DOCUMENT_SELECT_AR 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_t_document  TYPE STANDARD TABLE OF TTEPDT_DOCUMENT,"TABLES PARAM
wa_t_document  LIKE LINE OF it_t_document .

DATA(ld_it_obj_key) = 'Check type of data required'.
DATA(ld_it_chng_date) = 'Check type of data required'.
DATA(ld_it_crea_date) = 'Check type of data required'.
DATA(ld_it_crea_user) = 'Check type of data required'.
DATA(ld_i_only_cancelled) = 'Check type of data required'.
DATA(ld_i_use_infosys) = 'Check type of data required'.
DATA(ld_it_arch_sel) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_document to it_t_document. . CALL FUNCTION 'TTE_4_DOCUMENT_SELECT_AR' * EXPORTING * it_obj_key = ld_it_obj_key * it_chng_date = ld_it_chng_date * it_crea_date = ld_it_crea_date * it_crea_user = ld_it_crea_user * i_only_cancelled = ld_i_only_cancelled * i_use_infosys = ld_i_use_infosys * it_arch_sel = ld_it_arch_sel TABLES t_document = it_t_document . " TTE_4_DOCUMENT_SELECT_AR
IF SY-SUBRC EQ 0. "All OK 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_it_obj_key  TYPE TABLE ,
it_t_document  TYPE STANDARD TABLE OF TTEPDT_DOCUMENT ,
wa_t_document  LIKE LINE OF it_t_document,
ld_it_chng_date  TYPE TABLE ,
ld_it_crea_date  TYPE TABLE ,
ld_it_crea_user  TYPE TABLE ,
ld_i_only_cancelled  TYPE BOOLE_D ,
ld_i_use_infosys  TYPE BOOLE_D ,
ld_it_arch_sel  TYPE AS_T_RNG_ARCHIV .

ld_it_obj_key = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_document to it_t_document.
ld_it_chng_date = 'Check type of data required'.
ld_it_crea_date = 'Check type of data required'.
ld_it_crea_user = 'Check type of data required'.
ld_i_only_cancelled = 'Check type of data required'.
ld_i_use_infosys = 'Check type of data required'.
ld_it_arch_sel = '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 TTE_4_DOCUMENT_SELECT_AR or its description.