This is about adding a record to the child table. I am trying to add data from UiPath (not interactively from the browser). I have Invoices table with InvoiceNo and InvoiceLines table with “Parent Invoice No” as a relationship field tied to the InvoiceNo field in the Invoices table.
I am trying to add a record into the InvoiceLines table using Create Entity Record activity. How do I set the value for the Relationship field? I added an invoice in the parent table with value “12345” When I add a child record in the Invoice Lines table for that Invoice “12345”, the “Parent Invoice No” field must also be set to “12345”, right? I have tried InvoiceLineRecord.ParentInvoiceNo, InvoiceLineRecord.ParentInvoiceNo.InvoiceNo and none of them work. Any ideas?