DBA Data[Home] [Help]

APPS.PON_AUCTION_CREATE_PO_PKG dependencies on PO_DOCUMENT_TYPES

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

3922: x_doc_type := 'PO';
3923: x_doc_subtype := 'STANDARD';
3924: end if;
3925:
3926: /* Need to get item_type and workflow process from po_document_types.
3927: * They may be different based on the doc/org.
3928: */
3929:
3930: select wf_approval_itemtype,

Line 3934: from po_document_types

3930: select wf_approval_itemtype,
3931: wf_approval_process
3932: into x_ItemType,
3933: x_workflow_process
3934: from po_document_types
3935: where document_type_code = x_doc_type
3936: and document_subtype = x_doc_subtype;
3937:
3938: x_progress := '20: launch_po_approval: x_doc_type: ' || x_doc_type || ', ' ||