2007 Jan 24 11:43 AM
Hi friends,
consider a situation where after getting the details output from a report, i want to store those details into a table. What is the procedure?? do we have to create the table and then transfer the report output to table or can we create and transfer at the same time using the same command or syntax??
2007 Jan 24 11:48 AM
Hi,
For this you need to create a custom table first. After getting the data in your Internal table / structure (WA), you can update the data to the table using..
UPDATE command.
Hi friends,
consider a situation where after getting the details output from a report, i want to store those details into a table. What is the procedure?? do we have to create the table and then transfer the report output to table or can we create and transfer at the same time using the same command or syntax??
2007 Jan 24 11:48 AM
well, 10 Views, no reply...
to what conclusion does that bring us to?
People prbably dont understand your problem like it is formulated now.
please help us to help you.
2007 Jan 24 11:48 AM
Hi,
For this you need to create a custom table first. After getting the data in your Internal table / structure (WA), you can update the data to the table using..
UPDATE command.
2007 Jan 24 11:49 AM
Hi
Before displaying the contents on the screen, append ( store the contents ) in some internal table
and later on use the same as you wish.
hope it helps.
Pls reward suitable points.
Regards
- Atul
2007 Jan 24 11:50 AM
Hi Raghu,
Yes, you need to create a Z table in advance similar to the structure of the details internal table and then transfer the values to the ztable using insert or modify command.
reward points if it helps
2007 Jan 24 11:58 AM
hi ragu,
u have produced a report! in this if u used internal table all the values in the first report will be internal table.
loop that internal table and insert the records that are present in internal to the db table.
thank u.