DBA Data[Home] [Help]

APPS.PO_POAPPROVAL_INIT1 dependencies on PO_WF_UTIL_PKG

Line 225: po_wf_util_pkg.SetItemAttrText ( itemtype => itemtype,

221: l_is_new_document := 'N'; --
222: END IF;
223:
224: --
225: po_wf_util_pkg.SetItemAttrText ( itemtype => itemtype,
226: itemkey => itemkey,
227: aname => 'IS_NEW_DOCUMENT',
228: avalue => l_is_new_document );
229:

Line 1474: l_document_type := po_wf_util_pkg.GetItemAttrText (

1470: resultout := wf_engine.eng_null;
1471: return;
1472: end if;
1473:
1474: l_document_type := po_wf_util_pkg.GetItemAttrText (
1475: itemtype => itemtype,
1476: itemkey => itemkey,
1477: aname => 'DOCUMENT_TYPE');
1478:

Line 1479: l_document_subtype := po_wf_util_pkg.GetItemAttrText (

1475: itemtype => itemtype,
1476: itemkey => itemkey,
1477: aname => 'DOCUMENT_TYPE');
1478:
1479: l_document_subtype := po_wf_util_pkg.GetItemAttrText (
1480: itemtype => itemtype,
1481: itemkey => itemkey,
1482: aname => 'DOCUMENT_SUBTYPE');
1483:

Line 1495: l_document_id := po_wf_util_pkg.GetItemAttrNumber (

1491: IF (l_document_type = 'PO') AND (l_document_subtype = 'STANDARD') THEN
1492:
1493: l_progress := '010';
1494:
1495: l_document_id := po_wf_util_pkg.GetItemAttrNumber (
1496: itemtype => itemtype,
1497: itemkey => itemkey,
1498: aname => 'DOCUMENT_ID' );
1499:

Line 1500: l_is_new_document := po_wf_util_pkg.GetItemAttrText (

1496: itemtype => itemtype,
1497: itemkey => itemkey,
1498: aname => 'DOCUMENT_ID' );
1499:
1500: l_is_new_document := po_wf_util_pkg.GetItemAttrText (
1501: itemtype => itemtype,
1502: itemkey => itemkey,
1503: aname => 'IS_NEW_DOCUMENT');
1504:

Line 1505: l_approver_user_name := po_wf_util_pkg.GetItemAttrText (

1501: itemtype => itemtype,
1502: itemkey => itemkey,
1503: aname => 'IS_NEW_DOCUMENT');
1504:
1505: l_approver_user_name := po_wf_util_pkg.GetItemAttrText (
1506: itemtype => itemtype,
1507: itemkey => itemkey,
1508: aname => 'APPROVER_USER_NAME');
1509:

Line 1638: po_wf_util_pkg.SetItemAttrNumber (itemtype => p_item_type,

1634:
1635: l_progress := '020';
1636:
1637: -- Set some workflow item attributes.
1638: po_wf_util_pkg.SetItemAttrNumber (itemtype => p_item_type,
1639: itemkey => p_item_key,
1640: aname => 'PO_LINE_ID',
1641: avalue => p_po_line_id);
1642:

Line 1643: po_wf_util_pkg.SetItemAttrNumber (itemtype => p_item_type,

1639: itemkey => p_item_key,
1640: aname => 'PO_LINE_ID',
1641: avalue => p_po_line_id);
1642:
1643: po_wf_util_pkg.SetItemAttrNumber (itemtype => p_item_type,
1644: itemkey => p_item_key,
1645: aname => 'REQUESTER_ID',
1646: avalue => p_requester_id);
1647:

Line 1648: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,

1644: itemkey => p_item_key,
1645: aname => 'REQUESTER_ID',
1646: avalue => p_requester_id);
1647:
1648: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,
1649: ItemKey => p_item_key,
1650: aname => 'REQUESTER_USER_NAME',
1651: avalue => l_requester_user_name );
1652:

Line 1653: po_wf_util_pkg.SetItemAttrText (itemtype => p_item_type,

1649: ItemKey => p_item_key,
1650: aname => 'REQUESTER_USER_NAME',
1651: avalue => l_requester_user_name );
1652:
1653: po_wf_util_pkg.SetItemAttrText (itemtype => p_item_type,
1654: itemkey => p_item_key,
1655: aname => 'CONTRACTOR_OR_JOB',
1656: avalue => p_contractor_or_job);
1657:

Line 1658: po_wf_util_pkg.SetItemAttrText (itemtype => p_item_type,

1654: itemkey => p_item_key,
1655: aname => 'CONTRACTOR_OR_JOB',
1656: avalue => p_contractor_or_job);
1657:
1658: po_wf_util_pkg.SetItemAttrText (itemtype => p_item_type,
1659: itemkey => p_item_key,
1660: aname => 'APPROVER_USER_NAME',
1661: avalue => p_approver_user_name);
1662:

Line 1684: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,

1680: AND POL.po_header_id = POH.po_header_id -- JOIN
1681: AND POL.po_line_id = PLL.po_line_id -- JOIN
1682: AND PLL.line_location_id = PRL.line_location_id (+); -- JOIN
1683:
1684: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,
1685: ItemKey => p_item_key,
1686: aname => 'DOCUMENT_NUMBER',
1687: avalue => l_document_number );
1688:

Line 1690: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,

1686: aname => 'DOCUMENT_NUMBER',
1687: avalue => l_document_number );
1688:
1689: -- Show the 'View Purchase Order' link.
1690: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,
1691: ItemKey => p_item_key,
1692: aname => 'VIEW_PO_URL',
1693: avalue =>
1694: 'OA.jsp?OAFunc=POS_VIEW_ORDER&PoHeaderId='||l_po_header_id );

Line 1699: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,

1695:
1696: -- Show the 'View Requisition' link if there is a backing requisition.
1697: IF (l_req_header_id IS NOT NULL) THEN
1698:
1699: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,
1700: ItemKey => p_item_key,
1701: aname => 'VIEW_REQ_URL',
1702: avalue =>
1703: 'OA.jsp?OAFunc=ICX_POR_LAUNCH_IP&porMode=viewReq'

Line 1714: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,

1710: HR_PO_INFO.get_url_place_cwk ( p_po_line_id => p_po_line_id,
1711: p_destination => l_create_cwk_url );
1712:
1713: IF (l_create_cwk_url IS NOT NULL) THEN
1714: po_wf_util_pkg.SetItemAttrText ( ItemType => p_item_type,
1715: ItemKey => p_item_key,
1716: aname => 'CREATE_CWK_ASSIGNMENT_URL',
1717: avalue => l_create_cwk_url );
1718: END IF;