2007 Mar 05 6:52 AM
Hey gurus,
in one of mu pgms i declared like this in Mysap ERP version....
T_EXTENSIONIN LIKE BAPIPAREX OCCURS 0 WITH HEADER LINE.
DATA: W_BAPE_VBAK LIKE BAPE_VBAK
T_EXTENSIONIN-VALUEPART1 = W_BAPE_VBAK.
But i am getting erros like
1.T_EXTENSIONIN-VALUEPART1 and W_BAPE_VBAK are not mutually convertible in a Unicode program.
2.The enhancement specification of the structutre type BAPE_VBAK is not consistent.
How can we rectify this?
Regards
2007 Mar 05 6:57 AM
Hi,
T_EXTENSIONIN-VALUEPART1 field is 240 Char field.
and BAPE_VBAK is the structure with just a single field VBELN of char10.
How it will match?
Change the declarations.
Regards,
Anji
2007 Mar 05 6:57 AM
Hi,
T_EXTENSIONIN-VALUEPART1 field is 240 Char field.
and BAPE_VBAK is the structure with just a single field VBELN of char10.
How it will match?
Change the declarations.
Regards,
Anji