Application Development and Automation 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: 
Read only

Unicode Errors

Former Member
0 Likes
296

Hello ABAPpers,

I am getting the following unicode error.

"V_ITM_ER" must be a character-type field (data type C, N, D, or T). an open

control structure introduced by "INTERFACE".

for

DATA: v_itm_er TYPE i.

GET PARAMETER ID 'ZP1' FIELD v_itm_er.

Please suggest the correct solution for this.

Thank and Regards,

Rahul

1 REPLY 1
Read only

Former Member
0 Likes
253

This parameter ZP1 is associate to witch field?

Anyways, is better do like these:

Data: v_fieldxxx TYPE tablexxx-fieldxxx.

GET PARAMETER ID 'ZP1' FIELD v_fieldxxx.

Where tablexxx-fieldxxx is the field associate to ZP1 parametrer.