SAP BBP_LA_BIZAPI_AUC_GETDETAIL Function Module for SRM-LAC BizAPI login









BBP_LA_BIZAPI_AUC_GETDETAIL is a standard bbp la bizapi auc getdetail SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SRM-LAC BizAPI login 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 la bizapi auc getdetail FM, simply by entering the name BBP_LA_BIZAPI_AUC_GETDETAIL into the relevant SAP transaction such as SE37 or SE38.

Function Group: BBP_LA_BIZAPI
Program Name: SAPLBBP_LA_BIZAPI
Main Program: SAPLBBP_LA_BIZAPI
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function BBP_LA_BIZAPI_AUC_GETDETAIL 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_LA_BIZAPI_AUC_GETDETAIL'"SRM-LAC BizAPI login
EXPORTING
I_AUCTION_GUID = "SRM-LAC BizAPI Login
I_USER_ID = "SRM-LAC BizAPI Login
* I_LANGUAGE = "R/3 System, current language

IMPORTING
ES_AUC_HEADER = "SRM Live Auction BizApi Auction Header
E_SUBRC = "Return Value, Return Value After ABAP Statements

TABLES
* ET_AUC_ITEM = "SRM Live Auction BizApi Auction Item
* ET_LONGTEXT = "Long Texts for Procurement Document
* ET_BID = "SRM Live Auction BizApi Bid
* ET_PARTICIPANT = "SRM Live Auction BizApi Participant
* ET_CHAT = "Chat
* ET_FACTOR = "Factors for bidders in an auction
* ET_DUMMY = "Table With Sequence Numbers for filtered entries
* ET_MESSAGES = "Error Messages
.



IMPORTING Parameters details for BBP_LA_BIZAPI_AUC_GETDETAIL

I_AUCTION_GUID - SRM-LAC BizAPI Login

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

I_USER_ID - SRM-LAC BizAPI Login

Data type: SY-UNAME
Optional: No
Call by Reference: No ( called with pass by value option)

I_LANGUAGE - R/3 System, current language

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

EXPORTING Parameters details for BBP_LA_BIZAPI_AUC_GETDETAIL

ES_AUC_HEADER - SRM Live Auction BizApi Auction Header

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

E_SUBRC - Return Value, Return Value After ABAP Statements

Data type: SY-SUBRC
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for BBP_LA_BIZAPI_AUC_GETDETAIL

ET_AUC_ITEM - SRM Live Auction BizApi Auction Item

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

ET_LONGTEXT - Long Texts for Procurement Document

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

ET_BID - SRM Live Auction BizApi Bid

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

ET_PARTICIPANT - SRM Live Auction BizApi Participant

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

ET_CHAT - Chat

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

ET_FACTOR - Factors for bidders in an auction

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

ET_DUMMY - Table With Sequence Numbers for filtered entries

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

ET_MESSAGES - Error Messages

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

Copy and paste ABAP code example for BBP_LA_BIZAPI_AUC_GETDETAIL 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_et_auc_item  TYPE STANDARD TABLE OF BBPS_LA_BIZAPI_AUC_ITEM, "   
lv_es_auc_header  TYPE BBPS_LA_BIZAPI_AUC_HEADER, "   
lv_i_auction_guid  TYPE BBP_GUID, "   
lv_e_subrc  TYPE SY-SUBRC, "   
lv_i_user_id  TYPE SY-UNAME, "   
lt_et_longtext  TYPE STANDARD TABLE OF BBP_PDS_LONGTEXT, "   
lt_et_bid  TYPE STANDARD TABLE OF BBPS_LA_BIZAPI_BID, "   
lv_i_language  TYPE SYLANGU, "   
lt_et_participant  TYPE STANDARD TABLE OF BBPS_LA_BIZAPI_PARTICIPANT, "   
lt_et_chat  TYPE STANDARD TABLE OF BBPS_LA_BIZAPI_CHAT, "   
lt_et_factor  TYPE STANDARD TABLE OF BBPS_LA_FACTOR, "   
lt_et_dummy  TYPE STANDARD TABLE OF BBPS_LA_BIZAPI_DUMMY, "   
lt_et_messages  TYPE STANDARD TABLE OF BBP_MESSAGES. "   

  CALL FUNCTION 'BBP_LA_BIZAPI_AUC_GETDETAIL'  "SRM-LAC BizAPI login
    EXPORTING
         I_AUCTION_GUID = lv_i_auction_guid
         I_USER_ID = lv_i_user_id
         I_LANGUAGE = lv_i_language
    IMPORTING
         ES_AUC_HEADER = lv_es_auc_header
         E_SUBRC = lv_e_subrc
    TABLES
         ET_AUC_ITEM = lt_et_auc_item
         ET_LONGTEXT = lt_et_longtext
         ET_BID = lt_et_bid
         ET_PARTICIPANT = lt_et_participant
         ET_CHAT = lt_et_chat
         ET_FACTOR = lt_et_factor
         ET_DUMMY = lt_et_dummy
         ET_MESSAGES = lt_et_messages
. " BBP_LA_BIZAPI_AUC_GETDETAIL




ABAP code using 7.40 inline data declarations to call FM BBP_LA_BIZAPI_AUC_GETDETAIL

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.

 
 
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_e_subrc).
 
"SELECT single UNAME FROM SY INTO @DATA(ld_i_user_id).
 
 
 
 
 
 
 
 
 


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!