Web Portal variable to Process Orchestration

I have a process orchestration set up to send a email using a custom mail template.

I will be calling the process through the web portal with Object Method, Raise Event. I will need to pass variables from the web portal to the process such as email.

I tried doing $PC(emailAddress)$ but it does not work, help would be much appreciated. Thanks!

Parents
  • Former Member
    +1 Former Member over 2 years ago

    Hi Malka,

    This is how we do it in 8.1.3 to , in our case, send a event to the GAPUser table.

    In web designer:

    1. Fill in the Object Method properties: Type "Raise Event", Collection and name of the event to generate (no quotes). We're using the collection "Object" which points to the GAPUser table.
    2. Right click the "Object method" item and click on Parameter to add one parameter under the object method.
    3. For the parameter, fill in the properties: Identifier between double quotes. This identifier could be any name, such as, lets say "Parametro" . In value fill in the value, could be a query.

    In Designer:

    • Create a custom process for the GAPUser table, event is the name of the event in point 1 above.
    • To access the parameter value, use the $PC(Parametro)$ notation

    Check your logs and conditions of your custom process.

    HtH!

  • Thanks! It seems like I have overlooked the Parameter option in Object Method. I got it to work now with your instructions.

    Much appreciated!

Reply Children
No Data