I am using two local variables and the data is coming via expression rules (there are multiple columns)
local!empStatus: index(rule!EO_getEmpStatus(),"data",{}), local!empDetail: index(rule!EO_getEmpDetail(),"data",{})
I want to use the data of local!empStatus and local!empDetail into single read-only grid.
Discussion posts and replies are publicly visible
Hi ankitas0001,
Alternatively, you can also create a VIEW and join the 2 tables from which you are querying the data for empStatus and empDetail.
This will be an efficient way because you can query all the required data in a single shot and also in the desired format.