Using PD script, how do we access Partitioned columns from a selected table in the active model. Here is a snippet that I am trying but getting error on Tab.PArtitions:
----------------------------------------------------
For each Tab in ActiveSelection
For each tPartitions in Tab.Partitions
OutStr = "Partitioned Column: " + tPartitions.Code
Next ' next table partition
Next ' next selected table
Thanks
cp