SAP CNV_MBT_PEB_CHECK Function Module for Validation of a PEB
CNV_MBT_PEB_CHECK is a standard cnv mbt peb check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Validation of a PEB 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 cnv mbt peb check FM, simply by entering the name CNV_MBT_PEB_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: CNV_MBT_PEB
Program Name: SAPLCNV_MBT_PEB
Main Program: SAPLCNV_MBT_PEB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CNV_MBT_PEB_CHECK 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 'CNV_MBT_PEB_CHECK'"Validation of a PEB.
EXPORTING
IV_PACKID = "Package Number to Specify CMIS and TDMS Packages
IV_PHASE = "Phase of the Migration Project
IV_PEBID = "Unique id for Process Execution Blocks
* ONLY_CHECK = ' ' "flag
* RESTART = ' ' "Restart mode
IMPORTING
EV_START = "Just one character
EXCEPTIONS
INVALID_PEB = 1 INVALID_STATE_REQUEST = 2 DATABASE_ERROR = 3 START_NOT_POSSIBLE = 4
IMPORTING Parameters details for CNV_MBT_PEB_CHECK
IV_PACKID - Package Number to Specify CMIS and TDMS Packages
Data type: CNVMBTPACK-PACKIDOptional: No
Call by Reference: No ( called with pass by value option)
IV_PHASE - Phase of the Migration Project
Data type: CNVMBTIMG-PHASEOptional: No
Call by Reference: No ( called with pass by value option)
IV_PEBID - Unique id for Process Execution Blocks
Data type: CNVMBTPEB-PEB_IDOptional: No
Call by Reference: No ( called with pass by value option)
ONLY_CHECK - flag
Data type: CNV_MBT_CHARDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
RESTART - Restart mode
Data type: CNV_MBT_CHARDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CNV_MBT_PEB_CHECK
EV_START - Just one character
Data type: CNV_MBT_CHAROptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INVALID_PEB -
Data type:Optional: No
Call by Reference: Yes
INVALID_STATE_REQUEST -
Data type:Optional: No
Call by Reference: Yes
DATABASE_ERROR -
Data type:Optional: No
Call by Reference: Yes
START_NOT_POSSIBLE -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for CNV_MBT_PEB_CHECK 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_ev_start | TYPE CNV_MBT_CHAR, " | |||
| lv_iv_packid | TYPE CNVMBTPACK-PACKID, " | |||
| lv_invalid_peb | TYPE CNVMBTPACK, " | |||
| lv_iv_phase | TYPE CNVMBTIMG-PHASE, " | |||
| lv_invalid_state_request | TYPE CNVMBTIMG, " | |||
| lv_iv_pebid | TYPE CNVMBTPEB-PEB_ID, " | |||
| lv_database_error | TYPE CNVMBTPEB, " | |||
| lv_only_check | TYPE CNV_MBT_CHAR, " SPACE | |||
| lv_start_not_possible | TYPE CNV_MBT_CHAR, " | |||
| lv_restart | TYPE CNV_MBT_CHAR. " SPACE |
|   CALL FUNCTION 'CNV_MBT_PEB_CHECK' "Validation of a PEB |
| EXPORTING | ||
| IV_PACKID | = lv_iv_packid | |
| IV_PHASE | = lv_iv_phase | |
| IV_PEBID | = lv_iv_pebid | |
| ONLY_CHECK | = lv_only_check | |
| RESTART | = lv_restart | |
| IMPORTING | ||
| EV_START | = lv_ev_start | |
| EXCEPTIONS | ||
| INVALID_PEB = 1 | ||
| INVALID_STATE_REQUEST = 2 | ||
| DATABASE_ERROR = 3 | ||
| START_NOT_POSSIBLE = 4 | ||
| . " CNV_MBT_PEB_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM CNV_MBT_PEB_CHECK
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 PACKID FROM CNVMBTPACK INTO @DATA(ld_iv_packid). | ||||
| "SELECT single PHASE FROM CNVMBTIMG INTO @DATA(ld_iv_phase). | ||||
| "SELECT single PEB_ID FROM CNVMBTPEB INTO @DATA(ld_iv_pebid). | ||||
| DATA(ld_only_check) | = ' '. | |||
| DATA(ld_restart) | = ' '. | |||
Search for further information about these or an SAP related objects