‎2008 Feb 08 4:50 AM
Hi
I had a query. In which i'll get the values from a standard tcode i want to save that values in a customised Z table. How to save that data automatically whenever the data comes to standard table at the same time it should come to Z table also. Or the data in that table should be filled here also
Regards
Nanda
‎2008 Feb 08 4:53 AM
Hi
First move data into a internal table (ITAB) then code
MODIFY ZTABLE FROM ITAB.
‎2008 Feb 08 4:53 AM
Hi
First move data into a internal table (ITAB) then code
MODIFY ZTABLE FROM ITAB.
‎2008 Feb 08 4:53 AM
Hi,
Try to find an user-exit which gets triggered while saving that t-code.........and write ur Ztable's update code in that user-exit.............
Cheers,
jose.
‎2008 Feb 08 4:56 AM
Hi Nanda,
Greetings!!!
Create an internal table of same structture as of the standard table.
Populate the internal table using Select query.
Then use MODIFY ZTABLE FROM <internal table>.
Reward points if helpful.
Regards,
Vishal.