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

Select data from three tables

Former Member
0 Likes
327

Hi,

Tables :PROJ-JEST-TJ30T Target Field:TXT04

PROJ-PSPNR--> PROJ-OBJNR =JEST-OBJNR + JEST-INACT = «blank»

JEST-STAT = (TJ30T-ISTAT = E* (we have to take only E*)+ TJ30T-SPRAS = EN) -->TJ30T-TXT04

We can have some status to display here, please concatenate and separate them by a coma.

can you give me suggestion to fill that requirement?

Regards

Subbu

1 REPLY 1
Read only

andreas_mann3
Active Contributor
0 Likes
286

sth like this:

SELECT

P~pspnr...

INTO CORRESPONDING FIELDS OF itab

FROM ( proj AS p INNER JOIN jest AS J

ON POBJNR = JOBJNR )

join TJ30T as t

on T~ISTAT = J-TSTAT

WHERE T~spras = 'EN'

and T~ISTAT like 'E%'.....

A.