How manage multi-valued property in a workflow?

Hello,
I am trying to manage a multi-valued property within a workflow. I tried the following syntax:

<Control Binding="NominativeAccounts" OutputType="BasicCollection" NavigationBinding="NominativeAccount:Account_PersonRecord"/>

This does not generate any errors, but the display remains empty. I would like to be able to add or remove one or more values for this property.
How should I proceed?

Thank you

1 Like

Would changing the OutputType help here, for example OutputType=“LayoutContainer”?

I tried using OutputType="LayoutContainer", but got the same result: nothing appears. The documentation has changed, and I couldn’t find any information about valid OutputType values or their meaning.

Hi Thierry,

Are trying to display the value or update it?

The OutputType and NavigationBinding options are only for display purposes.

Also, from what I’m seeing in your configuration, there is a link between the objects NominativeAccount and Account_PersonRecord.

  • Is that right?
  • If yes, can you make sure the NominativeAccounts are properly linked to the Account_PersonRecord?

Finally, can you try without the NavigationBinding option to see if the value is displayed or not

Regards

Hazem

Hello Hazem,

I need to update a value, as I said : “I would like to be able to add or remove one or more values for this property.”

How can I do that ?

Thank you