SAP J_8AS_CHECK_FOREIGN_KEY Function Module for IXOS-ARCHIVE BASIC: Check foreign key









J_8AS_CHECK_FOREIGN_KEY is a standard j 8as check foreign key SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IXOS-ARCHIVE BASIC: Check foreign key 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 j 8as check foreign key FM, simply by entering the name J_8AS_CHECK_FOREIGN_KEY into the relevant SAP transaction such as SE37 or SE38.

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



Function J_8AS_CHECK_FOREIGN_KEY 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 'J_8AS_CHECK_FOREIGN_KEY'"IXOS-ARCHIVE BASIC: Check foreign key
EXPORTING
PI_TABNAME = "
PI_FIELDNAME = "

IMPORTING
PE_MSGID = "
PE_MSGNO = "

TABLES
PT_FIELDVALUES = "
PT_CHECKED_FIELDS = "

EXCEPTIONS
INTERNAL_ERROR = 1
.



IMPORTING Parameters details for J_8AS_CHECK_FOREIGN_KEY

PI_TABNAME -

Data type: DFIES-TABNAME
Optional: No
Call by Reference: No ( called with pass by value option)

PI_FIELDNAME -

Data type: DFIES-FIELDNAME
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for J_8AS_CHECK_FOREIGN_KEY

PE_MSGID -

Data type: SY-MSGID
Optional: No
Call by Reference: No ( called with pass by value option)

PE_MSGNO -

Data type: SY-MSGNO
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for J_8AS_CHECK_FOREIGN_KEY

PT_FIELDVALUES -

Data type: J_8ASSFV
Optional: No
Call by Reference: No ( called with pass by value option)

PT_CHECKED_FIELDS -

Data type: J_8ASSFVF
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

INTERNAL_ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for J_8AS_CHECK_FOREIGN_KEY 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_pe_msgid  TYPE SY-MSGID, "   
lv_pi_tabname  TYPE DFIES-TABNAME, "   
lv_internal_error  TYPE DFIES, "   
lt_pt_fieldvalues  TYPE STANDARD TABLE OF J_8ASSFV, "   
lv_pe_msgno  TYPE SY-MSGNO, "   
lv_pi_fieldname  TYPE DFIES-FIELDNAME, "   
lt_pt_checked_fields  TYPE STANDARD TABLE OF J_8ASSFVF. "   

  CALL FUNCTION 'J_8AS_CHECK_FOREIGN_KEY'  "IXOS-ARCHIVE BASIC: Check foreign key
    EXPORTING
         PI_TABNAME = lv_pi_tabname
         PI_FIELDNAME = lv_pi_fieldname
    IMPORTING
         PE_MSGID = lv_pe_msgid
         PE_MSGNO = lv_pe_msgno
    TABLES
         PT_FIELDVALUES = lt_pt_fieldvalues
         PT_CHECKED_FIELDS = lt_pt_checked_fields
    EXCEPTIONS
        INTERNAL_ERROR = 1
. " J_8AS_CHECK_FOREIGN_KEY




ABAP code using 7.40 inline data declarations to call FM J_8AS_CHECK_FOREIGN_KEY

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.

"SELECT single MSGID FROM SY INTO @DATA(ld_pe_msgid).
 
"SELECT single TABNAME FROM DFIES INTO @DATA(ld_pi_tabname).
 
 
 
"SELECT single MSGNO FROM SY INTO @DATA(ld_pe_msgno).
 
"SELECT single FIELDNAME FROM DFIES INTO @DATA(ld_pi_fieldname).
 
 


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!