Has anyone parsed Appian URL with parameters?

I have a scenario in which i am passing parameters to Appian url to access it in another user form.

For ex-

https://<Company>.appiancloud.com/suite/tempo/actions/item/ProcessID?Param1=1234

I am not sure how to parse Param1=1234 and apply it to one of the fields on the  Appian user form.

Any guidance would be much appreciated.

  Discussion posts and replies are publicly visible

Parents
  • You can use the split() function within Appian to parse a string like you are asking: docs.appian.com/.../fnc_text_split.html

    For example:
    split("https://<Company>.appiancloud.com/suite/tempo/actions/item/ProcessID?Param1=1234","?")
    should return { "https://<Company>.appiancloud.com/suite/tempo/actions/item/ProcessID","Param1=1234" }

    Then you could split the second string in that list to get what you&#x27;re looking for.

    Not sure if that will help you in terms of being update to update via a form but it sounds like what you might be looking for.
Reply
  • You can use the split() function within Appian to parse a string like you are asking: docs.appian.com/.../fnc_text_split.html

    For example:
    split("https://<Company>.appiancloud.com/suite/tempo/actions/item/ProcessID?Param1=1234","?")
    should return { "https://<Company>.appiancloud.com/suite/tempo/actions/item/ProcessID","Param1=1234" }

    Then you could split the second string in that list to get what you&#x27;re looking for.

    Not sure if that will help you in terms of being update to update via a form but it sounds like what you might be looking for.
Children