Page 1 of 1

Add Rows and Columns To Simple Data Connector during Runtime

Posted: Thu Oct 20, 2016 8:16 pm
by twadhwa
I have to add unknown number of columns and unknown number of rows to the simple data connector. The column names and row data will be fetched at runtime and i want to store these for further use in the data source.

I have the below code. It works to a point that either i have columns or rows. I add the columns and can retrieve their names and index and count, etc. But as soon as i add a row the col count goes to zero and then i can only retrieve the row data.

int Col_Count = RepoTCode.SAP_GUI.S_PH0_48000510_InfoSetQuery.Tbl_SAP_Query_MMDDYYYY.Columns.Count;
for(int j = 0; j<=Col_Count-1; j++)
{
var OutputConn1 = DataSources.Get("Output_S_PH0_48000510_InfoSetQuery");
string Col_Name = RepoTCode.SAP_GUI.S_PH0_48000510_InfoSetQuery.Tbl_SAP_Query_MMDDYYYY.Columns[j].Text;
if(Col_Name.Trim().ToLower() == "job")
{
if(RepoTCode.SAP_GUI.S_PH0_48000510_InfoSetQuery.Tbl_SAP_Query_MMDDYYYY.Rows[0].Cells[j].Text.ToString().Substring(0,1) == "0")
{
Col_Name = Col_Name + "_ID";
}
else
{
Col_Name = Col_Name + "_Description";
}
}
Ranorex.Core.Data.Column col = new Ranorex.Core.Data.Column(Col_Name);
OutputConn1.Columns.Add(col);
}

for(int x = 0; x<=3; x++)
{
var OutputConn = DataSources.Get("Output_S_PH0_48000510_InfoSetQuery");
string[] RowData = new string[Col_Count];

for(int z = 0; z<=Col_Count-1; z++)
{
RowData[z] = RepoTCode.SAP_GUI.S_PH0_48000510_InfoSetQuery.Tbl_SAP_Query_MMDDYYYY.Rows[x].Cells[z].Text.ToString();
}

Ranorex.Core.Data.Row row = new Ranorex.Core.Data.Row(RowData);
OutputConn.Rows.Add(row);
}


So here's is the end goal for this table
Capture.PNG
I want to copy this whole table to data source and then be able to perform operations like

int z = Dataconn.Columns.IndexOf("PERSONID");
string CellValue = Dataconn.Rows[1].Values[z];

** Dataconn is the connector name

Re: Add Rows and Columns To Simple Data Connector during Runtime

Posted: Fri Oct 21, 2016 12:16 pm
by odklizec
Hi,

Please post a Ranorex snapshot (not screenshot) of the problematic elements. Snapshot is a critical piece of information to find best approach how to solve your problem. Thanks.

As for manipulating tables in code, please check the available samples here:
http://www.ranorex.com/support/user-gui ... mples.html