0% found this document useful (0 votes)
37 views

Book 3

Book3

Uploaded by

Pavilion
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views

Book 3

Book3

Uploaded by

Pavilion
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

SAP Knowledge Base Article

3128863 - Migration Cockpit: Wrong Class Type <xxx> is not supported when migrating
custom class types
Component: CA-GTF-MIG (Cross-Application Components > General Application Functions > SAP S/4HANA
Data Migration Cockpit Content), Version: 3, Released On: 07.12.2023

Symptom
You want to migrate classification data with the SAP S/4HANA migration cockpit via the data migration object "Object
classification - General template" (SIF_CLF_OBJ).
You got error message CNV_DMC_SIN 433 that your custom class type is not supported with one of the following text,
dependent on your product release.
Wrong Class Type &1 is not supported
Enter a correct class type. Class type &1 isn't supported.

Environment
SAP S/4HANA
Transaction "LTMC"
Transferring Data Using Files
Transferring Data Using Staging Tables
"Migrate Your Data – Migration Cockpit" app
Migrate Data Using Staging Tables

Cause
The delivered data migration object content for "Object classification - General template" is based and tested on specific class
types. Other class types than the predefined can therefore not be used with that object.
The class types that are supported for the object "Object classification - General template" can be found in the migration
object documentation.
This SAP Help Portal documentation for the latest release is available via the Migration Cockpit or directly via this link Object
classification - General template. Select your release version and language in title section to the supported class types for your
release.

Resolution
You may copy the original object to build up an own custom object via SAP S/4HANA migration object modeler (Transaction:
LMTOM).
Here you may adapt the subproject rule SET_OBJKEY_GENERIC to include your custom class type(s) and additional relevant
checks into a new WHEN clause of the CASE..ENDCASE statement (for class types).
Note, that the data migration object "Object classification - General template" doesn't have a value mapping for object keys
included. Therefore you must always hand over the target object key in correct format for your custom object.
Below you see an excerpt from the existing code (SAP S/4HANA 2023) and the places in red where you need to enter your
coding:
...
CASE lv_classtype.
"Material classification
WHEN '001' OR '022' OR '023' OR '200' OR '300'.
...
WHEN '<your class type>'.
<your coding similar to the other WHEN-Clause codings>
...
WHEN OTHERS.
"NOP
ENDCASE.
"lv_classtype
...
"all mappings confirmed
IF is_mapped = abap_true.
CASE lv_classtype.
"Material/Material (Configurable Objects)/Variants
WHEN '001' OR '200' OR '300'.
...
WHEN '<your class type>.
<your coding similar to the other WHEN-Clause codings to bring the key into the correct input format>
...
WHEN OTHERS.
PERFORM _rule_allog_msg_p
USING
'E' 'CNV_DMC_SIN' '433'
lv_classtype
space
space
space
'IL'.
ENDCASE.
"lv_classtype
Be aware that the support for such custom data migration objects is very limited by SAP, similar to custom reports.
For details on supportrestrictions see SAP Note 2481235.

See Also
See also the migration object documentation: Object classification - General template
Trainings on how to copy a migration object and build custom objects can be found on the Data Migration Landing page. Here
you choose the "Training and Education " section and "Training Material" → "Migration Object Modeler - Files/Staging
Tables" → SAP S/4HANA Migration Object Modeler: Creating a New Migration Object

Keywords
SIF_CLF_OBJ, CNV_DMC_SIN433; CNV_DMC_SIN 433; Object classification - General
template; SET_OBJKEY_GENERIC

Products
Products

SAP S/4HANA all versions

This document refers to


SAP Note/ Component Title
KBA

2481235 CA-GTF- Restrictions and extensibility of pre-delivered migration objects - SAP S/4HANA Migration Cockpit
MIG (on premise)

SAP Help Portal Migration Object documentation

You might also like