‎2008 Aug 07 8:46 PM
Hi all:
I have a problem regarding Unicode now we're on ECC 6.0
Here the code:
FIND 'TEILE_BEIP' IN TABLE zt_plpo IN CHARACTER MODE.
Tha table zt_plpo is define as follow:
DATA: zt_plpo TYPE coplpo OCCURS 10 WITH HEADER LINE.
And coplpo is a standard structure of Routing Operations to Order.
The error is:
Als Zeilentyp der Tabelle "ZT_PLPO" wurde im CHAR MODE ein zeichenartiges bzw.
im BYTE MODE ein byteartiges Feld erwartet.
So I want to know how should I define ZT_PLPO in order to don't have this error.
Thanks in advance for your help.
Miriam
‎2008 Aug 07 9:02 PM
Hi,
u need to remove the 'OCCURS' first. and u need to declare that internal table like this below,
data: begin of structure,
field1 type i,
field2 type c,
end of structure,
i_tab like table of structure with header line.
this ll help u.
‎2008 Aug 07 9:02 PM
Hi,
u need to remove the 'OCCURS' first. and u need to declare that internal table like this below,
data: begin of structure,
field1 type i,
field2 type c,
end of structure,
i_tab like table of structure with header line.
this ll help u.
‎2008 Aug 07 10:00 PM