2022 Jul 01 9:26 AM
Hi everyone 🙂
I have a selection screen :
TABLES: e070, e071, e07t, e070create, ctsproject, e070a.<br><br>SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME.<br> PARAMETERS: p_ot TYPE e070-trkorr,<br> p_nni TYPE e070-as4user,<br> p_idpro TYPE ctsproject-externalid.<br>SELECTION-SCREEN END OF BLOCK block1.<br>
plz how i can relate tables to get the right result from the selection-screen with Select .. from ... or instruction " INNER JOIN ".
thanks
2022 Jul 01 9:34 AM
Hi,
you can use the following view that joins both related tables:
CTSPROJ_F4<br>
Kind regards
Jens
2022 Jul 01 9:29 AM
You will have to find the logical link between table e070 and ctsproject
if you failed to find it by your own, you could make a trace on SE01 or SE10 transaction
2022 Jul 01 9:34 AM
Hi,
you can use the following view that joins both related tables:
CTSPROJ_F4<br>
Kind regards
Jens
2022 Jul 01 9:39 AM
2022 Jul 01 9:41 AM
2022 Jul 01 9:44 AM
thank u for your answer, i have to use correctly SELECT ... FROM ...
i don't know if / how i can use INNER ^^
regards
2022 Jul 01 9:48 AM
You don't need inner join as Jens provide you a View.
Open the view using transaction SE11, and you will see the link between different tables
2022 Jul 01 10:29 AM
Analyze those tables with SE11 or trace ST05 sql / SAT abap some standard transactions
For example look at E071.
2022 Jul 01 10:46 AM
For information, you don't need the statement TABLES (it's needed only for transporting implicitly DDIC-bound dynpro fields).
2022 Jul 01 10:48 AM