Skip to Content
0
Former Member
Jan 28, 2008 at 06:52 AM

It's too urgent

34 Views

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.