Incorrect record list to record summary mapping

Hi guys,

I have an entity based record. When click on a particular record from the record list, it drills down to a different record's summary. This is happening only in production.
It's all working fine in the lower environments. All the code is in sync.

The entity is a view and it's primary key is identified by rownum. I am not sure if this might be any problem.
Could anyone please help me identify what might cause the issue and what could be done to rectify it?

Thanks in advance

  Discussion posts and replies are publicly visible

Parents Reply
  • Ok, so here's the thing: ROWNUM is auto-generated by the Database on demand and there are no assurance that the order that the data is presented will align with the data held in the referenced tables from the VIEW. Looking at your VIEW I would absolutely shoot for 'TRACKING_ID' as the designated Primary Key (and also in effect the Record Id - or rp!id in Appian terms) since it appears that the parent entity is 'TRACKING' which has one or more child entities of 'ITEM'.

Children