DBA Data[Home] [Help]

APPS.FA_INV_XFR_PUB dependencies on DUAL

Line 343: from dual;

339: l_dest_asset_type_rec.asset_type := l_to_asset_type;
340:
341: select fa_transaction_headers_s.nextval
342: into px_src_trans_rec.transaction_header_id
343: from dual;
344:
345: select fa_transaction_headers_s.nextval
346: into px_dest_trans_rec.transaction_header_id
347: from dual;

Line 347: from dual;

343: from dual;
344:
345: select fa_transaction_headers_s.nextval
346: into px_dest_trans_rec.transaction_header_id
347: from dual;
348:
349: -- Also need to load the date here to make it available to the event api
350: -- load the period struct for current period info
351: if not FA_UTIL_PVT.get_period_rec

Line 387: from dual;

383: -- insure we load the trx_ref_idinto dest th row too!!!
384:
385: select fa_trx_references_s.nextval
386: into px_src_trans_rec.trx_reference_id
387: from dual;
388:
389: px_dest_trans_rec.trx_reference_id :=
390: px_src_trans_rec.trx_reference_id;
391:

Line 395: if not FA_XLA_EVENTS_PVT.create_dual_transaction_event

391:
392: px_src_trans_rec.transaction_key := 'IT';
393: px_dest_trans_rec.transaction_key := 'IT';
394:
395: if not FA_XLA_EVENTS_PVT.create_dual_transaction_event
396: (p_asset_hdr_rec_src => px_src_asset_hdr_rec,
397: p_asset_hdr_rec_dest => px_dest_asset_hdr_rec,
398: p_asset_type_rec_src => l_src_asset_type_rec,
399: p_asset_type_rec_dest => l_dest_asset_type_rec,