サマリー
バージョン対応のフィーチャクラス、テーブル、またはフィーチャ サービス レイヤー内で、フィールド競合フィルターが適用されているフィールドをリストします。
構文
ListFieldConflictFilters (table)
パラメーター | 説明 | データ タイプ |
table | Input geodatabase table, feature class, or feature service layer. | String |
データ タイプ | 説明 |
String | 競合フィルターが適用されている各フィールド名の文字列を含むリストが返されます。 |
コードのサンプル
フィールド競合フィルターをリストします。
import arcpy
# Get a list of fields with conflict filters applied and print the name.
filteredFields = arcpy.da.ListFieldConflictFilters('C:/MyProject/municipal.sde/Primary_UG')
for field in filteredFields:
print(field)
フィーチャ サービスのフィールド競合フィルターをリストします。
import arcpy
# Get a list of fields with conflict filters applied and print the name.
filteredFields = arcpy.da.ListFieldConflictFilters('https://myserver.com/server/rest/services/MyService/FeatureServer/0')
for field in filteredFields:
print(field)