SAP RDM_MAP_BBY_2_PROMO_OFFER Function Module for Map KONBBYH to Structure RDM_S_PROMO_OFFER
RDM_MAP_BBY_2_PROMO_OFFER is a standard rdm map bby 2 promo offer SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Map KONBBYH to Structure RDM_S_PROMO_OFFER 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 rdm map bby 2 promo offer FM, simply by entering the name RDM_MAP_BBY_2_PROMO_OFFER into the relevant SAP transaction such as SE37 or SE38.
Function Group: RDM_OPT_PROMO_02
Program Name: SAPLRDM_OPT_PROMO_02
Main Program: SAPLRDM_OPT_PROMO_02
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RDM_MAP_BBY_2_PROMO_OFFER 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 'RDM_MAP_BBY_2_PROMO_OFFER'"Map KONBBYH to Structure RDM_S_PROMO_OFFER.
EXPORTING
* I_BBYNR = "Bonus Buy
* IS_BBY_HEADER_UPD = "Bonus Buy: Structure with RDM_S_BBY_WA_HEADER and Update Ind
* IS_BBY_HEADER_OLD = "Bonus Buy: Work-Area Header
* IS_WAKHD = "Screen field string for promotion header data
IMPORTING
ES_RDM_S_PROMO_OFFER = "Extract Structure Offer
IMPORTING Parameters details for RDM_MAP_BBY_2_PROMO_OFFER
I_BBYNR - Bonus Buy
Data type: BBYNROptional: Yes
Call by Reference: Yes
IS_BBY_HEADER_UPD - Bonus Buy: Structure with RDM_S_BBY_WA_HEADER and Update Ind
Data type: RDM_S_BBY_WA_HEADER_UPDOptional: Yes
Call by Reference: Yes
IS_BBY_HEADER_OLD - Bonus Buy: Work-Area Header
Data type: RDM_S_BBY_WA_HEADEROptional: Yes
Call by Reference: Yes
IS_WAKHD - Screen field string for promotion header data
Data type: WAKHDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RDM_MAP_BBY_2_PROMO_OFFER
ES_RDM_S_PROMO_OFFER - Extract Structure Offer
Data type: RDM_S_PROMO_OFFEROptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RDM_MAP_BBY_2_PROMO_OFFER 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_i_bbynr | TYPE BBYNR, " | |||
| lv_es_rdm_s_promo_offer | TYPE RDM_S_PROMO_OFFER, " | |||
| lv_is_bby_header_upd | TYPE RDM_S_BBY_WA_HEADER_UPD, " | |||
| lv_is_bby_header_old | TYPE RDM_S_BBY_WA_HEADER, " | |||
| lv_is_wakhd | TYPE WAKHD. " |
|   CALL FUNCTION 'RDM_MAP_BBY_2_PROMO_OFFER' "Map KONBBYH to Structure RDM_S_PROMO_OFFER |
| EXPORTING | ||
| I_BBYNR | = lv_i_bbynr | |
| IS_BBY_HEADER_UPD | = lv_is_bby_header_upd | |
| IS_BBY_HEADER_OLD | = lv_is_bby_header_old | |
| IS_WAKHD | = lv_is_wakhd | |
| IMPORTING | ||
| ES_RDM_S_PROMO_OFFER | = lv_es_rdm_s_promo_offer | |
| . " RDM_MAP_BBY_2_PROMO_OFFER | ||
ABAP code using 7.40 inline data declarations to call FM RDM_MAP_BBY_2_PROMO_OFFER
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