‎2008 Feb 22 10:15 AM
how we will make join by takin data from 3 internal table , plz tell me in details?
‎2008 Feb 22 10:27 AM
Hi
Loop at the table which is having items or multiple entries
read the second table based on loop value
read the third table based on the first or second table
Modify the first table add the required fields to first field to have them in one
regards
Shiva
‎2008 Feb 22 10:27 AM
Hi
Loop at the table which is having items or multiple entries
read the second table based on loop value
read the third table based on the first or second table
Modify the first table add the required fields to first field to have them in one
regards
Shiva
‎2008 Feb 22 10:34 AM
plz tell me bya an example, can we use for all entries here?
‎2008 Feb 22 10:45 AM
Hi,
How can you use For all entires when the data is in itab
if you want to get the related data from database table then use For all entires
Regards
Shiva
‎2008 Feb 22 4:25 PM
assume that 3 itabs have a common fld1
and we r joining all3 into 4th , itab4
loop itab1.
read table itab2 with key fld1 = itab1-flad1.
read table itab3 with key fld1 = itab1-flad1.
move corresponding fields from itab1 to itab4.
move corresponding fields from itab2 to itab2.
move corresponding fields from itab3 to itab2.
append itab4
clear itab1, itab2 itab3, itab4.
endloop
now itab4 contains all the join flds
Reward if useful