Hello.
I have a document table. It has sub tables in it. I can add rows to the document table with code. How can I add a record to a subtable?
| Code |
|---|
RowMaster= Documents.MasterDocumentTable.FindByAttribute("Col1", "ABC");
RowMasterRef = RowMaster.Ref.GetObject();
SubNewRecord = RowMaster.DetailTable1.Add(); ??
...
...
|
* MasterDocumentTable
|
->Col1
->Col2
|
|__DetailTable1
->Col1
->Col2
|
|_DetailTable2
->Col1
->Col2

