Set Extended Property Through BPM

Can you set an Extended Property of a field through a BPM? Say turn a field ReadOnly.

If yes, what would the syntax be?

Short answer, No

1 Like

That’s what I thought. Thank you

Longer answer
BPM Side of things run server side and use Tablesets
Client Side uses DataSets there is a method which translates the server respose from a Tableset to a DataSet by copying each Row / Column but it won’t take into account ExtendedProperties which are attributes of the DataTables within the DataSets in the client and as far as I know do not even exist in the Tablesets (Server Side)

You could use CallContextBPMData object to pass some data into the client and then use that information to set the ExtendedProperty.

1 Like