DBA Data[Home] [Help]

APPS.IGI_IAC_TRANSFERS_PKG dependencies on IGI_IAC_TRANS_HEADERS_PKG

Line 1381: IGI_IAC_TRANS_HEADERS_PKG.Insert_Row(

1377: -- TRANSFERS
1378: -- initailise the new adjustment id
1379: l_adj_id := null;
1380:
1381: IGI_IAC_TRANS_HEADERS_PKG.Insert_Row(
1382: x_rowid => l_rowid,
1383: x_adjustment_id => l_adj_id, -- out NOCOPY parameter
1384: x_transaction_header_id => p_trans_rec.transaction_header_id, -- bug 3391000 null,
1385: x_adjustment_id_out => NULL,

Line 2561: IGI_IAC_TRANS_HEADERS_PKG.Update_Row(

2557:
2558: -- update the previous active row for the asset in igi_iac_transaction_headers
2559: -- in order to make it inactive by setting adjustment_id_out= adjustment_id of
2560: -- the active row in igi_iac_transaction_headers
2561: IGI_IAC_TRANS_HEADERS_PKG.Update_Row(
2562: x_prev_adjustment_id => l_adj_id_out,
2563: x_adjustment_id => l_adj_id
2564: );
2565:

Line 2927: IGI_IAC_TRANS_HEADERS_PKG.update_row (

2923: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'============================================================');
2924:
2925: FOR l_prev_data in c_prev_data(l_trans_headers.adjustment_id)
2926: LOOP
2927: IGI_IAC_TRANS_HEADERS_PKG.update_row (
2928: x_prev_adjustment_id =>l_prev_data.adjustment_id,
2929: x_adjustment_id =>null,
2930: x_mode =>'R'
2931: );

Line 2939: IGI_IAC_TRANS_HEADERS_PKG.delete_row (

2935: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'============================================================');
2936: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'Deleting From transaction headers...');
2937: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'============================================================');
2938:
2939: IGI_IAC_TRANS_HEADERS_PKG.delete_row (
2940: x_adjustment_id =>l_trans_headers.adjustment_id
2941: );
2942:
2943: END IF;