DBA Data[Home] [Help]

APPS.FA_ADDITION_PVT dependencies on FND_API

Line 181: if (px_asset_desc_rec.asset_number = FND_API.G_MISS_CHAR) then

177: raise init_err;
178: end if;
179:
180: -- Set Appropriate values to defaults if user did not provide them.
181: if (px_asset_desc_rec.asset_number = FND_API.G_MISS_CHAR) then
182: px_asset_desc_rec.asset_number := NULL;
183: end if;
184:
185: if (px_asset_desc_rec.description = FND_API.G_MISS_CHAR) then

Line 185: if (px_asset_desc_rec.description = FND_API.G_MISS_CHAR) then

181: if (px_asset_desc_rec.asset_number = FND_API.G_MISS_CHAR) then
182: px_asset_desc_rec.asset_number := NULL;
183: end if;
184:
185: if (px_asset_desc_rec.description = FND_API.G_MISS_CHAR) then
186: px_asset_desc_rec.description := NULL;
187: end if;
188:
189: if (px_asset_desc_rec.tag_number = FND_API.G_MISS_CHAR) then

Line 189: if (px_asset_desc_rec.tag_number = FND_API.G_MISS_CHAR) then

185: if (px_asset_desc_rec.description = FND_API.G_MISS_CHAR) then
186: px_asset_desc_rec.description := NULL;
187: end if;
188:
189: if (px_asset_desc_rec.tag_number = FND_API.G_MISS_CHAR) then
190: px_asset_desc_rec.tag_number := NULL;
191: end if;
192:
193: if (px_asset_desc_rec.serial_number = FND_API.G_MISS_CHAR) then

Line 193: if (px_asset_desc_rec.serial_number = FND_API.G_MISS_CHAR) then

189: if (px_asset_desc_rec.tag_number = FND_API.G_MISS_CHAR) then
190: px_asset_desc_rec.tag_number := NULL;
191: end if;
192:
193: if (px_asset_desc_rec.serial_number = FND_API.G_MISS_CHAR) then
194: px_asset_desc_rec.serial_number := NULL;
195: end if;
196:
197: if (px_asset_desc_rec.asset_key_ccid = FND_API.G_MISS_NUM) then

Line 197: if (px_asset_desc_rec.asset_key_ccid = FND_API.G_MISS_NUM) then

193: if (px_asset_desc_rec.serial_number = FND_API.G_MISS_CHAR) then
194: px_asset_desc_rec.serial_number := NULL;
195: end if;
196:
197: if (px_asset_desc_rec.asset_key_ccid = FND_API.G_MISS_NUM) then
198: px_asset_desc_rec.asset_key_ccid := NULL;
199: end if;
200:
201: if (px_asset_desc_rec.parent_asset_id = FND_API.G_MISS_NUM) then

Line 201: if (px_asset_desc_rec.parent_asset_id = FND_API.G_MISS_NUM) then

197: if (px_asset_desc_rec.asset_key_ccid = FND_API.G_MISS_NUM) then
198: px_asset_desc_rec.asset_key_ccid := NULL;
199: end if;
200:
201: if (px_asset_desc_rec.parent_asset_id = FND_API.G_MISS_NUM) then
202: px_asset_desc_rec.parent_asset_id := NULL;
203: end if;
204:
205: if (px_asset_desc_rec.manufacturer_name = FND_API.G_MISS_CHAR) then

Line 205: if (px_asset_desc_rec.manufacturer_name = FND_API.G_MISS_CHAR) then

201: if (px_asset_desc_rec.parent_asset_id = FND_API.G_MISS_NUM) then
202: px_asset_desc_rec.parent_asset_id := NULL;
203: end if;
204:
205: if (px_asset_desc_rec.manufacturer_name = FND_API.G_MISS_CHAR) then
206: px_asset_desc_rec.manufacturer_name := NULL;
207: end if;
208:
209: if (px_asset_desc_rec.model_number = FND_API.G_MISS_CHAR) then

Line 209: if (px_asset_desc_rec.model_number = FND_API.G_MISS_CHAR) then

205: if (px_asset_desc_rec.manufacturer_name = FND_API.G_MISS_CHAR) then
206: px_asset_desc_rec.manufacturer_name := NULL;
207: end if;
208:
209: if (px_asset_desc_rec.model_number = FND_API.G_MISS_CHAR) then
210: px_asset_desc_rec.model_number := NULL;
211: end if;
212:
213: if (px_asset_desc_rec.warranty_id = FND_API.G_MISS_NUM) then

Line 213: if (px_asset_desc_rec.warranty_id = FND_API.G_MISS_NUM) then

209: if (px_asset_desc_rec.model_number = FND_API.G_MISS_CHAR) then
210: px_asset_desc_rec.model_number := NULL;
211: end if;
212:
213: if (px_asset_desc_rec.warranty_id = FND_API.G_MISS_NUM) then
214: px_asset_desc_rec.warranty_id := NULL;
215: end if;
216:
217: if (px_asset_desc_rec.lease_id = FND_API.G_MISS_NUM) then

Line 217: if (px_asset_desc_rec.lease_id = FND_API.G_MISS_NUM) then

213: if (px_asset_desc_rec.warranty_id = FND_API.G_MISS_NUM) then
214: px_asset_desc_rec.warranty_id := NULL;
215: end if;
216:
217: if (px_asset_desc_rec.lease_id = FND_API.G_MISS_NUM) then
218: px_asset_desc_rec.lease_id := NULL;
219: end if;
220:
221: if (px_asset_desc_rec.in_use_flag = FND_API.G_MISS_CHAR or

Line 221: if (px_asset_desc_rec.in_use_flag = FND_API.G_MISS_CHAR or

217: if (px_asset_desc_rec.lease_id = FND_API.G_MISS_NUM) then
218: px_asset_desc_rec.lease_id := NULL;
219: end if;
220:
221: if (px_asset_desc_rec.in_use_flag = FND_API.G_MISS_CHAR or
222: px_asset_desc_rec.in_use_flag is null) then
223: px_asset_desc_rec.in_use_flag := 'YES';
224: end if;
225:

Line 226: if (px_asset_desc_rec.inventorial = FND_API.G_MISS_CHAR or

222: px_asset_desc_rec.in_use_flag is null) then
223: px_asset_desc_rec.in_use_flag := 'YES';
224: end if;
225:
226: if (px_asset_desc_rec.inventorial = FND_API.G_MISS_CHAR or
227: px_asset_desc_rec.inventorial is null) then
228: px_asset_desc_rec.inventorial :=
229: fa_cache_pkg.fazcat_record.inventorial;
230: end if;

Line 232: if (px_asset_desc_rec.property_type_code = FND_API.G_MISS_CHAR or

228: px_asset_desc_rec.inventorial :=
229: fa_cache_pkg.fazcat_record.inventorial;
230: end if;
231:
232: if (px_asset_desc_rec.property_type_code = FND_API.G_MISS_CHAR or
233: px_asset_desc_rec.property_type_code is null) then
234: px_asset_desc_rec.property_type_code :=
235: fa_cache_pkg.fazcat_record.property_type_code;
236: end if;

Line 238: if (px_asset_desc_rec.property_1245_1250_code = FND_API.G_MISS_CHAR or

234: px_asset_desc_rec.property_type_code :=
235: fa_cache_pkg.fazcat_record.property_type_code;
236: end if;
237:
238: if (px_asset_desc_rec.property_1245_1250_code = FND_API.G_MISS_CHAR or
239: px_asset_desc_rec.property_1245_1250_code is null) then
240: px_asset_desc_rec.property_1245_1250_code :=
241: fa_cache_pkg.fazcat_record.property_1245_1250_code;
242: end if;

Line 244: if (px_asset_desc_rec.owned_leased = FND_API.G_MISS_CHAR or

240: px_asset_desc_rec.property_1245_1250_code :=
241: fa_cache_pkg.fazcat_record.property_1245_1250_code;
242: end if;
243:
244: if (px_asset_desc_rec.owned_leased = FND_API.G_MISS_CHAR or
245: px_asset_desc_rec.owned_leased is null) then
246: px_asset_desc_rec.owned_leased :=
247: fa_cache_pkg.fazcat_record.owned_leased;
248: end if;

Line 250: if (px_asset_desc_rec.new_used = FND_API.G_MISS_CHAR or

246: px_asset_desc_rec.owned_leased :=
247: fa_cache_pkg.fazcat_record.owned_leased;
248: end if;
249:
250: if (px_asset_desc_rec.new_used = FND_API.G_MISS_CHAR or
251: px_asset_desc_rec.new_used is null) then
252: px_asset_desc_rec.new_used := 'NEW';
253: end if;
254:

Line 255: if (px_asset_desc_rec.unit_adjustment_flag = FND_API.G_MISS_CHAR or

251: px_asset_desc_rec.new_used is null) then
252: px_asset_desc_rec.new_used := 'NEW';
253: end if;
254:
255: if (px_asset_desc_rec.unit_adjustment_flag = FND_API.G_MISS_CHAR or
256: px_asset_desc_rec.unit_adjustment_flag is null) then
257: px_asset_desc_rec.unit_adjustment_flag := 'NO';
258: end if;
259:

Line 260: if (px_asset_desc_rec.add_cost_je_flag = FND_API.G_MISS_CHAR or

256: px_asset_desc_rec.unit_adjustment_flag is null) then
257: px_asset_desc_rec.unit_adjustment_flag := 'NO';
258: end if;
259:
260: if (px_asset_desc_rec.add_cost_je_flag = FND_API.G_MISS_CHAR or
261: px_asset_desc_rec.add_cost_je_flag is null) then
262: px_asset_desc_rec.add_cost_je_flag := 'NO';
263: end if;
264:

Line 265: if (px_asset_desc_rec.status = FND_API.G_MISS_CHAR) then

261: px_asset_desc_rec.add_cost_je_flag is null) then
262: px_asset_desc_rec.add_cost_je_flag := 'NO';
263: end if;
264:
265: if (px_asset_desc_rec.status = FND_API.G_MISS_CHAR) then
266: px_asset_desc_rec.status := NULL;
267: end if;
268:
269: -- Bug:8240522

Line 270: if (px_asset_fin_rec.contract_id = FND_API.G_MISS_NUM) then

266: px_asset_desc_rec.status := NULL;
267: end if;
268:
269: -- Bug:8240522
270: if (px_asset_fin_rec.contract_id = FND_API.G_MISS_NUM) then
271: px_asset_fin_rec.contract_id := NULL;
272: end if;
273:
274: if (px_asset_fin_rec.itc_amount_id = FND_API.G_MISS_NUM) then

Line 274: if (px_asset_fin_rec.itc_amount_id = FND_API.G_MISS_NUM) then

270: if (px_asset_fin_rec.contract_id = FND_API.G_MISS_NUM) then
271: px_asset_fin_rec.contract_id := NULL;
272: end if;
273:
274: if (px_asset_fin_rec.itc_amount_id = FND_API.G_MISS_NUM) then
275: px_asset_fin_rec.itc_amount_id := NULL;
276: end if;
277:
278: if (px_asset_fin_rec.ceiling_name = FND_API.G_MISS_CHAR) then

Line 278: if (px_asset_fin_rec.ceiling_name = FND_API.G_MISS_CHAR) then

274: if (px_asset_fin_rec.itc_amount_id = FND_API.G_MISS_NUM) then
275: px_asset_fin_rec.itc_amount_id := NULL;
276: end if;
277:
278: if (px_asset_fin_rec.ceiling_name = FND_API.G_MISS_CHAR) then
279: px_asset_fin_rec.ceiling_name := NULL;
280: end if;
281:
282: if (px_asset_fin_rec.capitalize_flag = NULL) then

Line 287: if (px_asset_fin_rec.global_attribute1 = FND_API.G_MISS_CHAR) then

283: px_asset_fin_rec.capitalize_flag :=
284: fa_cache_pkg.fazcat_record.capitalize_flag;
285: end if;
286:
287: if (px_asset_fin_rec.global_attribute1 = FND_API.G_MISS_CHAR) then
288: px_asset_fin_rec.global_attribute1 := NULL;
289: end if;
290:
291: if (px_asset_fin_rec.global_attribute2 = FND_API.G_MISS_CHAR) then

Line 291: if (px_asset_fin_rec.global_attribute2 = FND_API.G_MISS_CHAR) then

287: if (px_asset_fin_rec.global_attribute1 = FND_API.G_MISS_CHAR) then
288: px_asset_fin_rec.global_attribute1 := NULL;
289: end if;
290:
291: if (px_asset_fin_rec.global_attribute2 = FND_API.G_MISS_CHAR) then
292: px_asset_fin_rec.global_attribute2 := NULL;
293: end if;
294:
295: if (px_asset_fin_rec.global_attribute3 = FND_API.G_MISS_CHAR) then

Line 295: if (px_asset_fin_rec.global_attribute3 = FND_API.G_MISS_CHAR) then

291: if (px_asset_fin_rec.global_attribute2 = FND_API.G_MISS_CHAR) then
292: px_asset_fin_rec.global_attribute2 := NULL;
293: end if;
294:
295: if (px_asset_fin_rec.global_attribute3 = FND_API.G_MISS_CHAR) then
296: px_asset_fin_rec.global_attribute3 := NULL;
297: end if;
298:
299: if (px_asset_fin_rec.global_attribute4 = FND_API.G_MISS_CHAR) then

Line 299: if (px_asset_fin_rec.global_attribute4 = FND_API.G_MISS_CHAR) then

295: if (px_asset_fin_rec.global_attribute3 = FND_API.G_MISS_CHAR) then
296: px_asset_fin_rec.global_attribute3 := NULL;
297: end if;
298:
299: if (px_asset_fin_rec.global_attribute4 = FND_API.G_MISS_CHAR) then
300: px_asset_fin_rec.global_attribute4 := NULL;
301: end if;
302:
303: if (px_asset_fin_rec.global_attribute5 = FND_API.G_MISS_CHAR) then

Line 303: if (px_asset_fin_rec.global_attribute5 = FND_API.G_MISS_CHAR) then

299: if (px_asset_fin_rec.global_attribute4 = FND_API.G_MISS_CHAR) then
300: px_asset_fin_rec.global_attribute4 := NULL;
301: end if;
302:
303: if (px_asset_fin_rec.global_attribute5 = FND_API.G_MISS_CHAR) then
304: px_asset_fin_rec.global_attribute5 := NULL;
305: end if;
306:
307: if (px_asset_fin_rec.global_attribute6 = FND_API.G_MISS_CHAR) then

Line 307: if (px_asset_fin_rec.global_attribute6 = FND_API.G_MISS_CHAR) then

303: if (px_asset_fin_rec.global_attribute5 = FND_API.G_MISS_CHAR) then
304: px_asset_fin_rec.global_attribute5 := NULL;
305: end if;
306:
307: if (px_asset_fin_rec.global_attribute6 = FND_API.G_MISS_CHAR) then
308: px_asset_fin_rec.global_attribute6 := NULL;
309: end if;
310:
311: if (px_asset_fin_rec.global_attribute7 = FND_API.G_MISS_CHAR) then

Line 311: if (px_asset_fin_rec.global_attribute7 = FND_API.G_MISS_CHAR) then

307: if (px_asset_fin_rec.global_attribute6 = FND_API.G_MISS_CHAR) then
308: px_asset_fin_rec.global_attribute6 := NULL;
309: end if;
310:
311: if (px_asset_fin_rec.global_attribute7 = FND_API.G_MISS_CHAR) then
312: px_asset_fin_rec.global_attribute7 := NULL;
313: end if;
314:
315: if (px_asset_fin_rec.global_attribute8 = FND_API.G_MISS_CHAR) then

Line 315: if (px_asset_fin_rec.global_attribute8 = FND_API.G_MISS_CHAR) then

311: if (px_asset_fin_rec.global_attribute7 = FND_API.G_MISS_CHAR) then
312: px_asset_fin_rec.global_attribute7 := NULL;
313: end if;
314:
315: if (px_asset_fin_rec.global_attribute8 = FND_API.G_MISS_CHAR) then
316: px_asset_fin_rec.global_attribute8 := NULL;
317: end if;
318:
319: if (px_asset_fin_rec.global_attribute9 = FND_API.G_MISS_CHAR) then

Line 319: if (px_asset_fin_rec.global_attribute9 = FND_API.G_MISS_CHAR) then

315: if (px_asset_fin_rec.global_attribute8 = FND_API.G_MISS_CHAR) then
316: px_asset_fin_rec.global_attribute8 := NULL;
317: end if;
318:
319: if (px_asset_fin_rec.global_attribute9 = FND_API.G_MISS_CHAR) then
320: px_asset_fin_rec.global_attribute9 := NULL;
321: end if;
322:
323: if (px_asset_fin_rec.global_attribute10 = FND_API.G_MISS_CHAR) then

Line 323: if (px_asset_fin_rec.global_attribute10 = FND_API.G_MISS_CHAR) then

319: if (px_asset_fin_rec.global_attribute9 = FND_API.G_MISS_CHAR) then
320: px_asset_fin_rec.global_attribute9 := NULL;
321: end if;
322:
323: if (px_asset_fin_rec.global_attribute10 = FND_API.G_MISS_CHAR) then
324: px_asset_fin_rec.global_attribute10 := NULL;
325: end if;
326:
327: if (px_asset_fin_rec.global_attribute11 = FND_API.G_MISS_CHAR) then

Line 327: if (px_asset_fin_rec.global_attribute11 = FND_API.G_MISS_CHAR) then

323: if (px_asset_fin_rec.global_attribute10 = FND_API.G_MISS_CHAR) then
324: px_asset_fin_rec.global_attribute10 := NULL;
325: end if;
326:
327: if (px_asset_fin_rec.global_attribute11 = FND_API.G_MISS_CHAR) then
328: px_asset_fin_rec.global_attribute11 := NULL;
329: end if;
330:
331: if (px_asset_fin_rec.global_attribute12 = FND_API.G_MISS_CHAR) then

Line 331: if (px_asset_fin_rec.global_attribute12 = FND_API.G_MISS_CHAR) then

327: if (px_asset_fin_rec.global_attribute11 = FND_API.G_MISS_CHAR) then
328: px_asset_fin_rec.global_attribute11 := NULL;
329: end if;
330:
331: if (px_asset_fin_rec.global_attribute12 = FND_API.G_MISS_CHAR) then
332: px_asset_fin_rec.global_attribute12 := NULL;
333: end if;
334:
335: if (px_asset_fin_rec.global_attribute13 = FND_API.G_MISS_CHAR) then

Line 335: if (px_asset_fin_rec.global_attribute13 = FND_API.G_MISS_CHAR) then

331: if (px_asset_fin_rec.global_attribute12 = FND_API.G_MISS_CHAR) then
332: px_asset_fin_rec.global_attribute12 := NULL;
333: end if;
334:
335: if (px_asset_fin_rec.global_attribute13 = FND_API.G_MISS_CHAR) then
336: px_asset_fin_rec.global_attribute13 := NULL;
337: end if;
338:
339: if (px_asset_fin_rec.global_attribute14 = FND_API.G_MISS_CHAR) then

Line 339: if (px_asset_fin_rec.global_attribute14 = FND_API.G_MISS_CHAR) then

335: if (px_asset_fin_rec.global_attribute13 = FND_API.G_MISS_CHAR) then
336: px_asset_fin_rec.global_attribute13 := NULL;
337: end if;
338:
339: if (px_asset_fin_rec.global_attribute14 = FND_API.G_MISS_CHAR) then
340: px_asset_fin_rec.global_attribute14 := NULL;
341: end if;
342:
343: if (px_asset_fin_rec.global_attribute15 = FND_API.G_MISS_CHAR) then

Line 343: if (px_asset_fin_rec.global_attribute15 = FND_API.G_MISS_CHAR) then

339: if (px_asset_fin_rec.global_attribute14 = FND_API.G_MISS_CHAR) then
340: px_asset_fin_rec.global_attribute14 := NULL;
341: end if;
342:
343: if (px_asset_fin_rec.global_attribute15 = FND_API.G_MISS_CHAR) then
344: px_asset_fin_rec.global_attribute15 := NULL;
345: end if;
346:
347: if (px_asset_fin_rec.global_attribute16 = FND_API.G_MISS_CHAR) then

Line 347: if (px_asset_fin_rec.global_attribute16 = FND_API.G_MISS_CHAR) then

343: if (px_asset_fin_rec.global_attribute15 = FND_API.G_MISS_CHAR) then
344: px_asset_fin_rec.global_attribute15 := NULL;
345: end if;
346:
347: if (px_asset_fin_rec.global_attribute16 = FND_API.G_MISS_CHAR) then
348: px_asset_fin_rec.global_attribute16 := NULL;
349: end if;
350:
351: if (px_asset_fin_rec.global_attribute17 = FND_API.G_MISS_CHAR) then

Line 351: if (px_asset_fin_rec.global_attribute17 = FND_API.G_MISS_CHAR) then

347: if (px_asset_fin_rec.global_attribute16 = FND_API.G_MISS_CHAR) then
348: px_asset_fin_rec.global_attribute16 := NULL;
349: end if;
350:
351: if (px_asset_fin_rec.global_attribute17 = FND_API.G_MISS_CHAR) then
352: px_asset_fin_rec.global_attribute17 := NULL;
353: end if;
354:
355: if (px_asset_fin_rec.global_attribute18 = FND_API.G_MISS_CHAR) then

Line 355: if (px_asset_fin_rec.global_attribute18 = FND_API.G_MISS_CHAR) then

351: if (px_asset_fin_rec.global_attribute17 = FND_API.G_MISS_CHAR) then
352: px_asset_fin_rec.global_attribute17 := NULL;
353: end if;
354:
355: if (px_asset_fin_rec.global_attribute18 = FND_API.G_MISS_CHAR) then
356: px_asset_fin_rec.global_attribute18 := NULL;
357: end if;
358:
359: if (px_asset_fin_rec.global_attribute19 = FND_API.G_MISS_CHAR) then

Line 359: if (px_asset_fin_rec.global_attribute19 = FND_API.G_MISS_CHAR) then

355: if (px_asset_fin_rec.global_attribute18 = FND_API.G_MISS_CHAR) then
356: px_asset_fin_rec.global_attribute18 := NULL;
357: end if;
358:
359: if (px_asset_fin_rec.global_attribute19 = FND_API.G_MISS_CHAR) then
360: px_asset_fin_rec.global_attribute19 := NULL;
361: end if;
362:
363: if (px_asset_fin_rec.global_attribute20 = FND_API.G_MISS_CHAR) then

Line 363: if (px_asset_fin_rec.global_attribute20 = FND_API.G_MISS_CHAR) then

359: if (px_asset_fin_rec.global_attribute19 = FND_API.G_MISS_CHAR) then
360: px_asset_fin_rec.global_attribute19 := NULL;
361: end if;
362:
363: if (px_asset_fin_rec.global_attribute20 = FND_API.G_MISS_CHAR) then
364: px_asset_fin_rec.global_attribute20 := NULL;
365: end if;
366:
367: if (px_asset_fin_rec.global_attribute_category = FND_API.G_MISS_CHAR) then

Line 367: if (px_asset_fin_rec.global_attribute_category = FND_API.G_MISS_CHAR) then

363: if (px_asset_fin_rec.global_attribute20 = FND_API.G_MISS_CHAR) then
364: px_asset_fin_rec.global_attribute20 := NULL;
365: end if;
366:
367: if (px_asset_fin_rec.global_attribute_category = FND_API.G_MISS_CHAR) then
368: px_asset_fin_rec.global_attribute_category := NULL;
369: end if;
370:
371: if (px_asset_cat_rec.desc_flex.attribute_category_code is null) then

Line 650: elsif (px_asset_fin_rec.bonus_rule = FND_API.G_MISS_CHAR) then

646:
647: if (px_asset_fin_rec.bonus_rule is null) then
648: px_asset_fin_rec.bonus_rule :=
649: fa_cache_pkg.fazccbd_record.bonus_rule;
650: elsif (px_asset_fin_rec.bonus_rule = FND_API.G_MISS_CHAR) then
651: px_asset_fin_rec.bonus_rule := NULL;
652: end if;
653:
654: if (px_asset_fin_rec.ceiling_name is null) then

Line 657: elsif (px_asset_fin_rec.ceiling_name = FND_API.G_MISS_CHAR) then

653:
654: if (px_asset_fin_rec.ceiling_name is null) then
655: px_asset_fin_rec.ceiling_name :=
656: fa_cache_pkg.fazccbd_record.ceiling_name;
657: elsif (px_asset_fin_rec.ceiling_name = FND_API.G_MISS_CHAR) then
658: px_asset_fin_rec.ceiling_name := NULL;
659: end if;
660:
661: -- this is where we would allow for multi-tier group

Line 686: elsif (px_asset_fin_rec.group_asset_id = FND_API.G_MISS_NUM) then

682: /* fa_srvr_msg.add_message(calling_fn => 'fa_addition_pvt.initialize',
683: name => 'FA_CIP_MEMBER_NOT_ALLOWED', p_log_level_rec => p_log_level_rec);
684: raise init_err; */
685: end if; --end HH -- conditional group defaulting
686: elsif (px_asset_fin_rec.group_asset_id = FND_API.G_MISS_NUM) then
687: px_asset_fin_rec.group_asset_id := NULL;
688: end if; --group asset_id null
689: else
690: px_asset_fin_rec.group_asset_id := null;

Line 986: px_asset_fin_rec.tracking_method = FND_API.G_MISS_CHAR) then

982: px_asset_fin_rec.recapture_reserve_flag := 'N';
983: end if;
984:
985: if (px_asset_fin_rec.tracking_method is null or
986: px_asset_fin_rec.tracking_method = FND_API.G_MISS_CHAR) then
987: px_asset_fin_rec.tracking_method := null;
988: px_asset_fin_rec.allocate_to_fully_rsv_flag := null;
989: px_asset_fin_rec.allocate_to_fully_ret_flag := null;
990: px_asset_fin_rec.excess_allocation_option := null;

Line 1029: x_return_status := FND_API.G_RET_STS_ERROR;

1025: exception
1026: when init_err then
1027: fa_srvr_msg.add_message(
1028: calling_fn => 'fa_addition_pvt.initialize', p_log_level_rec => p_log_level_rec);
1029: x_return_status := FND_API.G_RET_STS_ERROR;
1030: return FALSE;
1031:
1032: when others then
1033: fa_srvr_msg.add_sql_error(

Line 1035: x_return_status := FND_API.G_RET_STS_ERROR;

1031:
1032: when others then
1033: fa_srvr_msg.add_sql_error(
1034: calling_fn => 'fa_addition_pvt.initialize', p_log_level_rec => p_log_level_rec);
1035: x_return_status := FND_API.G_RET_STS_ERROR;
1036: return FALSE;
1037:
1038: end initialize;
1039:

Line 2508: x_return_status := FND_API.G_RET_STS_SUCCESS;

2504: p_log_level_rec => p_log_level_rec
2505: );
2506: end if;
2507:
2508: x_return_status := FND_API.G_RET_STS_SUCCESS;
2509: return TRUE;
2510:
2511: EXCEPTION
2512: when mrc_check_error then

Line 2515: x_return_status := FND_API.G_RET_STS_ERROR;

2511: EXCEPTION
2512: when mrc_check_error then
2513: fa_srvr_msg.add_message(
2514: calling_fn => 'fa_addition_pvt.insert_asset', p_log_level_rec => p_log_level_rec);
2515: x_return_status := FND_API.G_RET_STS_ERROR;
2516: return FALSE;
2517:
2518: when general_error then
2519: fa_srvr_msg.add_message(

Line 2521: x_return_status := FND_API.G_RET_STS_ERROR;

2517:
2518: when general_error then
2519: fa_srvr_msg.add_message(
2520: calling_fn => 'fa_addition_pvt.insert_asset', p_log_level_rec => p_log_level_rec);
2521: x_return_status := FND_API.G_RET_STS_ERROR;
2522: return FALSE;
2523:
2524: when others then
2525: fa_srvr_msg.add_sql_error(

Line 2527: x_return_status := FND_API.G_RET_STS_ERROR;

2523:
2524: when others then
2525: fa_srvr_msg.add_sql_error(
2526: calling_fn => 'fa_addition_pvt.insert_asset', p_log_level_rec => p_log_level_rec);
2527: x_return_status := FND_API.G_RET_STS_ERROR;
2528: return FALSE;
2529:
2530: end insert_asset;
2531: -- Bug 13022905