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
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
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).
| it_t_document | TYPE STANDARD TABLE OF TTEPDT_DOCUMENT,"TABLES PARAM |
| wa_t_document | LIKE LINE OF it_t_document . |
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 . |
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.
TTE_4_DOCUMENT_SELECT_AR - Get list of TTE documents from archive TTE_4_DOCUMENT_SAVE_MULTI - Save multible TTE Document persistency TTE_4_DOCUMENT_SAVE_HEADER - Save Header of copied TTE Document. TTE_4_DOCUMENT_SAVE - Save one TTE Document persistency TTE_4_DOCUMENT_LIST_GET - Get Persistency Document List TTE_4_DOCUMENT_HEADER_UPDATE - Document Header Update Task for copied TTE Document