SAP EXISTENCE_CHECK_PLO_REMOTE Function Module for









EXISTENCE_CHECK_PLO_REMOTE is a standard existence check plo remote SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 existence check plo remote FM, simply by entering the name EXISTENCE_CHECK_PLO_REMOTE into the relevant SAP transaction such as SE37 or SE38.

Function Group: SMODI_XS
Program Name: SAPLSMODI_XS
Main Program: SAPLSMODI_XS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function EXISTENCE_CHECK_PLO_REMOTE 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 'EXISTENCE_CHECK_PLO_REMOTE'"
EXPORTING
IS_PLA = "
I_PLX = "
I_PLM = "
I_PLNX = "
I_PLNC = "

IMPORTING
E_PLX_CNT = "
E_PLM_CNT = "
E_PLNX_CNT = "
E_PLNC_CNT = "

TABLES
IT_E071_A = "Object List of Check Objects
IT_E071K_A = "Key entries
ET_E071_X = "
ET_E071_M = "
ET_E071_NX = "
ET_E071_NC = "
ET_E071K_X = "
ET_E071K_NX = "
ET_E071K_NC = "
.



IMPORTING Parameters details for EXISTENCE_CHECK_PLO_REMOTE

IS_PLA -

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

I_PLX -

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

I_PLM -

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

I_PLNX -

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

I_PLNC -

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

EXPORTING Parameters details for EXISTENCE_CHECK_PLO_REMOTE

E_PLX_CNT -

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

E_PLM_CNT -

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

E_PLNX_CNT -

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

E_PLNC_CNT -

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

TABLES Parameters details for EXISTENCE_CHECK_PLO_REMOTE

IT_E071_A - Object List of Check Objects

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

IT_E071K_A - Key entries

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

ET_E071_X -

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

ET_E071_M -

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

ET_E071_NX -

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

ET_E071_NC -

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

ET_E071K_X -

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

ET_E071K_NX -

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

ET_E071K_NC -

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

Copy and paste ABAP code example for EXISTENCE_CHECK_PLO_REMOTE 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_is_pla  TYPE E070, "   
lv_e_plx_cnt  TYPE SY-TABIX, "   
lt_it_e071_a  TYPE STANDARD TABLE OF E071, "   
lv_i_plx  TYPE E070-TRKORR, "   
lv_e_plm_cnt  TYPE SY-TABIX, "   
lt_it_e071k_a  TYPE STANDARD TABLE OF E071K, "   
lv_i_plm  TYPE E070-TRKORR, "   
lt_et_e071_x  TYPE STANDARD TABLE OF E071, "   
lv_e_plnx_cnt  TYPE SY-TABIX, "   
lv_i_plnx  TYPE E070-TRKORR, "   
lt_et_e071_m  TYPE STANDARD TABLE OF E071, "   
lv_e_plnc_cnt  TYPE SY-TABIX, "   
lv_i_plnc  TYPE E070-TRKORR, "   
lt_et_e071_nx  TYPE STANDARD TABLE OF E071, "   
lt_et_e071_nc  TYPE STANDARD TABLE OF E071, "   
lt_et_e071k_x  TYPE STANDARD TABLE OF E071K, "   
lt_et_e071k_nx  TYPE STANDARD TABLE OF E071K, "   
lt_et_e071k_nc  TYPE STANDARD TABLE OF E071K. "   

  CALL FUNCTION 'EXISTENCE_CHECK_PLO_REMOTE'  "
    EXPORTING
         IS_PLA = lv_is_pla
         I_PLX = lv_i_plx
         I_PLM = lv_i_plm
         I_PLNX = lv_i_plnx
         I_PLNC = lv_i_plnc
    IMPORTING
         E_PLX_CNT = lv_e_plx_cnt
         E_PLM_CNT = lv_e_plm_cnt
         E_PLNX_CNT = lv_e_plnx_cnt
         E_PLNC_CNT = lv_e_plnc_cnt
    TABLES
         IT_E071_A = lt_it_e071_a
         IT_E071K_A = lt_it_e071k_a
         ET_E071_X = lt_et_e071_x
         ET_E071_M = lt_et_e071_m
         ET_E071_NX = lt_et_e071_nx
         ET_E071_NC = lt_et_e071_nc
         ET_E071K_X = lt_et_e071k_x
         ET_E071K_NX = lt_et_e071k_nx
         ET_E071K_NC = lt_et_e071k_nc
. " EXISTENCE_CHECK_PLO_REMOTE




ABAP code using 7.40 inline data declarations to call FM EXISTENCE_CHECK_PLO_REMOTE

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 TABIX FROM SY INTO @DATA(ld_e_plx_cnt).
 
 
"SELECT single TRKORR FROM E070 INTO @DATA(ld_i_plx).
 
"SELECT single TABIX FROM SY INTO @DATA(ld_e_plm_cnt).
 
 
"SELECT single TRKORR FROM E070 INTO @DATA(ld_i_plm).
 
 
"SELECT single TABIX FROM SY INTO @DATA(ld_e_plnx_cnt).
 
"SELECT single TRKORR FROM E070 INTO @DATA(ld_i_plnx).
 
 
"SELECT single TABIX FROM SY INTO @DATA(ld_e_plnc_cnt).
 
"SELECT single TRKORR FROM E070 INTO @DATA(ld_i_plnc).
 
 
 
 
 
 


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!