DBA Data[Home] [Help]

APPS.QP_ATTR_MAPPING_PUB dependencies on QP_PRICE_REQ_SOURCES

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

685: AND arules.attr_def_condition_id = aconds.attr_def_condition_id
686: --added this condition to look at enabled_flag to avoid duplicate sourcing due to
687: --OM changes to lct. enabled_flag is a new column introduced--spgopal
688: AND NVL(aconds.enabled_flag, 'Y') = 'Y'
689: AND EXISTS (SELECT 'x' FROM qp_price_req_sources prs,oe_def_condn_elems condelem1
690: WHERE condelem1.attribute_code = 'SRC_SYSTEM_CODE'
691: AND condelem1.value_string = prs.source_system_code
692: AND prs.request_type_code = p_request_type_code
693: AND condelem.condition_id = condelem1.condition_id);

Line 2164: FROM qp_price_req_sources;

2160: IF NVL(G_ATTRMGR_INSTALLED,'N') = 'N' THEN
2161:
2162: OPEN l_request_type_codes FOR
2163: SELECT DISTINCT request_type_code
2164: FROM qp_price_req_sources;
2165:
2166: IF Qp_Code_Control.Get_Code_Release_Level > '110509' THEN
2167: Text ('If QP_Util_PUB.HVOP_Pricing_On= ''N'' Then --Follow Non-HVOP Path',1);
2168: END IF;

Line 3544: oe_def_attr_condns c, oe_def_attr_def_rules d, qp_price_req_sources e

3540:
3541: CURSOR l_cond_cursor(p_pricing_attr VARCHAR2) IS
3542: SELECT c.condition_id, d.attr_def_condition_id
3543: FROM oe_def_conditions a, oe_def_condn_elems b,
3544: oe_def_attr_condns c, oe_def_attr_def_rules d, qp_price_req_sources e
3545: WHERE a.database_object_name LIKE 'QP%'
3546: AND a.condition_id = b.condition_id
3547: AND b.attribute_code = 'SRC_SYSTEM_CODE'
3548: AND b.value_string = e.source_system_code

Line 3721: oe_def_attr_condns c, oe_def_attr_def_rules d, qp_price_req_sources e

3717:
3718: CURSOR l_cond_cursor(p_pricing_attr VARCHAR2) IS
3719: SELECT c.condition_id, d.attr_def_condition_id
3720: FROM oe_def_conditions a, oe_def_condn_elems b,
3721: oe_def_attr_condns c, oe_def_attr_def_rules d, qp_price_req_sources e
3722: WHERE a.database_object_name LIKE 'QP%'
3723: AND a.condition_id = b.condition_id
3724: AND b.attribute_code = 'SRC_SYSTEM_CODE'
3725: AND b.value_string = e.source_system_code

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

3897:
3898:
3899: CURSOR l_sourced_contexts IS
3900: SELECT DISTINCT b.condition_id
3901: FROM oe_def_conditions a, oe_def_condn_elems b, qp_price_req_sources c,
3902: oe_def_attr_condns d
3903: WHERE a.database_object_name LIKE 'QP%'
3904: AND a.condition_id = b.condition_id
3905: AND b.attribute_code = 'SRC_SYSTEM_CODE'