SAP JBD_FOBJ_ARCH_CHECK Function Module for Betriebswirtschaftliche Prüfungen Objekt JB_FOCF
JBD_FOBJ_ARCH_CHECK is a standard jbd fobj arch check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Betriebswirtschaftliche Prüfungen Objekt JB_FOCF processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for jbd fobj arch check FM, simply by entering the name JBD_FOBJ_ARCH_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBD_FOBJ_ARCH_APPL
Program Name: SAPLJBD_FOBJ_ARCH_APPL
Main Program: SAPLJBD_FOBJ_ARCH_APPL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JBD_FOBJ_ARCH_CHECK pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'JBD_FOBJ_ARCH_CHECK'"Betriebswirtschaftliche Prüfungen Objekt JB_FOCF.
EXPORTING
C_LOG_OBJECT = "Anwendungs-Log: Objektname (Applikationskürzel)
CHANGING
C_TAB_ARCHIVEABLE = "Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt VTMD_ARCH
C_TAB_LOAN_ARCHIVEABLE = "Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt LOAN_ARCH
C_TAB_COLL_ARCHIVEABLE = "Tabellentyp für Tabelle JBDOBJ1
C_TAB_FCTY_ARCHIVEABLE = "Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt FCTY_ARCH
C_TAB_GETR_ARCHIVEABLE = "Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt GETR_ARCH
C_TAB_VTMD_ARCHIVEABLE = "Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt VTMD_ARCH
IMPORTING Parameters details for JBD_FOBJ_ARCH_CHECK
C_LOG_OBJECT - Anwendungs-Log: Objektname (Applikationskürzel)
Data type: BALOBJ_DOptional: No
Call by Reference: Yes
CHANGING Parameters details for JBD_FOBJ_ARCH_CHECK
C_TAB_ARCHIVEABLE - Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt VTMD_ARCH
Data type: JBD_TAB_JBDOBJ1_RTOptional: No
Call by Reference: Yes
C_TAB_LOAN_ARCHIVEABLE - Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt LOAN_ARCH
Data type: JBD_TAB_TJBD_VDARL_ARCH_RTOptional: No
Call by Reference: Yes
C_TAB_COLL_ARCHIVEABLE - Tabellentyp für Tabelle JBDOBJ1
Data type: JBD_TAB_KLSI01_RTOptional: No
Call by Reference: Yes
C_TAB_FCTY_ARCHIVEABLE - Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt FCTY_ARCH
Data type: JBD_TAB_KLFAZ01_RTOptional: No
Call by Reference: Yes
C_TAB_GETR_ARCHIVEABLE - Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt GETR_ARCH
Data type: JBD_TAB_JBRDBKO_RTOptional: No
Call by Reference: Yes
C_TAB_VTMD_ARCHIVEABLE - Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt VTMD_ARCH
Data type: JBD_TAB_JBDVTMD_RTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for JBD_FOBJ_ARCH_CHECK Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_c_log_object | TYPE BALOBJ_D, " | |||
| lv_c_tab_archiveable | TYPE JBD_TAB_JBDOBJ1_RT, " | |||
| lv_c_tab_loan_archiveable | TYPE JBD_TAB_TJBD_VDARL_ARCH_RT, " | |||
| lv_c_tab_coll_archiveable | TYPE JBD_TAB_KLSI01_RT, " | |||
| lv_c_tab_fcty_archiveable | TYPE JBD_TAB_KLFAZ01_RT, " | |||
| lv_c_tab_getr_archiveable | TYPE JBD_TAB_JBRDBKO_RT, " | |||
| lv_c_tab_vtmd_archiveable | TYPE JBD_TAB_JBDVTMD_RT. " |
|   CALL FUNCTION 'JBD_FOBJ_ARCH_CHECK' "Betriebswirtschaftliche Prüfungen Objekt JB_FOCF |
| EXPORTING | ||
| C_LOG_OBJECT | = lv_c_log_object | |
| CHANGING | ||
| C_TAB_ARCHIVEABLE | = lv_c_tab_archiveable | |
| C_TAB_LOAN_ARCHIVEABLE | = lv_c_tab_loan_archiveable | |
| C_TAB_COLL_ARCHIVEABLE | = lv_c_tab_coll_archiveable | |
| C_TAB_FCTY_ARCHIVEABLE | = lv_c_tab_fcty_archiveable | |
| C_TAB_GETR_ARCHIVEABLE | = lv_c_tab_getr_archiveable | |
| C_TAB_VTMD_ARCHIVEABLE | = lv_c_tab_vtmd_archiveable | |
| . " JBD_FOBJ_ARCH_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM JBD_FOBJ_ARCH_CHECK
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects