1. Table Structure:
-
Parent Table:
Sales Order-
Key:
Sale Order Number(Type:UniqueID) -
Total Column Formula (Failing):
SUM([Related Sales Order Details][Subtotal]) -
Related List VC:
Related Sales Order Details(Formula:REF_ROWS('Sales Order Details', 'Sale Order Number'))
-
-
Child Table:
Sales Order Details-
Ref Column:
Sale Order Number(Type:ReftoSales Order) -
Value Column:
Subtotal(Type:Number)
-
2. Proof of Failure and Diagnostics Performed:
-
Ref Works: The virtual column
[Related Sales Order Details]is correctly populated with the list of related row keys. -
Subtotal Test: I temporarily changed the
Subtotalcolumn’s App Formula in the child table to a fixed value of100. The parentTotalcolumn still returns0. -
Dereference Failure: I ran a diagnostic test in the parent table using:
CONCATENATE([Related Sales Order Details][Subtotal]). This formula returns nothing (""/ blank), confirming that the dereference operation is failing to pull the values from theSubtotalcolumn. -
Schema Reset Attempts (Failed):
-
Tried Regenerating Structure on the
Sales Order Detailstable. -
Tried Deleting and Re-adding the
Sales Order Detailstable completely.
-
3. Request:
Given that the Ref list is correct but the dereference fails across multiple resets, I suspect an internal schema or metadata corruption issue. Could a developer please advise or look into the app’s configuration?
