DBA Data[Home] [Help]

APPS.QP_PRICING_ATTR_UTIL dependencies on OE_DEBUG_PUB

Line 23: oe_debug_pub.add('BEGIN Clear_Dependent_Attr in QPXUPRAB');

19: l_src_attr_tbl QP_GLOBALS.NUMBER_Tbl_Type;
20: l_dep_attr_tbl QP_GLOBALS.NUMBER_Tbl_Type;
21: BEGIN
22:
23: oe_debug_pub.add('BEGIN Clear_Dependent_Attr in QPXUPRAB');
24:
25: -- Load out record
26:
27: x_PRICING_ATTR_rec := p_PRICING_ATTR_rec;

Line 421: oe_debug_pub.add('END Clear_Dependent_Attr in QPXUPRAB');

417: l_index := l_index + 1;
418: l_src_attr_tbl(l_index) := QP_PRICING_ATTR_UTIL.G_COMPARISON_OPERATOR;
419: END IF;
420:
421: oe_debug_pub.add('END Clear_Dependent_Attr in QPXUPRAB');
422:
423: END Clear_Dependent_Attr;
424:
425: -- Procedure Apply_Attribute_Changes

Line 446: oe_debug_pub.add('BEGIN Apply_Attribute_Changes in QPXUPRAB');

442: l_rltd_modifier_grp_type VARCHAR2(30);
443:
444: BEGIN
445:
446: oe_debug_pub.add('BEGIN Apply_Attribute_Changes in QPXUPRAB');
447:
448: -- Load out record
449:
450: x_PRICING_ATTR_rec := p_PRICING_ATTR_rec;

Line 524: oe_debug_pub.add('11');

520: THEN
521: NULL;
522: END IF;
523:
524: oe_debug_pub.add('11');
525: IF NOT QP_GLOBALS.Equal(p_PRICING_ATTR_rec.attribute10,p_old_PRICING_ATTR_rec.attribute10)
526: THEN
527: NULL;
528: END IF;

Line 540: oe_debug_pub.add('22');

536: THEN
537: NULL;
538: END IF;
539:
540: oe_debug_pub.add('22');
541: IF NOT QP_GLOBALS.Equal(p_PRICING_ATTR_rec.attribute13,p_old_PRICING_ATTR_rec.attribute13)
542: THEN
543: NULL;
544: END IF;

Line 556: oe_debug_pub.add('33');

552: THEN
553: NULL;
554: END IF;
555:
556: oe_debug_pub.add('33');
557: IF NOT QP_GLOBALS.Equal(p_PRICING_ATTR_rec.attribute2,p_old_PRICING_ATTR_rec.attribute2)
558: THEN
559: NULL;
560: END IF;

Line 577: oe_debug_pub.add('44');

573: THEN
574: NULL;
575: END IF;
576:
577: oe_debug_pub.add('44');
578: IF NOT QP_GLOBALS.Equal(p_PRICING_ATTR_rec.attribute6,p_old_PRICING_ATTR_rec.attribute6)
579: THEN
580: NULL;
581: END IF;

Line 603: oe_debug_pub.add('55');

599: THEN
600: NULL;
601: END IF;
602:
603: oe_debug_pub.add('55');
604: IF NOT QP_GLOBALS.Equal(p_PRICING_ATTR_rec.context,p_old_PRICING_ATTR_rec.context)
605: THEN
606: NULL;
607: END IF;

Line 648: oe_debug_pub.add('list_line_id in apply gsp'||to_char(p_PRICING_ATTR_rec.list_line_id));

644: p_PRICING_ATTR_rec.list_header_id = FND_API.G_MISS_NUM THEN
645:
646: BEGIN
647:
648: oe_debug_pub.add('list_line_id in apply gsp'||to_char(p_PRICING_ATTR_rec.list_line_id));
649: select list_header_id into x_PRICING_ATTR_rec.list_header_id
650: from qp_list_lines
651: where list_line_id = p_PRICING_ATTR_rec.list_line_id;
652: EXCEPTION

Line 672: oe_debug_pub.add('list_line_id in apply gsp'||to_char(p_PRICING_ATTR_rec.list_line_id));

668: IF p_PRICING_ATTR_rec.pricing_phase_id IS NULL OR
669: p_PRICING_ATTR_rec.pricing_phase_id = FND_API.G_MISS_NUM THEN
670:
671: BEGIN
672: oe_debug_pub.add('list_line_id in apply gsp'||to_char(p_PRICING_ATTR_rec.list_line_id));
673: select pricing_phase_id into x_PRICING_ATTR_rec.pricing_phase_id
674: from qp_list_lines
675: where list_line_id = p_PRICING_ATTR_rec.list_line_id;
676: EXCEPTION

Line 874: oe_debug_pub.add('END Apply_Attribute_Changes in QPXUPRAB');

870: THEN
871: NULL;
872: END IF;
873:
874: oe_debug_pub.add('END Apply_Attribute_Changes in QPXUPRAB');
875:
876: END Apply_Attribute_Changes;
877:
878: -- Function Complete_Record

Line 888: oe_debug_pub.add('BEGIN Complete_Record in QPXUPRAB');

884: IS
885: l_PRICING_ATTR_rec QP_Modifiers_PUB.Pricing_Attr_Rec_Type := p_PRICING_ATTR_rec;
886: BEGIN
887:
888: oe_debug_pub.add('BEGIN Complete_Record in QPXUPRAB');
889:
890: IF l_PRICING_ATTR_rec.accumulate_flag = FND_API.G_MISS_CHAR THEN
891: l_PRICING_ATTR_rec.accumulate_flag := p_old_PRICING_ATTR_rec.accumulate_flag;
892: END IF;

Line 1064: oe_debug_pub.add('END Complete_Record in QPXUPRAB');

1060: IF l_PRICING_ATTR_rec.comparison_operator_code = FND_API.G_MISS_CHAR THEN
1061: l_PRICING_ATTR_rec.comparison_operator_code := p_old_PRICING_ATTR_rec.comparison_operator_code;
1062: END IF;
1063:
1064: oe_debug_pub.add('END Complete_Record in QPXUPRAB');
1065:
1066: RETURN l_PRICING_ATTR_rec;
1067:
1068: END Complete_Record;

Line 1079: oe_debug_pub.add('BEGIN Convert_Miss_To_Null in QPXUPRAB');

1075: IS
1076: l_PRICING_ATTR_rec QP_Modifiers_PUB.Pricing_Attr_Rec_Type := p_PRICING_ATTR_rec;
1077: BEGIN
1078:
1079: oe_debug_pub.add('BEGIN Convert_Miss_To_Null in QPXUPRAB');
1080:
1081: IF l_PRICING_ATTR_rec.accumulate_flag = FND_API.G_MISS_CHAR THEN
1082: l_PRICING_ATTR_rec.accumulate_flag := NULL;
1083: END IF;

Line 1255: oe_debug_pub.add('END Convert_Miss_To_Null in QPXUPRAB');

1251: IF l_PRICING_ATTR_rec.comparison_operator_code = FND_API.G_MISS_CHAR THEN
1252: l_PRICING_ATTR_rec.comparison_operator_code := NULL;
1253: END IF;
1254:
1255: oe_debug_pub.add('END Convert_Miss_To_Null in QPXUPRAB');
1256:
1257: RETURN l_PRICING_ATTR_rec;
1258:
1259: END Convert_Miss_To_Null;

Line 1458: oe_debug_pub.add('BEGIN Update_Row in QPXUPRAB');

1454: INTO l_active_flag
1455: FROM QP_LIST_HEADERS_B lh, QP_LIST_LINES ll
1456: WHERE lh.LIST_HEADER_ID = ll.LIST_HEADER_ID and ll.LIST_LINE_ID = p_PRICING_ATTR_rec.list_line_id and rownum = 1;
1457:
1458: oe_debug_pub.add('BEGIN Update_Row in QPXUPRAB');
1459:
1460: IF p_PRICING_ATTR_rec.pricing_attribute_datatype = 'N'
1461: then
1462:

Line 1588: oe_debug_pub.add('END Update_Row in QPXUPRAB');

1584: p_request_type =>QP_GLOBALS.G_MAINTAIN_FACTOR_LIST_ATTRS,
1585: x_return_status => l_return_status);
1586: END IF;
1587:
1588: oe_debug_pub.add('END Update_Row in QPXUPRAB');
1589:
1590: EXCEPTION
1591:
1592: WHEN OTHERS THEN

Line 1630: oe_debug_pub.add('SMITHA LIST_HEADER_ID'||p_PRICING_ATTR_rec.list_header_id);

1626: l_rltd_modifier_grp_type VARCHAR2(30);
1627: BEGIN
1628:
1629:
1630: oe_debug_pub.add('SMITHA LIST_HEADER_ID'||p_PRICING_ATTR_rec.list_header_id);
1631:
1632: --Fetch modfier group type (Bug 4706180) Start
1633: BEGIN
1634: SELECT RLTD_MODIFIER_GRP_TYPE

Line 1658: oe_debug_pub.add('BEGIN Insert_Row in QPXUPRAB');

1654: FROM QP_LIST_HEADERS_B a,QP_LIST_LINES b
1655: WHERE b.list_line_id=p_PRICING_ATTR_rec.list_line_id
1656: AND b.LIST_HEADER_ID = a.list_header_id;
1657: END IF;
1658: oe_debug_pub.add('BEGIN Insert_Row in QPXUPRAB');
1659: oe_debug_pub.add(p_PRICING_ATTR_rec.attribute_grouping_no);
1660: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute_context);
1661: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute);
1662: oe_debug_pub.add(p_PRICING_ATTR_rec.pricing_attribute);

Line 1659: oe_debug_pub.add(p_PRICING_ATTR_rec.attribute_grouping_no);

1655: WHERE b.list_line_id=p_PRICING_ATTR_rec.list_line_id
1656: AND b.LIST_HEADER_ID = a.list_header_id;
1657: END IF;
1658: oe_debug_pub.add('BEGIN Insert_Row in QPXUPRAB');
1659: oe_debug_pub.add(p_PRICING_ATTR_rec.attribute_grouping_no);
1660: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute_context);
1661: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute);
1662: oe_debug_pub.add(p_PRICING_ATTR_rec.pricing_attribute);
1663: oe_debug_pub.add(p_PRICING_ATTR_rec.excluder_flag);

Line 1660: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute_context);

1656: AND b.LIST_HEADER_ID = a.list_header_id;
1657: END IF;
1658: oe_debug_pub.add('BEGIN Insert_Row in QPXUPRAB');
1659: oe_debug_pub.add(p_PRICING_ATTR_rec.attribute_grouping_no);
1660: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute_context);
1661: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute);
1662: oe_debug_pub.add(p_PRICING_ATTR_rec.pricing_attribute);
1663: oe_debug_pub.add(p_PRICING_ATTR_rec.excluder_flag);
1664:

Line 1661: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute);

1657: END IF;
1658: oe_debug_pub.add('BEGIN Insert_Row in QPXUPRAB');
1659: oe_debug_pub.add(p_PRICING_ATTR_rec.attribute_grouping_no);
1660: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute_context);
1661: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute);
1662: oe_debug_pub.add(p_PRICING_ATTR_rec.pricing_attribute);
1663: oe_debug_pub.add(p_PRICING_ATTR_rec.excluder_flag);
1664:
1665: --If Price Break value to is null and value from is not (the last price break) set

Line 1662: oe_debug_pub.add(p_PRICING_ATTR_rec.pricing_attribute);

1658: oe_debug_pub.add('BEGIN Insert_Row in QPXUPRAB');
1659: oe_debug_pub.add(p_PRICING_ATTR_rec.attribute_grouping_no);
1660: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute_context);
1661: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute);
1662: oe_debug_pub.add(p_PRICING_ATTR_rec.pricing_attribute);
1663: oe_debug_pub.add(p_PRICING_ATTR_rec.excluder_flag);
1664:
1665: --If Price Break value to is null and value from is not (the last price break) set
1666: --value to 999..99 (15 digit) to incorporate infinite values

Line 1663: oe_debug_pub.add(p_PRICING_ATTR_rec.excluder_flag);

1659: oe_debug_pub.add(p_PRICING_ATTR_rec.attribute_grouping_no);
1660: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute_context);
1661: oe_debug_pub.add(p_PRICING_ATTR_rec.product_attribute);
1662: oe_debug_pub.add(p_PRICING_ATTR_rec.pricing_attribute);
1663: oe_debug_pub.add(p_PRICING_ATTR_rec.excluder_flag);
1664:
1665: --If Price Break value to is null and value from is not (the last price break) set
1666: --value to 999..99 (15 digit) to incorporate infinite values
1667: IF(p_Pricing_Attr_rec.pricing_attr_value_to IS NULL

Line 1859: oe_debug_pub.add('END Insert_Row in QPXUPRAB');

1855: p_request_type =>QP_GLOBALS.G_MAINTAIN_FACTOR_LIST_ATTRS,
1856: x_return_status => l_return_status);
1857: END IF;
1858:
1859: oe_debug_pub.add('END Insert_Row in QPXUPRAB');
1860:
1861: EXCEPTION
1862:
1863: WHEN OTHERS THEN

Line 1886: oe_debug_pub.add('BEGIN Delete_Row in QPXUPRAB');

1882: IS
1883: l_list_line_id NUMBER;
1884: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
1885: BEGIN
1886: oe_debug_pub.add('BEGIN Delete_Row in QPXUPRAB');
1887:
1888:
1889: DELETE FROM QP_PRICING_ATTRIBUTES
1890: WHERE PRICING_ATTRIBUTE_ID = p_pricing_attribute_id

Line 1902: oe_debug_pub.add('END Delete_Row in QPXUPRAB');

1898: p_requesting_entity_id => l_list_line_id,
1899: p_request_type =>QP_GLOBALS.G_MAINTAIN_FACTOR_LIST_ATTRS,
1900: x_return_status => l_return_status);
1901:
1902: oe_debug_pub.add('END Delete_Row in QPXUPRAB');
1903: EXCEPTION
1904:
1905: WHEN OTHERS THEN
1906:

Line 2002: oe_debug_pub.add('BEGIN Query_rows in QPXUPRAB');

1998: );
1999:
2000: BEGIN
2001:
2002: oe_debug_pub.add('BEGIN Query_rows in QPXUPRAB');
2003:
2004: IF
2005: (p_pricing_attribute_id IS NOT NULL
2006: AND

Line 2096: oe_debug_pub.add('END Query_rows in QPXUPRAB');

2092: RAISE NO_DATA_FOUND;
2093: END IF;
2094:
2095:
2096: oe_debug_pub.add('END Query_rows in QPXUPRAB');
2097:
2098: -- Return fetched table
2099:
2100: RETURN l_PRICING_ATTR_tbl;

Line 2137: oe_debug_pub.add('BEGIN Lock_row in QPXUPRAB');

2133: IS
2134: l_PRICING_ATTR_rec QP_Modifiers_PUB.Pricing_Attr_Rec_Type;
2135: BEGIN
2136:
2137: oe_debug_pub.add('BEGIN Lock_row in QPXUPRAB');
2138:
2139: SELECT
2140: --ACCUMULATE_FLAG
2141: ATTRIBUTE1

Line 2343: oe_debug_pub.ADD('-------------------data compare in pricing attr line (database vs record)------------------');

2339: ELSE
2340:
2341: -- Row has changed by another user.
2342: --8594682 -added debug messages for oe_lock_row issue
2343: oe_debug_pub.ADD('-------------------data compare in pricing attr line (database vs record)------------------');
2344: oe_debug_pub.add('PRICING_ATTR_rec.attribute1 :'||l_PRICING_ATTR_rec.attribute1||':'||p_PRICING_ATTR_rec.attribute1||':');
2345: oe_debug_pub.add('PRICING_ATTR_rec.attribute10 :'||l_PRICING_ATTR_rec.attribute10||':'||p_PRICING_ATTR_rec.attribute10||':');
2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');
2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');

Line 2344: oe_debug_pub.add('PRICING_ATTR_rec.attribute1 :'||l_PRICING_ATTR_rec.attribute1||':'||p_PRICING_ATTR_rec.attribute1||':');

2340:
2341: -- Row has changed by another user.
2342: --8594682 -added debug messages for oe_lock_row issue
2343: oe_debug_pub.ADD('-------------------data compare in pricing attr line (database vs record)------------------');
2344: oe_debug_pub.add('PRICING_ATTR_rec.attribute1 :'||l_PRICING_ATTR_rec.attribute1||':'||p_PRICING_ATTR_rec.attribute1||':');
2345: oe_debug_pub.add('PRICING_ATTR_rec.attribute10 :'||l_PRICING_ATTR_rec.attribute10||':'||p_PRICING_ATTR_rec.attribute10||':');
2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');
2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');
2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');

Line 2345: oe_debug_pub.add('PRICING_ATTR_rec.attribute10 :'||l_PRICING_ATTR_rec.attribute10||':'||p_PRICING_ATTR_rec.attribute10||':');

2341: -- Row has changed by another user.
2342: --8594682 -added debug messages for oe_lock_row issue
2343: oe_debug_pub.ADD('-------------------data compare in pricing attr line (database vs record)------------------');
2344: oe_debug_pub.add('PRICING_ATTR_rec.attribute1 :'||l_PRICING_ATTR_rec.attribute1||':'||p_PRICING_ATTR_rec.attribute1||':');
2345: oe_debug_pub.add('PRICING_ATTR_rec.attribute10 :'||l_PRICING_ATTR_rec.attribute10||':'||p_PRICING_ATTR_rec.attribute10||':');
2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');
2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');
2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');
2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');

Line 2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');

2342: --8594682 -added debug messages for oe_lock_row issue
2343: oe_debug_pub.ADD('-------------------data compare in pricing attr line (database vs record)------------------');
2344: oe_debug_pub.add('PRICING_ATTR_rec.attribute1 :'||l_PRICING_ATTR_rec.attribute1||':'||p_PRICING_ATTR_rec.attribute1||':');
2345: oe_debug_pub.add('PRICING_ATTR_rec.attribute10 :'||l_PRICING_ATTR_rec.attribute10||':'||p_PRICING_ATTR_rec.attribute10||':');
2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');
2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');
2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');
2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');
2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');

Line 2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');

2343: oe_debug_pub.ADD('-------------------data compare in pricing attr line (database vs record)------------------');
2344: oe_debug_pub.add('PRICING_ATTR_rec.attribute1 :'||l_PRICING_ATTR_rec.attribute1||':'||p_PRICING_ATTR_rec.attribute1||':');
2345: oe_debug_pub.add('PRICING_ATTR_rec.attribute10 :'||l_PRICING_ATTR_rec.attribute10||':'||p_PRICING_ATTR_rec.attribute10||':');
2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');
2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');
2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');
2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');
2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');
2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');

Line 2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');

2344: oe_debug_pub.add('PRICING_ATTR_rec.attribute1 :'||l_PRICING_ATTR_rec.attribute1||':'||p_PRICING_ATTR_rec.attribute1||':');
2345: oe_debug_pub.add('PRICING_ATTR_rec.attribute10 :'||l_PRICING_ATTR_rec.attribute10||':'||p_PRICING_ATTR_rec.attribute10||':');
2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');
2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');
2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');
2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');
2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');
2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');
2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');

Line 2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');

2345: oe_debug_pub.add('PRICING_ATTR_rec.attribute10 :'||l_PRICING_ATTR_rec.attribute10||':'||p_PRICING_ATTR_rec.attribute10||':');
2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');
2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');
2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');
2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');
2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');
2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');
2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');
2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');

Line 2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');

2346: oe_debug_pub.add('PRICING_ATTR_rec.attribute11 :'||l_PRICING_ATTR_rec.attribute11||':'||p_PRICING_ATTR_rec.attribute11||':');
2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');
2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');
2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');
2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');
2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');
2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');
2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');
2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');

Line 2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');

2347: oe_debug_pub.add('PRICING_ATTR_rec.attribute12 :'||l_PRICING_ATTR_rec.attribute12||':'||p_PRICING_ATTR_rec.attribute12||':');
2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');
2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');
2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');
2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');
2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');
2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');
2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');
2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');

Line 2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');

2348: oe_debug_pub.add('PRICING_ATTR_rec.attribute13 :'||l_PRICING_ATTR_rec.attribute13||':'||p_PRICING_ATTR_rec.attribute13||':');
2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');
2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');
2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');
2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');
2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');
2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');
2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');
2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');

Line 2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');

2349: oe_debug_pub.add('PRICING_ATTR_rec.attribute14 :'||l_PRICING_ATTR_rec.attribute14||':'||p_PRICING_ATTR_rec.attribute14||':');
2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');
2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');
2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');
2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');
2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');
2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');
2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');
2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');

Line 2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');

2350: oe_debug_pub.add('PRICING_ATTR_rec.attribute15 :'||l_PRICING_ATTR_rec.attribute15||':'||p_PRICING_ATTR_rec.attribute15||':');
2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');
2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');
2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');
2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');
2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');
2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');
2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');
2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');

Line 2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');

2351: oe_debug_pub.add('PRICING_ATTR_rec.attribute2 :'||l_PRICING_ATTR_rec.attribute2||':'||p_PRICING_ATTR_rec.attribute2||':');
2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');
2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');
2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');
2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');
2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');
2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');
2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');
2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');

Line 2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');

2352: oe_debug_pub.add('PRICING_ATTR_rec.attribute3 :'||l_PRICING_ATTR_rec.attribute3||':'||p_PRICING_ATTR_rec.attribute3||':');
2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');
2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');
2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');
2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');
2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');
2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');
2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');
2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');

Line 2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');

2353: oe_debug_pub.add('PRICING_ATTR_rec.attribute4 :'||l_PRICING_ATTR_rec.attribute4||':'||p_PRICING_ATTR_rec.attribute4||':');
2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');
2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');
2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');
2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');
2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');
2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');
2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');
2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');

Line 2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');

2354: oe_debug_pub.add('PRICING_ATTR_rec.attribute5 :'||l_PRICING_ATTR_rec.attribute5||':'||p_PRICING_ATTR_rec.attribute5||':');
2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');
2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');
2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');
2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');
2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');
2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');
2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');
2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');

Line 2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');

2355: oe_debug_pub.add('PRICING_ATTR_rec.attribute6 :'||l_PRICING_ATTR_rec.attribute6||':'||p_PRICING_ATTR_rec.attribute6||':');
2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');
2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');
2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');
2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');
2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');
2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');
2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');
2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');

Line 2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');

2356: oe_debug_pub.add('PRICING_ATTR_rec.attribute7 :'||l_PRICING_ATTR_rec.attribute7||':'||p_PRICING_ATTR_rec.attribute7||':');
2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');
2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');
2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');
2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');
2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');
2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');
2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');
2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');

Line 2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');

2357: oe_debug_pub.add('PRICING_ATTR_rec.attribute8 :'||l_PRICING_ATTR_rec.attribute8||':'||p_PRICING_ATTR_rec.attribute8||':');
2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');
2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');
2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');
2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');
2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');
2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');
2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');
2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');

Line 2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');

2358: oe_debug_pub.add('PRICING_ATTR_rec.attribute9 :'||l_PRICING_ATTR_rec.attribute9||':'||p_PRICING_ATTR_rec.attribute9||':');
2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');
2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');
2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');
2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');
2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');
2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');
2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');
2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');

Line 2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');

2359: oe_debug_pub.add('PRICING_ATTR_rec.attribute_grouping_no :'||l_PRICING_ATTR_rec.attribute_grouping_no||':'||p_PRICING_ATTR_rec.attribute_grouping_no||':');
2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');
2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');
2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');
2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');
2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');
2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');
2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');
2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');

Line 2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');

2360: oe_debug_pub.add('PRICING_ATTR_rec.context :'||l_PRICING_ATTR_rec.context||':'|| p_PRICING_ATTR_rec.context||':');
2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');
2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');
2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');
2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');
2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');
2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');
2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');
2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');

Line 2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');

2361: oe_debug_pub.add('PRICING_ATTR_rec.created_by :'||l_PRICING_ATTR_rec.created_by||':'||p_PRICING_ATTR_rec.created_by||':');
2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');
2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');
2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');
2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');
2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');
2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');
2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');
2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');

Line 2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');

2362: oe_debug_pub.add('PRICING_ATTR_rec.creation_date :'||l_PRICING_ATTR_rec.creation_date||':'||p_PRICING_ATTR_rec.creation_date||':');
2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');
2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');
2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');
2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');
2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');
2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');
2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');
2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');

Line 2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');

2363: oe_debug_pub.add('PRICING_ATTR_rec.excluder_flag :'||l_PRICING_ATTR_rec.excluder_flag||':'||p_PRICING_ATTR_rec.excluder_flag||':');
2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');
2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');
2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');
2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');
2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');
2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');
2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');
2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');

Line 2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');

2364: oe_debug_pub.add('PRICING_ATTR_rec.last_updated_by :'||l_PRICING_ATTR_rec.last_updated_by||':'||p_PRICING_ATTR_rec.last_updated_by||':');
2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');
2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');
2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');
2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');
2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');
2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');
2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');
2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');

Line 2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');

2365: oe_debug_pub.add('PRICING_ATTR_rec.last_update_date :'||l_PRICING_ATTR_rec.last_update_date||':'||p_PRICING_ATTR_rec.last_update_date||':');
2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');
2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');
2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');
2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');
2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');
2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');
2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');
2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');

Line 2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');

2366: oe_debug_pub.add('PRICING_ATTR_rec.last_update_login :'||l_PRICING_ATTR_rec.last_update_login||':'||p_PRICING_ATTR_rec.last_update_login||':');
2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');
2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');
2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');
2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');
2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');
2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');
2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');
2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');

Line 2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');

2367: oe_debug_pub.add('PRICING_ATTR_rec.list_line_id :'||l_PRICING_ATTR_rec.list_line_id||':'||p_PRICING_ATTR_rec.list_line_id||':');
2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');
2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');
2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');
2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');
2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');
2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');
2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');
2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');

Line 2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');

2368: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute :'||l_PRICING_ATTR_rec.pricing_attribute||':'||p_PRICING_ATTR_rec.pricing_attribute||':');
2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');
2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');
2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');
2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');
2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');
2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');
2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');
2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');

Line 2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');

2369: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_context :'||l_PRICING_ATTR_rec.pricing_attribute_context||':'||p_PRICING_ATTR_rec.pricing_attribute_context||':');
2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');
2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');
2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');
2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');
2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');
2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');
2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');
2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');

Line 2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');

2370: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_id :'||l_PRICING_ATTR_rec.pricing_attribute_id||':'||p_PRICING_ATTR_rec.pricing_attribute_id||':');
2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');
2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');
2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');
2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');
2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');
2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');
2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');
2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');

Line 2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');

2371: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_from :'||l_PRICING_ATTR_rec.pricing_attr_value_from||':'||p_PRICING_ATTR_rec.pricing_attr_value_from||':');
2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');
2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');
2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');
2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');
2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');
2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');
2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');
2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');

Line 2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');

2372: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attr_value_to :'||l_PRICING_ATTR_rec.pricing_attr_value_to||':'||p_PRICING_ATTR_rec.pricing_attr_value_to||':');
2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');
2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');
2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');
2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');
2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');
2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');
2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');
2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');

Line 2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');

2373: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute :'||l_PRICING_ATTR_rec.product_attribute||':'||p_PRICING_ATTR_rec.product_attribute||':');
2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');
2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');
2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');
2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');
2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');
2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');
2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');
2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');

Line 2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');

2374: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_context :'||l_PRICING_ATTR_rec.product_attribute_context||':'||p_PRICING_ATTR_rec.product_attribute_context||':');
2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');
2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');
2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');
2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');
2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');
2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');
2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');
2382: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_datatype :'||l_PRICING_ATTR_rec.pricing_attribute_datatype||':'||p_PRICING_ATTR_rec.pricing_attribute_datatype||':');

Line 2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');

2375: oe_debug_pub.add('PRICING_ATTR_rec.product_attr_value :'||l_PRICING_ATTR_rec.product_attr_value||':'||p_PRICING_ATTR_rec.product_attr_value||':');
2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');
2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');
2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');
2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');
2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');
2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');
2382: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_datatype :'||l_PRICING_ATTR_rec.pricing_attribute_datatype||':'||p_PRICING_ATTR_rec.pricing_attribute_datatype||':');
2383: oe_debug_pub.add('PRICING_ATTR_rec.comparison_operator_code :'||l_PRICING_ATTR_rec.comparison_operator_code||':'||p_PRICING_ATTR_rec.comparison_operator_code||':');

Line 2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');

2376: oe_debug_pub.add('PRICING_ATTR_rec.product_uom_code :'||l_PRICING_ATTR_rec.product_uom_code||':'||p_PRICING_ATTR_rec.product_uom_code||':');
2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');
2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');
2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');
2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');
2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');
2382: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_datatype :'||l_PRICING_ATTR_rec.pricing_attribute_datatype||':'||p_PRICING_ATTR_rec.pricing_attribute_datatype||':');
2383: oe_debug_pub.add('PRICING_ATTR_rec.comparison_operator_code :'||l_PRICING_ATTR_rec.comparison_operator_code||':'||p_PRICING_ATTR_rec.comparison_operator_code||':');
2384: oe_debug_pub.ADD('-------------------data compare in pricing attr line end------------------');

Line 2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');

2377: oe_debug_pub.add('PRICING_ATTR_rec.program_application_id :'||l_PRICING_ATTR_rec.program_application_id||':'||p_PRICING_ATTR_rec.program_application_id||':');
2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');
2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');
2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');
2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');
2382: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_datatype :'||l_PRICING_ATTR_rec.pricing_attribute_datatype||':'||p_PRICING_ATTR_rec.pricing_attribute_datatype||':');
2383: oe_debug_pub.add('PRICING_ATTR_rec.comparison_operator_code :'||l_PRICING_ATTR_rec.comparison_operator_code||':'||p_PRICING_ATTR_rec.comparison_operator_code||':');
2384: oe_debug_pub.ADD('-------------------data compare in pricing attr line end------------------');
2385:

Line 2382: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_datatype :'||l_PRICING_ATTR_rec.pricing_attribute_datatype||':'||p_PRICING_ATTR_rec.pricing_attribute_datatype||':');

2378: oe_debug_pub.add('PRICING_ATTR_rec.program_id :'||l_PRICING_ATTR_rec.program_id||':'||p_PRICING_ATTR_rec.program_id||':');
2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');
2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');
2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');
2382: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_datatype :'||l_PRICING_ATTR_rec.pricing_attribute_datatype||':'||p_PRICING_ATTR_rec.pricing_attribute_datatype||':');
2383: oe_debug_pub.add('PRICING_ATTR_rec.comparison_operator_code :'||l_PRICING_ATTR_rec.comparison_operator_code||':'||p_PRICING_ATTR_rec.comparison_operator_code||':');
2384: oe_debug_pub.ADD('-------------------data compare in pricing attr line end------------------');
2385:
2386: x_return_status := FND_API.G_RET_STS_ERROR;

Line 2383: oe_debug_pub.add('PRICING_ATTR_rec.comparison_operator_code :'||l_PRICING_ATTR_rec.comparison_operator_code||':'||p_PRICING_ATTR_rec.comparison_operator_code||':');

2379: oe_debug_pub.add('PRICING_ATTR_rec.program_update_date :'||l_PRICING_ATTR_rec.program_update_date||':'||p_PRICING_ATTR_rec.program_update_date||':');
2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');
2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');
2382: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_datatype :'||l_PRICING_ATTR_rec.pricing_attribute_datatype||':'||p_PRICING_ATTR_rec.pricing_attribute_datatype||':');
2383: oe_debug_pub.add('PRICING_ATTR_rec.comparison_operator_code :'||l_PRICING_ATTR_rec.comparison_operator_code||':'||p_PRICING_ATTR_rec.comparison_operator_code||':');
2384: oe_debug_pub.ADD('-------------------data compare in pricing attr line end------------------');
2385:
2386: x_return_status := FND_API.G_RET_STS_ERROR;
2387: x_PRICING_ATTR_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 2384: oe_debug_pub.ADD('-------------------data compare in pricing attr line end------------------');

2380: oe_debug_pub.add('PRICING_ATTR_rec.request_id :'||l_PRICING_ATTR_rec.request_id||':'||p_PRICING_ATTR_rec.request_id||':');
2381: oe_debug_pub.add('PRICING_ATTR_rec.product_attribute_datatype :'||l_PRICING_ATTR_rec.product_attribute_datatype||':'||p_PRICING_ATTR_rec.product_attribute_datatype||':');
2382: oe_debug_pub.add('PRICING_ATTR_rec.pricing_attribute_datatype :'||l_PRICING_ATTR_rec.pricing_attribute_datatype||':'||p_PRICING_ATTR_rec.pricing_attribute_datatype||':');
2383: oe_debug_pub.add('PRICING_ATTR_rec.comparison_operator_code :'||l_PRICING_ATTR_rec.comparison_operator_code||':'||p_PRICING_ATTR_rec.comparison_operator_code||':');
2384: oe_debug_pub.ADD('-------------------data compare in pricing attr line end------------------');
2385:
2386: x_return_status := FND_API.G_RET_STS_ERROR;
2387: x_PRICING_ATTR_rec.return_status := FND_API.G_RET_STS_ERROR;
2388:

Line 2399: oe_debug_pub.add('END Lock_row in QPXUPRAB');

2395: END IF;
2396:
2397: END IF;
2398:
2399: oe_debug_pub.add('END Lock_row in QPXUPRAB');
2400:
2401: EXCEPTION
2402:
2403: WHEN NO_DATA_FOUND THEN

Line 2453: oe_debug_pub.add('BEGIN Get_Values in QPXUPRAB');

2449: IS
2450: l_PRICING_ATTR_val_rec QP_Modifiers_PUB.Pricing_Attr_Val_Rec_Type;
2451: BEGIN
2452:
2453: oe_debug_pub.add('BEGIN Get_Values in QPXUPRAB');
2454:
2455: IF p_PRICING_ATTR_rec.accumulate_flag IS NOT NULL AND
2456: p_PRICING_ATTR_rec.accumulate_flag <> FND_API.G_MISS_CHAR AND
2457: NOT QP_GLOBALS.Equal(p_PRICING_ATTR_rec.accumulate_flag,

Line 2524: oe_debug_pub.add('END Get_Values in QPXUPRAB');

2520: ( p_product_uom_code => p_PRICING_ATTR_rec.product_uom_code
2521: );
2522: END IF;
2523:
2524: oe_debug_pub.add('END Get_Values in QPXUPRAB');
2525:
2526: RETURN l_PRICING_ATTR_val_rec;
2527:
2528: END Get_Values;

Line 2540: oe_debug_pub.add('BEGIN Get_Ids in QPXUPRAB');

2536: IS
2537: l_PRICING_ATTR_rec QP_Modifiers_PUB.Pricing_Attr_Rec_Type;
2538: BEGIN
2539:
2540: oe_debug_pub.add('BEGIN Get_Ids in QPXUPRAB');
2541:
2542: -- initialize return_status.
2543:
2544: l_PRICING_ATTR_rec.return_status := FND_API.G_RET_STS_SUCCESS;

Line 2829: oe_debug_pub.add('END Get_Ids in QPXUPRAB');

2825: END IF;
2826:
2827: END IF;
2828:
2829: oe_debug_pub.add('END Get_Ids in QPXUPRAB');
2830:
2831: RETURN l_PRICING_ATTR_rec;
2832:
2833: END Get_Ids;

Line 2848: oe_debug_pub.Add('Entering QP_PRICING_ATTR_Util.pre_write_process', 1);

2844: l_list_header_id number;
2845:
2846: BEGIN
2847:
2848: oe_debug_pub.Add('Entering QP_PRICING_ATTR_Util.pre_write_process', 1);
2849: --Bug 10421292 . Added following code to update pricing attributes when the Product attribute is changed in Modifier form.
2850: --Similar issue addressed for Price list in bug 2807015
2851: IF ( p_PRICING_ATTR_rec.operation = QP_GLOBALS.G_OPR_UPDATE AND p_PRICING_ATTR_rec.excluder_flag = 'N') --14603635
2852: THEN

Line 2899: oe_debug_pub.add('Logging a request to update qualification_ind ', 1);

2895: x_PRICING_ATTR_rec.list_header_id := l_list_header_id;
2896:
2897: IF ( p_PRICING_ATTR_rec.operation = OE_GLOBALS.G_OPR_DELETE) THEN
2898:
2899: oe_debug_pub.add('Logging a request to update qualification_ind ', 1);
2900:
2901: --hw
2902: -- delayed request for changed lines
2903: if QP_PERF_PVT.enabled = 'Y' then