Can’t seem to figure out REF result.
I must be missing something.
I have two tables I am trying to relate.
A parent ACTIVITIES table and a child ACTION ITEMS table.
They are related through a RecordID (same column name in both tables).
The REF definition in the ACTION ITEMS table looks like this: {
“ReferencedTableName”: “Activities”,
“ReferencedType”: “Text”,
“ReferencedTypeQualifier”: "{
“MaxLength”: null,
“MinLength”: null,
“IsMulticolumnKey”: false,
“Valid_If”: “”,
“Error_Message_If_Invalid”: null,
“Show_If”: “”,
“Required_If”: “”,
“Editable_If”: “”,
“Suggested_Values”: null}",
“ReferencedKeyColumn”: “RecordID”,
“IsAPartOf”: true,
“RelationshipName”: “”,
“InputMode”: “Auto”,
“Valid_If”: “”,
“Error_Message_If_Invalid”: “”,
“Show_If”: “”,
“Required_If”: “”,
“Editable_If”: “”,
“Suggested_Values”: “” }
This shows the correct child ACTION ITEMS for the parent ACTIVITIES table, but when I click on an ACTION ITEM in the inline table, I get the proper record, but the RecordID in the child shows a value of “Task”, which is actually the value of the “Activity Type” column in the ACTIVITIES table.
I was expecting to see the shared key RecordID displayed (not the Activity Type).
Any suggestions why this is happening and how to fix?