DBA Data[Home] [Help]

APPS.OE_AGREEMENT_UTIL dependencies on QP_QUALIFIERS

Line 1494: /* Delete from qp_qualifiers table */

1490: oe_debug_pub.add(' OE_Agreement_Util: Deleting price list for the Agreement');
1491: QP_Price_List_Util.Delete_Row( l_Price_List_id );
1492: */
1493:
1494: /* Delete from qp_qualifiers table */
1495: /* This code has been moved so that qualifier should be deleted only
1496: if Agreement is deleted. Bug 2321498
1497:
1498: DELETE FROM QP_QUALIFIERS

Line 1498: DELETE FROM QP_QUALIFIERS

1494: /* Delete from qp_qualifiers table */
1495: /* This code has been moved so that qualifier should be deleted only
1496: if Agreement is deleted. Bug 2321498
1497:
1498: DELETE FROM QP_QUALIFIERS
1499: where list_header_id = l_Price_List_id
1500: and qualifier_attr_value = p_agreement_id;
1501:
1502: end if;

Line 1516: DELETE FROM QP_QUALIFIERS

1512:
1513: -- Bug 2321498: delete qualifier
1514: Begin
1515: If l_list_type_code = 'AGR' Then
1516: DELETE FROM QP_QUALIFIERS
1517: where list_header_id = l_Price_List_id
1518: and qualifier_attr_value = p_agreement_id;
1519: End If;
1520: Exception