SAP ABAP Message Class CNV21500 Message Number 039 (Structure of RELID <&1,&2> defined in DDIC, however imp. routine is macro)
Hierarchy
☛
DMIS (Software Component) DMIS 2011_1
⤷
CA-GTF-BS (Application Component) Business Application Support
⤷
CNV_21510 (Package) Only for IMG for CNV_21500

⤷

⤷

Attribute
Message class | ![]() |
CNV21500 | |
Short Description | ![]() |
Messages for HR conversions basis | |
Message Number | ![]() |
039 | |
Documentation status | ![]() |
||
Authorization check Error Message | |||
Changed On | ![]() |
20141030 |
Message Text
Structure of RELID <&1,&2> defined in DDIC, however imp. routine is macro
Help Document
Diagnosis
Structure of RELID <,> is defined in DDIC, however import routine indicated in CNV_INDX_MACROS is not function module, which is the preferred form of importing data for such RELIDs.
Search for relevant fields in this case is always done on the basis of DDIC. This means, that our knowledge about RELID's structure is somehow different from structure in DDIC - some of fields might not have been found during the search process.
System Response
Procedure
Please make sure you really don't want to use default function modules for this RELID and check if the knowledge gathered in CNV_INDX_STRUC table is correct.
Compare results of following query:
SELECT s~cluster_name s~relid s~versn s~tabst s~structure s~struc_type
INTO CORRESPONDING FIELDS OF TABLE gt_cnv_indx_struc1
FROM cnv_indx_struc AS s JOIN t52relid AS t
ON
s~cluster_name = t~tabname AND
s~relid = t~relid AND
s~versn = t~version
WHERE
s~cluster_name = '' AND s~relid = ''.
and output of function module CNV_21500_T52RELID_DEFINED:
DATA lt_struct TYPE STANDARD TABLE OF cnv_indx_struc.
CALL FUNCTION 'CNV_21500_T52RELID_DEFINED'
EXPORTING
p_cluster_name = ''
p_relid = ''
TABLES
pt_struct = lt_struct
EXCEPTIONS
no_typename = 1
no_structure = 2
struct_not_in_ddic = 3
OTHERS = 4.
Procedure for System Administration
History
Last changed on/by | ![]() |
20141030 | SAP |
SAP Release Created in | 2006_1_46C |