Using arcade expressions to insert records from one tablet to another?

412
1
Jump to solution
07-17-2023 08:39 AM
RPGIS
by
Occasional Contributor III

Hi,

General question, is it possible to use the attributes rules to insert records from one table to another using arcade. I can't seem to find any documentation stating that it is but I am hoping to get some answers. If this isn't possible, then I will stick with modifying my python script in conjunction with the other attribute rules that I have already created.

0 Kudos
1 Solution

Accepted Solutions
JohannesLindner
MVP Frequent Contributor

Yes, this is a task Attribute Rules are somewhat commonly used for.

As an entry point:

https://www.esri.com/arcgis-blog/products/arcgis-pro/data-management/advanced-gdb-attribute-rules-ed...

 

To edit another table, you return a dictionary instead of a simple value. This dictionary requires certain keys, they are documented here:

https://pro.arcgis.com/en/pro-app/3.0/help/data/geodatabases/overview/attribute-rule-dictionary-keyw...

 


Have a great day!
Johannes

View solution in original post

1 Reply
JohannesLindner
MVP Frequent Contributor

Yes, this is a task Attribute Rules are somewhat commonly used for.

As an entry point:

https://www.esri.com/arcgis-blog/products/arcgis-pro/data-management/advanced-gdb-attribute-rules-ed...

 

To edit another table, you return a dictionary instead of a simple value. This dictionary requires certain keys, they are documented here:

https://pro.arcgis.com/en/pro-app/3.0/help/data/geodatabases/overview/attribute-rule-dictionary-keyw...

 


Have a great day!
Johannes