SAP ISHMED_DP_REQTYPE Function Module for









ISHMED_DP_REQTYPE is a standard ishmed dp reqtype 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 ishmed dp reqtype FM, simply by entering the name ISHMED_DP_REQTYPE into the relevant SAP transaction such as SE37 or SE38.

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



Function ISHMED_DP_REQTYPE 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 'ISHMED_DP_REQTYPE'"
EXPORTING
I_EINRI = "
* I_EXBO = '*' "
I_ETROE = "
* I_ERBOE = "
* IT_R_ERBOES = "
* I_DATE = SY-DATUM "
* I_TYAPP = '1' "
* I_FALOB = '*' "
* I_TERVKZ = '*' "
* I_PLVIS = '*' "

IMPORTING
ET_OE_ANFTYP = "
E_RC = "

CHANGING
* C_ERRORHANDLER = "
.



IMPORTING Parameters details for ISHMED_DP_REQTYPE

I_EINRI -

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

I_EXBO -

Data type: N1EXBO
Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ETROE -

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

I_ERBOE -

Data type: N1VKG-ORGID
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_R_ERBOES -

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

I_DATE -

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

I_TYAPP -

Data type: N1ANFTYP-TYAPP
Default: '1'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FALOB -

Data type: N1FALOB
Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TERVKZ -

Data type: N1TERVKZ
Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PLVIS -

Data type: N1ANFTYP-PLVIS
Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISHMED_DP_REQTYPE

ET_OE_ANFTYP -

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

E_RC -

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

CHANGING Parameters details for ISHMED_DP_REQTYPE

C_ERRORHANDLER -

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

Copy and paste ABAP code example for ISHMED_DP_REQTYPE 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_einri  TYPE EINRI, "   
lv_et_oe_anftyp  TYPE ISHMED_T_OEANFTY, "   
lv_c_errorhandler  TYPE CL_ISHMED_ERRORHANDLING, "   
lv_i_exbo  TYPE N1EXBO, "   '*'
lv_e_rc  TYPE SY-SUBRC, "   
lv_i_etroe  TYPE N1VKG-ETROE, "   
lv_i_erboe  TYPE N1VKG-ORGID, "   
lv_it_r_erboes  TYPE ISH_T_R_ORGUNIT, "   
lv_i_date  TYPE SY-DATUM, "   SY-DATUM
lv_i_tyapp  TYPE N1ANFTYP-TYAPP, "   '1'
lv_i_falob  TYPE N1FALOB, "   '*'
lv_i_tervkz  TYPE N1TERVKZ, "   '*'
lv_i_plvis  TYPE N1ANFTYP-PLVIS. "   '*'

  CALL FUNCTION 'ISHMED_DP_REQTYPE'  "
    EXPORTING
         I_EINRI = lv_i_einri
         I_EXBO = lv_i_exbo
         I_ETROE = lv_i_etroe
         I_ERBOE = lv_i_erboe
         IT_R_ERBOES = lv_it_r_erboes
         I_DATE = lv_i_date
         I_TYAPP = lv_i_tyapp
         I_FALOB = lv_i_falob
         I_TERVKZ = lv_i_tervkz
         I_PLVIS = lv_i_plvis
    IMPORTING
         ET_OE_ANFTYP = lv_et_oe_anftyp
         E_RC = lv_e_rc
    CHANGING
         C_ERRORHANDLER = lv_c_errorhandler
. " ISHMED_DP_REQTYPE




ABAP code using 7.40 inline data declarations to call FM ISHMED_DP_REQTYPE

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.

 
 
 
DATA(ld_i_exbo) = '*'.
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_e_rc).
 
"SELECT single ETROE FROM N1VKG INTO @DATA(ld_i_etroe).
 
"SELECT single ORGID FROM N1VKG INTO @DATA(ld_i_erboe).
 
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_date).
DATA(ld_i_date) = SY-DATUM.
 
"SELECT single TYAPP FROM N1ANFTYP INTO @DATA(ld_i_tyapp).
DATA(ld_i_tyapp) = '1'.
 
DATA(ld_i_falob) = '*'.
 
DATA(ld_i_tervkz) = '*'.
 
"SELECT single PLVIS FROM N1ANFTYP INTO @DATA(ld_i_plvis).
DATA(ld_i_plvis) = '*'.
 


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!