DBA Data[Home] [Help]

APPS.FTE_ACS_RULE_UTIL_PKG dependencies on FTE_SEL_RULES

Line 385: -- Note that this query joins with FTE_SEL_RULES table

381: -- Cursor to grab the specified attribute values ordered by
382: -- FROM_REGION_ID and TO_REGION_ID
383: -- If FROM_REGION_ID or TO_REGION_ID attribute doesn't exist in the table
384: -- convert the value to -1 for number comparision purpose
385: -- Note that this query joins with FTE_SEL_RULES table
386: -- to eliminate the junk data that exist in FTE_SEL_RULE_RESTRICTIONS table
387: -- but don't have the corresponding rule in FTE_SEL_RULES table
388:
389: CURSOR c_get_ranges(x_group_id NUMBER, x_attr_name VARCHAR2) IS

Line 387: -- but don't have the corresponding rule in FTE_SEL_RULES table

383: -- If FROM_REGION_ID or TO_REGION_ID attribute doesn't exist in the table
384: -- convert the value to -1 for number comparision purpose
385: -- Note that this query joins with FTE_SEL_RULES table
386: -- to eliminate the junk data that exist in FTE_SEL_RULE_RESTRICTIONS table
387: -- but don't have the corresponding rule in FTE_SEL_RULES table
388:
389: CURSOR c_get_ranges(x_group_id NUMBER, x_attr_name VARCHAR2) IS
390: select nvl(fr.attribute_value_from_number, -1) from_region,
391: nvl(tr.attribute_value_from_number, -1) to_region,

Line 396: fte_sel_rule_restrictions tr, fte_sel_rules rr

392: attr.attribute_value_from_number, attr.attribute_value_to_number,
393: attr.attribute_value_from, attr.attribute_value_to,
394: attr.rule_attribute_id, attr.range_overlap_flag
395: from fte_sel_rule_restrictions attr, fte_sel_rule_restrictions fr,
396: fte_sel_rule_restrictions tr, fte_sel_rules rr
397: where attr.group_id = x_group_id and attr.attribute_name = x_attr_name
398: and fr.rule_id (+)= attr.rule_id
399: and fr.attribute_name (+)= 'FROM_REGION_ID'
400: and tr.rule_id (+)= attr.rule_id