DBA Data[Home] [Help]

APPS.CSI_INV_TXNSTUB_PKG dependencies on CSI_WIP_TRXS_PKG

Line 624: csi_wip_trxs_pkg.wip_comp_issue(

620:
621: l_trx_error_rec.transaction_type_id := 71;
622: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');
623:
624: csi_wip_trxs_pkg.wip_comp_issue(
625: p_transaction_id => p_transaction_id,
626: p_message_id => NULL,
627: x_return_status => l_return_status,
628: px_trx_error_rec => l_trx_error_rec);

Line 641: csi_wip_trxs_pkg.wip_neg_comp_return(

637:
638: l_trx_error_rec.transaction_type_id := 71;
639: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');
640:
641: csi_wip_trxs_pkg.wip_neg_comp_return(
642: p_transaction_id => p_transaction_id,
643: p_message_id => NULL,
644: x_return_status => l_return_status,
645: px_trx_error_rec => l_trx_error_rec);

Line 658: csi_wip_trxs_pkg.wip_assy_return(

654:
655: l_trx_error_rec.transaction_type_id := 74;
656: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_RETURN','INV');
657:
658: csi_wip_trxs_pkg.wip_assy_return(
659: p_transaction_id => p_transaction_id,
660: p_message_id => NULL,
661: x_return_status => l_return_status,
662: px_trx_error_rec => l_trx_error_rec);

Line 676: csi_wip_trxs_pkg.wip_byproduct_return(

672:
673: l_trx_error_rec.transaction_type_id := 76;
674: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_RETURN','INV');
675:
676: csi_wip_trxs_pkg.wip_byproduct_return(
677: p_transaction_id => p_transaction_id,
678: p_message_id => NULL,
679: x_return_status => l_return_status,
680: px_trx_error_rec => l_trx_error_rec);

Line 693: csi_wip_trxs_pkg.wip_comp_receipt (

689: ELSIF ( p_transaction_type = 'CSIWIPCR' OR
690: p_transaction_type = 'CSIWIPNI' ) THEN
691: l_trx_error_rec.transaction_type_id := 72;
692: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_RECEIPT','INV');
693: csi_wip_trxs_pkg.wip_comp_receipt (
694: p_transaction_id => p_transaction_id,
695: p_message_id => NULL,
696: x_return_status => l_return_status,
697: px_trx_error_rec => l_trx_error_rec);

Line 709: csi_wip_trxs_pkg.wip_assy_completion(

705: ELSIF p_transaction_type = 'CSIWIPAC' THEN
706: debug('Before Transaction If for: '||p_transaction_type);
707: l_trx_error_rec.transaction_type_id := 73;
708: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_COMPLETION','INV');
709: csi_wip_trxs_pkg.wip_assy_completion(
710: p_transaction_id => p_transaction_id,
711: p_message_id => null,
712: x_return_status => l_return_status,
713: px_trx_error_rec => l_trx_error_rec);

Line 726: csi_wip_trxs_pkg.wip_byproduct_completion(

722: ELSIF p_transaction_type = 'CSIWIPBC' THEN --WIP By Product Completion
723: debug('Before Transaction If for: '||p_transaction_type);
724: l_trx_error_rec.transaction_type_id := 75;
725: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_COMPLETION ','INV');
726: csi_wip_trxs_pkg.wip_byproduct_completion(
727: p_transaction_id => p_transaction_id,
728: p_message_id => null,
729: x_return_status => l_return_status,
730: px_trx_error_rec => l_trx_error_rec);