DBA Data[Home] [Help]

APPS.PO_AME_WF_PVT dependencies on PO_SIGNATURE_PVT

Line 6086: -- If yes process document in same way as it is doen PO_SIGNATURE_PVT.POST_SIGNATURE, UPDATE_PO_DETAILS

6082: p_line_location_id => NULL);
6083:
6084: l_progress := '003';
6085: -- Check whether supplier accpetance was recorded in case document was signed by supplier.
6086: -- If yes process document in same way as it is doen PO_SIGNATURE_PVT.POST_SIGNATURE, UPDATE_PO_DETAILS
6087: BEGIN
6088: SELECT max(action_date)
6089: INTO l_acceptance_date
6090: FROM PO_ACCEPTANCES

Line 6114: PO_SIGNATURE_PVT.find_item_key(

6110: RAISE l_binding_exception;
6111: END IF;
6112:
6113: l_progress := '005';
6114: PO_SIGNATURE_PVT.find_item_key(
6115: p_po_header_id => l_document_id,
6116: p_revision_num => l_revision_num,
6117: p_document_type => l_document_type,
6118: x_itemkey => l_itemkey,

Line 6122: PO_SIGNATURE_PVT.abort_doc_sign_process(

6118: x_itemkey => l_itemkey,
6119: x_result => l_return_status);
6120:
6121: IF l_return_status = 'S' AND l_itemkey IS NOT NULL THEN
6122: PO_SIGNATURE_PVT.abort_doc_sign_process(
6123: p_itemkey => l_itemkey,
6124: x_result => l_return_status);
6125: ELSIF l_return_status = 'E' THEN
6126: x_error_msg := 'PO_MANY_SIGN_PROCESSES';

Line 6198: -- + Call PO_SIGNATURE_PVT.Complete_Block_Activities to complete block activity in PO Approval workflow

6194:
6195: BEGIN
6196:
6197: -- Logic :
6198: -- + Call PO_SIGNATURE_PVT.Complete_Block_Activities to complete block activity in PO Approval workflow
6199: -- after supplier siganture part is done.
6200:
6201: IF (g_po_wf_debug = 'Y') THEN
6202: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey, l_log_head || ' 001');

Line 6217: PO_SIGNATURE_PVT.Complete_Block_Activities(p_itemkey => l_po_itemkey,

6213: FROM po_headers_all poh
6214: WHERE poh.po_header_id = l_document_id;
6215:
6216: -- Completes the Blocked Activities in the PO Approval process
6217: PO_SIGNATURE_PVT.Complete_Block_Activities(p_itemkey => l_po_itemkey,
6218: p_status => 'Y',
6219: x_result => l_result);
6220:
6221: IF (g_po_wf_debug = 'Y') THEN