DBA Data[Home] [Help]

APPS.FA_ADDITION_PVT dependencies on FND_API

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

184: raise init_err;
185: end if;
186:
187: -- Set Appropriate values to defaults if user did not provide them.
188: if (px_asset_desc_rec.asset_number = FND_API.G_MISS_CHAR) then
189: px_asset_desc_rec.asset_number := NULL;
190: end if;
191:
192: if (px_asset_desc_rec.description = FND_API.G_MISS_CHAR) then

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

188: if (px_asset_desc_rec.asset_number = FND_API.G_MISS_CHAR) then
189: px_asset_desc_rec.asset_number := NULL;
190: end if;
191:
192: if (px_asset_desc_rec.description = FND_API.G_MISS_CHAR) then
193: px_asset_desc_rec.description := NULL;
194: end if;
195:
196: if (px_asset_desc_rec.tag_number = FND_API.G_MISS_CHAR) then

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

192: if (px_asset_desc_rec.description = FND_API.G_MISS_CHAR) then
193: px_asset_desc_rec.description := NULL;
194: end if;
195:
196: if (px_asset_desc_rec.tag_number = FND_API.G_MISS_CHAR) then
197: px_asset_desc_rec.tag_number := NULL;
198: end if;
199:
200: if (px_asset_desc_rec.serial_number = FND_API.G_MISS_CHAR) then

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

196: if (px_asset_desc_rec.tag_number = FND_API.G_MISS_CHAR) then
197: px_asset_desc_rec.tag_number := NULL;
198: end if;
199:
200: if (px_asset_desc_rec.serial_number = FND_API.G_MISS_CHAR) then
201: px_asset_desc_rec.serial_number := NULL;
202: end if;
203:
204: if (px_asset_desc_rec.asset_key_ccid = FND_API.G_MISS_NUM) then

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

200: if (px_asset_desc_rec.serial_number = FND_API.G_MISS_CHAR) then
201: px_asset_desc_rec.serial_number := NULL;
202: end if;
203:
204: if (px_asset_desc_rec.asset_key_ccid = FND_API.G_MISS_NUM) then
205: px_asset_desc_rec.asset_key_ccid := NULL;
206: end if;
207:
208: if (px_asset_desc_rec.parent_asset_id = FND_API.G_MISS_NUM) then

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

204: if (px_asset_desc_rec.asset_key_ccid = FND_API.G_MISS_NUM) then
205: px_asset_desc_rec.asset_key_ccid := NULL;
206: end if;
207:
208: if (px_asset_desc_rec.parent_asset_id = FND_API.G_MISS_NUM) then
209: px_asset_desc_rec.parent_asset_id := NULL;
210: end if;
211:
212: if (px_asset_desc_rec.manufacturer_name = FND_API.G_MISS_CHAR) then

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

208: if (px_asset_desc_rec.parent_asset_id = FND_API.G_MISS_NUM) then
209: px_asset_desc_rec.parent_asset_id := NULL;
210: end if;
211:
212: if (px_asset_desc_rec.manufacturer_name = FND_API.G_MISS_CHAR) then
213: px_asset_desc_rec.manufacturer_name := NULL;
214: end if;
215:
216: if (px_asset_desc_rec.model_number = FND_API.G_MISS_CHAR) then

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

212: if (px_asset_desc_rec.manufacturer_name = FND_API.G_MISS_CHAR) then
213: px_asset_desc_rec.manufacturer_name := NULL;
214: end if;
215:
216: if (px_asset_desc_rec.model_number = FND_API.G_MISS_CHAR) then
217: px_asset_desc_rec.model_number := NULL;
218: end if;
219:
220: if (px_asset_desc_rec.warranty_id = FND_API.G_MISS_NUM) then

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

216: if (px_asset_desc_rec.model_number = FND_API.G_MISS_CHAR) then
217: px_asset_desc_rec.model_number := NULL;
218: end if;
219:
220: if (px_asset_desc_rec.warranty_id = FND_API.G_MISS_NUM) then
221: px_asset_desc_rec.warranty_id := NULL;
222: end if;
223:
224: if (px_asset_desc_rec.lease_id = FND_API.G_MISS_NUM) then

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

220: if (px_asset_desc_rec.warranty_id = FND_API.G_MISS_NUM) then
221: px_asset_desc_rec.warranty_id := NULL;
222: end if;
223:
224: if (px_asset_desc_rec.lease_id = FND_API.G_MISS_NUM) then
225: px_asset_desc_rec.lease_id := NULL;
226: end if;
227:
228: if (px_asset_desc_rec.in_use_flag = FND_API.G_MISS_CHAR or

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

224: if (px_asset_desc_rec.lease_id = FND_API.G_MISS_NUM) then
225: px_asset_desc_rec.lease_id := NULL;
226: end if;
227:
228: if (px_asset_desc_rec.in_use_flag = FND_API.G_MISS_CHAR or
229: px_asset_desc_rec.in_use_flag is null) then
230: px_asset_desc_rec.in_use_flag := 'YES';
231: end if;
232:

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

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

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

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

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

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

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

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

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

253: px_asset_desc_rec.owned_leased :=
254: fa_cache_pkg.fazcat_record.owned_leased;
255: end if;
256:
257: if (px_asset_desc_rec.new_used = FND_API.G_MISS_CHAR or
258: px_asset_desc_rec.new_used is null) then
259: px_asset_desc_rec.new_used := 'NEW';
260: end if;
261:

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

258: px_asset_desc_rec.new_used is null) then
259: px_asset_desc_rec.new_used := 'NEW';
260: end if;
261:
262: if (px_asset_desc_rec.unit_adjustment_flag = FND_API.G_MISS_CHAR or
263: px_asset_desc_rec.unit_adjustment_flag is null) then
264: px_asset_desc_rec.unit_adjustment_flag := 'NO';
265: end if;
266:

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

263: px_asset_desc_rec.unit_adjustment_flag is null) then
264: px_asset_desc_rec.unit_adjustment_flag := 'NO';
265: end if;
266:
267: if (px_asset_desc_rec.add_cost_je_flag = FND_API.G_MISS_CHAR or
268: px_asset_desc_rec.add_cost_je_flag is null) then
269: px_asset_desc_rec.add_cost_je_flag := 'NO';
270: end if;
271:

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

268: px_asset_desc_rec.add_cost_je_flag is null) then
269: px_asset_desc_rec.add_cost_je_flag := 'NO';
270: end if;
271:
272: if (px_asset_desc_rec.status = FND_API.G_MISS_CHAR) then
273: px_asset_desc_rec.status := NULL;
274: end if;
275:
276: -- Bug:6021567

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

273: px_asset_desc_rec.status := NULL;
274: end if;
275:
276: -- Bug:6021567
277: if (px_asset_fin_rec.contract_id = FND_API.G_MISS_NUM) then
278: px_asset_fin_rec.contract_id := NULL;
279: end if;
280:
281: if (px_asset_fin_rec.itc_amount_id = FND_API.G_MISS_NUM) then

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

277: if (px_asset_fin_rec.contract_id = FND_API.G_MISS_NUM) then
278: px_asset_fin_rec.contract_id := NULL;
279: end if;
280:
281: if (px_asset_fin_rec.itc_amount_id = FND_API.G_MISS_NUM) then
282: px_asset_fin_rec.itc_amount_id := NULL;
283: end if;
284:
285: if (px_asset_fin_rec.ceiling_name = FND_API.G_MISS_CHAR) then

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

281: if (px_asset_fin_rec.itc_amount_id = FND_API.G_MISS_NUM) then
282: px_asset_fin_rec.itc_amount_id := NULL;
283: end if;
284:
285: if (px_asset_fin_rec.ceiling_name = FND_API.G_MISS_CHAR) then
286: px_asset_fin_rec.ceiling_name := NULL;
287: end if;
288:
289: if (px_asset_fin_rec.capitalize_flag = NULL) then

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

290: px_asset_fin_rec.capitalize_flag :=
291: fa_cache_pkg.fazcat_record.capitalize_flag;
292: end if;
293:
294: if (px_asset_fin_rec.global_attribute1 = FND_API.G_MISS_CHAR) then
295: px_asset_fin_rec.global_attribute1 := NULL;
296: end if;
297:
298: if (px_asset_fin_rec.global_attribute2 = FND_API.G_MISS_CHAR) then

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

294: if (px_asset_fin_rec.global_attribute1 = FND_API.G_MISS_CHAR) then
295: px_asset_fin_rec.global_attribute1 := NULL;
296: end if;
297:
298: if (px_asset_fin_rec.global_attribute2 = FND_API.G_MISS_CHAR) then
299: px_asset_fin_rec.global_attribute2 := NULL;
300: end if;
301:
302: if (px_asset_fin_rec.global_attribute3 = FND_API.G_MISS_CHAR) then

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

298: if (px_asset_fin_rec.global_attribute2 = FND_API.G_MISS_CHAR) then
299: px_asset_fin_rec.global_attribute2 := NULL;
300: end if;
301:
302: if (px_asset_fin_rec.global_attribute3 = FND_API.G_MISS_CHAR) then
303: px_asset_fin_rec.global_attribute3 := NULL;
304: end if;
305:
306: if (px_asset_fin_rec.global_attribute4 = FND_API.G_MISS_CHAR) then

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

302: if (px_asset_fin_rec.global_attribute3 = FND_API.G_MISS_CHAR) then
303: px_asset_fin_rec.global_attribute3 := NULL;
304: end if;
305:
306: if (px_asset_fin_rec.global_attribute4 = FND_API.G_MISS_CHAR) then
307: px_asset_fin_rec.global_attribute4 := NULL;
308: end if;
309:
310: if (px_asset_fin_rec.global_attribute5 = FND_API.G_MISS_CHAR) then

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

306: if (px_asset_fin_rec.global_attribute4 = FND_API.G_MISS_CHAR) then
307: px_asset_fin_rec.global_attribute4 := NULL;
308: end if;
309:
310: if (px_asset_fin_rec.global_attribute5 = FND_API.G_MISS_CHAR) then
311: px_asset_fin_rec.global_attribute5 := NULL;
312: end if;
313:
314: if (px_asset_fin_rec.global_attribute6 = FND_API.G_MISS_CHAR) then

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

310: if (px_asset_fin_rec.global_attribute5 = FND_API.G_MISS_CHAR) then
311: px_asset_fin_rec.global_attribute5 := NULL;
312: end if;
313:
314: if (px_asset_fin_rec.global_attribute6 = FND_API.G_MISS_CHAR) then
315: px_asset_fin_rec.global_attribute6 := NULL;
316: end if;
317:
318: if (px_asset_fin_rec.global_attribute7 = FND_API.G_MISS_CHAR) then

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

314: if (px_asset_fin_rec.global_attribute6 = FND_API.G_MISS_CHAR) then
315: px_asset_fin_rec.global_attribute6 := NULL;
316: end if;
317:
318: if (px_asset_fin_rec.global_attribute7 = FND_API.G_MISS_CHAR) then
319: px_asset_fin_rec.global_attribute7 := NULL;
320: end if;
321:
322: if (px_asset_fin_rec.global_attribute8 = FND_API.G_MISS_CHAR) then

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

318: if (px_asset_fin_rec.global_attribute7 = FND_API.G_MISS_CHAR) then
319: px_asset_fin_rec.global_attribute7 := NULL;
320: end if;
321:
322: if (px_asset_fin_rec.global_attribute8 = FND_API.G_MISS_CHAR) then
323: px_asset_fin_rec.global_attribute8 := NULL;
324: end if;
325:
326: if (px_asset_fin_rec.global_attribute9 = FND_API.G_MISS_CHAR) then

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

322: if (px_asset_fin_rec.global_attribute8 = FND_API.G_MISS_CHAR) then
323: px_asset_fin_rec.global_attribute8 := NULL;
324: end if;
325:
326: if (px_asset_fin_rec.global_attribute9 = FND_API.G_MISS_CHAR) then
327: px_asset_fin_rec.global_attribute9 := NULL;
328: end if;
329:
330: if (px_asset_fin_rec.global_attribute10 = FND_API.G_MISS_CHAR) then

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

326: if (px_asset_fin_rec.global_attribute9 = FND_API.G_MISS_CHAR) then
327: px_asset_fin_rec.global_attribute9 := NULL;
328: end if;
329:
330: if (px_asset_fin_rec.global_attribute10 = FND_API.G_MISS_CHAR) then
331: px_asset_fin_rec.global_attribute10 := NULL;
332: end if;
333:
334: if (px_asset_fin_rec.global_attribute11 = FND_API.G_MISS_CHAR) then

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

330: if (px_asset_fin_rec.global_attribute10 = FND_API.G_MISS_CHAR) then
331: px_asset_fin_rec.global_attribute10 := NULL;
332: end if;
333:
334: if (px_asset_fin_rec.global_attribute11 = FND_API.G_MISS_CHAR) then
335: px_asset_fin_rec.global_attribute11 := NULL;
336: end if;
337:
338: if (px_asset_fin_rec.global_attribute12 = FND_API.G_MISS_CHAR) then

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

334: if (px_asset_fin_rec.global_attribute11 = FND_API.G_MISS_CHAR) then
335: px_asset_fin_rec.global_attribute11 := NULL;
336: end if;
337:
338: if (px_asset_fin_rec.global_attribute12 = FND_API.G_MISS_CHAR) then
339: px_asset_fin_rec.global_attribute12 := NULL;
340: end if;
341:
342: if (px_asset_fin_rec.global_attribute13 = FND_API.G_MISS_CHAR) then

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

338: if (px_asset_fin_rec.global_attribute12 = FND_API.G_MISS_CHAR) then
339: px_asset_fin_rec.global_attribute12 := NULL;
340: end if;
341:
342: if (px_asset_fin_rec.global_attribute13 = FND_API.G_MISS_CHAR) then
343: px_asset_fin_rec.global_attribute13 := NULL;
344: end if;
345:
346: if (px_asset_fin_rec.global_attribute14 = FND_API.G_MISS_CHAR) then

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

342: if (px_asset_fin_rec.global_attribute13 = FND_API.G_MISS_CHAR) then
343: px_asset_fin_rec.global_attribute13 := NULL;
344: end if;
345:
346: if (px_asset_fin_rec.global_attribute14 = FND_API.G_MISS_CHAR) then
347: px_asset_fin_rec.global_attribute14 := NULL;
348: end if;
349:
350: if (px_asset_fin_rec.global_attribute15 = FND_API.G_MISS_CHAR) then

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

346: if (px_asset_fin_rec.global_attribute14 = FND_API.G_MISS_CHAR) then
347: px_asset_fin_rec.global_attribute14 := NULL;
348: end if;
349:
350: if (px_asset_fin_rec.global_attribute15 = FND_API.G_MISS_CHAR) then
351: px_asset_fin_rec.global_attribute15 := NULL;
352: end if;
353:
354: if (px_asset_fin_rec.global_attribute16 = FND_API.G_MISS_CHAR) then

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

350: if (px_asset_fin_rec.global_attribute15 = FND_API.G_MISS_CHAR) then
351: px_asset_fin_rec.global_attribute15 := NULL;
352: end if;
353:
354: if (px_asset_fin_rec.global_attribute16 = FND_API.G_MISS_CHAR) then
355: px_asset_fin_rec.global_attribute16 := NULL;
356: end if;
357:
358: if (px_asset_fin_rec.global_attribute17 = FND_API.G_MISS_CHAR) then

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

354: if (px_asset_fin_rec.global_attribute16 = FND_API.G_MISS_CHAR) then
355: px_asset_fin_rec.global_attribute16 := NULL;
356: end if;
357:
358: if (px_asset_fin_rec.global_attribute17 = FND_API.G_MISS_CHAR) then
359: px_asset_fin_rec.global_attribute17 := NULL;
360: end if;
361:
362: if (px_asset_fin_rec.global_attribute18 = FND_API.G_MISS_CHAR) then

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

358: if (px_asset_fin_rec.global_attribute17 = FND_API.G_MISS_CHAR) then
359: px_asset_fin_rec.global_attribute17 := NULL;
360: end if;
361:
362: if (px_asset_fin_rec.global_attribute18 = FND_API.G_MISS_CHAR) then
363: px_asset_fin_rec.global_attribute18 := NULL;
364: end if;
365:
366: if (px_asset_fin_rec.global_attribute19 = FND_API.G_MISS_CHAR) then

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

362: if (px_asset_fin_rec.global_attribute18 = FND_API.G_MISS_CHAR) then
363: px_asset_fin_rec.global_attribute18 := NULL;
364: end if;
365:
366: if (px_asset_fin_rec.global_attribute19 = FND_API.G_MISS_CHAR) then
367: px_asset_fin_rec.global_attribute19 := NULL;
368: end if;
369:
370: if (px_asset_fin_rec.global_attribute20 = FND_API.G_MISS_CHAR) then

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

366: if (px_asset_fin_rec.global_attribute19 = FND_API.G_MISS_CHAR) then
367: px_asset_fin_rec.global_attribute19 := NULL;
368: end if;
369:
370: if (px_asset_fin_rec.global_attribute20 = FND_API.G_MISS_CHAR) then
371: px_asset_fin_rec.global_attribute20 := NULL;
372: end if;
373:
374: if (px_asset_fin_rec.global_attribute_category = FND_API.G_MISS_CHAR) then

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

370: if (px_asset_fin_rec.global_attribute20 = FND_API.G_MISS_CHAR) then
371: px_asset_fin_rec.global_attribute20 := NULL;
372: end if;
373:
374: if (px_asset_fin_rec.global_attribute_category = FND_API.G_MISS_CHAR) then
375: px_asset_fin_rec.global_attribute_category := NULL;
376: end if;
377:
378: if (px_asset_cat_rec.desc_flex.attribute_category_code is null) then

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

620:
621: if (px_asset_fin_rec.bonus_rule is null) then
622: px_asset_fin_rec.bonus_rule :=
623: fa_cache_pkg.fazccbd_record.bonus_rule;
624: elsif (px_asset_fin_rec.bonus_rule = FND_API.G_MISS_CHAR) then
625: px_asset_fin_rec.bonus_rule := NULL;
626: end if;
627:
628: if (px_asset_fin_rec.ceiling_name is null) then

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

627:
628: if (px_asset_fin_rec.ceiling_name is null) then
629: px_asset_fin_rec.ceiling_name :=
630: fa_cache_pkg.fazccbd_record.ceiling_name;
631: elsif (px_asset_fin_rec.ceiling_name = FND_API.G_MISS_CHAR) then
632: px_asset_fin_rec.ceiling_name := NULL;
633: end if;
634:
635: -- this is where we would allow for multi-tier group

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

659: name => 'FA_CIP_MEMBER_NOT_ALLOWED'
660: ,p_log_level_rec => p_log_level_rec);
661: raise init_err; */
662: end if; --end HH -- conditional group defaulting
663: elsif (px_asset_fin_rec.group_asset_id = FND_API.G_MISS_NUM) then
664: px_asset_fin_rec.group_asset_id := NULL;
665: end if; --group asset_id null
666: else
667: px_asset_fin_rec.group_asset_id := null;

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

961: px_asset_fin_rec.recapture_reserve_flag := 'N';
962: end if;
963:
964: if (px_asset_fin_rec.tracking_method is null or
965: px_asset_fin_rec.tracking_method = FND_API.G_MISS_CHAR) then
966: px_asset_fin_rec.tracking_method := null;
967: px_asset_fin_rec.allocate_to_fully_rsv_flag := null;
968: px_asset_fin_rec.allocate_to_fully_ret_flag := null;
969: px_asset_fin_rec.excess_allocation_option := null;

Line 1009: x_return_status := FND_API.G_RET_STS_ERROR;

1005: when init_err then
1006: fa_srvr_msg.add_message(
1007: calling_fn => 'fa_addition_pvt.initialize'
1008: ,p_log_level_rec => p_log_level_rec);
1009: x_return_status := FND_API.G_RET_STS_ERROR;
1010: return FALSE;
1011:
1012: when others then
1013: fa_srvr_msg.add_sql_error(

Line 1016: x_return_status := FND_API.G_RET_STS_ERROR;

1012: when others then
1013: fa_srvr_msg.add_sql_error(
1014: calling_fn => 'fa_addition_pvt.initialize'
1015: ,p_log_level_rec => p_log_level_rec);
1016: x_return_status := FND_API.G_RET_STS_ERROR;
1017: return FALSE;
1018:
1019: end initialize;
1020:

Line 2322: x_return_status := FND_API.G_RET_STS_SUCCESS;

2318: p_log_level_rec => p_log_level_rec
2319: );
2320: end if;
2321:
2322: x_return_status := FND_API.G_RET_STS_SUCCESS;
2323: return TRUE;
2324:
2325: EXCEPTION
2326: when mrc_check_error then

Line 2330: x_return_status := FND_API.G_RET_STS_ERROR;

2326: when mrc_check_error then
2327: fa_srvr_msg.add_message(
2328: calling_fn => 'fa_addition_pvt.insert_asset'
2329: ,p_log_level_rec => p_log_level_rec);
2330: x_return_status := FND_API.G_RET_STS_ERROR;
2331: return FALSE;
2332:
2333: when general_error then
2334: fa_srvr_msg.add_message(

Line 2337: x_return_status := FND_API.G_RET_STS_ERROR;

2333: when general_error then
2334: fa_srvr_msg.add_message(
2335: calling_fn => 'fa_addition_pvt.insert_asset'
2336: ,p_log_level_rec => p_log_level_rec);
2337: x_return_status := FND_API.G_RET_STS_ERROR;
2338: return FALSE;
2339:
2340: when others then
2341: fa_srvr_msg.add_sql_error(

Line 2344: x_return_status := FND_API.G_RET_STS_ERROR;

2340: when others then
2341: fa_srvr_msg.add_sql_error(
2342: calling_fn => 'fa_addition_pvt.insert_asset'
2343: ,p_log_level_rec => p_log_level_rec);
2344: x_return_status := FND_API.G_RET_STS_ERROR;
2345: return FALSE;
2346:
2347: end insert_asset;
2348: