JBD_FOBJ_ARCH_RT_CHECK 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 JBD_FOBJ_ARCH_RT_CHECK into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JBD_FOBJ_ARCH_RT
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'JBD_FOBJ_ARCH_RT_CHECK' "Baustein zum Prüfen gegen die Residenzzeit
EXPORTING
i_tab_archive = " jbd_tab_jbdobj1_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt FOBJ_ARCH
i_tas_cl_enddates = " jbd_tas_cl_enddates Sortierter Tabellentyp für die Pufferung von FO-CL_Endedaten
IMPORTING
e_cnt_expired = " sydbcnt Anzahl Objekte mit abgelaufener Residenzzeit
e_cnt_follow_up = " sydbcnt Anzahl Objekte für Wiedervorlage
CHANGING
c_tab_archivable = " jbd_tab_jbdobj1_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt FOBJ_ARCH
c_tab_not_archivable = " jbd_tab_jbdobj1_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt FOBJ_ARCH
c_tab_archiveable_loan = " jbd_tab_tjbd_vdarl_arch_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt LOAN_ARCH
c_tab_archiveable_coll = " jbd_tab_klsi01_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt COLL_ARCH
c_tab_archiveable_fcty = " jbd_tab_klfaz01_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt FCTY_ARCH
c_tab_archiveable_getr = " jbd_tab_jbrdbko_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt GETR_ARCH
c_tab_archiveable_vtmd = " jbd_tab_jbdvtmd_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt VTMD_ARCH
* c_tab_archiveable_gpan = " jbd_tab_jbrsvgaphd2_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt GPAN_ARCH
* c_tab_archiveable_gptp = " jbr_tab_jbroz_rt Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt GPTP_ARCH
. " JBD_FOBJ_ARCH_RT_CHECK
The ABAP code below is a full code listing to execute function module JBD_FOBJ_ARCH_RT_CHECK 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).
| ld_e_cnt_expired | TYPE SYDBCNT , |
| ld_e_cnt_follow_up | TYPE SYDBCNT . |
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_c_tab_archivable | TYPE JBD_TAB_JBDOBJ1_RT , |
| ld_e_cnt_expired | TYPE SYDBCNT , |
| ld_i_tab_archive | TYPE JBD_TAB_JBDOBJ1_RT , |
| ld_c_tab_not_archivable | TYPE JBD_TAB_JBDOBJ1_RT , |
| ld_e_cnt_follow_up | TYPE SYDBCNT , |
| ld_i_tas_cl_enddates | TYPE JBD_TAS_CL_ENDDATES , |
| ld_c_tab_archiveable_loan | TYPE JBD_TAB_TJBD_VDARL_ARCH_RT , |
| ld_c_tab_archiveable_coll | TYPE JBD_TAB_KLSI01_RT , |
| ld_c_tab_archiveable_fcty | TYPE JBD_TAB_KLFAZ01_RT , |
| ld_c_tab_archiveable_getr | TYPE JBD_TAB_JBRDBKO_RT , |
| ld_c_tab_archiveable_vtmd | TYPE JBD_TAB_JBDVTMD_RT , |
| ld_c_tab_archiveable_gpan | TYPE JBD_TAB_JBRSVGAPHD2_RT , |
| ld_c_tab_archiveable_gptp | TYPE JBR_TAB_JBROZ_RT . |
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 JBD_FOBJ_ARCH_RT_CHECK or its description.
JBD_FOBJ_ARCH_RT_CHECK - Baustein zum Prüfen gegen die Residenzzeit JBD_FOBJ_ARCH_PTSET - Paketvorlage sichern JBD_FOBJ_ARCH_PTGET - Paketvorlage lesen JBD_FOBJ_ARCH_PP_CONV_I2E - Konvertierung ext. Schlüssel für PV: intern -> extern JBD_FOBJ_ARCH_PP_CONV_E2I - Konvertierung ext. Schlüssel für PV: extern -> intern JBD_FOBJ_ARCH_PACK_WTAB_CREATE - Aufbau WHERE-Tab zur Selektion auf führende Anwendungstabelle