SAP Function Modules

JBD_FOBJ_ARCH_CHECK SAP Function module - Betriebswirtschaftliche Prüfungen Objekt JB_FOCF







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

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


Pattern for FM JBD_FOBJ_ARCH_CHECK - JBD FOBJ ARCH CHECK





CALL FUNCTION 'JBD_FOBJ_ARCH_CHECK' "Betriebswirtschaftliche Prüfungen Objekt JB_FOCF
  EXPORTING
    c_log_object =              " balobj_d      Anwendungs-Log: Objektname (Applikationskürzel)
  CHANGING
    c_tab_archiveable =         " jbd_tab_jbdobj1_rt  Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt VTMD_ARCH
    c_tab_loan_archiveable =    " jbd_tab_tjbd_vdarl_arch_rt  Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt LOAN_ARCH
    c_tab_coll_archiveable =    " jbd_tab_klsi01_rt  Tabellentyp für Tabelle JBDOBJ1
    c_tab_fcty_archiveable =    " jbd_tab_klfaz01_rt  Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt FCTY_ARCH
    c_tab_getr_archiveable =    " jbd_tab_jbrdbko_rt  Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt GETR_ARCH
    c_tab_vtmd_archiveable =    " jbd_tab_jbdvtmd_rt  Tabellentyp zum Lesen/Prüfen Residenzzeit Objekt VTMD_ARCH
    .  "  JBD_FOBJ_ARCH_CHECK

ABAP code example for Function Module JBD_FOBJ_ARCH_CHECK





The ABAP code below is a full code listing to execute function module JBD_FOBJ_ARCH_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).


DATA(ld_c_tab_archiveable) = 'Check type of data required'.
DATA(ld_c_tab_loan_archiveable) = 'Check type of data required'.
DATA(ld_c_tab_coll_archiveable) = 'Check type of data required'.
DATA(ld_c_tab_fcty_archiveable) = 'Check type of data required'.
DATA(ld_c_tab_getr_archiveable) = 'Check type of data required'.
DATA(ld_c_tab_vtmd_archiveable) = 'Check type of data required'.
DATA(ld_c_log_object) = 'Check type of data required'. . CALL FUNCTION 'JBD_FOBJ_ARCH_CHECK' EXPORTING c_log_object = ld_c_log_object CHANGING c_tab_archiveable = ld_c_tab_archiveable c_tab_loan_archiveable = ld_c_tab_loan_archiveable c_tab_coll_archiveable = ld_c_tab_coll_archiveable c_tab_fcty_archiveable = ld_c_tab_fcty_archiveable c_tab_getr_archiveable = ld_c_tab_getr_archiveable c_tab_vtmd_archiveable = ld_c_tab_vtmd_archiveable . " JBD_FOBJ_ARCH_CHECK
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_c_tab_archiveable  TYPE JBD_TAB_JBDOBJ1_RT ,
ld_c_log_object  TYPE BALOBJ_D ,
ld_c_tab_loan_archiveable  TYPE JBD_TAB_TJBD_VDARL_ARCH_RT ,
ld_c_tab_coll_archiveable  TYPE JBD_TAB_KLSI01_RT ,
ld_c_tab_fcty_archiveable  TYPE JBD_TAB_KLFAZ01_RT ,
ld_c_tab_getr_archiveable  TYPE JBD_TAB_JBRDBKO_RT ,
ld_c_tab_vtmd_archiveable  TYPE JBD_TAB_JBDVTMD_RT .

ld_c_tab_archiveable = 'Check type of data required'.
ld_c_log_object = 'Check type of data required'.
ld_c_tab_loan_archiveable = 'Check type of data required'.
ld_c_tab_coll_archiveable = 'Check type of data required'.
ld_c_tab_fcty_archiveable = 'Check type of data required'.
ld_c_tab_getr_archiveable = 'Check type of data required'.
ld_c_tab_vtmd_archiveable = '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 JBD_FOBJ_ARCH_CHECK or its description.