DBA Data[Home] [Help]

APPS.IGI_IAC_TRANSFERS_PKG dependencies on IGI_IAC_TRANS_HEADERS_PKG

Line 1277: IGI_IAC_TRANS_HEADERS_PKG.Insert_Row(

1273: -- TRANSFERS
1274: -- initailise the new adjustment id
1275: l_adj_id := null;
1276:
1277: IGI_IAC_TRANS_HEADERS_PKG.Insert_Row(
1278: x_rowid => l_rowid,
1279: x_adjustment_id => l_adj_id, -- out NOCOPY parameter
1280: x_transaction_header_id => p_trans_rec.transaction_header_id, -- bug 3391000 null,
1281: x_adjustment_id_out => NULL,

Line 2322: IGI_IAC_TRANS_HEADERS_PKG.Update_Row(

2318:
2319: -- update the previous active row for the asset in igi_iac_transaction_headers
2320: -- in order to make it inactive by setting adjustment_id_out= adjustment_id of
2321: -- the active row in igi_iac_transaction_headers
2322: IGI_IAC_TRANS_HEADERS_PKG.Update_Row(
2323: x_prev_adjustment_id => l_adj_id_out,
2324: x_adjustment_id => l_adj_id
2325: );
2326:

Line 2688: IGI_IAC_TRANS_HEADERS_PKG.update_row (

2684: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'============================================================');
2685:
2686: FOR l_prev_data in c_prev_data(l_trans_headers.adjustment_id)
2687: LOOP
2688: IGI_IAC_TRANS_HEADERS_PKG.update_row (
2689: x_prev_adjustment_id =>l_prev_data.adjustment_id,
2690: x_adjustment_id =>null,
2691: x_mode =>'R'
2692: );

Line 2700: IGI_IAC_TRANS_HEADERS_PKG.delete_row (

2696: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'============================================================');
2697: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'Deleting From transaction headers...');
2698: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'============================================================');
2699:
2700: IGI_IAC_TRANS_HEADERS_PKG.delete_row (
2701: x_adjustment_id =>l_trans_headers.adjustment_id
2702: );
2703:
2704: END IF;