|
Avoiding Stubcode Errors Because of Repeating Tables in Table GrammarIf your table grammar contains more than one table with the same name, this would cause errors when you try to generate stubcode. You can avoid these errors by following one of two methods:
Using Table GroupsFor option 1, let's say your VMD file has the following table grammar: ![]() Repeating Tables in Table Grammar To avoid stubcode errors you could create table groups (each one with a unique name), and still use the same table name. To create a table group (using the above example) for each repeat table:
![]() Repeating Tables in Separate Table Groups Using Table CopiesFor option 2, all you would have to do is create copies of your tables, and rename them using a unique name. To copy tables (using the same example), and give them a unique name:
![]() Naming the Copied Table
![]() Tables Available to be Copied
Since we named our first copied table PatientID_Table1, each repeat table that follows might be named PatientID_Table2, PatientID_Table3, etc. |