SAP BBP_CM_APP_AUC_CREATE Function Module for Create RFX for the Initiative









BBP_CM_APP_AUC_CREATE is a standard bbp cm app auc create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create RFX for the Initiative processing and below is the pattern details for this FM, 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 cm app auc create FM, simply by entering the name BBP_CM_APP_AUC_CREATE into the relevant SAP transaction such as SE37 or SE38.

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



Function BBP_CM_APP_AUC_CREATE 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_CM_APP_AUC_CREATE'"Create RFX for the Initiative
EXPORTING
IV_INIT_GUID = "Unique Identifier - Category Management
IV_OBJECT_NAME = "Initiative Name
IV_PROCESS_TYPE = "Business Transaction Type
* IV_COMMIT = "Checkbox
IV_CALLER = "Business Process Types

IMPORTING
ES_AUC_HEAD = "Auction Header Data (GetDetail)
EV_AUC_URL = "
ES_INIT_PROCDOC = "RFx/Ctr Document Information for Initiative

TABLES
IT_ATTRIBUTES = "Generic Attributes
IT_PRODUCTS = "Product guids for Vendor Search
IT_VENDORS = "Vendor Guids
IT_PARTNER_TYPES = "Partner function type
ET_MESSAGES = "Return Parameter
.



IMPORTING Parameters details for BBP_CM_APP_AUC_CREATE

IV_INIT_GUID - Unique Identifier - Category Management

Data type: BBP_CM_GUID_D
Optional: No
Call by Reference: No ( called with pass by value option)

IV_OBJECT_NAME - Initiative Name

Data type: BBP_CM_INIT_NAME
Optional: No
Call by Reference: No ( called with pass by value option)

IV_PROCESS_TYPE - Business Transaction Type

Data type: BBP_CM_PROCESS_TYPE
Optional: No
Call by Reference: No ( called with pass by value option)

IV_COMMIT - Checkbox

Data type: XFELD
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_CALLER - Business Process Types

Data type: BBP_CM_PROCESS_TYPE
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for BBP_CM_APP_AUC_CREATE

ES_AUC_HEAD - Auction Header Data (GetDetail)

Data type: BBPS_CM_AUC_HEADER_D
Optional: No
Call by Reference: No ( called with pass by value option)

EV_AUC_URL -

Data type: STRING
Optional: No
Call by Reference: No ( called with pass by value option)

ES_INIT_PROCDOC - RFx/Ctr Document Information for Initiative

Data type: BBPS_CM_INIT_PROCDOCS_D
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for BBP_CM_APP_AUC_CREATE

IT_ATTRIBUTES - Generic Attributes

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

IT_PRODUCTS - Product guids for Vendor Search

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

IT_VENDORS - Vendor Guids

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

IT_PARTNER_TYPES - Partner function type

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

ET_MESSAGES - Return Parameter

Data type: BAPIRET2
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for BBP_CM_APP_AUC_CREATE 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_es_auc_head  TYPE BBPS_CM_AUC_HEADER_D, "   
lv_iv_init_guid  TYPE BBP_CM_GUID_D, "   
lt_it_attributes  TYPE STANDARD TABLE OF BBPT_CM_ATTRIBUTES, "   
lv_ev_auc_url  TYPE STRING, "   
lt_it_products  TYPE STANDARD TABLE OF BBPS_CM_PRODUCT_GUIDS, "   
lv_iv_object_name  TYPE BBP_CM_INIT_NAME, "   
lt_it_vendors  TYPE STANDARD TABLE OF BBPS_CM_VENDOR_GUIDS, "   
lv_es_init_procdoc  TYPE BBPS_CM_INIT_PROCDOCS_D, "   
lv_iv_process_type  TYPE BBP_CM_PROCESS_TYPE, "   
lv_iv_commit  TYPE XFELD, "   
lt_it_partner_types  TYPE STANDARD TABLE OF BBPT_CM_PARTNER_FUNC_TYPE, "   
lv_iv_caller  TYPE BBP_CM_PROCESS_TYPE, "   
lt_et_messages  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'BBP_CM_APP_AUC_CREATE'  "Create RFX for the Initiative
    EXPORTING
         IV_INIT_GUID = lv_iv_init_guid
         IV_OBJECT_NAME = lv_iv_object_name
         IV_PROCESS_TYPE = lv_iv_process_type
         IV_COMMIT = lv_iv_commit
         IV_CALLER = lv_iv_caller
    IMPORTING
         ES_AUC_HEAD = lv_es_auc_head
         EV_AUC_URL = lv_ev_auc_url
         ES_INIT_PROCDOC = lv_es_init_procdoc
    TABLES
         IT_ATTRIBUTES = lt_it_attributes
         IT_PRODUCTS = lt_it_products
         IT_VENDORS = lt_it_vendors
         IT_PARTNER_TYPES = lt_it_partner_types
         ET_MESSAGES = lt_et_messages
. " BBP_CM_APP_AUC_CREATE




ABAP code using 7.40 inline data declarations to call FM BBP_CM_APP_AUC_CREATE

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!