SAP EEWM_UT_GET_QUOTATION_PARAMS Function Module for









EEWM_UT_GET_QUOTATION_PARAMS is a standard eewm ut get quotation params 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 eewm ut get quotation params FM, simply by entering the name EEWM_UT_GET_QUOTATION_PARAMS into the relevant SAP transaction such as SE37 or SE38.

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



Function EEWM_UT_GET_QUOTATION_PARAMS 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 'EEWM_UT_GET_QUOTATION_PARAMS'"
EXPORTING
MATERIAL = "
PARTNER = "

IMPORTING
VKONT = "
VKORG = "
VTWEG = "
SPART = "
WERK = "
QUOTATIONTYPE = "
VALIDTO = "

EXCEPTIONS
INPUT_CANCELLED = 1
.



IMPORTING Parameters details for EEWM_UT_GET_QUOTATION_PARAMS

MATERIAL -

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

PARTNER -

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

EXPORTING Parameters details for EEWM_UT_GET_QUOTATION_PARAMS

VKONT -

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

VKORG -

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

VTWEG -

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

SPART -

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

WERK -

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

QUOTATIONTYPE -

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

VALIDTO -

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

EXCEPTIONS details

INPUT_CANCELLED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for EEWM_UT_GET_QUOTATION_PARAMS 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_vkont  TYPE FKKVKP-VKONT, "   
lv_material  TYPE MARA-MATNR, "   
lv_input_cancelled  TYPE MARA, "   
lv_vkorg  TYPE TVTA-VKORG, "   
lv_partner  TYPE BUT000-PARTNER, "   
lv_vtweg  TYPE TVTA-VTWEG, "   
lv_spart  TYPE TVTA-SPART, "   
lv_werk  TYPE T001W-WERKS, "   
lv_quotationtype  TYPE VBAK-AUART, "   
lv_validto  TYPE VBAK-BNDDT. "   

  CALL FUNCTION 'EEWM_UT_GET_QUOTATION_PARAMS'  "
    EXPORTING
         MATERIAL = lv_material
         PARTNER = lv_partner
    IMPORTING
         VKONT = lv_vkont
         VKORG = lv_vkorg
         VTWEG = lv_vtweg
         SPART = lv_spart
         WERK = lv_werk
         QUOTATIONTYPE = lv_quotationtype
         VALIDTO = lv_validto
    EXCEPTIONS
        INPUT_CANCELLED = 1
. " EEWM_UT_GET_QUOTATION_PARAMS




ABAP code using 7.40 inline data declarations to call FM EEWM_UT_GET_QUOTATION_PARAMS

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 VKONT FROM FKKVKP INTO @DATA(ld_vkont).
 
"SELECT single MATNR FROM MARA INTO @DATA(ld_material).
 
 
"SELECT single VKORG FROM TVTA INTO @DATA(ld_vkorg).
 
"SELECT single PARTNER FROM BUT000 INTO @DATA(ld_partner).
 
"SELECT single VTWEG FROM TVTA INTO @DATA(ld_vtweg).
 
"SELECT single SPART FROM TVTA INTO @DATA(ld_spart).
 
"SELECT single WERKS FROM T001W INTO @DATA(ld_werk).
 
"SELECT single AUART FROM VBAK INTO @DATA(ld_quotationtype).
 
"SELECT single BNDDT FROM VBAK INTO @DATA(ld_validto).
 


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!