DBA Data[Home] [Help]

APPS.OE_PRICE_LIST_LINE_UTIL dependencies on OE_GLOBALS

Line 19: l_src_attr_tbl OE_GLOBALS.NUMBER_Tbl_Type;

15: , x_PRICE_LIST_LINE_rec OUT NOCOPY /* file.sql.39 change */ OE_Price_List_PUB.Price_List_Line_Rec_Type
16: )
17: IS
18: l_index NUMBER := 0;
19: l_src_attr_tbl OE_GLOBALS.NUMBER_Tbl_Type;
20: l_dep_attr_tbl OE_GLOBALS.NUMBER_Tbl_Type;
21: BEGIN
22:
23: -- Load out record

Line 20: l_dep_attr_tbl OE_GLOBALS.NUMBER_Tbl_Type;

16: )
17: IS
18: l_index NUMBER := 0;
19: l_src_attr_tbl OE_GLOBALS.NUMBER_Tbl_Type;
20: l_dep_attr_tbl OE_GLOBALS.NUMBER_Tbl_Type;
21: BEGIN
22:
23: -- Load out record
24:

Line 32: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute1,p_old_PRICE_LIST_LINE_rec.attribute1)

28: -- every changed attribute clear its dependent fields.
29:
30: IF p_attr_id = FND_API.G_MISS_NUM THEN
31:
32: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute1,p_old_PRICE_LIST_LINE_rec.attribute1)
33: THEN
34: l_index := l_index + 1;
35: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE1;
36: END IF;

Line 38: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute10,p_old_PRICE_LIST_LINE_rec.attribute10)

34: l_index := l_index + 1;
35: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE1;
36: END IF;
37:
38: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute10,p_old_PRICE_LIST_LINE_rec.attribute10)
39: THEN
40: l_index := l_index + 1;
41: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE10;
42: END IF;

Line 44: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute11,p_old_PRICE_LIST_LINE_rec.attribute11)

40: l_index := l_index + 1;
41: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE10;
42: END IF;
43:
44: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute11,p_old_PRICE_LIST_LINE_rec.attribute11)
45: THEN
46: l_index := l_index + 1;
47: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE11;
48: END IF;

Line 50: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute12,p_old_PRICE_LIST_LINE_rec.attribute12)

46: l_index := l_index + 1;
47: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE11;
48: END IF;
49:
50: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute12,p_old_PRICE_LIST_LINE_rec.attribute12)
51: THEN
52: l_index := l_index + 1;
53: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE12;
54: END IF;

Line 56: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute13,p_old_PRICE_LIST_LINE_rec.attribute13)

52: l_index := l_index + 1;
53: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE12;
54: END IF;
55:
56: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute13,p_old_PRICE_LIST_LINE_rec.attribute13)
57: THEN
58: l_index := l_index + 1;
59: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE13;
60: END IF;

Line 62: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute14,p_old_PRICE_LIST_LINE_rec.attribute14)

58: l_index := l_index + 1;
59: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE13;
60: END IF;
61:
62: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute14,p_old_PRICE_LIST_LINE_rec.attribute14)
63: THEN
64: l_index := l_index + 1;
65: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE14;
66: END IF;

Line 68: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute15,p_old_PRICE_LIST_LINE_rec.attribute15)

64: l_index := l_index + 1;
65: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE14;
66: END IF;
67:
68: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute15,p_old_PRICE_LIST_LINE_rec.attribute15)
69: THEN
70: l_index := l_index + 1;
71: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE15;
72: END IF;

Line 74: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute2,p_old_PRICE_LIST_LINE_rec.attribute2)

70: l_index := l_index + 1;
71: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE15;
72: END IF;
73:
74: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute2,p_old_PRICE_LIST_LINE_rec.attribute2)
75: THEN
76: l_index := l_index + 1;
77: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE2;
78: END IF;

Line 80: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute3,p_old_PRICE_LIST_LINE_rec.attribute3)

76: l_index := l_index + 1;
77: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE2;
78: END IF;
79:
80: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute3,p_old_PRICE_LIST_LINE_rec.attribute3)
81: THEN
82: l_index := l_index + 1;
83: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE3;
84: END IF;

Line 86: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute4,p_old_PRICE_LIST_LINE_rec.attribute4)

82: l_index := l_index + 1;
83: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE3;
84: END IF;
85:
86: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute4,p_old_PRICE_LIST_LINE_rec.attribute4)
87: THEN
88: l_index := l_index + 1;
89: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE4;
90: END IF;

Line 92: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute5,p_old_PRICE_LIST_LINE_rec.attribute5)

88: l_index := l_index + 1;
89: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE4;
90: END IF;
91:
92: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute5,p_old_PRICE_LIST_LINE_rec.attribute5)
93: THEN
94: l_index := l_index + 1;
95: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE5;
96: END IF;

Line 98: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute6,p_old_PRICE_LIST_LINE_rec.attribute6)

94: l_index := l_index + 1;
95: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE5;
96: END IF;
97:
98: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute6,p_old_PRICE_LIST_LINE_rec.attribute6)
99: THEN
100: l_index := l_index + 1;
101: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE6;
102: END IF;

Line 104: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute7,p_old_PRICE_LIST_LINE_rec.attribute7)

100: l_index := l_index + 1;
101: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE6;
102: END IF;
103:
104: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute7,p_old_PRICE_LIST_LINE_rec.attribute7)
105: THEN
106: l_index := l_index + 1;
107: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE7;
108: END IF;

Line 110: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute8,p_old_PRICE_LIST_LINE_rec.attribute8)

106: l_index := l_index + 1;
107: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE7;
108: END IF;
109:
110: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute8,p_old_PRICE_LIST_LINE_rec.attribute8)
111: THEN
112: l_index := l_index + 1;
113: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE8;
114: END IF;

Line 116: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute9,p_old_PRICE_LIST_LINE_rec.attribute9)

112: l_index := l_index + 1;
113: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE8;
114: END IF;
115:
116: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute9,p_old_PRICE_LIST_LINE_rec.attribute9)
117: THEN
118: l_index := l_index + 1;
119: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE9;
120: END IF;

Line 122: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.comments,p_old_PRICE_LIST_LINE_rec.comments)

118: l_index := l_index + 1;
119: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_ATTRIBUTE9;
120: END IF;
121:
122: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.comments,p_old_PRICE_LIST_LINE_rec.comments)
123: THEN
124: l_index := l_index + 1;
125: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_COMMENTS;
126: END IF;

Line 128: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.context,p_old_PRICE_LIST_LINE_rec.context)

124: l_index := l_index + 1;
125: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_COMMENTS;
126: END IF;
127:
128: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.context,p_old_PRICE_LIST_LINE_rec.context)
129: THEN
130: l_index := l_index + 1;
131: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_CONTEXT;
132: END IF;

Line 134: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.created_by,p_old_PRICE_LIST_LINE_rec.created_by)

130: l_index := l_index + 1;
131: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_CONTEXT;
132: END IF;
133:
134: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.created_by,p_old_PRICE_LIST_LINE_rec.created_by)
135: THEN
136: l_index := l_index + 1;
137: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_CREATED_BY;
138: END IF;

Line 140: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.creation_date,p_old_PRICE_LIST_LINE_rec.creation_date)

136: l_index := l_index + 1;
137: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_CREATED_BY;
138: END IF;
139:
140: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.creation_date,p_old_PRICE_LIST_LINE_rec.creation_date)
141: THEN
142: l_index := l_index + 1;
143: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_CREATION_DATE;
144: END IF;

Line 146: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.customer_item_id,p_old_PRICE_LIST_LINE_rec.customer_item_id)

142: l_index := l_index + 1;
143: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_CREATION_DATE;
144: END IF;
145:
146: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.customer_item_id,p_old_PRICE_LIST_LINE_rec.customer_item_id)
147: THEN
148: l_index := l_index + 1;
149: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_CUSTOMER_ITEM;
150: END IF;

Line 152: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.end_date_active,p_old_PRICE_LIST_LINE_rec.end_date_active)

148: l_index := l_index + 1;
149: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_CUSTOMER_ITEM;
150: END IF;
151:
152: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.end_date_active,p_old_PRICE_LIST_LINE_rec.end_date_active)
153: THEN
154: l_index := l_index + 1;
155: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_END_DATE_ACTIVE;
156: END IF;

Line 158: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.inventory_item_id,p_old_PRICE_LIST_LINE_rec.inventory_item_id)

154: l_index := l_index + 1;
155: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_END_DATE_ACTIVE;
156: END IF;
157:
158: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.inventory_item_id,p_old_PRICE_LIST_LINE_rec.inventory_item_id)
159: THEN
160: l_index := l_index + 1;
161: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_INVENTORY_ITEM;
162: END IF;

Line 164: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.last_updated_by,p_old_PRICE_LIST_LINE_rec.last_updated_by)

160: l_index := l_index + 1;
161: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_INVENTORY_ITEM;
162: END IF;
163:
164: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.last_updated_by,p_old_PRICE_LIST_LINE_rec.last_updated_by)
165: THEN
166: l_index := l_index + 1;
167: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_LAST_UPDATED_BY;
168: END IF;

Line 170: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.last_update_date,p_old_PRICE_LIST_LINE_rec.last_update_date)

166: l_index := l_index + 1;
167: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_LAST_UPDATED_BY;
168: END IF;
169:
170: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.last_update_date,p_old_PRICE_LIST_LINE_rec.last_update_date)
171: THEN
172: l_index := l_index + 1;
173: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_LAST_UPDATE_DATE;
174: END IF;

Line 176: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.last_update_login,p_old_PRICE_LIST_LINE_rec.last_update_login)

172: l_index := l_index + 1;
173: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_LAST_UPDATE_DATE;
174: END IF;
175:
176: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.last_update_login,p_old_PRICE_LIST_LINE_rec.last_update_login)
177: THEN
178: l_index := l_index + 1;
179: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_LAST_UPDATE_LOGIN;
180: END IF;

Line 182: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.list_price,p_old_PRICE_LIST_LINE_rec.list_price)

178: l_index := l_index + 1;
179: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_LAST_UPDATE_LOGIN;
180: END IF;
181:
182: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.list_price,p_old_PRICE_LIST_LINE_rec.list_price)
183: THEN
184: l_index := l_index + 1;
185: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_LIST_PRICE;
186: END IF;

Line 188: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.method_code,p_old_PRICE_LIST_LINE_rec.method_code)

184: l_index := l_index + 1;
185: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_LIST_PRICE;
186: END IF;
187:
188: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.method_code,p_old_PRICE_LIST_LINE_rec.method_code)
189: THEN
190: l_index := l_index + 1;
191: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_METHOD;
192: END IF;

Line 194: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.price_list_id,p_old_PRICE_LIST_LINE_rec.price_list_id)

190: l_index := l_index + 1;
191: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_METHOD;
192: END IF;
193:
194: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.price_list_id,p_old_PRICE_LIST_LINE_rec.price_list_id)
195: THEN
196: l_index := l_index + 1;
197: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICE_LIST;
198: END IF;

Line 200: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.price_list_line_id,p_old_PRICE_LIST_LINE_rec.price_list_line_id)

196: l_index := l_index + 1;
197: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICE_LIST;
198: END IF;
199:
200: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.price_list_line_id,p_old_PRICE_LIST_LINE_rec.price_list_line_id)
201: THEN
202: l_index := l_index + 1;
203: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICE_LIST_LINE;
204: END IF;

Line 206: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute1,p_old_PRICE_LIST_LINE_rec.pricing_attribute1)

202: l_index := l_index + 1;
203: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICE_LIST_LINE;
204: END IF;
205:
206: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute1,p_old_PRICE_LIST_LINE_rec.pricing_attribute1)
207: THEN
208: l_index := l_index + 1;
209: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE1;
210: END IF;

Line 212: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute10,p_old_PRICE_LIST_LINE_rec.pricing_attribute10)

208: l_index := l_index + 1;
209: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE1;
210: END IF;
211:
212: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute10,p_old_PRICE_LIST_LINE_rec.pricing_attribute10)
213: THEN
214: l_index := l_index + 1;
215: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE10;
216: END IF;

Line 218: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute11,p_old_PRICE_LIST_LINE_rec.pricing_attribute11)

214: l_index := l_index + 1;
215: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE10;
216: END IF;
217:
218: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute11,p_old_PRICE_LIST_LINE_rec.pricing_attribute11)
219: THEN
220: l_index := l_index + 1;
221: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE11;
222: END IF;

Line 224: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute12,p_old_PRICE_LIST_LINE_rec.pricing_attribute12)

220: l_index := l_index + 1;
221: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE11;
222: END IF;
223:
224: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute12,p_old_PRICE_LIST_LINE_rec.pricing_attribute12)
225: THEN
226: l_index := l_index + 1;
227: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE12;
228: END IF;

Line 230: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute13,p_old_PRICE_LIST_LINE_rec.pricing_attribute13)

226: l_index := l_index + 1;
227: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE12;
228: END IF;
229:
230: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute13,p_old_PRICE_LIST_LINE_rec.pricing_attribute13)
231: THEN
232: l_index := l_index + 1;
233: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE13;
234: END IF;

Line 236: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute14,p_old_PRICE_LIST_LINE_rec.pricing_attribute14)

232: l_index := l_index + 1;
233: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE13;
234: END IF;
235:
236: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute14,p_old_PRICE_LIST_LINE_rec.pricing_attribute14)
237: THEN
238: l_index := l_index + 1;
239: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE14;
240: END IF;

Line 242: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute15,p_old_PRICE_LIST_LINE_rec.pricing_attribute15)

238: l_index := l_index + 1;
239: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE14;
240: END IF;
241:
242: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute15,p_old_PRICE_LIST_LINE_rec.pricing_attribute15)
243: THEN
244: l_index := l_index + 1;
245: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE15;
246: END IF;

Line 248: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute2,p_old_PRICE_LIST_LINE_rec.pricing_attribute2)

244: l_index := l_index + 1;
245: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE15;
246: END IF;
247:
248: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute2,p_old_PRICE_LIST_LINE_rec.pricing_attribute2)
249: THEN
250: l_index := l_index + 1;
251: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE2;
252: END IF;

Line 254: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute3,p_old_PRICE_LIST_LINE_rec.pricing_attribute3)

250: l_index := l_index + 1;
251: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE2;
252: END IF;
253:
254: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute3,p_old_PRICE_LIST_LINE_rec.pricing_attribute3)
255: THEN
256: l_index := l_index + 1;
257: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE3;
258: END IF;

Line 260: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute4,p_old_PRICE_LIST_LINE_rec.pricing_attribute4)

256: l_index := l_index + 1;
257: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE3;
258: END IF;
259:
260: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute4,p_old_PRICE_LIST_LINE_rec.pricing_attribute4)
261: THEN
262: l_index := l_index + 1;
263: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE4;
264: END IF;

Line 266: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute5,p_old_PRICE_LIST_LINE_rec.pricing_attribute5)

262: l_index := l_index + 1;
263: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE4;
264: END IF;
265:
266: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute5,p_old_PRICE_LIST_LINE_rec.pricing_attribute5)
267: THEN
268: l_index := l_index + 1;
269: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE5;
270: END IF;

Line 272: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute6,p_old_PRICE_LIST_LINE_rec.pricing_attribute6)

268: l_index := l_index + 1;
269: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE5;
270: END IF;
271:
272: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute6,p_old_PRICE_LIST_LINE_rec.pricing_attribute6)
273: THEN
274: l_index := l_index + 1;
275: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE6;
276: END IF;

Line 278: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute7,p_old_PRICE_LIST_LINE_rec.pricing_attribute7)

274: l_index := l_index + 1;
275: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE6;
276: END IF;
277:
278: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute7,p_old_PRICE_LIST_LINE_rec.pricing_attribute7)
279: THEN
280: l_index := l_index + 1;
281: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE7;
282: END IF;

Line 284: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute8,p_old_PRICE_LIST_LINE_rec.pricing_attribute8)

280: l_index := l_index + 1;
281: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE7;
282: END IF;
283:
284: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute8,p_old_PRICE_LIST_LINE_rec.pricing_attribute8)
285: THEN
286: l_index := l_index + 1;
287: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE8;
288: END IF;

Line 290: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute9,p_old_PRICE_LIST_LINE_rec.pricing_attribute9)

286: l_index := l_index + 1;
287: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE8;
288: END IF;
289:
290: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_attribute9,p_old_PRICE_LIST_LINE_rec.pricing_attribute9)
291: THEN
292: l_index := l_index + 1;
293: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE9;
294: END IF;

Line 296: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_context,p_old_PRICE_LIST_LINE_rec.pricing_context)

292: l_index := l_index + 1;
293: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_ATTRIBUTE9;
294: END IF;
295:
296: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_context,p_old_PRICE_LIST_LINE_rec.pricing_context)
297: THEN
298: l_index := l_index + 1;
299: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_CONTEXT;
300: END IF;

Line 302: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_rule_id,p_old_PRICE_LIST_LINE_rec.pricing_rule_id)

298: l_index := l_index + 1;
299: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_CONTEXT;
300: END IF;
301:
302: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_rule_id,p_old_PRICE_LIST_LINE_rec.pricing_rule_id)
303: THEN
304: l_index := l_index + 1;
305: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_RULE;
306: END IF;

Line 308: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.primary,p_old_PRICE_LIST_LINE_rec.primary)

304: l_index := l_index + 1;
305: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRICING_RULE;
306: END IF;
307:
308: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.primary,p_old_PRICE_LIST_LINE_rec.primary)
309: THEN
310: l_index := l_index + 1;
311: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRIMARY;
312: END IF;

Line 314: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.program_application_id,p_old_PRICE_LIST_LINE_rec.program_application_id)

310: l_index := l_index + 1;
311: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PRIMARY;
312: END IF;
313:
314: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.program_application_id,p_old_PRICE_LIST_LINE_rec.program_application_id)
315: THEN
316: l_index := l_index + 1;
317: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PROGRAM_APPLICATION;
318: END IF;

Line 320: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.program_id,p_old_PRICE_LIST_LINE_rec.program_id)

316: l_index := l_index + 1;
317: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PROGRAM_APPLICATION;
318: END IF;
319:
320: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.program_id,p_old_PRICE_LIST_LINE_rec.program_id)
321: THEN
322: l_index := l_index + 1;
323: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PROGRAM;
324: END IF;

Line 326: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.program_update_date,p_old_PRICE_LIST_LINE_rec.program_update_date)

322: l_index := l_index + 1;
323: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PROGRAM;
324: END IF;
325:
326: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.program_update_date,p_old_PRICE_LIST_LINE_rec.program_update_date)
327: THEN
328: l_index := l_index + 1;
329: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PROGRAM_UPDATE_DATE;
330: END IF;

Line 332: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.reprice_flag,p_old_PRICE_LIST_LINE_rec.reprice_flag)

328: l_index := l_index + 1;
329: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_PROGRAM_UPDATE_DATE;
330: END IF;
331:
332: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.reprice_flag,p_old_PRICE_LIST_LINE_rec.reprice_flag)
333: THEN
334: l_index := l_index + 1;
335: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REPRICE;
336: END IF;

Line 338: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.request_id,p_old_PRICE_LIST_LINE_rec.request_id)

334: l_index := l_index + 1;
335: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REPRICE;
336: END IF;
337:
338: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.request_id,p_old_PRICE_LIST_LINE_rec.request_id)
339: THEN
340: l_index := l_index + 1;
341: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REQUEST;
342: END IF;

Line 344: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.revision,p_old_PRICE_LIST_LINE_rec.revision)

340: l_index := l_index + 1;
341: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REQUEST;
342: END IF;
343:
344: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.revision,p_old_PRICE_LIST_LINE_rec.revision)
345: THEN
346: l_index := l_index + 1;
347: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REVISION;
348: END IF;

Line 350: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.revision_date,p_old_PRICE_LIST_LINE_rec.revision_date)

346: l_index := l_index + 1;
347: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REVISION;
348: END IF;
349:
350: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.revision_date,p_old_PRICE_LIST_LINE_rec.revision_date)
351: THEN
352: l_index := l_index + 1;
353: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REVISION_DATE;
354: END IF;

Line 356: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.revision_reason_code,p_old_PRICE_LIST_LINE_rec.revision_reason_code)

352: l_index := l_index + 1;
353: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REVISION_DATE;
354: END IF;
355:
356: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.revision_reason_code,p_old_PRICE_LIST_LINE_rec.revision_reason_code)
357: THEN
358: l_index := l_index + 1;
359: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REVISION_REASON;
360: END IF;

Line 362: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.start_date_active,p_old_PRICE_LIST_LINE_rec.start_date_active)

358: l_index := l_index + 1;
359: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_REVISION_REASON;
360: END IF;
361:
362: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.start_date_active,p_old_PRICE_LIST_LINE_rec.start_date_active)
363: THEN
364: l_index := l_index + 1;
365: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_START_DATE_ACTIVE;
366: END IF;

Line 368: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.unit_code,p_old_PRICE_LIST_LINE_rec.unit_code)

364: l_index := l_index + 1;
365: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_START_DATE_ACTIVE;
366: END IF;
367:
368: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.unit_code,p_old_PRICE_LIST_LINE_rec.unit_code)
369: THEN
370: l_index := l_index + 1;
371: l_src_attr_tbl(l_index) := OE_PRICE_LIST_LINE_UTIL.G_UNIT;
372: END IF;

Line 567: IF ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute1,p_old_Price_List_Line_rec.attribute1) )

563: -- Load out record
564:
565: x_PRICE_LIST_LINE_rec := p_PRICE_LIST_LINE_rec;
566:
567: IF ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute1,p_old_Price_List_Line_rec.attribute1) )
568: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute10,p_old_Price_List_Line_rec.attribute10))
569: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute11,p_old_Price_List_Line_rec.attribute11) )
570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))
571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))

Line 568: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute10,p_old_Price_List_Line_rec.attribute10))

564:
565: x_PRICE_LIST_LINE_rec := p_PRICE_LIST_LINE_rec;
566:
567: IF ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute1,p_old_Price_List_Line_rec.attribute1) )
568: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute10,p_old_Price_List_Line_rec.attribute10))
569: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute11,p_old_Price_List_Line_rec.attribute11) )
570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))
571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))
572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))

Line 569: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute11,p_old_Price_List_Line_rec.attribute11) )

565: x_PRICE_LIST_LINE_rec := p_PRICE_LIST_LINE_rec;
566:
567: IF ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute1,p_old_Price_List_Line_rec.attribute1) )
568: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute10,p_old_Price_List_Line_rec.attribute10))
569: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute11,p_old_Price_List_Line_rec.attribute11) )
570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))
571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))
572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))
573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))

Line 570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))

566:
567: IF ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute1,p_old_Price_List_Line_rec.attribute1) )
568: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute10,p_old_Price_List_Line_rec.attribute10))
569: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute11,p_old_Price_List_Line_rec.attribute11) )
570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))
571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))
572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))
573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))
574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))

Line 571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))

567: IF ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute1,p_old_Price_List_Line_rec.attribute1) )
568: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute10,p_old_Price_List_Line_rec.attribute10))
569: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute11,p_old_Price_List_Line_rec.attribute11) )
570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))
571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))
572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))
573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))
574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))
575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))

Line 572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))

568: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute10,p_old_Price_List_Line_rec.attribute10))
569: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute11,p_old_Price_List_Line_rec.attribute11) )
570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))
571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))
572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))
573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))
574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))
575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))
576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))

Line 573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))

569: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute11,p_old_Price_List_Line_rec.attribute11) )
570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))
571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))
572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))
573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))
574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))
575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))
576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))
577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))

Line 574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))

570: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute12,p_old_Price_List_Line_rec.attribute12))
571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))
572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))
573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))
574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))
575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))
576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))
577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))
578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))

Line 575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))

571: OR ( NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute13,p_old_Price_List_Line_rec.attribute13))
572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))
573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))
574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))
575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))
576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))
577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))
578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))
579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))

Line 576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))

572: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute14,p_old_Price_List_Line_rec.attribute14))
573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))
574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))
575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))
576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))
577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))
578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))
579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))
580: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute8,p_old_Price_List_Line_rec.attribute8))

Line 577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))

573: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute15,p_old_Price_List_Line_rec.attribute15))
574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))
575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))
576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))
577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))
578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))
579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))
580: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute8,p_old_Price_List_Line_rec.attribute8))
581: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute9,p_old_Price_List_Line_rec.attribute9))

Line 578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))

574: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute2,p_old_Price_List_Line_rec.attribute2))
575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))
576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))
577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))
578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))
579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))
580: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute8,p_old_Price_List_Line_rec.attribute8))
581: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute9,p_old_Price_List_Line_rec.attribute9))
582: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.context,p_old_Price_List_Line_rec.context))

Line 579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))

575: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute3,p_old_Price_List_Line_rec.attribute3))
576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))
577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))
578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))
579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))
580: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute8,p_old_Price_List_Line_rec.attribute8))
581: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute9,p_old_Price_List_Line_rec.attribute9))
582: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.context,p_old_Price_List_Line_rec.context))
583: THEN

Line 580: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute8,p_old_Price_List_Line_rec.attribute8))

576: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute4,p_old_Price_List_Line_rec.attribute4))
577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))
578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))
579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))
580: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute8,p_old_Price_List_Line_rec.attribute8))
581: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute9,p_old_Price_List_Line_rec.attribute9))
582: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.context,p_old_Price_List_Line_rec.context))
583: THEN
584: -- Validate descriptive flexfield.

Line 581: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute9,p_old_Price_List_Line_rec.attribute9))

577: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute5,p_old_Price_List_Line_rec.attribute5))
578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))
579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))
580: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute8,p_old_Price_List_Line_rec.attribute8))
581: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute9,p_old_Price_List_Line_rec.attribute9))
582: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.context,p_old_Price_List_Line_rec.context))
583: THEN
584: -- Validate descriptive flexfield.
585:

Line 582: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.context,p_old_Price_List_Line_rec.context))

578: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute6,p_old_Price_List_Line_rec.attribute6))
579: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute7,p_old_Price_List_Line_rec.attribute7))
580: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute8,p_old_Price_List_Line_rec.attribute8))
581: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.attribute9,p_old_Price_List_Line_rec.attribute9))
582: OR (NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.context,p_old_Price_List_Line_rec.context))
583: THEN
584: -- Validate descriptive flexfield.
585:
586: IF NOT OE_Validate_Attr.Desc_Flex( 'PRICE_LIST_LINE' ) THEN

Line 592: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute1,p_old_PRICE_LIST_LINE_rec.attribute1)

588: END IF;
589:
590: END IF;
591:
592: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute1,p_old_PRICE_LIST_LINE_rec.attribute1)
593: THEN
594: NULL;
595: END IF;
596:

Line 597: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute10,p_old_PRICE_LIST_LINE_rec.attribute10)

593: THEN
594: NULL;
595: END IF;
596:
597: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute10,p_old_PRICE_LIST_LINE_rec.attribute10)
598: THEN
599: NULL;
600: END IF;
601:

Line 602: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute11,p_old_PRICE_LIST_LINE_rec.attribute11)

598: THEN
599: NULL;
600: END IF;
601:
602: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute11,p_old_PRICE_LIST_LINE_rec.attribute11)
603: THEN
604: NULL;
605: END IF;
606:

Line 607: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute12,p_old_PRICE_LIST_LINE_rec.attribute12)

603: THEN
604: NULL;
605: END IF;
606:
607: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute12,p_old_PRICE_LIST_LINE_rec.attribute12)
608: THEN
609: NULL;
610: END IF;
611:

Line 612: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute13,p_old_PRICE_LIST_LINE_rec.attribute13)

608: THEN
609: NULL;
610: END IF;
611:
612: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute13,p_old_PRICE_LIST_LINE_rec.attribute13)
613: THEN
614: NULL;
615: END IF;
616:

Line 617: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute14,p_old_PRICE_LIST_LINE_rec.attribute14)

613: THEN
614: NULL;
615: END IF;
616:
617: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute14,p_old_PRICE_LIST_LINE_rec.attribute14)
618: THEN
619: NULL;
620: END IF;
621:

Line 622: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute15,p_old_PRICE_LIST_LINE_rec.attribute15)

618: THEN
619: NULL;
620: END IF;
621:
622: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute15,p_old_PRICE_LIST_LINE_rec.attribute15)
623: THEN
624: NULL;
625: END IF;
626:

Line 627: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute2,p_old_PRICE_LIST_LINE_rec.attribute2)

623: THEN
624: NULL;
625: END IF;
626:
627: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute2,p_old_PRICE_LIST_LINE_rec.attribute2)
628: THEN
629: NULL;
630: END IF;
631:

Line 632: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute3,p_old_PRICE_LIST_LINE_rec.attribute3)

628: THEN
629: NULL;
630: END IF;
631:
632: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute3,p_old_PRICE_LIST_LINE_rec.attribute3)
633: THEN
634: NULL;
635: END IF;
636:

Line 637: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute4,p_old_PRICE_LIST_LINE_rec.attribute4)

633: THEN
634: NULL;
635: END IF;
636:
637: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute4,p_old_PRICE_LIST_LINE_rec.attribute4)
638: THEN
639: NULL;
640: END IF;
641:

Line 642: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute5,p_old_PRICE_LIST_LINE_rec.attribute5)

638: THEN
639: NULL;
640: END IF;
641:
642: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute5,p_old_PRICE_LIST_LINE_rec.attribute5)
643: THEN
644: NULL;
645: END IF;
646:

Line 647: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute6,p_old_PRICE_LIST_LINE_rec.attribute6)

643: THEN
644: NULL;
645: END IF;
646:
647: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute6,p_old_PRICE_LIST_LINE_rec.attribute6)
648: THEN
649: NULL;
650: END IF;
651:

Line 652: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute7,p_old_PRICE_LIST_LINE_rec.attribute7)

648: THEN
649: NULL;
650: END IF;
651:
652: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute7,p_old_PRICE_LIST_LINE_rec.attribute7)
653: THEN
654: NULL;
655: END IF;
656:

Line 657: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute8,p_old_PRICE_LIST_LINE_rec.attribute8)

653: THEN
654: NULL;
655: END IF;
656:
657: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute8,p_old_PRICE_LIST_LINE_rec.attribute8)
658: THEN
659: NULL;
660: END IF;
661:

Line 662: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute9,p_old_PRICE_LIST_LINE_rec.attribute9)

658: THEN
659: NULL;
660: END IF;
661:
662: IF NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.attribute9,p_old_PRICE_LIST_LINE_rec.attribute9)
663: THEN
664: NULL;
665: END IF;
666:

Line 668: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.comments,p_old_Price_List_Line_rec.comments)

664: NULL;
665: END IF;
666:
667:
668: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.comments,p_old_Price_List_Line_rec.comments)
669: THEN
670: IF NOT OE_Validate_Attr.Comments(p_Price_List_Line_rec.comments) THEN
671: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
672: END IF;

Line 675: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.context,p_old_Price_List_Line_rec.context)

671: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
672: END IF;
673: END IF;
674:
675: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.context,p_old_Price_List_Line_rec.context)
676: THEN
677: NULL; /* need to figure out how to check this for desc flex field */
678: END IF;
679:

Line 680: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.created_by,p_old_Price_List_Line_rec.created_by)

676: THEN
677: NULL; /* need to figure out how to check this for desc flex field */
678: END IF;
679:
680: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.created_by,p_old_Price_List_Line_rec.created_by)
681: THEN
682: IF NOT OE_Validate_Attr.Created_By(p_Price_List_Line_rec.created_by) THEN
683: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
684: END IF;

Line 687: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.creation_date,p_old_Price_List_Line_rec.creation_date)

683: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
684: END IF;
685: END IF;
686:
687: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.creation_date,p_old_Price_List_Line_rec.creation_date)
688: THEN
689: IF NOT OE_Validate_Attr.Creation_Date(p_Price_List_Line_rec.creation_date)
690: THEN
691: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 695: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.customer_item_id,p_old_Price_List_Line_rec.customer_item_id)

691: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
692: END IF;
693: END IF;
694:
695: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.customer_item_id,p_old_Price_List_Line_rec.customer_item_id)
696: THEN
697: IF NOT OE_Validate_Attr.Customer_Item(p_Price_List_Line_rec.customer_item_id)
698: THEN
699: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 703: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.end_date_active,p_old_Price_List_Line_rec.end_date_active)

699: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
700: END IF;
701: END IF;
702:
703: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.end_date_active,p_old_Price_List_Line_rec.end_date_active)
704: THEN
705: IF NOT OE_Validate_Attr.End_Date_Active(p_Price_List_Line_rec.end_date_active) THEN
706: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
707:

Line 716: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.inventory_item_id,p_old_Price_List_Line_rec.inventory_item_id)

712:
713: END IF;
714: END IF;
715:
716: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.inventory_item_id,p_old_Price_List_Line_rec.inventory_item_id)
717: THEN
718: IF NOT OE_Validate_Attr.Inventory_Item(p_Price_List_Line_rec.inventory_item_id) THEN
719: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
720: END IF;

Line 723: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.last_updated_by,p_old_Price_List_Line_rec.last_updated_by)

719: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
720: END IF;
721: END IF;
722:
723: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.last_updated_by,p_old_Price_List_Line_rec.last_updated_by)
724: THEN
725: IF NOT OE_Validate_Attr.Last_Updated_By(p_Price_List_Line_rec.last_updated_by)
726: THEN
727: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 731: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.last_update_date,p_old_Price_List_Line_rec.last_update_date)

727: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
728: END IF;
729: END IF;
730:
731: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.last_update_date,p_old_Price_List_Line_rec.last_update_date)
732: THEN
733: IF NOT OE_Validate_Attr.Last_Update_Date(p_Price_List_Line_rec.last_update_date) THEN
734: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
735: END IF;

Line 738: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.last_update_login,p_old_Price_List_Line_rec.last_update_login)

734: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
735: END IF;
736: END IF;
737:
738: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.last_update_login,p_old_Price_List_Line_rec.last_update_login)
739: THEN
740: IF NOT OE_Validate_Attr.Last_Update_Login(p_Price_List_Line_rec.last_update_login) THEN
741: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
742: END IF;

Line 745: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.list_price,p_old_Price_List_Line_rec.list_price)

741: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
742: END IF;
743: END IF;
744:
745: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.list_price,p_old_Price_List_Line_rec.list_price)
746: THEN
747: IF NOT OE_Validate_Attr.List_Price(p_Price_List_Line_rec.list_price) THEN
748: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
749: END IF;

Line 752: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.method_code,p_old_Price_List_Line_rec.method_code)

748: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
749: END IF;
750: END IF;
751:
752: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.method_code,p_old_Price_List_Line_rec.method_code)
753: THEN
754: IF NOT OE_Validate_Attr.Method(p_Price_List_Line_rec.method_code) THEN
755: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
756: END IF;

Line 759: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.price_list_id,p_old_Price_List_Line_rec.price_list_id)

755: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
756: END IF;
757: END IF;
758:
759: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.price_list_id,p_old_Price_List_Line_rec.price_list_id)
760: THEN
761: IF NOT OE_Validate_Attr.Price_List(p_Price_List_Line_rec.price_list_id)
762: THEN
763: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 767: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.price_list_line_id,p_old_Price_List_Line_rec.price_list_line_id)

763: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
764: END IF;
765: END IF;
766:
767: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.price_list_line_id,p_old_Price_List_Line_rec.price_list_line_id)
768: THEN
769: IF NOT OE_Validate_Attr.Price_List_Line(p_Price_List_Line_rec.price_list_line_id) THEN
770: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
771: END IF;

Line 774: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute1,p_old_Price_List_Line_rec.pricing_attribute1)

770: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
771: END IF;
772: END IF;
773:
774: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute1,p_old_Price_List_Line_rec.pricing_attribute1)
775: THEN
776: IF NOT OE_Validate_Attr.Pricing_Attribute1(p_Price_List_Line_rec.pricing_attribute1) THEN
777: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
778: END IF;

Line 781: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute10,p_old_Price_List_Line_rec.pricing_attribute10)

777: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
778: END IF;
779: END IF;
780:
781: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute10,p_old_Price_List_Line_rec.pricing_attribute10)
782: THEN
783: IF NOT OE_Validate_Attr.Pricing_Attribute10(p_Price_List_Line_rec.pricing_attribute10)
784: THEN
785: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 789: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute11,p_old_Price_List_Line_rec.pricing_attribute11)

785: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
786: END IF;
787: END IF;
788:
789: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute11,p_old_Price_List_Line_rec.pricing_attribute11)
790: THEN
791: IF NOT OE_Validate_Attr.Pricing_Attribute11(p_Price_List_Line_rec.pricing_attribute11)
792: THEN
793: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 797: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute12,p_old_Price_List_Line_rec.pricing_attribute12)

793: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
794: END IF;
795: END IF;
796:
797: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute12,p_old_Price_List_Line_rec.pricing_attribute12)
798: THEN
799: IF NOT OE_Validate_Attr.Pricing_Attribute12(p_Price_List_Line_rec.pricing_attribute12)
800: THEN
801: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 805: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute13,p_old_Price_List_Line_rec.pricing_attribute13)

801: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
802: END IF;
803: END IF;
804:
805: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute13,p_old_Price_List_Line_rec.pricing_attribute13)
806: THEN
807: IF NOT OE_Validate_Attr.Pricing_Attribute13(p_Price_List_Line_rec.pricing_attribute13)
808: THEN
809: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 813: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute14,p_old_Price_List_Line_rec.pricing_attribute14)

809: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
810: END IF;
811: END IF;
812:
813: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute14,p_old_Price_List_Line_rec.pricing_attribute14)
814: THEN
815: IF NOT OE_Validate_Attr.Pricing_Attribute14(p_Price_List_Line_rec.pricing_attribute14)
816: THEN
817: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 821: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute15,p_old_Price_List_Line_rec.pricing_attribute15)

817: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
818: END IF;
819: END IF;
820:
821: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute15,p_old_Price_List_Line_rec.pricing_attribute15)
822: THEN
823: IF NOT OE_Validate_Attr.Pricing_Attribute15(p_Price_List_Line_rec.pricing_attribute15)
824: THEN
825: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 829: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute2,p_old_Price_List_Line_rec.pricing_attribute2)

825: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
826: END IF;
827: END IF;
828:
829: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute2,p_old_Price_List_Line_rec.pricing_attribute2)
830: THEN
831: IF NOT OE_Validate_Attr.Pricing_Attribute2(p_Price_List_Line_rec.pricing_attribute2)
832: THEN
833: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 837: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute3,p_old_Price_List_Line_rec.pricing_attribute3)

833: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
834: END IF;
835: END IF;
836:
837: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute3,p_old_Price_List_Line_rec.pricing_attribute3)
838: THEN
839: IF NOT OE_Validate_Attr.Pricing_Attribute3(p_Price_List_Line_rec.pricing_attribute3)
840: THEN
841: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 845: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute4,p_old_Price_List_Line_rec.pricing_attribute4)

841: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
842: END IF;
843: END IF;
844:
845: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute4,p_old_Price_List_Line_rec.pricing_attribute4)
846: THEN
847: IF NOT OE_Validate_Attr.Pricing_Attribute4(p_Price_List_Line_rec.pricing_attribute4)
848: THEN
849: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 853: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute5,p_old_Price_List_Line_rec.pricing_attribute5)

849: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
850: END IF;
851: END IF;
852:
853: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute5,p_old_Price_List_Line_rec.pricing_attribute5)
854: THEN
855: IF NOT OE_Validate_Attr.Pricing_Attribute5(p_Price_List_Line_rec.pricing_attribute5)
856: THEN
857: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 861: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute6,p_old_Price_List_Line_rec.pricing_attribute6)

857: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
858: END IF;
859: END IF;
860:
861: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute6,p_old_Price_List_Line_rec.pricing_attribute6)
862: THEN
863: IF NOT OE_Validate_Attr.Pricing_Attribute6(p_Price_List_Line_rec.pricing_attribute6)
864: THEN
865: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 869: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute7,p_old_Price_List_Line_rec.pricing_attribute7)

865: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
866: END IF;
867: END IF;
868:
869: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute7,p_old_Price_List_Line_rec.pricing_attribute7)
870: THEN
871: IF NOT OE_Validate_Attr.Pricing_Attribute7(p_Price_List_Line_rec.pricing_attribute7)
872: THEN
873: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 877: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute8,p_old_Price_List_Line_rec.pricing_attribute8)

873: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
874: END IF;
875: END IF;
876:
877: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute8,p_old_Price_List_Line_rec.pricing_attribute8)
878: THEN
879: IF NOT OE_Validate_Attr.Pricing_Attribute8(p_Price_List_Line_rec.pricing_attribute8)
880: THEN
881: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 885: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute9,p_old_Price_List_Line_rec.pricing_attribute9)

881: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
882: END IF;
883: END IF;
884:
885: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_attribute9,p_old_Price_List_Line_rec.pricing_attribute9)
886: THEN
887: IF NOT OE_Validate_Attr.Pricing_Attribute9(p_Price_List_Line_rec.pricing_attribute9)
888: THEN
889: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 893: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_context,p_old_Price_List_Line_rec.pricing_context)

889: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
890: END IF;
891: END IF;
892:
893: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_context,p_old_Price_List_Line_rec.pricing_context)
894: THEN
895: IF NOT OE_Validate_Attr.Pricing_Context(p_Price_List_Line_rec.pricing_context) THEN
896: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
897: END IF;

Line 900: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_rule_id,p_old_Price_List_Line_rec.pricing_rule_id)

896: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
897: END IF;
898: END IF;
899:
900: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.pricing_rule_id,p_old_Price_List_Line_rec.pricing_rule_id)
901: THEN
902: IF NOT OE_Validate_Attr.Pricing_Rule(p_Price_List_Line_rec.pricing_rule_id)
903: THEN
904: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;

Line 908: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.program_application_id,p_old_Price_List_Line_rec.program_application_id)

904: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
905: END IF;
906: END IF;
907:
908: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.program_application_id,p_old_Price_List_Line_rec.program_application_id)
909: THEN
910: IF NOT OE_Validate_Attr.Program_Application(p_Price_List_Line_rec.program_application_id) THEN
911: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
912: END IF;

Line 915: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.program_id,p_old_Price_List_Line_rec.program_id)

911: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
912: END IF;
913: END IF;
914:
915: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.program_id,p_old_Price_List_Line_rec.program_id)
916: THEN
917: IF NOT OE_Validate_Attr.Program(p_Price_List_Line_rec.program_id) THEN
918: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
919: END IF;

Line 922: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.program_update_date,p_old_Price_List_Line_rec.program_update_date)

918: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
919: END IF;
920: END IF;
921:
922: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.program_update_date,p_old_Price_List_Line_rec.program_update_date)
923: THEN
924: IF NOT OE_Validate_Attr.Program_Update_Date(p_Price_List_Line_rec.program_update_date) THEN
925: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
926: END IF;

Line 929: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.reprice_flag,p_old_Price_List_Line_rec.reprice_flag)

925: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
926: END IF;
927: END IF;
928:
929: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.reprice_flag,p_old_Price_List_Line_rec.reprice_flag)
930: THEN
931: IF NOT OE_Validate_Attr.Reprice(p_Price_List_Line_rec.reprice_flag) THEN
932: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
933: END IF;

Line 936: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.request_id,p_old_Price_List_Line_rec.request_id)

932: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
933: END IF;
934: END IF;
935:
936: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.request_id,p_old_Price_List_Line_rec.request_id)
937: THEN
938: IF NOT OE_Validate_Attr.Request(p_Price_List_Line_rec.request_id) THEN
939: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
940: END IF;

Line 943: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.revision,p_old_Price_List_Line_rec.revision)

939: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
940: END IF;
941: END IF;
942:
943: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.revision,p_old_Price_List_Line_rec.revision)
944: THEN
945: IF NOT OE_Validate_Attr.Revision(p_Price_List_Line_rec.revision) THEN
946: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
947: END IF;

Line 950: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.revision_date,p_old_Price_List_Line_rec.revision_date)

946: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
947: END IF;
948: END IF;
949:
950: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.revision_date,p_old_Price_List_Line_rec.revision_date)
951: THEN
952: IF NOT OE_Validate_Attr.Revision_Date(p_Price_List_Line_rec.revision_date) THEN
953: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
954: END IF;

Line 957: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.revision_reason_code,p_old_Price_List_Line_rec.revision_reason_code)

953: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
954: END IF;
955: END IF;
956:
957: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.revision_reason_code,p_old_Price_List_Line_rec.revision_reason_code)
958: THEN
959: IF NOT OE_Validate_Attr.Revision_Reason(p_Price_List_Line_rec.revision_reason_code) THEN
960: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
961: END IF;

Line 964: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.start_date_active,p_old_Price_List_Line_rec.start_date_active)

960: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
961: END IF;
962: END IF;
963:
964: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.start_date_active,p_old_Price_List_Line_rec.start_date_active)
965: THEN
966: IF NOT OE_Validate_Attr.Start_Date_Active(p_Price_List_Line_rec.start_date_active) THEN
967: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
968:

Line 977: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.unit_code,p_old_Price_List_Line_rec.unit_code)

973:
974: END IF;
975: END IF;
976:
977: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.unit_code,p_old_Price_List_Line_rec.unit_code)
978: THEN
979: IF NOT OE_Validate_Attr.Unit(p_Price_List_Line_rec.unit_code) THEN
980: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
981: END IF;

Line 984: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.primary,p_old_Price_List_Line_rec.primary)

980: x_Price_List_Line_rec.return_status := FND_API.G_RET_STS_ERROR;
981: END IF;
982: END IF;
983:
984: IF NOT OE_GLOBALS.Equal(p_Price_List_Line_rec.primary,p_old_Price_List_Line_rec.primary)
985: THEN
986:
987: -- 2 parameters added start date and end date :: Geresh
988: l_primary_exists :=

Line 2300: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.customer_item_id,

2296:
2297: /*
2298: IF p_PRICE_LIST_LINE_rec.customer_item_id IS NOT NULL AND
2299: p_PRICE_LIST_LINE_rec.customer_item_id <> FND_API.G_MISS_NUM AND
2300: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.customer_item_id,
2301: p_old_PRICE_LIST_LINE_rec.customer_item_id)
2302: THEN
2303:
2304: l_PRICE_LIST_LINE_val_rec.customer_item := OE_Id_To_Value.Customer_Item

Line 2312: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.inventory_item_id,

2308: */
2309:
2310: IF p_PRICE_LIST_LINE_rec.inventory_item_id IS NOT NULL AND
2311: p_PRICE_LIST_LINE_rec.inventory_item_id <> FND_API.G_MISS_NUM AND
2312: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.inventory_item_id,
2313: p_old_PRICE_LIST_LINE_rec.inventory_item_id)
2314: THEN
2315: l_PRICE_LIST_LINE_val_rec.inventory_item := OE_Id_To_Value.Inventory_Item
2316: ( p_inventory_item_id => p_PRICE_LIST_LINE_rec.inventory_item_id

Line 2322: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.method_code,

2318: END IF;
2319:
2320: IF p_PRICE_LIST_LINE_rec.method_code IS NOT NULL AND
2321: p_PRICE_LIST_LINE_rec.method_code <> FND_API.G_MISS_CHAR AND
2322: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.method_code,
2323: p_old_PRICE_LIST_LINE_rec.method_code)
2324: THEN
2325: l_PRICE_LIST_LINE_val_rec.method := OE_Id_To_Value.Method
2326: ( p_method_code => p_PRICE_LIST_LINE_rec.method_code

Line 2332: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.price_list_id,

2328: END IF;
2329: /*
2330: IF p_PRICE_LIST_LINE_rec.price_list_id IS NOT NULL AND
2331: p_PRICE_LIST_LINE_rec.price_list_id <> FND_API.G_MISS_NUM AND
2332: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.price_list_id,
2333: p_old_PRICE_LIST_LINE_rec.price_list_id)
2334: THEN
2335: l_PRICE_LIST_LINE_val_rec.price_list := OE_Id_To_Value.Price_List
2336: ( p_price_list_id => p_PRICE_LIST_LINE_rec.price_list_id

Line 2343: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.price_list_line_id,

2339: */
2340:
2341: IF p_PRICE_LIST_LINE_rec.price_list_line_id IS NOT NULL AND
2342: p_PRICE_LIST_LINE_rec.price_list_line_id <> FND_API.G_MISS_NUM AND
2343: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.price_list_line_id,
2344: p_old_PRICE_LIST_LINE_rec.price_list_line_id)
2345: THEN
2346: l_PRICE_LIST_LINE_val_rec.price_list_line := OE_Id_To_Value.Price_List_Line
2347: ( p_price_list_line_id => p_PRICE_LIST_LINE_rec.price_list_line_id

Line 2353: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_rule_id,

2349: END IF;
2350:
2351: IF p_PRICE_LIST_LINE_rec.pricing_rule_id IS NOT NULL AND
2352: p_PRICE_LIST_LINE_rec.pricing_rule_id <> FND_API.G_MISS_NUM AND
2353: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.pricing_rule_id,
2354: p_old_PRICE_LIST_LINE_rec.pricing_rule_id)
2355: THEN
2356: l_PRICE_LIST_LINE_val_rec.pricing_rule := OE_Id_To_Value.Pricing_Rule
2357: ( p_pricing_rule_id => p_PRICE_LIST_LINE_rec.pricing_rule_id

Line 2363: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.reprice_flag,

2359: END IF;
2360:
2361: IF p_PRICE_LIST_LINE_rec.reprice_flag IS NOT NULL AND
2362: p_PRICE_LIST_LINE_rec.reprice_flag <> FND_API.G_MISS_CHAR AND
2363: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.reprice_flag,
2364: p_old_PRICE_LIST_LINE_rec.reprice_flag)
2365: THEN
2366: l_PRICE_LIST_LINE_val_rec.reprice := OE_Id_To_Value.Reprice
2367: ( p_reprice_flag => p_PRICE_LIST_LINE_rec.reprice_flag

Line 2373: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.revision_reason_code,

2369: END IF;
2370:
2371: IF p_PRICE_LIST_LINE_rec.revision_reason_code IS NOT NULL AND
2372: p_PRICE_LIST_LINE_rec.revision_reason_code <> FND_API.G_MISS_CHAR AND
2373: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.revision_reason_code,
2374: p_old_PRICE_LIST_LINE_rec.revision_reason_code)
2375: THEN
2376: l_PRICE_LIST_LINE_val_rec.revision_reason := OE_Id_To_Value.Revision_Reason
2377: ( p_revision_reason_code => p_PRICE_LIST_LINE_rec.revision_reason_code

Line 2383: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.unit_code,

2379: END IF;
2380:
2381: IF p_PRICE_LIST_LINE_rec.unit_code IS NOT NULL AND
2382: p_PRICE_LIST_LINE_rec.unit_code <> FND_API.G_MISS_CHAR AND
2383: NOT OE_GLOBALS.Equal(p_PRICE_LIST_LINE_rec.unit_code,
2384: p_old_PRICE_LIST_LINE_rec.unit_code)
2385: THEN
2386: l_PRICE_LIST_LINE_val_rec.unit := OE_Id_To_Value.Unit
2387: ( p_unit_code => p_PRICE_LIST_LINE_rec.unit_code