DBA Data[Home] [Help]

APPS.QP_ATTR_MAPPING_PUB dependencies on QP_PRICE_REQ_SOURCES

Line 622: AND EXISTS (SELECT 'x' FROM qp_price_req_sources prs,oe_def_condn_elems condelem1

618: AND arules.attr_def_condition_id = aconds.attr_def_condition_id
619: --added this condition to look at enabled_flag to avoid duplicate sourcing due to
620: --OM changes to lct. enabled_flag is a new column introduced--spgopal
621: AND NVL(aconds.enabled_flag, 'Y') = 'Y'
622: AND EXISTS (SELECT 'x' FROM qp_price_req_sources prs,oe_def_condn_elems condelem1
623: WHERE condelem1.attribute_code = 'SRC_SYSTEM_CODE'
624: AND condelem1.value_string = prs.source_system_code
625: AND prs.request_type_code = p_request_type_code
626: AND condelem.condition_id = condelem1.condition_id);

Line 2095: FROM qp_price_req_sources;

2091: IF NVL(G_ATTRMGR_INSTALLED,'N') = 'N' THEN
2092:
2093: OPEN l_request_type_codes FOR
2094: SELECT DISTINCT request_type_code
2095: FROM qp_price_req_sources;
2096:
2097: IF Qp_Code_Control.Get_Code_Release_Level > '110509' THEN
2098: Text ('If QP_Util_PUB.HVOP_Pricing_On= ''N'' Then --Follow Non-HVOP Path',1);
2099: END IF;

Line 3286: oe_def_attr_condns c, oe_def_attr_def_rules d, qp_price_req_sources e

3282:
3283: CURSOR l_cond_cursor(p_pricing_attr VARCHAR2) IS
3284: SELECT c.condition_id, d.attr_def_condition_id
3285: FROM oe_def_conditions a, oe_def_condn_elems b,
3286: oe_def_attr_condns c, oe_def_attr_def_rules d, qp_price_req_sources e
3287: WHERE a.database_object_name LIKE 'QP%'
3288: AND a.condition_id = b.condition_id
3289: AND b.attribute_code = 'SRC_SYSTEM_CODE'
3290: AND b.value_string = e.source_system_code

Line 3463: oe_def_attr_condns c, oe_def_attr_def_rules d, qp_price_req_sources e

3459:
3460: CURSOR l_cond_cursor(p_pricing_attr VARCHAR2) IS
3461: SELECT c.condition_id, d.attr_def_condition_id
3462: FROM oe_def_conditions a, oe_def_condn_elems b,
3463: oe_def_attr_condns c, oe_def_attr_def_rules d, qp_price_req_sources e
3464: WHERE a.database_object_name LIKE 'QP%'
3465: AND a.condition_id = b.condition_id
3466: AND b.attribute_code = 'SRC_SYSTEM_CODE'
3467: AND b.value_string = e.source_system_code

Line 3643: FROM oe_def_conditions a, oe_def_condn_elems b, qp_price_req_sources c,

3639:
3640:
3641: CURSOR l_sourced_contexts IS
3642: SELECT DISTINCT b.condition_id
3643: FROM oe_def_conditions a, oe_def_condn_elems b, qp_price_req_sources c,
3644: oe_def_attr_condns d
3645: WHERE a.database_object_name LIKE 'QP%'
3646: AND a.condition_id = b.condition_id
3647: AND b.attribute_code = 'SRC_SYSTEM_CODE'