Question
Morgan Stanley
IN
Last activity: 14 Nov 2019 9:13 EST
Decision Table error: Goal seek requires missing input property
While executing a decision table using ObtainValue function i'm getting the below erro
Decision Table error: Goal seek requires missing input property
-
Like (0)
-
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Pegasystems Inc.
FR
Hello,
Can we have few screen shots. Why do you need a function for your Decision table.
CollabPartnerz
IN
Hi,
Can you try below approach?
@(Pega-RULES:DecisionTable).ObtainValue(tools, "Page on which your Decision table execute", "Decision Table")
Morgan Stanley
IN
I in fact have used the same function ObtainValue as you suggeted above..
I have used the function in a Data transform to get the value of a property.. But when i execute the decision table its throwing the error "Goal seek requires missing input property"
-
vasu narne Kamil Janeczek
Blue Rose Technologies
NL
Step page is missing and it is unable find the input values. Make sure to pass step page.
IAG
AU
Try this :
@(Pega-RULES:DecisionTable).ObtainValue(tools, "Page on which your Decision table execute", "Decision Table", true)
This fixed the issue for me as the property used in DT was not set in the page. The last param in the function is equivalent to "AllowMissingProperties"
-
Sudipta Biswas Guilherme Dumas Peres Ratna Govad Vitor Alcantara de Almeida
Commonwealth Bank of Australia
AU
Before calling the Obtain values function set Param.AllowMissingProperties = true ( While called from Data transform )
OR
If you are calling the decision table from Activity then there is a check box in the parameter to allow missing property, Please check that
-
Sudipta Biswas Pothuraju Goli
Pegasystems Inc.
GB
I was having same issue as described in the original thread. Once I added the "true" param, to allow for missing values, the Obtain Value errors disappeared.
Thanks