Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

BAPE_VBAK

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

1 REPLY 1

Former Member
0 Kudos

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