Hi, bump into this problem and I guess someone can answer this and also can sugg

Hi, bump into this problem and I guess someone can answer this and also can suggest a work around on this. I'm trying to query data (initially from report). The data multiple from check box field. Now once user has chosen to edit details I then query data then display it, I get the correct data but once I display it on a same check box field (other form) no value is display. Have seen it display for sometimes but not all data selected, also enable multiple for the field but still the same. TIA....

OriginalPostID-127468

OriginalPostID-127468

  Discussion posts and replies are publicly visible

  • And also confirm if in the node inputs, "activateEdited" is a text data type and has multiple checked.
  • Hi Abhimanyu, all is configured as what you said. Also what I wanted to achieve is to display selected data(multiple) from other process model 1 and display it on this process model 2 (query via rpt/rdbms) what have selected from the previous process.
  • Hi Abhi, any updates? I'm not sure if this is a bug in Appian. Let me clear the issue again,I have a pv stored from a different process model. When I checked the process report, I can see the multiple values on that pv. The issue is when I'm calling this pv value using another process model(different from the first one), it's not displyaing properly in the checkbox (ex: pv value(1;2;3) but it's not refrlecting on the checkbox where it should displayed the selected value from that pv.
  • This might be happening because the values of your pv doesn’t match with values of you constants. Please do this simple test, to check if the process variable is actually an array and not a single value. In the same form add a text input and as a default value put =length(pv!isActivateOn), run the process and check the form.

    What value are you getting?
    If it is 1 it mean that your variable is not being recognized as an array and it a single value, if this is the case check that you created the process variable as an array. If it is higher than 1 it means the value does not match with the one on your constant, verify that all the values from pv!isActivateOn are also in the constant cons!CONS_isActivatedOn.
  • hi Cesar, yes you're correct, as what I'm also expecting the pv length is returning 1, it means that appian can't recognize passed parameters(data from other process models) as array. I already solved the issue by using split function to make it as array type. Thanks all!