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
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
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).
| 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 . |
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 . |
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.
BBP_SAPXML1_RFQLD_SEND - x BBP_SAPXML1_RFQLD_IN - SAPXML1 Treiber zu BBP_API_RFQLD In BBP_SAPXML1_RFQINFO_SEND - x BBP_SAPXML1_QUOTE_NOTICE_IN - QuoteNotification Inbound Driver for BBP_API_QUOTE_NOTIFICATION BBP_SAPXML1_PURCHREQ_IN - SAPXML1 PCO Treiber zu BBP_API_PCO_CRT (Anlegen Bestellbesttigung) BBP_SAPXML1_PO_SEND - SAPXML1 Treiber zu META_PO_SEND