cancel
Showing results for 
Search instead for 
Did you mean: 

Time Slice Refresh

Former Member
0 Kudos

Hello Experts,

I am a functional guy and would like to know what should be test strategy to test if TDTIM/time slice refresh was done correctly and if all the tables got updated/refreshed correctly from production?

Thanks,

Harish R

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

In TDMS (with TDTIM) , only transactional data is reduced and master data (for example T* tables and other master tables like MARA , MARC etc) are completely transferred.

Which tables are reduced on which basis could be determined by the view V_CNVMBTCOBJ.

- If the selection group of any object is empty that means it is completely transferred.

- If the selection group is G_DATUM , then it reduced based on date.

- If the selection group ig G_PACKID , then it is reduced based on other fields not necessarily on date.

and so on.

One of the tedious approach is to check and compare the no. of records in the sender and receiver system (for some of master data tables). For other tables (which are reduced based on date) , you can also compare records in sender and receiver giving date as input while calculating the no. of records.

Other approach is to test the receiver system by executing different transactions related to different modules to check if they are executing well without any error or dump.

For some of the tables you can use the first approach and for the rest second one.

Thanks