DBA Data[Home] [Help]

APPS.IEM_ROUTE_CLASS_PUB dependencies on IEM_OPERATORS_PVT

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

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

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

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