Hello!
How can I call decision table (from Class A-B-Data-C-D) in data transform (from Class A-B-Data-C-D) in Pega 8.3.1?
I saw that I need to use a functuon called “pxEvaluateDecisionTable”, but what I need to input for PrimaryPage Name?
Hello!
How can I call decision table (from Class A-B-Data-C-D) in data transform (from Class A-B-Data-C-D) in Pega 8.3.1?
I saw that I need to use a functuon called “pxEvaluateDecisionTable”, but what I need to input for PrimaryPage Name?
Hi Daria,
PrimaryPage name parameter here means the page context on which you want to run the decision table. For Example, if your Data Transform is running on Page ABC of Class A-B-Data-C-D, then the primary page conext will be ABC.
Also, there is another function you can use in Data Transform for calling Decision Table. Just replace the decision table name with your decision table rule.
@DecisionTable.ObtainValue(tools,myStepPage,“DecisionTableNamr”,true)
Thank You!!!