DBA Data[Home] [Help]

APPS.PO_CHORD_WF4 dependencies on PO_WF_DEBUG_PKG

Line 18: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

14: x_dist_parameters t_dist_parameters_type;
15: BEGIN
16:
17: IF (g_po_wf_debug = 'Y') THEN
18: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
19: '*** In Procedure: chord_dist ***' );
20: END IF;
21:
22: IF funcmode <> 'RUN' THEN

Line 34: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

30:
31: set_wf_dist_control(itemtype, itemkey, x_dist_control);
32:
33: IF (g_po_wf_debug = 'Y') THEN
34: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
35: '*** Finish: chord_dist ***' );
36: END IF;
37:
38: result := wf_engine.eng_completed || ':' || 'ACTIVITY_PERFORMED';

Line 63: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

59: l_min_acct_unit VARCHAR2(15);
60: l_precision VARCHAR2(15);
61: BEGIN
62: IF (g_po_wf_debug = 'Y') THEN
63: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
64: '*** In procedure: check_dist_change ***' );
65: END IF;
66:
67: x_dist_control.distribution_num := 'N';

Line 640: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

636:
637: --debug_dist_control(itemtype, itemkey, x_dist_control);
638:
639: IF (g_po_wf_debug = 'Y') THEN
640: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
641: '*** Finish: check_dist_change ***' );
642: END IF;
643:
644: EXCEPTION

Line 647: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

643:
644: EXCEPTION
645: WHEN e_invalid_setup THEN
646: IF (g_po_wf_debug = 'Y') THEN
647: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
648: '*** exception check_dist_change ***');
649: END IF;
650: wf_core.context('POAPPRV', 'set_wf_dist_control', 'e_invalid_setup');
651: raise;

Line 655: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

651: raise;
652:
653: WHEN others THEN
654: IF (g_po_wf_debug = 'Y') THEN
655: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
656: '*** exeption: check_dist_change ***');
657: END IF;
658: wf_core.context('POAPPRV', 'set_wf_dist_control', 'others');
659: raise;

Line 669: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

665: x_dist_control IN t_dist_control_type)
666: IS
667: BEGIN
668: IF (g_po_wf_debug = 'Y') THEN
669: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
670: '*** In Procedure:set_wf_dist_control ***' );
671: END IF;
672:
673: wf_engine.SetItemAttrText(itemtype,

Line 726: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

722: 'CO_D_AMOUNT_ORDERED_CHANGE',
723: x_dist_control.amount_ordered_change); --
724:
725: IF (g_po_wf_debug = 'Y') THEN
726: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
727: '*** Finish:set_wf_dist_control ***' );
728: END IF;
729: EXCEPTION
730: WHEN others THEN

Line 732: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

728: END IF;
729: EXCEPTION
730: WHEN others THEN
731: IF (g_po_wf_debug = 'Y') THEN
732: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
733: '*** exeption: set_wf_dist_control ***');
734: END IF;
735: wf_core.context('POAPPRV', 'set_wf_dist_control', 'others');
736: raise;

Line 747: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

743: x_dist_control IN OUT NOCOPY t_dist_control_type)
744: IS
745: BEGIN
746: IF (g_po_wf_debug = 'Y') THEN
747: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
748: '*** In Procedure :get_wf_dist_control ***' );
749: END IF;
750:
751: x_dist_control.distribution_num:=

Line 799: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

795:
796: debug_dist_control(itemtype, itemkey, x_dist_control);
797:
798: IF (g_po_wf_debug = 'Y') THEN
799: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
800: '*** Finished: get_wf_dist_control ***' );
801: END IF;
802:
803: END;

Line 813: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

809: x_doc_type VARCHAR2(25);
810: e_invalid_doc_type EXCEPTION;
811: BEGIN
812: IF (g_po_wf_debug = 'Y') THEN
813: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
814: '*** In procedure get_wf_dist_parameters ***');
815: END IF;
816:
817: x_doc_type := wf_engine.GetItemAttrText (itemtype,

Line 845: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

841:
842: END IF;
843:
844: IF (g_po_wf_debug = 'Y') THEN
845: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
846: 'po_header_id = ' || to_char(x_dist_parameters.po_header_id));
847: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
848: 'po_release_id = '|| to_char(x_dist_parameters.po_release_id));
849: END IF;

Line 847: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

843:
844: IF (g_po_wf_debug = 'Y') THEN
845: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
846: 'po_header_id = ' || to_char(x_dist_parameters.po_header_id));
847: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
848: 'po_release_id = '|| to_char(x_dist_parameters.po_release_id));
849: END IF;
850:
851: IF (g_po_wf_debug = 'Y') THEN

Line 852: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

848: 'po_release_id = '|| to_char(x_dist_parameters.po_release_id));
849: END IF;
850:
851: IF (g_po_wf_debug = 'Y') THEN
852: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
853: '*** FINISH: get_wf_dist_parameters ***');
854: END IF;
855:
856: EXCEPTION

Line 859: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

855:
856: EXCEPTION
857: WHEN e_invalid_doc_type THEN
858: IF (g_po_wf_debug = 'Y') THEN
859: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
860: '***set_wf_dist_parameters exception e_invalid_setup *** ');
861: END IF;
862: wf_core.context('POAPPRV', 'set_wf_dist_control', 'e_invalid_setup');
863: raise;

Line 867: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

863: raise;
864:
865: WHEN OTHERS THEN
866: IF (g_po_wf_debug = 'Y') THEN
867: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
868: '***set_wf_dist_parameters exception *** ');
869: END IF;
870: wf_core.context('POAPPRV', 'set_wf_dist_control', 'others');
871: raise;

Line 885: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

881: x_dist_control IN t_dist_control_type)
882: IS
883: BEGIN
884: IF (g_po_wf_debug = 'Y') THEN
885: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
886: '*** In Procedure: debug_dist_control ***' );
887: END IF;
888:
889: IF (g_po_wf_debug = 'Y') THEN

Line 890: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

886: '*** In Procedure: debug_dist_control ***' );
887: END IF;
888:
889: IF (g_po_wf_debug = 'Y') THEN
890: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
891: 'distribution_num : '|| x_dist_control.distribution_num);
892: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
893: 'deliver_to_person_id : '|| x_dist_control.deliver_to_person_id);
894: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

Line 892: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

888:
889: IF (g_po_wf_debug = 'Y') THEN
890: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
891: 'distribution_num : '|| x_dist_control.distribution_num);
892: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
893: 'deliver_to_person_id : '|| x_dist_control.deliver_to_person_id);
894: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
895: 'rate_date : '|| x_dist_control.rate_date);
896: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

Line 894: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

890: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
891: 'distribution_num : '|| x_dist_control.distribution_num);
892: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
893: 'deliver_to_person_id : '|| x_dist_control.deliver_to_person_id);
894: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
895: 'rate_date : '|| x_dist_control.rate_date);
896: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
897: 'gl_encumbered_date : '|| x_dist_control.gl_encumbered_date);
898: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

Line 896: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

892: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
893: 'deliver_to_person_id : '|| x_dist_control.deliver_to_person_id);
894: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
895: 'rate_date : '|| x_dist_control.rate_date);
896: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
897: 'gl_encumbered_date : '|| x_dist_control.gl_encumbered_date);
898: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
899: 'code_combination_id : '|| x_dist_control.code_combination_id);
900: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

Line 898: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

894: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
895: 'rate_date : '|| x_dist_control.rate_date);
896: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
897: 'gl_encumbered_date : '|| x_dist_control.gl_encumbered_date);
898: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
899: 'code_combination_id : '|| x_dist_control.code_combination_id);
900: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
901: 'destination_subinventory : '|| x_dist_control.destination_subinventory);
902: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

Line 900: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

896: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
897: 'gl_encumbered_date : '|| x_dist_control.gl_encumbered_date);
898: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
899: 'code_combination_id : '|| x_dist_control.code_combination_id);
900: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
901: 'destination_subinventory : '|| x_dist_control.destination_subinventory);
902: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
903: 'quantity_ordered_change : '|| to_char(x_dist_control.quantity_ordered_change));
904: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

Line 902: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

898: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
899: 'code_combination_id : '|| x_dist_control.code_combination_id);
900: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
901: 'destination_subinventory : '|| x_dist_control.destination_subinventory);
902: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
903: 'quantity_ordered_change : '|| to_char(x_dist_control.quantity_ordered_change));
904: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
905: 'amount_ordered_change : '|| to_char(x_dist_control.amount_ordered_change)); --
906: END IF;

Line 904: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,

900: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
901: 'destination_subinventory : '|| x_dist_control.destination_subinventory);
902: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
903: 'quantity_ordered_change : '|| to_char(x_dist_control.quantity_ordered_change));
904: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey,
905: 'amount_ordered_change : '|| to_char(x_dist_control.amount_ordered_change)); --
906: END IF;
907:
908: IF (g_po_wf_debug = 'Y') THEN

Line 909: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,

905: 'amount_ordered_change : '|| to_char(x_dist_control.amount_ordered_change)); --
906: END IF;
907:
908: IF (g_po_wf_debug = 'Y') THEN
909: PO_WF_DEBUG_PKG.INSERT_DEBUG(ITEMTYPE, ITEMKEY,
910: '*** Finished: debug_dist_control **' );
911: END IF;
912:
913: END;