DBA Data[Home] [Help]

APPS.IEM_ROUTE_PUB dependencies on IEM_OPERATORS_PVT

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

87: --Make the key comparison
88: if keyToFind = keyVals(y).key then
89: foundKey := true;
90: --If the key is found then see if the value matches up based on the operator
91: if iem_operators_pvt.satisfied(keyVals(y).value, operator, valueToFind, keyVals(y).datatype) then
92: foundKeyValue := true;
93: end if;
94: --Exit since we found what we wanted
95: EXIT;

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

159:
160: --Make the key comparison case insensitive
161: if upper(keyToFind) = upper(keyVals(y).key) then
162: --If the key is found then see if the value matches up based on the operator
163: if iem_operators_pvt.satisfied(keyVals(y).value, operator, valueToFind, keyVals(y).datatype) then
164: foundKeyValue := true;
165: end if;
166: --Exit since we found what we wanted
167: EXIT;