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: 

unicode conversion?

Former Member
0 Kudos

Hi Gurus,

while migrating 4.6b program to ECC 6.0 for the following code

loop at itab assigning <field-symbol-blg>(This is LIKE BAPISDFLOW)

where predoc = i_chv ( this is type of VBPOS)

In where condition it's showing error structure is not matching?

what i need to do? I can change this code so that it will work in ECC 6.0

1 REPLY 1

Former Member
0 Kudos

Hi Pravin,

Do not use field symbols. Instead use move-corresponding or identify the identical fields in both the structures and move them individually.

for eg. if your A structure has fields f1 f2 f3 and B has f1 and f2 only then in unicode system this will not work.

A = B or B = A

you have to use move-corresponding A to B or the vice versa.

Or you can individually move the fields,

A-f1 = B-f1 ......

Please let me know if you need further info on this.

Thanks,

Sai