Posts: 2
Threads: 2
Joined: Jan 2012
Reputation:
0
09-19-2012, 04:01 PM
hi...
In my script, i did parameterization and added some values in Global data table. Whan I run the script, it is running even though the values in Global data table are completed. It is taking some defalut values and running. I checked the 'Action Call Properties- Run'. It is selected as 'Run on All Rows'. Can you please tell me why the script is not stopping......
Posts: 424
Threads: 10
Joined: Aug 2011
Reputation:
0
09-24-2012, 06:18 PM
What is the test run setting??
Is it set to Run on all rows? Make sure you do that as u hv entered data in global datasheet.
Posts: 41
Threads: 6
Joined: Jun 2011
Reputation:
0
09-26-2012, 08:15 PM
Pavani,
Settings are fine. You have to do two cross checks.
1. You should not have loop for reading of data from datatable. Like For i=1 to Rowcount
''' Execute statements
Next
2. You need to clear or delete all the data from the rows of datatable after your data rows.
Do above things and let me know how it goes.
Posts: 50
Threads: 11
Joined: Nov 2009
Reputation:
0
09-28-2012, 12:47 PM
Hi KRR,
You said correctly..
@Pavani,
Please delete the empty rows from your datatable because some times you may enter some data below of the datarows and after that u may delete the same data in the datasheet because you may not required the data ...so better delete those rows inspite of delete data in that row..
Earlier I faced the same issue ..
you may forgot to delete rows inspite of delete data from the datatable..
Posts: 41
Threads: 6
Joined: Jun 2011
Reputation:
0
10-04-2012, 11:18 PM
Hi Srselva,
I provided the solution assuming that setting will "Run On all rows".
@pavani
Let me know if you got the solution.