Process Model getting incorrect data from an Expression Rule

I have an expression rule that returns a value based on rule inputs.

When I run this rule as a stand alone rule, it gets the data I expect. When I run this rule in process model A, I get the result I expect. But when I run the rule in process model B, I don't get the results I expect.

These 2 process models are child processes that get called at the same time, and have the same inputs. The node that runs the rule has the exact same inputs, settings, assignments, etc.

I can't see any reason why the rule would work correctly when run manually, or when run from process model A, and not process model B. For context, they are expected to return the same value in both process models.

Am I missing something?

If it helps, I'm using Appian Cloud v22.3

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Associate Developer
    in reply to nourhan_abdelrazek67

    Hmm, that’s interesting. It sounds like even with the delay, the script task might not be picking up the data as expected. A few things you could check:

    Timing vs. Data Availability: Is the user input task fully initiated and its data updated in the report by the time the script task runs? Sometimes, even after a delay, there could be a slight lag before the data becomes accessible in the report.

    Test with Logs: Add some logging to your script task to capture exactly what it’s trying to read at that moment. This might give you clues on whether the data is there but not accessible or if something else is going wrong.

    Check the Report’s Scope: Ensure that the report being queried includes the relevant context or process instance. If the script task is referencing a report tied to a different scope or filter, it might be missing the data.

    Alternative Solution: If timing remains an issue, consider passing the required properties directly as process variables instead of relying on the report. This reduces dependencies and ensures the data is always accessible to the script task.

    It seems like the issue is close to being solved—let us know if you find anything interesting in the logs or if we should brainstorm further!"

Children
No Data