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

Save data in Ztable

Former Member
0 Likes
838

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
540

Hi

First move data into a internal table (ITAB) then code

MODIFY ZTABLE FROM ITAB.

3 REPLIES 3
Read only

Former Member
0 Likes
541

Hi

First move data into a internal table (ITAB) then code

MODIFY ZTABLE FROM ITAB.

Read only

Former Member
0 Likes
540

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.

Read only

vishal_sharda2
Participant
0 Likes
540

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.