‎2009 May 18 2:19 PM
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
‎2009 May 18 2:42 PM
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.