ok.. What i understood is that you have some value for which u need to find the corresponding row number.
U can use the below code
' if the value that you are looking for is present in the table then intRowNo will hold the row number for that value else intRowNo will be null.
Regards,
Ankesh
U can use the below code
Code:
intRowNo=SAPGuiSession("Session").SAPGuiWindow("WindowName").SAPGuiTable("TableName").FindRowByCellContent("ColumnName","<Value that you are looking for>")
Regards,
Ankesh