SAP Function Modules

BBP_PD_QUOT_CREATE SAP Function module







BBP_PD_QUOT_CREATE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name BBP_PD_QUOT_CREATE into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: BBP_PD_QUOT
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM BBP_PD_QUOT_CREATE - BBP PD QUOT CREATE





CALL FUNCTION 'BBP_PD_QUOT_CREATE' "
* EXPORTING
*   i_src_guid =                " crmd_orderadm_h-guid
*   i_src_object_type =         " crmd_orderadm_h-object_type
*   i_ref_guid =                " crmd_orderadm_h-guid
*   i_park =                    " xfeld
*   i_save =                    " xfeld
*   i_testrun =                 " xfeld
*   i_header =                  " bbp_pds_quot_header_ic
*   it_attach =                 " bbpt_pds_att_t
*   it_conditions =             " bbpt_pd_cnd_icu
*   it_dyn_attr =               " bbpt_pds_dynattribute
*   i_item_sorted_by_hierarchy =   " xfeld
*   i_item_sorted_by_expsv_item =   " xfeld
  IMPORTING
    e_header =                  " bbp_pds_quot_header_d
    et_attach =                 " bbpt_pds_att_t
    et_conditions =             " bbpt_pd_cnd_d
    et_dyn_attr =               " bbpt_pds_dynattribute
  TABLES
*   i_item =                    " bbp_pds_quot_item_icu
*   i_item_add =                " bbp_pds_quot_item_add_icu
*   i_partner =                 " bbp_pds_partner
*   i_sdln =                    " bbp_pds_sdln
*   i_longtext =                " bbp_pds_longtext
*   e_item =                    " bbp_pds_quot_item_d
*   e_partner =                 " bbp_pds_partner
*   e_longtext =                " bbp_pds_longtext
*   e_sdln =                    " bbp_pds_sdln
*   e_status =                  " bbp_pds_status
    e_messages =                " bbp_pds_messages
*   i_hcf =                     " bbp_pds_hcf_quot
*   i_icf =                     " bbp_pds_icf_quot
*   e_hcf =                     " bbp_pds_hcf_quot
*   e_icf =                     " bbp_pds_icf_quot
*   e_limit =                   " bbp_pds_limit
*   i_limit =                   " bbp_pds_limit
    .  "  BBP_PD_QUOT_CREATE

ABAP code example for Function Module BBP_PD_QUOT_CREATE





The ABAP code below is a full code listing to execute function module BBP_PD_QUOT_CREATE including all data declarations. The code uses 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 original method of declaring data variables up front. 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).

DATA:
ld_e_header  TYPE BBP_PDS_QUOT_HEADER_D ,
ld_et_attach  TYPE BBPT_PDS_ATT_T ,
ld_et_conditions  TYPE BBPT_PD_CND_D ,
ld_et_dyn_attr  TYPE BBPT_PDS_DYNATTRIBUTE ,
it_i_item  TYPE STANDARD TABLE OF BBP_PDS_QUOT_ITEM_ICU,"TABLES PARAM
wa_i_item  LIKE LINE OF it_i_item ,
it_i_item_add  TYPE STANDARD TABLE OF BBP_PDS_QUOT_ITEM_ADD_ICU,"TABLES PARAM
wa_i_item_add  LIKE LINE OF it_i_item_add ,
it_i_partner  TYPE STANDARD TABLE OF BBP_PDS_PARTNER,"TABLES PARAM
wa_i_partner  LIKE LINE OF it_i_partner ,
it_i_sdln  TYPE STANDARD TABLE OF BBP_PDS_SDLN,"TABLES PARAM
wa_i_sdln  LIKE LINE OF it_i_sdln ,
it_i_longtext  TYPE STANDARD TABLE OF BBP_PDS_LONGTEXT,"TABLES PARAM
wa_i_longtext  LIKE LINE OF it_i_longtext ,
it_e_item  TYPE STANDARD TABLE OF BBP_PDS_QUOT_ITEM_D,"TABLES PARAM
wa_e_item  LIKE LINE OF it_e_item ,
it_e_partner  TYPE STANDARD TABLE OF BBP_PDS_PARTNER,"TABLES PARAM
wa_e_partner  LIKE LINE OF it_e_partner ,
it_e_longtext  TYPE STANDARD TABLE OF BBP_PDS_LONGTEXT,"TABLES PARAM
wa_e_longtext  LIKE LINE OF it_e_longtext ,
it_e_sdln  TYPE STANDARD TABLE OF BBP_PDS_SDLN,"TABLES PARAM
wa_e_sdln  LIKE LINE OF it_e_sdln ,
it_e_status  TYPE STANDARD TABLE OF BBP_PDS_STATUS,"TABLES PARAM
wa_e_status  LIKE LINE OF it_e_status ,
it_e_messages  TYPE STANDARD TABLE OF BBP_PDS_MESSAGES,"TABLES PARAM
wa_e_messages  LIKE LINE OF it_e_messages ,
it_i_hcf  TYPE STANDARD TABLE OF BBP_PDS_HCF_QUOT,"TABLES PARAM
wa_i_hcf  LIKE LINE OF it_i_hcf ,
it_i_icf  TYPE STANDARD TABLE OF BBP_PDS_ICF_QUOT,"TABLES PARAM
wa_i_icf  LIKE LINE OF it_i_icf ,
it_e_hcf  TYPE STANDARD TABLE OF BBP_PDS_HCF_QUOT,"TABLES PARAM
wa_e_hcf  LIKE LINE OF it_e_hcf ,
it_e_icf  TYPE STANDARD TABLE OF BBP_PDS_ICF_QUOT,"TABLES PARAM
wa_e_icf  LIKE LINE OF it_e_icf ,
it_e_limit  TYPE STANDARD TABLE OF BBP_PDS_LIMIT,"TABLES PARAM
wa_e_limit  LIKE LINE OF it_e_limit ,
it_i_limit  TYPE STANDARD TABLE OF BBP_PDS_LIMIT,"TABLES PARAM
wa_i_limit  LIKE LINE OF it_i_limit .


SELECT single GUID
FROM CRMD_ORDERADM_H
INTO @DATA(ld_i_src_guid).


SELECT single OBJECT_TYPE
FROM CRMD_ORDERADM_H
INTO @DATA(ld_i_src_object_type).


SELECT single GUID
FROM CRMD_ORDERADM_H
INTO @DATA(ld_i_ref_guid).

DATA(ld_i_park) = 'Check type of data required'.
DATA(ld_i_save) = 'Check type of data required'.
DATA(ld_i_testrun) = 'Check type of data required'.
DATA(ld_i_header) = 'Check type of data required'.
DATA(ld_it_attach) = 'Check type of data required'.
DATA(ld_it_conditions) = 'Check type of data required'.
DATA(ld_it_dyn_attr) = 'Check type of data required'.
DATA(ld_i_item_sorted_by_hierarchy) = 'Check type of data required'.
DATA(ld_i_item_sorted_by_expsv_item) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_i_item to it_i_item.

"populate fields of struture and append to itab
append wa_i_item_add to it_i_item_add.

"populate fields of struture and append to itab
append wa_i_partner to it_i_partner.

"populate fields of struture and append to itab
append wa_i_sdln to it_i_sdln.

"populate fields of struture and append to itab
append wa_i_longtext to it_i_longtext.

"populate fields of struture and append to itab
append wa_e_item to it_e_item.

"populate fields of struture and append to itab
append wa_e_partner to it_e_partner.

"populate fields of struture and append to itab
append wa_e_longtext to it_e_longtext.

"populate fields of struture and append to itab
append wa_e_sdln to it_e_sdln.

"populate fields of struture and append to itab
append wa_e_status to it_e_status.

"populate fields of struture and append to itab
append wa_e_messages to it_e_messages.

"populate fields of struture and append to itab
append wa_i_hcf to it_i_hcf.

"populate fields of struture and append to itab
append wa_i_icf to it_i_icf.

"populate fields of struture and append to itab
append wa_e_hcf to it_e_hcf.

"populate fields of struture and append to itab
append wa_e_icf to it_e_icf.

"populate fields of struture and append to itab
append wa_e_limit to it_e_limit.

"populate fields of struture and append to itab
append wa_i_limit to it_i_limit. . CALL FUNCTION 'BBP_PD_QUOT_CREATE' * EXPORTING * i_src_guid = ld_i_src_guid * i_src_object_type = ld_i_src_object_type * i_ref_guid = ld_i_ref_guid * i_park = ld_i_park * i_save = ld_i_save * i_testrun = ld_i_testrun * i_header = ld_i_header * it_attach = ld_it_attach * it_conditions = ld_it_conditions * it_dyn_attr = ld_it_dyn_attr * i_item_sorted_by_hierarchy = ld_i_item_sorted_by_hierarchy * i_item_sorted_by_expsv_item = ld_i_item_sorted_by_expsv_item IMPORTING e_header = ld_e_header et_attach = ld_et_attach et_conditions = ld_et_conditions et_dyn_attr = ld_et_dyn_attr TABLES * i_item = it_i_item * i_item_add = it_i_item_add * i_partner = it_i_partner * i_sdln = it_i_sdln * i_longtext = it_i_longtext * e_item = it_e_item * e_partner = it_e_partner * e_longtext = it_e_longtext * e_sdln = it_e_sdln * e_status = it_e_status e_messages = it_e_messages * i_hcf = it_i_hcf * i_icf = it_i_icf * e_hcf = it_e_hcf * e_icf = it_e_icf * e_limit = it_e_limit * i_limit = it_i_limit . " BBP_PD_QUOT_CREATE
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
it_i_item  TYPE STANDARD TABLE OF BBP_PDS_QUOT_ITEM_ICU ,
wa_i_item  LIKE LINE OF it_i_item,
ld_i_src_guid  TYPE CRMD_ORDERADM_H-GUID ,
ld_e_header  TYPE BBP_PDS_QUOT_HEADER_D ,
it_i_item_add  TYPE STANDARD TABLE OF BBP_PDS_QUOT_ITEM_ADD_ICU ,
wa_i_item_add  LIKE LINE OF it_i_item_add,
ld_i_src_object_type  TYPE CRMD_ORDERADM_H-OBJECT_TYPE ,
ld_et_attach  TYPE BBPT_PDS_ATT_T ,
it_i_partner  TYPE STANDARD TABLE OF BBP_PDS_PARTNER ,
wa_i_partner  LIKE LINE OF it_i_partner,
ld_et_conditions  TYPE BBPT_PD_CND_D ,
ld_i_ref_guid  TYPE CRMD_ORDERADM_H-GUID ,
it_i_sdln  TYPE STANDARD TABLE OF BBP_PDS_SDLN ,
wa_i_sdln  LIKE LINE OF it_i_sdln,
ld_i_park  TYPE XFELD ,
ld_et_dyn_attr  TYPE BBPT_PDS_DYNATTRIBUTE ,
it_i_longtext  TYPE STANDARD TABLE OF BBP_PDS_LONGTEXT ,
wa_i_longtext  LIKE LINE OF it_i_longtext,
ld_i_save  TYPE XFELD ,
ld_i_testrun  TYPE XFELD ,
it_e_item  TYPE STANDARD TABLE OF BBP_PDS_QUOT_ITEM_D ,
wa_e_item  LIKE LINE OF it_e_item,
ld_i_header  TYPE BBP_PDS_QUOT_HEADER_IC ,
it_e_partner  TYPE STANDARD TABLE OF BBP_PDS_PARTNER ,
wa_e_partner  LIKE LINE OF it_e_partner,
ld_it_attach  TYPE BBPT_PDS_ATT_T ,
it_e_longtext  TYPE STANDARD TABLE OF BBP_PDS_LONGTEXT ,
wa_e_longtext  LIKE LINE OF it_e_longtext,
ld_it_conditions  TYPE BBPT_PD_CND_ICU ,
it_e_sdln  TYPE STANDARD TABLE OF BBP_PDS_SDLN ,
wa_e_sdln  LIKE LINE OF it_e_sdln,
ld_it_dyn_attr  TYPE BBPT_PDS_DYNATTRIBUTE ,
it_e_status  TYPE STANDARD TABLE OF BBP_PDS_STATUS ,
wa_e_status  LIKE LINE OF it_e_status,
ld_i_item_sorted_by_hierarchy  TYPE XFELD ,
it_e_messages  TYPE STANDARD TABLE OF BBP_PDS_MESSAGES ,
wa_e_messages  LIKE LINE OF it_e_messages,
ld_i_item_sorted_by_expsv_item  TYPE XFELD ,
it_i_hcf  TYPE STANDARD TABLE OF BBP_PDS_HCF_QUOT ,
wa_i_hcf  LIKE LINE OF it_i_hcf,
it_i_icf  TYPE STANDARD TABLE OF BBP_PDS_ICF_QUOT ,
wa_i_icf  LIKE LINE OF it_i_icf,
it_e_hcf  TYPE STANDARD TABLE OF BBP_PDS_HCF_QUOT ,
wa_e_hcf  LIKE LINE OF it_e_hcf,
it_e_icf  TYPE STANDARD TABLE OF BBP_PDS_ICF_QUOT ,
wa_e_icf  LIKE LINE OF it_e_icf,
it_e_limit  TYPE STANDARD TABLE OF BBP_PDS_LIMIT ,
wa_e_limit  LIKE LINE OF it_e_limit,
it_i_limit  TYPE STANDARD TABLE OF BBP_PDS_LIMIT ,
wa_i_limit  LIKE LINE OF it_i_limit.


"populate fields of struture and append to itab
append wa_i_item to it_i_item.

SELECT single GUID
FROM CRMD_ORDERADM_H
INTO ld_i_src_guid.


"populate fields of struture and append to itab
append wa_i_item_add to it_i_item_add.

SELECT single OBJECT_TYPE
FROM CRMD_ORDERADM_H
INTO ld_i_src_object_type.


"populate fields of struture and append to itab
append wa_i_partner to it_i_partner.

SELECT single GUID
FROM CRMD_ORDERADM_H
INTO ld_i_ref_guid.


"populate fields of struture and append to itab
append wa_i_sdln to it_i_sdln.
ld_i_park = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_i_longtext to it_i_longtext.
ld_i_save = 'Check type of data required'.
ld_i_testrun = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_e_item to it_e_item.
ld_i_header = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_e_partner to it_e_partner.
ld_it_attach = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_e_longtext to it_e_longtext.
ld_it_conditions = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_e_sdln to it_e_sdln.
ld_it_dyn_attr = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_e_status to it_e_status.
ld_i_item_sorted_by_hierarchy = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_e_messages to it_e_messages.
ld_i_item_sorted_by_expsv_item = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_i_hcf to it_i_hcf.

"populate fields of struture and append to itab
append wa_i_icf to it_i_icf.

"populate fields of struture and append to itab
append wa_e_hcf to it_e_hcf.

"populate fields of struture and append to itab
append wa_e_icf to it_e_icf.

"populate fields of struture and append to itab
append wa_e_limit to it_e_limit.

"populate fields of struture and append to itab
append wa_i_limit to it_i_limit.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name BBP_PD_QUOT_CREATE or its description.