Hi Team,
I have a script in SAP GUI Protocol in Loadrunner Vugen script.
Need update the Grid Table in normal days column having empty rows. So, we need to update the empty rows with the value 1 untill empty row exists.
Can any suggest this scripting challenge code with us.
8.Enter 1,0 in empty cells in normal duration values
this code in vugen :
// after filter the normal days colunm rows as empty rows then i am gettibg row count of empty rows //
sapgui_grid_get_rows_count("Normal_Days_Rows",
"ses[0]/wnd[0]/usr/shell",
"Get_Row_Count",
LAST);
count = lr_evel_string("Get_Row_Count");
for(i=0; i<= count;i++)
{
sapgui_grid_fill_data("'Edit Project Activities' (-1, Normal Dur Days)",
shell1,
"{count}",
"DAUNO","1,0",
BEGIN_OPTIONAL,
"AdditionalInfo=sapgui1068",
END_OPTIONAL);
}