Hi,
iam concatenating P and infotype number which has subtypes (ex: 0006 or 00021 e.tc.) into variable "intext" which is of type string.
now i use ASSIGN and send that work area to <ptr> which is of type any;
data : <ptr> type any.
assign intext to <ptr>.
so now <ptr> has work area. now i want to read a field from the <ptr> which may contain 0006 or 0021 work area. how to write generally to retrieve a field.
<ptr> is type ANY. i can't loop it as internal table.
if i take <ptr> as type standard table, i cant use
assign intext to <ptr>. because intext is of type string.
how to solve it? urgent.