Title Sync the C Tables Asset Group/Type
Sync the Asset Group and Asset Type of the Asset Package data tables to the domain tables.
License
Basic
SyncAssetPackageDataTables (asset_package)
Parameter | Explanation | Data Type |
---|---|---|
asset_package |
Dialog Reference
The asset package to update. |
DEWorkspace |
SyncAssetPackageDataTables example 1 (Python window)
sync the asset group and asset type values in the C_ tables with the values of the rows in the features classes and tables
import arcpy
arcpy.udms.SyncAssetPackageDataTables(r"c:\temp\source_ap1.gdb")
SyncAssetPackageDataTables example 2 (stand-alone script)
sync the asset group and asset type values in the C_ tables with the values of the rows in the features classes and tables
import arcpy
asset_package = r"c:\temp\source_ap1.gdb"
arcpy.udms.SyncAssetPackageDataTables(
asset_package=asset_package,
)