SAP ISU_SCRIPT_INTERNAL_DROP_POD Function Module for









ISU_SCRIPT_INTERNAL_DROP_POD is a standard isu script internal drop pod 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 isu script internal drop pod FM, simply by entering the name ISU_SCRIPT_INTERNAL_DROP_POD into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_SCRIPT_INTERNAL_DROP_POD 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 'ISU_SCRIPT_INTERNAL_DROP_POD'"
EXPORTING
X_CONTRACT = "
* X_DIVISION = ' ' "
X_INT_POD = "
X_EXTACCNO = "
X_COMPARTNER = "
X_OWNSERVICE = "

IMPORTING
Y_REQ_DATA = "
Y_ERROR = "
.



IMPORTING Parameters details for ISU_SCRIPT_INTERNAL_DROP_POD

X_CONTRACT -

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

X_DIVISION -

Data type: SPARTE
Default: SPACE
Optional: Yes
Call by Reference: Yes

X_INT_POD -

Data type: EUITRANS-INT_UI
Optional: No
Call by Reference: Yes

X_EXTACCNO -

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

X_COMPARTNER -

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

X_OWNSERVICE -

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

EXPORTING Parameters details for ISU_SCRIPT_INTERNAL_DROP_POD

Y_REQ_DATA -

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

Y_ERROR -

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

Copy and paste ABAP code example for ISU_SCRIPT_INTERNAL_DROP_POD 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_x_contract  TYPE EVER-VERTRAG, "   
lv_y_req_data  TYPE SIDE_DROP_REQUEST, "   
lv_y_error  TYPE ISUD0_ERROR, "   
lv_x_division  TYPE SPARTE, "   SPACE
lv_x_int_pod  TYPE EUITRANS-INT_UI, "   
lv_x_extaccno  TYPE SRVPRVREF, "   
lv_x_compartner  TYPE ECOMPARTNER, "   
lv_x_ownservice  TYPE SERCODE. "   

  CALL FUNCTION 'ISU_SCRIPT_INTERNAL_DROP_POD'  "
    EXPORTING
         X_CONTRACT = lv_x_contract
         X_DIVISION = lv_x_division
         X_INT_POD = lv_x_int_pod
         X_EXTACCNO = lv_x_extaccno
         X_COMPARTNER = lv_x_compartner
         X_OWNSERVICE = lv_x_ownservice
    IMPORTING
         Y_REQ_DATA = lv_y_req_data
         Y_ERROR = lv_y_error
. " ISU_SCRIPT_INTERNAL_DROP_POD




ABAP code using 7.40 inline data declarations to call FM ISU_SCRIPT_INTERNAL_DROP_POD

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 VERTRAG FROM EVER INTO @DATA(ld_x_contract).
 
 
 
DATA(ld_x_division) = ' '.
 
"SELECT single INT_UI FROM EUITRANS INTO @DATA(ld_x_int_pod).
 
 
 
 


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!