Issue with report definition - Display Page List properties on a Single Column
Scenario.
We have a page list which list
We have a page list that contains the list of Trees that ordered by a user. Once user can order maximum 3 trees.
There is a report definition that extract the case IDs along with the trees that are requested by users.
Report columns comes as follows
Case ID | First Name | Tree Name 1 | Tree Name 2 | Tree Name 3
T-001 | John | Lemon | Lime | Mango
Tree name 1,2,3 has been defined in the report definition as follows.
TreeList(1).TreeName
TreeList(2).TreeName
TreeList(3).TreeName
These values are directly retrieved from Blob column.
Since this report gives rule warnings for Property optimization, we did the property optimization for TreeName property.
Created a declare index rule and for new cases, the values are saving to index table.
To retrieve the values from Index table, did the index join to the report definition and now the optimization issue is resolved but the
data is displayed as follows.
Case ID | First Name | Tree Name 1 | Tree Name 2 | Tree Name 3
T-001 | John | Lemon | Lime | Mango
Scenario.
We have a page list which list
We have a page list that contains the list of Trees that ordered by a user. Once user can order maximum 3 trees.
There is a report definition that extract the case IDs along with the trees that are requested by users.
Report columns comes as follows
Case ID | First Name | Tree Name 1 | Tree Name 2 | Tree Name 3
T-001 | John | Lemon | Lime | Mango
Tree name 1,2,3 has been defined in the report definition as follows.
TreeList(1).TreeName
TreeList(2).TreeName
TreeList(3).TreeName
These values are directly retrieved from Blob column.
Since this report gives rule warnings for Property optimization, we did the property optimization for TreeName property.
Created a declare index rule and for new cases, the values are saving to index table.
To retrieve the values from Index table, did the index join to the report definition and now the optimization issue is resolved but the
data is displayed as follows.
Case ID | First Name | Tree Name 1 | Tree Name 2 | Tree Name 3
T-001 | John | Lemon | Lime | Mango
T-001 | John | Lemon | Lime | Mango
T-001 | John | Lemon | Lime | Mango
How we can bring the report to display the trees in a single row after index join. (data has to be displayed as it was before)
Case ID | First Name | Tree Name 1 | Tree Name 2 | Tree Name 3
T-001 | John | Lemon | Lime | Mango