SAP BBP_QUOT_DYN_BW_EXTRACT Function Module for









BBP_QUOT_DYN_BW_EXTRACT is a standard bbp quot dyn bw extract 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 bbp quot dyn bw extract FM, simply by entering the name BBP_QUOT_DYN_BW_EXTRACT into the relevant SAP transaction such as SE37 or SE38.

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



Function BBP_QUOT_DYN_BW_EXTRACT 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 'BBP_QUOT_DYN_BW_EXTRACT'"
EXPORTING
XS_HEAD_DATA = "
* XT_BBP_PDISC = "
* XT_BBP_PDISS = "
BID_XS_HEAD_DATA = "
BID_XS_BBP_PDHGP = "
BID_XS_ORG_SET = "
BID_XT_ITEM_DATA = "
BID_XT_BBP_PDIGP = "
XT_BBP_PDDYN_ITEM = "
XS_BBP_PDHGP = "
* XS_BBP_PDHSC = "
* XS_BBP_PDHSS = "
XT_CRM_JEST_HEAD = "
XS_PARTNER_HEAD_SET = "
XT_BBP_PDDYN_HEAD = "
XT_ITEM_DATA = "
XT_BBP_PDIGP = "

TABLES
YT_EXTRACT = "
.



IMPORTING Parameters details for BBP_QUOT_DYN_BW_EXTRACT

XS_HEAD_DATA -

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

XT_BBP_PDISC -

Data type: BBPBW_T_BBP_PDISC_T
Optional: Yes
Call by Reference: Yes

XT_BBP_PDISS -

Data type: BBPBW_T_BBP_PDISS_T
Optional: Yes
Call by Reference: Yes

BID_XS_HEAD_DATA -

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

BID_XS_BBP_PDHGP -

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

BID_XS_ORG_SET -

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

BID_XT_ITEM_DATA -

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

BID_XT_BBP_PDIGP -

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

XT_BBP_PDDYN_ITEM -

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

XS_BBP_PDHGP -

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

XS_BBP_PDHSC -

Data type: BBPBW_S_BBP_PDHSC_T
Optional: Yes
Call by Reference: Yes

XS_BBP_PDHSS -

Data type: BBPBW_S_BBP_PDHSS_T
Optional: Yes
Call by Reference: Yes

XT_CRM_JEST_HEAD -

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

XS_PARTNER_HEAD_SET -

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

XT_BBP_PDDYN_HEAD -

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

XT_ITEM_DATA -

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

XT_BBP_PDIGP -

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

TABLES Parameters details for BBP_QUOT_DYN_BW_EXTRACT

YT_EXTRACT -

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

Copy and paste ABAP code example for BBP_QUOT_DYN_BW_EXTRACT 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:
lt_yt_extract  TYPE STANDARD TABLE OF BBP_QUOT_DYN_BW_STRUC, "   
lv_xs_head_data  TYPE BBPBW_S_ORDERADM_H_T, "   
lv_xt_bbp_pdisc  TYPE BBPBW_T_BBP_PDISC_T, "   
lv_xt_bbp_pdiss  TYPE BBPBW_T_BBP_PDISS_T, "   
lv_bid_xs_head_data  TYPE BBPBW_S_ORDERADM_H_T, "   
lv_bid_xs_bbp_pdhgp  TYPE BBPBW_S_BBP_PDHGP_T, "   
lv_bid_xs_org_set  TYPE BBPBW_S_LINK_ORG_T, "   
lv_bid_xt_item_data  TYPE BBPBW_T_ORDERADM_I_T, "   
lv_bid_xt_bbp_pdigp  TYPE BBPBW_T_BBP_PDIGP_T, "   
lv_xt_bbp_pddyn_item  TYPE BBPBW_T_LINK_DYN_ATTR_T, "   
lv_xs_bbp_pdhgp  TYPE BBPBW_S_BBP_PDHGP_T, "   
lv_xs_bbp_pdhsc  TYPE BBPBW_S_BBP_PDHSC_T, "   
lv_xs_bbp_pdhss  TYPE BBPBW_S_BBP_PDHSS_T, "   
lv_xt_crm_jest_head  TYPE BBPBW_T_CRM_JEST_T, "   
lv_xs_partner_head_set  TYPE BBPBW_S_LINK_PARTNER_T, "   
lv_xt_bbp_pddyn_head  TYPE BBPBW_T_LINK_DYN_ATTR_T, "   
lv_xt_item_data  TYPE BBPBW_T_ORDERADM_I_T, "   
lv_xt_bbp_pdigp  TYPE BBPBW_T_BBP_PDIGP_T. "   

  CALL FUNCTION 'BBP_QUOT_DYN_BW_EXTRACT'  "
    EXPORTING
         XS_HEAD_DATA = lv_xs_head_data
         XT_BBP_PDISC = lv_xt_bbp_pdisc
         XT_BBP_PDISS = lv_xt_bbp_pdiss
         BID_XS_HEAD_DATA = lv_bid_xs_head_data
         BID_XS_BBP_PDHGP = lv_bid_xs_bbp_pdhgp
         BID_XS_ORG_SET = lv_bid_xs_org_set
         BID_XT_ITEM_DATA = lv_bid_xt_item_data
         BID_XT_BBP_PDIGP = lv_bid_xt_bbp_pdigp
         XT_BBP_PDDYN_ITEM = lv_xt_bbp_pddyn_item
         XS_BBP_PDHGP = lv_xs_bbp_pdhgp
         XS_BBP_PDHSC = lv_xs_bbp_pdhsc
         XS_BBP_PDHSS = lv_xs_bbp_pdhss
         XT_CRM_JEST_HEAD = lv_xt_crm_jest_head
         XS_PARTNER_HEAD_SET = lv_xs_partner_head_set
         XT_BBP_PDDYN_HEAD = lv_xt_bbp_pddyn_head
         XT_ITEM_DATA = lv_xt_item_data
         XT_BBP_PDIGP = lv_xt_bbp_pdigp
    TABLES
         YT_EXTRACT = lt_yt_extract
. " BBP_QUOT_DYN_BW_EXTRACT




ABAP code using 7.40 inline data declarations to call FM BBP_QUOT_DYN_BW_EXTRACT

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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!