‎2008 Mar 28 8:54 AM
Hi,
I am using PNP logical database in my program. I want to get the position description from table"T528T".
If I add this table to the "tables statement" it is showing an error.
How to solve this error
‎2008 Mar 28 9:05 AM
Hi,
This is the problem that the work area might have been already declared. Because logical database in itself has the decalarations. Your table that is T528T have already been declared. Thats why it shows error.
Regards,
Sanki.
‎2008 Mar 28 8:56 AM
write a select statement on table T528T and get the text
by passing the position .. No need to declare this with tables
statement.
‎2008 Mar 28 8:59 AM
Hi,
Just write ur select query no need to declare this in tables.
Reward points if useful....
Regards
AK
‎2008 Mar 28 9:05 AM
Hi,
This is the problem that the work area might have been already declared. Because logical database in itself has the decalarations. Your table that is T528T have already been declared. Thats why it shows error.
Regards,
Sanki.
‎2008 Mar 28 9:10 AM
After i deleted the declaration statement it is showing the error
"Field T528T IS UNKNOWN"
‎2008 Mar 28 9:13 AM
I think UR taking the value into table work area ...
declare like this ...
data : it_T528T like T528T occurs 0 with header line.
select * from T528T into table it_T528T where
otype = 'S'
plans = value ...
‎2008 Mar 28 9:21 AM