CNV_MBT_CHECK_CONFLICT_READ is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name CNV_MBT_CHECK_CONFLICT_READ into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CNV_MBT_CHECK
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'CNV_MBT_CHECK_CONFLICT_READ' "Return conflicts for a specified conversion object or package
EXPORTING
packid = " cnvmbtpack-packid Package Number to Specify CMIS and TDMS Packages
* convobject = " cnvmbtconvobjects Structure for Conversion objects
* strucname = " cnvmbttables-strucname Structure Name
* fieldname = " cnvmbtforkey-fieldname Field Name
* conflict_type = " cnvmbtconflicts-conflict_type Conflict between sender and receiver structure
* only_not_solved = " cnvmbtconflicts-solved conflict solved?
* only_solved = " cnvmbtconflicts-solved conflict solved?
TABLES
et_cnvmbtconflicts = " cnvmbtconflicts Conflicts between sender and receiver system
. " CNV_MBT_CHECK_CONFLICT_READ
The ABAP code below is a full code listing to execute function module CNV_MBT_CHECK_CONFLICT_READ including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_et_cnvmbtconflicts | TYPE STANDARD TABLE OF CNVMBTCONFLICTS,"TABLES PARAM |
| wa_et_cnvmbtconflicts | LIKE LINE OF it_et_cnvmbtconflicts . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_packid | TYPE CNVMBTPACK-PACKID , |
| it_et_cnvmbtconflicts | TYPE STANDARD TABLE OF CNVMBTCONFLICTS , |
| wa_et_cnvmbtconflicts | LIKE LINE OF it_et_cnvmbtconflicts, |
| ld_convobject | TYPE CNVMBTCONVOBJECTS , |
| ld_strucname | TYPE CNVMBTTABLES-STRUCNAME , |
| ld_fieldname | TYPE CNVMBTFORKEY-FIELDNAME , |
| ld_conflict_type | TYPE CNVMBTCONFLICTS-CONFLICT_TYPE , |
| ld_only_not_solved | TYPE CNVMBTCONFLICTS-SOLVED , |
| ld_only_solved | TYPE CNVMBTCONFLICTS-SOLVED . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name CNV_MBT_CHECK_CONFLICT_READ or its description.
CNV_MBT_CHECK_CONFLICT_READ - Return conflicts for a specified conversion object or package CNV_MBT_CC_PROFIL_READ - Read Client-Copy Profil CNV_MBT_CC_EXCLTAB_WRITE - ClientCopy: Write tables to be excluded for client copy CNV_MBT_CALL_TWO - Rfc pwd check CNV_MBT_CALL_ONE - RFC pwd check CNV_MBT_AUTH_USER_ROLE_GET - MBT PCL determine authority in user profile - to determine user type