DBA Data[Home] [Help]

APPS.IEM_RULES_ENGINE_PUB dependencies on IEM_OPERATORS_PVT

Line 82: if iem_operators_pvt.satisfied(keyVals(y).value, operator, valueToFind, keyVals(y).datatype) then

78: --Make the key comparison
79: if keyToFind = keyVals(y).key then
80: foundKey := true;
81: --If the key is found then see if the value matches up based on the operator
82: if iem_operators_pvt.satisfied(keyVals(y).value, operator, valueToFind, keyVals(y).datatype) then
83: foundKeyValue := true;
84: end if;
85: --Exit since we found what we wanted
86: EXIT;

Line 154: if iem_operators_pvt.satisfied(keyVals(y).value, operator, valueToFind, keyVals(y).datatype) then

150:
151: --Make the key comparison case insensitive
152: if upper(keyToFind) = upper(keyVals(y).key) then
153: --If the key is found then see if the value matches up based on the operator
154: if iem_operators_pvt.satisfied(keyVals(y).value, operator, valueToFind, keyVals(y).datatype) then
155: foundKeyValue := true;
156: end if;
157: --Exit since we found what we wanted
158: EXIT;