Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

LOGICAL DATABASE

Former Member
0 Likes
742

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
714

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.

6 REPLIES 6
Read only

Former Member
0 Likes
714

write a select statement on table T528T and get the text

by passing the position .. No need to declare this with tables

statement.

Read only

ak_upadhyay
Contributor
0 Likes
714

Hi,

Just write ur select query no need to declare this in tables.

Reward points if useful....

Regards

AK

Read only

Former Member
0 Likes
715

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.

Read only

0 Likes
714

After i deleted the declaration statement it is showing the error

"Field T528T IS UNKNOWN"

Read only

0 Likes
714

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 ...

Read only

Former Member
0 Likes
714

Thanks all,

My problem is solved.