Wednesday, December 18, 2019

FM Based Datasource

Points to Remember
------------------------

  • When running the datasource in RSA3 for multiple packets, data will be repeated in different packets. 
    • For say, Single packet call captured 500 entries, when you run for multiple packets (3), you might get first call with 500, 2nd call with 150 and 3rd call with 90 records. If you compare the data, you can see that, the first 500 are the right values and the other 150 and 90 are duplicates from the 500 set.
  • Use STATICS during declaration if you want to retain the values in a table for all data packets.
    • When using multiple packets, data gets refreshed in the internal table for each iteration. Declaring the tables.variable with STATICS will hold the values through out the execution for tables which need to be selected only once functionally.