DBA Data[Home] [Help]

APPS.CSI_INV_TXNSTUB_PKG dependencies on CSI_WIP_TRXS_PKG

Line 647: csi_wip_trxs_pkg.wip_comp_issue(

643:
644: l_trx_error_rec.transaction_type_id := 71;
645: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');
646:
647: csi_wip_trxs_pkg.wip_comp_issue(
648: p_transaction_id => p_transaction_id,
649: p_message_id => NULL,
650: x_return_status => l_return_status,
651: px_trx_error_rec => l_trx_error_rec);

Line 664: csi_wip_trxs_pkg.wip_neg_comp_return(

660:
661: l_trx_error_rec.transaction_type_id := 71;
662: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');
663:
664: csi_wip_trxs_pkg.wip_neg_comp_return(
665: p_transaction_id => p_transaction_id,
666: p_message_id => NULL,
667: x_return_status => l_return_status,
668: px_trx_error_rec => l_trx_error_rec);

Line 681: csi_wip_trxs_pkg.wip_assy_return(

677:
678: l_trx_error_rec.transaction_type_id := 74;
679: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_RETURN','INV');
680:
681: csi_wip_trxs_pkg.wip_assy_return(
682: p_transaction_id => p_transaction_id,
683: p_message_id => NULL,
684: x_return_status => l_return_status,
685: px_trx_error_rec => l_trx_error_rec);

Line 699: csi_wip_trxs_pkg.wip_byproduct_return(

695:
696: l_trx_error_rec.transaction_type_id := 76;
697: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_RETURN','INV');
698:
699: csi_wip_trxs_pkg.wip_byproduct_return(
700: p_transaction_id => p_transaction_id,
701: p_message_id => NULL,
702: x_return_status => l_return_status,
703: px_trx_error_rec => l_trx_error_rec);

Line 716: csi_wip_trxs_pkg.wip_comp_receipt (

712: ELSIF ( p_transaction_type = 'CSIWIPCR' OR
713: p_transaction_type = 'CSIWIPNI' ) THEN
714: l_trx_error_rec.transaction_type_id := 72;
715: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_RECEIPT','INV');
716: csi_wip_trxs_pkg.wip_comp_receipt (
717: p_transaction_id => p_transaction_id,
718: p_message_id => NULL,
719: x_return_status => l_return_status,
720: px_trx_error_rec => l_trx_error_rec);

Line 732: csi_wip_trxs_pkg.wip_assy_completion(

728: ELSIF p_transaction_type = 'CSIWIPAC' THEN
729: debug('Before Transaction If for: '||p_transaction_type);
730: l_trx_error_rec.transaction_type_id := 73;
731: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_COMPLETION','INV');
732: csi_wip_trxs_pkg.wip_assy_completion(
733: p_transaction_id => p_transaction_id,
734: p_message_id => null,
735: x_return_status => l_return_status,
736: px_trx_error_rec => l_trx_error_rec);

Line 749: csi_wip_trxs_pkg.wip_byproduct_completion(

745: ELSIF p_transaction_type = 'CSIWIPBC' THEN --WIP By Product Completion
746: debug('Before Transaction If for: '||p_transaction_type);
747: l_trx_error_rec.transaction_type_id := 75;
748: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_COMPLETION ','INV');
749: csi_wip_trxs_pkg.wip_byproduct_completion(
750: p_transaction_id => p_transaction_id,
751: p_message_id => null,
752: x_return_status => l_return_status,
753: px_trx_error_rec => l_trx_error_rec);