SAP Function Modules

BBP_SAPXML1_RFQLD_SEND SAP Function module - x







BBP_SAPXML1_RFQLD_SEND 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_SAPXML1_RFQLD_SEND into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM BBP_SAPXML1_RFQLD_SEND - BBP SAPXML1 RFQLD SEND





CALL FUNCTION 'BBP_SAPXML1_RFQLD_SEND' "x
  EXPORTING
    is_header =                 " bbps_pdext_bid_header_d  Kopf-Daten Ausschreibung GetDetail-Fall + Externe Sicht
    it_item =                   " bbpt_pdext_bid_item_d  Tabelle zu BBPS_PDEXT_BID_ITEM_D
    it_orgdata =                " bbpt_pdext_org  Enriched Orgdata
    it_text =                   " bbpt_pdext_longtext  Enriched Longtext
    it_sdln =                   " bbpt_pdext_sdln  Schedule Line + Externe Sicht
    it_partner =                " bbpt_pdext_partner  Enriched Partner
    it_attach =                 " bbpt_pdext_attach  Enriched Attachment
*   it_exchrate =               " bbpt_pdext_exr  Umrechnungskurs-Daten + Externe Sicht
    it_conditions =             " bbpt_pdext_cnd_d  Table Type Master Conditions (Detail) + External View
    it_status =                 " bbpt_pdext_status  Enriched Status
    it_dyn_attr =               " bbpt_pds_dynattribute  Temporrer Tabellentyp fr Dynamische Attribute
    it_hcf =                    " bbpt_pds_hcf_bid  Tab.artige Kunden- und Solutionfelder am Ausschreibungskopf
    it_icf =                    " bbpt_pds_icf_bid  Tab. Kunden- und Solutionfelder an der Ausschreibungspos.
*   iv_no_send =                " xfeld         Feld zum Ankreuzen
    iv_action_code =            " bbp_action_code  Steuerung: Objekt anlegen, ndern oder lschen
  IMPORTING
    ev_xml_string =             " string
    es_rfq_create_request =     " bbpx1_rfqrequest
    es_rfq_change_request =     " bbpx1_rfqchange_request
    es_rfq_cancel_request =     " bbpx1_rfqcancellation_request
    es_rfq_notification_request =   " bbpx1_rfqresult_notification
    rv_msg_id =                 " bbp_guid      Globally Unique Identifier
    .  "  BBP_SAPXML1_RFQLD_SEND

ABAP code example for Function Module BBP_SAPXML1_RFQLD_SEND





The ABAP code below is a full code listing to execute function module BBP_SAPXML1_RFQLD_SEND 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_ev_xml_string  TYPE STRING ,
ld_es_rfq_create_request  TYPE BBPX1_RFQREQUEST ,
ld_es_rfq_change_request  TYPE BBPX1_RFQCHANGE_REQUEST ,
ld_es_rfq_cancel_request  TYPE BBPX1_RFQCANCELLATION_REQUEST ,
ld_es_rfq_notification_request  TYPE BBPX1_RFQRESULT_NOTIFICATION ,
ld_rv_msg_id  TYPE BBP_GUID .

DATA(ld_is_header) = 'Check type of data required'.
DATA(ld_it_item) = 'Check type of data required'.
DATA(ld_it_orgdata) = 'Check type of data required'.
DATA(ld_it_text) = 'Check type of data required'.
DATA(ld_it_sdln) = 'Check type of data required'.
DATA(ld_it_partner) = 'Check type of data required'.
DATA(ld_it_attach) = 'Check type of data required'.
DATA(ld_it_exchrate) = 'Check type of data required'.
DATA(ld_it_conditions) = 'Check type of data required'.
DATA(ld_it_status) = 'Check type of data required'.
DATA(ld_it_dyn_attr) = 'Check type of data required'.
DATA(ld_it_hcf) = 'Check type of data required'.
DATA(ld_it_icf) = 'Check type of data required'.
DATA(ld_iv_no_send) = 'Check type of data required'.
DATA(ld_iv_action_code) = 'Check type of data required'. . CALL FUNCTION 'BBP_SAPXML1_RFQLD_SEND' EXPORTING is_header = ld_is_header it_item = ld_it_item it_orgdata = ld_it_orgdata it_text = ld_it_text it_sdln = ld_it_sdln it_partner = ld_it_partner it_attach = ld_it_attach * it_exchrate = ld_it_exchrate it_conditions = ld_it_conditions it_status = ld_it_status it_dyn_attr = ld_it_dyn_attr it_hcf = ld_it_hcf it_icf = ld_it_icf * iv_no_send = ld_iv_no_send iv_action_code = ld_iv_action_code IMPORTING ev_xml_string = ld_ev_xml_string es_rfq_create_request = ld_es_rfq_create_request es_rfq_change_request = ld_es_rfq_change_request es_rfq_cancel_request = ld_es_rfq_cancel_request es_rfq_notification_request = ld_es_rfq_notification_request rv_msg_id = ld_rv_msg_id . " BBP_SAPXML1_RFQLD_SEND
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:
ld_ev_xml_string  TYPE STRING ,
ld_is_header  TYPE BBPS_PDEXT_BID_HEADER_D ,
ld_es_rfq_create_request  TYPE BBPX1_RFQREQUEST ,
ld_it_item  TYPE BBPT_PDEXT_BID_ITEM_D ,
ld_es_rfq_change_request  TYPE BBPX1_RFQCHANGE_REQUEST ,
ld_it_orgdata  TYPE BBPT_PDEXT_ORG ,
ld_es_rfq_cancel_request  TYPE BBPX1_RFQCANCELLATION_REQUEST ,
ld_it_text  TYPE BBPT_PDEXT_LONGTEXT ,
ld_es_rfq_notification_request  TYPE BBPX1_RFQRESULT_NOTIFICATION ,
ld_it_sdln  TYPE BBPT_PDEXT_SDLN ,
ld_rv_msg_id  TYPE BBP_GUID ,
ld_it_partner  TYPE BBPT_PDEXT_PARTNER ,
ld_it_attach  TYPE BBPT_PDEXT_ATTACH ,
ld_it_exchrate  TYPE BBPT_PDEXT_EXR ,
ld_it_conditions  TYPE BBPT_PDEXT_CND_D ,
ld_it_status  TYPE BBPT_PDEXT_STATUS ,
ld_it_dyn_attr  TYPE BBPT_PDS_DYNATTRIBUTE ,
ld_it_hcf  TYPE BBPT_PDS_HCF_BID ,
ld_it_icf  TYPE BBPT_PDS_ICF_BID ,
ld_iv_no_send  TYPE XFELD ,
ld_iv_action_code  TYPE BBP_ACTION_CODE .

ld_is_header = 'Check type of data required'.
ld_it_item = 'Check type of data required'.
ld_it_orgdata = 'Check type of data required'.
ld_it_text = 'Check type of data required'.
ld_it_sdln = 'Check type of data required'.
ld_it_partner = 'Check type of data required'.
ld_it_attach = 'Check type of data required'.
ld_it_exchrate = 'Check type of data required'.
ld_it_conditions = 'Check type of data required'.
ld_it_status = 'Check type of data required'.
ld_it_dyn_attr = 'Check type of data required'.
ld_it_hcf = 'Check type of data required'.
ld_it_icf = 'Check type of data required'.
ld_iv_no_send = 'Check type of data required'.
ld_iv_action_code = 'Check type of data required'.

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_SAPXML1_RFQLD_SEND or its description.