Skip to Content
0
May 30, 2020 at 11:04 AM

PowerDesigner - Scripting

136 Views

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