Hello,
I am trying to add pv! data to a task report but it always comes out empty.
My data definition is: pv!record[W1182 Solicitud.idCategoria]
formatting: number
It does not display any information. All information I request using tp! works fine.
Am I doing it wrong? or is it not possible to display rv! info in the report?
Thank you
Discussion posts and replies are publicly visible
If you referenced a record data type as a column in the report, it will not display in the report designer; however, you can still query this data using a!queryProcessAnalytics().
Hi Soma, thank you. When I add the data on the report and use a!queryProcessAnalytics() the data shows null for the new value. Is there something else I need to do?
You cannot index data from a specific record type, but if you pass the entire variable it should work. So instead of doing pv!record[W1182 Solicitud.idCategoria], just make the column pv!record. Then when you use a!queryProcessAnalytics you should see all the data there (and you can index from your expression rule / interface).
Thank you Peter, I will try this approach as it seems more sensible. I ended up creating individual pv variables and adding them to the report. I only needed 2 so it works but in the future if I need more this could make the whole process more complicated.