DBA Data[Home] [Help]

APPS.PO_PALT_ASSIGNMENTS dependencies on PO_WF_DEBUG_PKG

Line 593: po_wf_debug_pkg.Insert_debug(itemtype,itemkey, l_progress );

589: x_assignment_no NUMBER;
590: BEGIN
591:
592: l_progress := 'PO_PALT_ASSIGNMENTS.create_auto_assignment_for_par Start';
593: po_wf_debug_pkg.Insert_debug(itemtype,itemkey, l_progress );
594:
595: l_par_draft_id := po_wf_util_pkg.GetItemAttrNumber (itemtype => itemtype,
596: itemkey => itemkey,
597: aname => 'DRAFT_ID');

Line 618: po_wf_debug_pkg.Insert_debug(itemtype,itemkey, l_progress );

614: AND pohd.po_header_id = l_document_id;
615: END;
616:
617: l_progress := 'Auot assign flag ' || l_par_auto_assign_flag || ' Auto assign Role ' || l_par_auto_assign_role;
618: po_wf_debug_pkg.Insert_debug(itemtype,itemkey, l_progress );
619:
620: IF l_par_auto_assign_flag = 'Y' THEN
621: -- If auto assignmnet role exists on set up page, but not on Award, then by defalut assign it to buyer.
622: IF l_par_auto_assign_role = 'AWARD_ADMINISTRATOR' THEN

Line 654: po_wf_debug_pkg.Insert_debug(itemtype,itemkey, l_progress );

650: x_assignment_no := NULL;
651: autonomous_create_par_assign(l_par_req_header_id, l_assignment_buyer_id, l_par_draft_id, x_assignment_no);
652:
653: l_progress := 'Assignment no '|| x_assignment_no || ' is created for req header id ' || l_par_req_header_id || ' with suggested buyer id ' || l_assignment_buyer_id;
654: po_wf_debug_pkg.Insert_debug(itemtype,itemkey, l_progress );
655:
656: -- Launch notification for assignmnet
657: po_palt_assignment_wf.launch_notify_buyer_wf(x_assignment_no);
658:

Line 664: po_wf_debug_pkg.Insert_debug(itemtype,itemkey, l_progress );

660:
661: resultout := wf_engine.eng_completed;
662:
663: l_progress := 'PO_PALT_ASSIGNMENTS.create_auto_assignment_for_par End';
664: po_wf_debug_pkg.Insert_debug(itemtype,itemkey, l_progress );
665:
666: END create_auto_assignment_for_par;
667:
668: END PO_PALT_ASSIGNMENTS;