SAP ISSR_MD_ZGP_QUOTE_HOLDING Function Module for









ISSR_MD_ZGP_QUOTE_HOLDING is a standard issr md zgp quote holding 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 issr md zgp quote holding FM, simply by entering the name ISSR_MD_ZGP_QUOTE_HOLDING into the relevant SAP transaction such as SE37 or SE38.

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



Function ISSR_MD_ZGP_QUOTE_HOLDING 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 'ISSR_MD_ZGP_QUOTE_HOLDING'"
EXPORTING
* I_BUKRS = "
I_PARTNER = "
* I_BUDAT = SY-DATUM "
I_BESTAND_BETRAG = "
I_BESTAND_WAER = "
* I_DEPTH = 1 "
* I_COMP_RE_HOLDING = "
I_DIRECTION = "

IMPORTING
E_T_ADRC = "

EXCEPTIONS
NO_REL_FOUND = 1 NO_EQUITY = 2 NO_BUSINESS_DATA = 3 NO_CURRENCY = 4
.



IMPORTING Parameters details for ISSR_MD_ZGP_QUOTE_HOLDING

I_BUKRS -

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

I_PARTNER -

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

I_BUDAT -

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

I_BESTAND_BETRAG -

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

I_BESTAND_WAER -

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

I_DEPTH -

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

I_COMP_RE_HOLDING -

Data type: BP1030-COMP_RE
Optional: Yes
Call by Reference: Yes

I_DIRECTION -

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

EXPORTING Parameters details for ISSR_MD_ZGP_QUOTE_HOLDING

E_T_ADRC -

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

EXCEPTIONS details

NO_REL_FOUND -

Data type:
Optional: No
Call by Reference: Yes

NO_EQUITY -

Data type:
Optional: No
Call by Reference: Yes

NO_BUSINESS_DATA -

Data type:
Optional: No
Call by Reference: Yes

NO_CURRENCY -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISSR_MD_ZGP_QUOTE_HOLDING 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_bukrs  TYPE T001-BUKRS, "   
lv_e_t_adrc  TYPE ISSR4_T_ADRC_QUOTE, "   
lv_no_rel_found  TYPE ISSR4_T_ADRC_QUOTE, "   
lv_i_partner  TYPE BUT000-PARTNER, "   
lv_no_equity  TYPE BUT000, "   
lv_i_budat  TYPE ISSR4_BUDAT, "   SY-DATUM
lv_no_business_data  TYPE ISSR4_BUDAT, "   
lv_no_currency  TYPE ISSR4_BUDAT, "   
lv_i_bestand_betrag  TYPE ISSR4_BETEIL, "   
lv_i_bestand_waer  TYPE ISSR_TSLCUR, "   
lv_i_depth  TYPE I, "   1
lv_i_comp_re_holding  TYPE BP1030-COMP_RE, "   
lv_i_direction  TYPE BOOLE-BOOLE. "   

  CALL FUNCTION 'ISSR_MD_ZGP_QUOTE_HOLDING'  "
    EXPORTING
         I_BUKRS = lv_i_bukrs
         I_PARTNER = lv_i_partner
         I_BUDAT = lv_i_budat
         I_BESTAND_BETRAG = lv_i_bestand_betrag
         I_BESTAND_WAER = lv_i_bestand_waer
         I_DEPTH = lv_i_depth
         I_COMP_RE_HOLDING = lv_i_comp_re_holding
         I_DIRECTION = lv_i_direction
    IMPORTING
         E_T_ADRC = lv_e_t_adrc
    EXCEPTIONS
        NO_REL_FOUND = 1
        NO_EQUITY = 2
        NO_BUSINESS_DATA = 3
        NO_CURRENCY = 4
. " ISSR_MD_ZGP_QUOTE_HOLDING




ABAP code using 7.40 inline data declarations to call FM ISSR_MD_ZGP_QUOTE_HOLDING

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 BUKRS FROM T001 INTO @DATA(ld_i_bukrs).
 
 
 
"SELECT single PARTNER FROM BUT000 INTO @DATA(ld_i_partner).
 
 
DATA(ld_i_budat) = SY-DATUM.
 
 
 
 
 
DATA(ld_i_depth) = 1.
 
"SELECT single COMP_RE FROM BP1030 INTO @DATA(ld_i_comp_re_holding).
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_direction).
 


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!