SAP JBD_EXPORT_OBJECT_REL_CHECK Function Module for Exportrelevanzprüfung für Originärgeschäft









JBD_EXPORT_OBJECT_REL_CHECK is a standard jbd export object rel 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 Exportrelevanzprüfung für Originärgeschäft 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 export object rel check FM, simply by entering the name JBD_EXPORT_OBJECT_REL_CHECK into the relevant SAP transaction such as SE37 or SE38.

Function Group: JBFO
Program Name: SAPLJBFO
Main Program: SAPLJBFO
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function JBD_EXPORT_OBJECT_REL_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_EXPORT_OBJECT_REL_CHECK'"Exportrelevanzprüfung für Originärgeschäft
EXPORTING
I_EXPOBJTYPE = "Exportobjekttyp

IMPORTING
E_RELEVANCE = "Relevanzflag

CHANGING
* I_VDARL = "
* I_JBRDBRTBSTD = "
* I_JBDSERV = "
* I_VWPANLA = "
* I_TRST = "
* I_TRFT = "
* I_KLFAZ01 = "
* I_KLSI01 = "
* I_VTBFHA = "
* I_VWBEKI = "
* I_JBDKKON = "
* I_JBDUBST = "
* I_JBIBKK = "
* I_JBDBSTD = "
* I_VAR_DAT = "
* I_JBRDBKO = "
.



IMPORTING Parameters details for JBD_EXPORT_OBJECT_REL_CHECK

I_EXPOBJTYPE - Exportobjekttyp

Data type: JBD_DTE_EXPOBJ
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for JBD_EXPORT_OBJECT_REL_CHECK

E_RELEVANCE - Relevanzflag

Data type: JBDEXPRELFLG
Optional: No
Call by Reference: Yes

CHANGING Parameters details for JBD_EXPORT_OBJECT_REL_CHECK

I_VDARL -

Data type: JBFO_VDARL_LINE
Optional: Yes
Call by Reference: Yes

I_JBRDBRTBSTD -

Data type: JBFO_JBRDBRTBSTD_LINE
Optional: Yes
Call by Reference: Yes

I_JBDSERV -

Data type: JBFO_JBDSERV_LINE
Optional: Yes
Call by Reference: Yes

I_VWPANLA -

Data type: JBFO_VWPANLA_LINE
Optional: Yes
Call by Reference: Yes

I_TRST -

Data type: JBFO_TRST_LINE
Optional: Yes
Call by Reference: Yes

I_TRFT -

Data type: JBFO_TRFT_LINE
Optional: Yes
Call by Reference: Yes

I_KLFAZ01 -

Data type: JBFO_KLFAZ01_LINE
Optional: Yes
Call by Reference: Yes

I_KLSI01 -

Data type: JBFO_KLSI01_LINE
Optional: Yes
Call by Reference: Yes

I_VTBFHA -

Data type: JBFO_VTBFHA_LINE
Optional: Yes
Call by Reference: Yes

I_VWBEKI -

Data type: JBFO_VWBEKI_LINE
Optional: Yes
Call by Reference: Yes

I_JBDKKON -

Data type: JBFO_JBDKKON_LINE
Optional: Yes
Call by Reference: Yes

I_JBDUBST -

Data type: JBFO_JBDUBST_LINE
Optional: Yes
Call by Reference: Yes

I_JBIBKK -

Data type: JBFO_JBIBKK_LINE
Optional: Yes
Call by Reference: Yes

I_JBDBSTD -

Data type: JBFO_JBDBSTD_LINE
Optional: Yes
Call by Reference: Yes

I_VAR_DAT -

Data type: JBFO_VAR_DAT_LINE
Optional: Yes
Call by Reference: Yes

I_JBRDBKO -

Data type: JBFO_JBRDBKO_LINE
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for JBD_EXPORT_OBJECT_REL_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_i_vdarl  TYPE JBFO_VDARL_LINE, "   
lv_e_relevance  TYPE JBDEXPRELFLG, "   
lv_i_expobjtype  TYPE JBD_DTE_EXPOBJ, "   
lv_i_jbrdbrtbstd  TYPE JBFO_JBRDBRTBSTD_LINE, "   
lv_i_jbdserv  TYPE JBFO_JBDSERV_LINE, "   
lv_i_vwpanla  TYPE JBFO_VWPANLA_LINE, "   
lv_i_trst  TYPE JBFO_TRST_LINE, "   
lv_i_trft  TYPE JBFO_TRFT_LINE, "   
lv_i_klfaz01  TYPE JBFO_KLFAZ01_LINE, "   
lv_i_klsi01  TYPE JBFO_KLSI01_LINE, "   
lv_i_vtbfha  TYPE JBFO_VTBFHA_LINE, "   
lv_i_vwbeki  TYPE JBFO_VWBEKI_LINE, "   
lv_i_jbdkkon  TYPE JBFO_JBDKKON_LINE, "   
lv_i_jbdubst  TYPE JBFO_JBDUBST_LINE, "   
lv_i_jbibkk  TYPE JBFO_JBIBKK_LINE, "   
lv_i_jbdbstd  TYPE JBFO_JBDBSTD_LINE, "   
lv_i_var_dat  TYPE JBFO_VAR_DAT_LINE, "   
lv_i_jbrdbko  TYPE JBFO_JBRDBKO_LINE. "   

  CALL FUNCTION 'JBD_EXPORT_OBJECT_REL_CHECK'  "Exportrelevanzprüfung für Originärgeschäft
    EXPORTING
         I_EXPOBJTYPE = lv_i_expobjtype
    IMPORTING
         E_RELEVANCE = lv_e_relevance
    CHANGING
         I_VDARL = lv_i_vdarl
         I_JBRDBRTBSTD = lv_i_jbrdbrtbstd
         I_JBDSERV = lv_i_jbdserv
         I_VWPANLA = lv_i_vwpanla
         I_TRST = lv_i_trst
         I_TRFT = lv_i_trft
         I_KLFAZ01 = lv_i_klfaz01
         I_KLSI01 = lv_i_klsi01
         I_VTBFHA = lv_i_vtbfha
         I_VWBEKI = lv_i_vwbeki
         I_JBDKKON = lv_i_jbdkkon
         I_JBDUBST = lv_i_jbdubst
         I_JBIBKK = lv_i_jbibkk
         I_JBDBSTD = lv_i_jbdbstd
         I_VAR_DAT = lv_i_var_dat
         I_JBRDBKO = lv_i_jbrdbko
. " JBD_EXPORT_OBJECT_REL_CHECK




ABAP code using 7.40 inline data declarations to call FM JBD_EXPORT_OBJECT_REL_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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!