DBA Data[Home] [Help]

APPS.FUN_TRX_PUB dependencies on FUN_INTERFACE_HEADERS

Line 520: UPDATE fun_interface_headers set import_status_code = 'R' Where trx_id = p_trx_tbl(l_head_count).trx_id;

516:
517: If (l_return_status = FND_API.G_RET_STS_ERROR) then
518: If (p_calling_sequence = 'Intercompany Import Program') then
519: Print('Val and Insert >>>>'||'Inserting Trx Header Reject Reasons');
520: UPDATE fun_interface_headers set import_status_code = 'R' Where trx_id = p_trx_tbl(l_head_count).trx_id;
521: -- Insert into Rejections Table
522: IF l_msg_count >= 1 THEN
523: FOR i IN 1..l_msg_count
524: LOOP

Line 542: UPDATE fun_interface_headers set import_status_code = 'A'

538: End if; -- Calling Sequence
539:
540: ELSE
541: If (P_calling_sequence = 'Intercompany Import Program') then
542: UPDATE fun_interface_headers set import_status_code = 'A'
543: Where trx_id = p_trx_tbl(l_head_count).trx_id;
544: End if; -- Calling Sequence
545:
546: END IF; -- return_status

Line 662: from fun_interface_headers trxH,

658: End Loop;
659: -- Bug: 7695801
660: select trxh.to_ledger_id
661: into l_to_ledger_id
662: from fun_interface_headers trxH,
663: fun_interface_dist_lines dist
664: where dist.trx_id = trxH.trx_id
665: and dist.dist_id = l_dist_lines_rec_type.dist_id;
666: