SAP PVBE_DATA_MAPPING Function Module for NOTRANSL: Mapping von PVB nach APO PVBE
PVBE_DATA_MAPPING is a standard pvbe data mapping SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Mapping von PVB nach APO PVBE 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 pvbe data mapping FM, simply by entering the name PVBE_DATA_MAPPING into the relevant SAP transaction such as SE37 or SE38.
Function Group: CPVBE
Program Name: SAPLCPVBE
Main Program: SAPLCPVBE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PVBE_DATA_MAPPING 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 'PVBE_DATA_MAPPING'"NOTRANSL: Mapping von PVB nach APO PVBE.
EXPORTING
* IV_METHOD = ' ' "Method to be Executed During the Transfer of an Object
TABLES
IT_PVBE = "Production Supply Area
IT_PVKT = "Supply Area Short Text
ET_CIF_PVBE = "Outbound Structure for PSA (Production Supply Area)
ET_CIF_PVBEX = "Checklist for PSA (Structure Only Has Keys)
ET_CIF_PVBET = "Outbound Structure for Text Table PVBE
ET_CIF_PVBETX = "Checklist for Text Element CIF_PVBET
IMPORTING Parameters details for PVBE_DATA_MAPPING
IV_METHOD - Method to be Executed During the Transfer of an Object
Data type: CIFLOC-METHODDefault: SPACE
Optional: No
Call by Reference: Yes
TABLES Parameters details for PVBE_DATA_MAPPING
IT_PVBE - Production Supply Area
Data type: PVBEOptional: No
Call by Reference: Yes
IT_PVKT - Supply Area Short Text
Data type: PVKTOptional: No
Call by Reference: Yes
ET_CIF_PVBE - Outbound Structure for PSA (Production Supply Area)
Data type: CIF_PVBEOptional: No
Call by Reference: Yes
ET_CIF_PVBEX - Checklist for PSA (Structure Only Has Keys)
Data type: CIF_PVBEXOptional: No
Call by Reference: Yes
ET_CIF_PVBET - Outbound Structure for Text Table PVBE
Data type: CIF_PVBETOptional: No
Call by Reference: Yes
ET_CIF_PVBETX - Checklist for Text Element CIF_PVBET
Data type: CIF_PVBETXOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for PVBE_DATA_MAPPING 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_it_pvbe | TYPE STANDARD TABLE OF PVBE, " | |||
| lv_iv_method | TYPE CIFLOC-METHOD, " SPACE | |||
| lt_it_pvkt | TYPE STANDARD TABLE OF PVKT, " | |||
| lt_et_cif_pvbe | TYPE STANDARD TABLE OF CIF_PVBE, " | |||
| lt_et_cif_pvbex | TYPE STANDARD TABLE OF CIF_PVBEX, " | |||
| lt_et_cif_pvbet | TYPE STANDARD TABLE OF CIF_PVBET, " | |||
| lt_et_cif_pvbetx | TYPE STANDARD TABLE OF CIF_PVBETX. " |
|   CALL FUNCTION 'PVBE_DATA_MAPPING' "NOTRANSL: Mapping von PVB nach APO PVBE |
| EXPORTING | ||
| IV_METHOD | = lv_iv_method | |
| TABLES | ||
| IT_PVBE | = lt_it_pvbe | |
| IT_PVKT | = lt_it_pvkt | |
| ET_CIF_PVBE | = lt_et_cif_pvbe | |
| ET_CIF_PVBEX | = lt_et_cif_pvbex | |
| ET_CIF_PVBET | = lt_et_cif_pvbet | |
| ET_CIF_PVBETX | = lt_et_cif_pvbetx | |
| . " PVBE_DATA_MAPPING | ||
ABAP code using 7.40 inline data declarations to call FM PVBE_DATA_MAPPING
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 METHOD FROM CIFLOC INTO @DATA(ld_iv_method). | ||||
| DATA(ld_iv_method) | = ' '. | |||
Search for further information about these or an SAP related objects