‎2007 Mar 24 6:29 PM
Hi Experts,
Kindly explain how to grouping similar table fields
Thanks in advance
Santosh
‎2007 Mar 25 1:32 PM
Hi Santosh
By Making use of Inner Join and Group by command in SQL statement I think i answered ur question plz grant me point if iam correct
regards
suresh
‎2007 Mar 26 10:54 AM
Creat a view with the fields that are similar with the similarity conditions(jion condition in view).
If you want all these fields to be in a table,
Create a Database table with the fields and then write a select query from the created view into an internal table and popolate the internal table data into database rable using the below code using a abap program.
loop at itab into databasetab
insert databasetab.
endloop.
Hope your problem is solved.
Reward points if it helps you.
Regds,
Rama chary.Pammi
Message was edited by:
RAMA PAMMI