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

INSERTING VALUES TO CORRESPONDING FIELD IN INTERNAL TABLE

Former Member
0 Likes
946

HI ,

i have 2 intenal tables of of one with data of name and another with fathers name .if i have to link these 2 tables in 3 table and i have to check the name and fathers name or correct and insert into 3rd table.

HI ,

i have 2 intenal tables of of one with data of name and another with fathers name .if i have to link these 2 tables in 3 table and i have to check the name and fathers name or correct and insert into 3rd table.

4 REPLIES 4
Read only

Former Member
0 Likes
901

The tabels must have exactly the structure

itab2[] = itab2[]

Read only

Former Member
0 Likes
901

From which table u r taking, so ur name and fathers name is linked how?

Read only

Former Member
0 Likes
901

select afield1 afield2 bfield1 into (table3-field1, table3-field2, table3-field3) from table1 as a inner join table2 as b on aname eq b~name

where ....

Read only

Former Member
0 Likes
901

actually i have name of 5 records and fathers name i dont know how to link it.