DBA Data[Home] [Help]

APPS.IEM_RULES_ENGINE_PUB dependencies on IEM_OPERATORS_PVT

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

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

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

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