DBA Data[Home] [Help]

APPS.FUN_WEBADI_PKG dependencies on FUN_TRX_PUB

Line 7: p_trx_tbl In FUN_TRX_PUB.full_trx_tbl_type) Is

3:
4: Procedure Insert_Header(
5: p_recipient_name In Fun_Interface_Headers.recipient_name%type,
6: p_to_le_name In Fun_Interface_Headers.to_le_name%type,
7: p_trx_tbl In FUN_TRX_PUB.full_trx_tbl_type) Is
8: Begin
9: If p_trx_tbl.count = 1 Then
10: Insert Into Fun_Interface_Headers(
11: trx_id,

Line 90: p_dist_lines_tbl In FUN_TRX_PUB.full_dist_line_tbl_type,

86: End If;
87: End Insert_Header;
88:
89: Procedure Insert_Dists(
90: p_dist_lines_tbl In FUN_TRX_PUB.full_dist_line_tbl_type,
91: p_count In Number) Is
92: Begin
93: Insert Into Fun_Interface_Dist_Lines(
94: trx_id,

Line 164: p_batch_rec In FUN_TRX_PUB.full_batch_rec_type,

160: p_dist_lines_tbl(p_count).description);
161: End Insert_Dists;
162:
163: Procedure Insert_Batch(
164: p_batch_rec In FUN_TRX_PUB.full_batch_rec_type,
165: p_initiator_name In Fun_Interface_Batches.initiator_name%type,
166: p_trx_type_name In Fun_Interface_Batches.trx_type_name%type,
167: p_from_le_name In Fun_Interface_Headers.to_le_name%type,
168: p_insert_flag In Varchar2) Is

Line 314: p_batch_rec In FUN_TRX_PUB.full_batch_rec_type,

310: End If;
311: End Insert_Batch;
312:
313: Procedure Validate_Record(
314: p_batch_rec In FUN_TRX_PUB.full_batch_rec_type,
315: p_trx_tbl In FUN_TRX_PUB.full_trx_tbl_type,
316: p_dist_lines_tbl In FUN_TRX_PUB.full_dist_line_tbl_type,
317: p_batch_insert In Varchar2) Is
318: l_batch_rec Fun_Trx_Pvt.batch_rec_type;

Line 315: p_trx_tbl In FUN_TRX_PUB.full_trx_tbl_type,

311: End Insert_Batch;
312:
313: Procedure Validate_Record(
314: p_batch_rec In FUN_TRX_PUB.full_batch_rec_type,
315: p_trx_tbl In FUN_TRX_PUB.full_trx_tbl_type,
316: p_dist_lines_tbl In FUN_TRX_PUB.full_dist_line_tbl_type,
317: p_batch_insert In Varchar2) Is
318: l_batch_rec Fun_Trx_Pvt.batch_rec_type;
319: l_trx_tbl Fun_Trx_Pvt.trx_tbl_type;

Line 316: p_dist_lines_tbl In FUN_TRX_PUB.full_dist_line_tbl_type,

312:
313: Procedure Validate_Record(
314: p_batch_rec In FUN_TRX_PUB.full_batch_rec_type,
315: p_trx_tbl In FUN_TRX_PUB.full_trx_tbl_type,
316: p_dist_lines_tbl In FUN_TRX_PUB.full_dist_line_tbl_type,
317: p_batch_insert In Varchar2) Is
318: l_batch_rec Fun_Trx_Pvt.batch_rec_type;
319: l_trx_tbl Fun_Trx_Pvt.trx_tbl_type;
320: l_dist_lines_tbl Fun_Trx_Pvt.dist_line_tbl_type;

Line 766: l_batch_rec FUN_TRX_PUB.full_batch_rec_type;

762: l_init_amount_cr Fun_Interface_Headers.init_amount_cr%type;
763: l_init_amount_dr Fun_Interface_Headers.init_amount_dr%type;
764: l_trx_number Fun_Interface_Headers.trx_number%type;
765:
766: l_batch_rec FUN_TRX_PUB.full_batch_rec_type;
767: l_trx_tbl FUN_TRX_PUB.full_trx_tbl_type;
768: l_dist_lines_tbl FUN_TRX_PUB.full_dist_line_tbl_type;
769: l_length NUMBER;
770: l_num NUMBER; --6846666

Line 767: l_trx_tbl FUN_TRX_PUB.full_trx_tbl_type;

763: l_init_amount_dr Fun_Interface_Headers.init_amount_dr%type;
764: l_trx_number Fun_Interface_Headers.trx_number%type;
765:
766: l_batch_rec FUN_TRX_PUB.full_batch_rec_type;
767: l_trx_tbl FUN_TRX_PUB.full_trx_tbl_type;
768: l_dist_lines_tbl FUN_TRX_PUB.full_dist_line_tbl_type;
769: l_length NUMBER;
770: l_num NUMBER; --6846666
771:

Line 768: l_dist_lines_tbl FUN_TRX_PUB.full_dist_line_tbl_type;

764: l_trx_number Fun_Interface_Headers.trx_number%type;
765:
766: l_batch_rec FUN_TRX_PUB.full_batch_rec_type;
767: l_trx_tbl FUN_TRX_PUB.full_trx_tbl_type;
768: l_dist_lines_tbl FUN_TRX_PUB.full_dist_line_tbl_type;
769: l_length NUMBER;
770: l_num NUMBER; --6846666
771:
772: Initiator_Excpt Exception;