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

Report to table.

rnb86
Participant
0 Likes
760

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??

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
727

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??

5 REPLIES 5
Read only

Former Member
0 Likes
727

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.

Read only

Former Member
0 Likes
728

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.

Read only

Former Member
0 Likes
727

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

Read only

Former Member
0 Likes
727

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

Read only

Former Member
0 Likes
727

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.