This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Read/Write multiselect property

Former Member
Former Member
Guys, I again need your help. I'm going crazy with a (i think simple) problem, maybe you can help me out?
I've got a "onboarding" document, containing a multi-select property called "Department". It's a simple "choose from list Departments (multiselect).
At the And of the Onboarding, I create a Employee Object in the workflow and "copy" some of the onboarding property values. That works fine! I can copy text and single select (lookup).

What drives me crazy is to read a multiselect and write the same values to the "same" property in the new employee object.

I tried alot... at the moment i try it this way:

Read Multi-Select property

...
' Abteilung/Department
Dim ilookups_abteilung : set ilookups_abteilung = PropertyValues.SearchForProperty(1234).TypedValue.GetValueAsLookups
...


Write to the new object

...
' Abteilung
oPropVal.PropertyDef = 1234
oPropVal.TypedValue.SetValue MFDatatypeMultiSelectLookup, ilookups_abteilung
oPropValues.Add -1, oPropVal
...


That gives me a "type conflict"
What's the problem?
Regards
Chris
Parents
  • Hi djb,

    Thank you for your kind words, which I am sure that Joonas will also see.

    I certainly respect those points and this earlier conversation actually prompted me opening some additional internal dialogs about this. We do want to ensure that end-users have support, and that is our utmost concern, but let's see what the future brings.

    In terms of moving you forward - please drop me a private message with your company details. I can find your reseller or account manager, and can open a conversation with them about getting you the tools you need. All you technically need from us to move forward - in addition to both having Visual Studio locally, and the content that is already available on the developer portal - is the Visual Studio template (.vsix) file.

    Regards,

    Craig.
Reply
  • Hi djb,

    Thank you for your kind words, which I am sure that Joonas will also see.

    I certainly respect those points and this earlier conversation actually prompted me opening some additional internal dialogs about this. We do want to ensure that end-users have support, and that is our utmost concern, but let's see what the future brings.

    In terms of moving you forward - please drop me a private message with your company details. I can find your reseller or account manager, and can open a conversation with them about getting you the tools you need. All you technically need from us to move forward - in addition to both having Visual Studio locally, and the content that is already available on the developer portal - is the Visual Studio template (.vsix) file.

    Regards,

    Craig.
Children
No Data