DBA Data[Home] [Help]

APPS.PON_AUCTION_CREATE_PO_PKG dependencies on PO_DOCUMENT_TYPES

Line 4908: /* Need to get item_type and workflow process from po_document_types.

4904: x_doc_type := 'PO';
4905: x_doc_subtype := 'STANDARD';
4906: end if;
4907:
4908: /* Need to get item_type and workflow process from po_document_types.
4909: * They may be different based on the doc/org.
4910: */
4911:
4912: select wf_approval_itemtype,

Line 4916: from po_document_types

4912: select wf_approval_itemtype,
4913: wf_approval_process
4914: into x_ItemType,
4915: x_workflow_process
4916: from po_document_types
4917: where document_type_code = x_doc_type
4918: and document_subtype = x_doc_subtype;
4919:
4920: x_progress := '20: launch_po_approval: x_doc_type: ' || x_doc_type || ', ' ||