DBA Data[Home] [Help]

APPS.OKE_DTS_INTEGRATION_PKG dependencies on WF_ENGINE

Line 1768: l_deliverable_id := WF_ENGINE.GetItemAttrNumber

1764: BEGIN
1765:
1766: IF ( FuncMode = 'RUN' ) THEN
1767:
1768: l_deliverable_id := WF_ENGINE.GetItemAttrNumber
1769: ( itemtype => ItemType
1770: , ItemKey => ItemKey
1771: , AName => 'DELIVERABLE_ID' );
1772:

Line 1773: l_action := WF_ENGINE.GetItemAttrText

1769: ( itemtype => ItemType
1770: , ItemKey => ItemKey
1771: , AName => 'DELIVERABLE_ID' );
1772:
1773: l_action := WF_ENGINE.GetItemAttrText
1774: ( itemtype => ItemType
1775: , ItemKey => ItemKey
1776: , AName => 'ACTION' );
1777:

Line 1788: WF_ENGINE.SetItemAttrText

1784: --bug 7390122 added l_description for fetching description
1785: FETCH c_common INTO l_k_number, l_doc_type, l_line_number, l_deliverable_num,l_description,l_org_id;
1786: CLOSE c_common;
1787:
1788: WF_ENGINE.SetItemAttrText
1789: ( ItemType => ItemType
1790: , ItemKey => ItemKey
1791: , AName => 'DOC_TYPE'
1792: , AValue => l_doc_type );

Line 1794: WF_ENGINE.SetItemAttrText

1790: , ItemKey => ItemKey
1791: , AName => 'DOC_TYPE'
1792: , AValue => l_doc_type );
1793:
1794: WF_ENGINE.SetItemAttrText
1795: ( ItemType => ItemType
1796: , ItemKey => ItemKey
1797: , AName => 'K_NUMBER'
1798: , AValue => l_k_number );

Line 1800: WF_ENGINE.SetItemAttrText

1796: , ItemKey => ItemKey
1797: , AName => 'K_NUMBER'
1798: , AValue => l_k_number );
1799:
1800: WF_ENGINE.SetItemAttrText
1801: ( ItemType => ItemType
1802: , ItemKey => ItemKey
1803: , AName => 'DELIVERABLE_NUM'
1804: , AValue => l_deliverable_num );

Line 1807: WF_ENGINE.SetItemAttrText

1803: , AName => 'DELIVERABLE_NUM'
1804: , AValue => l_deliverable_num );
1805:
1806: --bug 7390122 added function for setting description
1807: WF_ENGINE.SetItemAttrText
1808: ( ItemType => ItemType
1809: , ItemKey => ItemKey
1810: , AName => 'DESCRIPTION'
1811: , AValue => l_description );

Line 1813: WF_ENGINE.SetItemAttrText

1809: , ItemKey => ItemKey
1810: , AName => 'DESCRIPTION'
1811: , AValue => l_description );
1812:
1813: WF_ENGINE.SetItemAttrText
1814: ( ItemType => ItemType
1815: , ItemKey => ItemKey
1816: , AName => 'LINE_NUMBER'
1817: , AValue => l_line_number );

Line 1819: WF_ENGINE.SetItemAttrNUMBER

1815: , ItemKey => ItemKey
1816: , AName => 'LINE_NUMBER'
1817: , AValue => l_line_number );
1818:
1819: WF_ENGINE.SetItemAttrNUMBER
1820: ( ItemType => ItemType
1821: , ItemKey => ItemKey
1822: , AName => 'ORG_ID'
1823: , AValue => l_org_id );

Line 1835: WF_ENGINE.SetItemAttrText

1831: OPEN c_req(l_deliverable_id);
1832: FETCH c_req INTO l_destination_type, l_expenditure_type, l_expenditure_item_date, l_expenditure_org, l_need_by_date;
1833: CLOSE c_req;
1834:
1835: WF_ENGINE.SetItemAttrText
1836: ( ItemType => ItemType
1837: , ItemKey => ItemKey
1838: , AName => 'DESTINATION_TYPE'
1839: , AValue => l_destination_type );

Line 1841: WF_ENGINE.SetItemAttrText

1837: , ItemKey => ItemKey
1838: , AName => 'DESTINATION_TYPE'
1839: , AValue => l_destination_type );
1840:
1841: WF_ENGINE.SetItemAttrText
1842: ( ItemType => ItemType
1843: , ItemKey => ItemKey
1844: , AName => 'EXPENDITURE_TYPE'
1845: , AValue => l_expenditure_type );

Line 1847: WF_ENGINE.SetItemAttrText

1843: , ItemKey => ItemKey
1844: , AName => 'EXPENDITURE_TYPE'
1845: , AValue => l_expenditure_type );
1846:
1847: WF_ENGINE.SetItemAttrText
1848: ( ItemType => ItemType
1849: , ItemKey => ItemKey
1850: , AName => 'EXPENDITURE_ORG'
1851: , AValue => l_expenditure_org );

Line 1853: WF_ENGINE.SetItemAttrDate

1849: , ItemKey => ItemKey
1850: , AName => 'EXPENDITURE_ORG'
1851: , AValue => l_expenditure_org );
1852:
1853: WF_ENGINE.SetItemAttrDate
1854: ( ItemType => ItemType
1855: , ItemKey => ItemKey
1856: , AName => 'EXPENDITURE_ITEM_DATE'
1857: , AValue => l_expenditure_item_date );

Line 1859: WF_ENGINE.SetItemAttrDate

1855: , ItemKey => ItemKey
1856: , AName => 'EXPENDITURE_ITEM_DATE'
1857: , AValue => l_expenditure_item_date );
1858:
1859: WF_ENGINE.SetItemAttrDate
1860: ( ItemType => ItemType
1861: , ItemKey => ItemKey
1862: , AName => 'SCHEDULE_DATE'
1863: , AValue => l_need_by_date );

Line 1875: WF_ENGINE.SetItemAttrText

1871: OPEN c_ship(l_deliverable_id);
1872: FETCH c_ship INTO l_ship_from_location_id, l_ship_from_location;
1873: CLOSE c_ship;
1874:
1875: WF_ENGINE.SetItemAttrText
1876: ( ItemType => ItemType
1877: , ItemKey => ItemKey
1878: , AName => 'SHIP_FROM_LOCATION'
1879: , AValue => l_ship_from_location );

Line 1901: WF_ENGINE.SetItemAttrText

1897:
1898: EXCEPTION
1899: WHEN OTHERS THEN
1900: ResultOut := 'ERROR:';
1901: WF_ENGINE.SetItemAttrText
1902: ( ItemType => ItemType
1903: , ItemKey => ItemKey
1904: , AName => 'ERRORTEXT'
1905: , AValue => sqlerrm );

Line 1945: l_api_version := WF_ENGINE.GetItemAttrNumber

1941: BEGIN
1942:
1943: IF ( FuncMode = 'RUN' ) THEN
1944:
1945: l_api_version := WF_ENGINE.GetItemAttrNumber
1946: ( itemtype => ItemType
1947: , ItemKey => ItemKey
1948: , AName => 'API_VERSION' );
1949:

Line 1950: l_init_msg_list := WF_ENGINE.GetItemAttrText

1946: ( itemtype => ItemType
1947: , ItemKey => ItemKey
1948: , AName => 'API_VERSION' );
1949:
1950: l_init_msg_list := WF_ENGINE.GetItemAttrText
1951: ( itemtype => ItemType
1952: , ItemKey => ItemKey
1953: , AName => 'INIT_MSG_LIST' );
1954:

Line 1955: l_deliverable_id := WF_ENGINE.GetItemAttrNumber

1951: ( itemtype => ItemType
1952: , ItemKey => ItemKey
1953: , AName => 'INIT_MSG_LIST' );
1954:
1955: l_deliverable_id := WF_ENGINE.GetItemAttrNumber
1956: ( itemtype => ItemType
1957: , ItemKey => ItemKey
1958: , AName => 'DELIVERABLE_ID' );
1959:

Line 1960: l_action := WF_ENGINE.GetItemAttrText

1956: ( itemtype => ItemType
1957: , ItemKey => ItemKey
1958: , AName => 'DELIVERABLE_ID' );
1959:
1960: l_action := WF_ENGINE.GetItemAttrText
1961: ( itemtype => ItemType
1962: , ItemKey => ItemKey
1963: , AName => 'ACTION' );
1964:

Line 1965: l_requestor := WF_ENGINE.GetItemAttrText

1961: ( itemtype => ItemType
1962: , ItemKey => ItemKey
1963: , AName => 'ACTION' );
1964:
1965: l_requestor := WF_ENGINE.GetItemAttrText
1966: ( itemtype => ItemType
1967: , ItemKey => ItemKey
1968: , AName => 'REQUESTOR' );
1969:

Line 1970: l_charge_account := WF_ENGINE.GetItemAttrNumber

1966: ( itemtype => ItemType
1967: , ItemKey => ItemKey
1968: , AName => 'REQUESTOR' );
1969:
1970: l_charge_account := WF_ENGINE.GetItemAttrNumber
1971: ( itemtype => ItemType
1972: , ItemKey => ItemKey
1973: , AName => 'CHARGE_ACCOUNT' );
1974: FND_MSG_PUB.initialize;

Line 1990: WF_ENGINE.SetItemAttrNumber

1986: , l_charge_account
1987: , l_result
1988: , l_return_status);
1989:
1990: WF_ENGINE.SetItemAttrNumber
1991: ( ItemType => ItemType
1992: , ItemKey => ItemKey
1993: , AName => 'MSG_COUNT'
1994: , AValue => l_msg_count );

Line 1996: WF_ENGINE.SetItemAttrText

1992: , ItemKey => ItemKey
1993: , AName => 'MSG_COUNT'
1994: , AValue => l_msg_count );
1995:
1996: WF_ENGINE.SetItemAttrText
1997: ( ItemType => ItemType
1998: , ItemKey => ItemKey
1999: , AName => 'MSG_DATA'
2000: , AValue => l_msg_data );

Line 2003: WF_ENGINE.SetItemAttrNumber

1999: , AName => 'MSG_DATA'
2000: , AValue => l_msg_data );
2001:
2002: IF ( l_action = 'PLAN' ) THEN
2003: WF_ENGINE.SetItemAttrNumber
2004: ( ItemType => ItemType
2005: , ItemKey => ItemKey
2006: , AName => 'MPS_ID'
2007: , AValue => l_result );

Line 2009: WF_ENGINE.SetItemAttrNumber

2005: , ItemKey => ItemKey
2006: , AName => 'MPS_ID'
2007: , AValue => l_result );
2008: ELSIF ( l_action = 'SHIP' ) THEN
2009: WF_ENGINE.SetItemAttrNumber
2010: ( ItemType => ItemType
2011: , ItemKey => ItemKey
2012: , AName => 'DELIVERY_DETAIL_ID'
2013: , AValue => l_result );

Line 2015: WF_ENGINE.SetItemAttrNumber

2011: , ItemKey => ItemKey
2012: , AName => 'DELIVERY_DETAIL_ID'
2013: , AValue => l_result );
2014: ELSIF ( l_action = 'REQ' ) THEN
2015: WF_ENGINE.SetItemAttrNumber
2016: ( ItemType => ItemType
2017: , ItemKey => ItemKey
2018: , AName => 'BATCH_ID'
2019: , AValue => l_result );

Line 2022: WF_ENGINE.SetItemAttrText

2018: , AName => 'BATCH_ID'
2019: , AValue => l_result );
2020: END IF;
2021:
2022: WF_ENGINE.SetItemAttrText
2023: ( ItemType => ItemType
2024: , ItemKey => ItemKey
2025: , AName => 'RETURN_STATUS'
2026: , AValue => l_return_status );

Line 2045: WF_ENGINE.SetItemAttrText

2041: end if;
2042: end loop;
2043: end if;
2044:
2045: WF_ENGINE.SetItemAttrText
2046: ( ItemType => ItemType
2047: , ItemKey => ItemKey
2048: , AName => 'ERRORTEXT'
2049: , AValue => l_error_text );

Line 2073: WF_ENGINE.SetItemAttrText

2069:
2070: EXCEPTION
2071: WHEN OTHERS THEN
2072: ResultOut := 'ERROR:';
2073: WF_ENGINE.SetItemAttrText
2074: ( ItemType => ItemType
2075: , ItemKey => ItemKey
2076: , AName => 'ERRORTEXT'
2077: , AValue => sqlerrm );

Line 2108: l_item_id := WF_ENGINE.GetItemAttrNumber

2104: BEGIN
2105:
2106: IF ( FuncMode = 'RUN' ) THEN
2107:
2108: l_item_id := WF_ENGINE.GetItemAttrNumber
2109: ( itemtype => ItemType
2110: , ItemKey => ItemKey
2111: , AName => 'ITEM_ID' );
2112:

Line 2113: l_Org_id := WF_ENGINE.GetItemAttrNumber

2109: ( itemtype => ItemType
2110: , ItemKey => ItemKey
2111: , AName => 'ITEM_ID' );
2112:
2113: l_Org_id := WF_ENGINE.GetItemAttrNumber
2114: ( itemtype => ItemType
2115: , ItemKey => ItemKey
2116: , AName => 'ORGANIZATION_ID' );
2117:

Line 2123: WF_ENGINE.SetItemAttrNumber

2119:
2120:
2121: l_charge_account := OKE_DTS_INTEGRATION_PKG.CHARGE_ACCOUNT(L_Item_ID, L_Org_ID);
2122:
2123: WF_ENGINE.SetItemAttrNumber
2124: ( ItemType => ItemType
2125: , ItemKey => ItemKey
2126: , AName => 'CHARGE_ACCOUNT'
2127: , AValue => l_charge_account);

Line 2149: WF_ENGINE.SetItemAttrText

2145:
2146: EXCEPTION
2147: WHEN OTHERS THEN
2148: ResultOut := 'ERROR:';
2149: WF_ENGINE.SetItemAttrText
2150: ( ItemType => ItemType
2151: , ItemKey => ItemKey
2152: , AName => 'ERRORTEXT'
2153: , AValue => sqlerrm );

Line 2223: WF_Engine.CreateProcess

2219: P_Deliverable_ID || ':' ||
2220: to_char(sysdate , 'DDMONRRHH24MISS');
2221:
2222:
2223: WF_Engine.CreateProcess
2224: ( ItemType => L_WF_Item_Type
2225: , ItemKey => L_WF_Item_Key
2226: , Process => L_WF_Process);
2227:

Line 2228: WF_Engine.SetItemOwner

2224: ( ItemType => L_WF_Item_Type
2225: , ItemKey => L_WF_Item_Key
2226: , Process => L_WF_Process);
2227:
2228: WF_Engine.SetItemOwner
2229: ( ItemType => L_WF_Item_Type
2230: , ItemKey => L_WF_Item_Key
2231: , Owner => L_REQUESTOR);
2232:

Line 2233: WF_Engine.SetItemUserKey

2229: ( ItemType => L_WF_Item_Type
2230: , ItemKey => L_WF_Item_Key
2231: , Owner => L_REQUESTOR);
2232:
2233: WF_Engine.SetItemUserKey
2234: ( ItemType => L_WF_Item_Type
2235: , ItemKey => L_WF_Item_Key
2236: , UserKey => L_WF_User_Key);
2237:

Line 2242: WF_ENGINE.SetItemAttrText

2238: --
2239: -- Setting various Workflow Item Attributes
2240: --
2241:
2242: WF_ENGINE.SetItemAttrText
2243: ( ItemType => L_WF_Item_Type
2244: , ItemKey => L_WF_Item_Key
2245: , AName => 'ACTION'
2246: , AValue => P_ACTION );

Line 2248: WF_ENGINE.SetItemAttrNumber

2244: , ItemKey => L_WF_Item_Key
2245: , AName => 'ACTION'
2246: , AValue => P_ACTION );
2247:
2248: WF_ENGINE.SetItemAttrNumber
2249: ( ItemType => L_WF_Item_Type
2250: , ItemKey => L_WF_Item_Key
2251: , AName => 'API_VERSION'
2252: , AValue => P_API_VERSION );

Line 2254: WF_ENGINE.SetItemAttrText

2250: , ItemKey => L_WF_Item_Key
2251: , AName => 'API_VERSION'
2252: , AValue => P_API_VERSION );
2253:
2254: WF_ENGINE.SetItemAttrText
2255: ( ItemType => L_WF_Item_Type
2256: , ItemKey => L_WF_Item_Key
2257: , AName => 'COUNTRY_OF_ORIGIN_CODE'
2258: , AValue => P_COUNTRY_OF_ORIGIN_CODE );

Line 2260: WF_ENGINE.SetItemAttrText

2256: , ItemKey => L_WF_Item_Key
2257: , AName => 'COUNTRY_OF_ORIGIN_CODE'
2258: , AValue => P_COUNTRY_OF_ORIGIN_CODE );
2259:
2260: WF_ENGINE.SetItemAttrText
2261: ( ItemType => L_WF_Item_Type
2262: , ItemKey => L_WF_Item_Key
2263: , AName => 'CURRENCY_CODE'
2264: , AValue => P_CURRENCY_CODE );

Line 2266: WF_ENGINE.SetItemAttrNumber

2262: , ItemKey => L_WF_Item_Key
2263: , AName => 'CURRENCY_CODE'
2264: , AValue => P_CURRENCY_CODE );
2265:
2266: WF_ENGINE.SetItemAttrNumber
2267: ( ItemType => L_WF_Item_Type
2268: , ItemKey => L_WF_Item_Key
2269: , AName => 'DELIVERABLE_ID'
2270: , AValue => P_DELIVERABLE_ID );

Line 2272: WF_ENGINE.SetItemAttrText

2268: , ItemKey => L_WF_Item_Key
2269: , AName => 'DELIVERABLE_ID'
2270: , AValue => P_DELIVERABLE_ID );
2271:
2272: WF_ENGINE.SetItemAttrText
2273: ( ItemType => L_WF_Item_Type
2274: , ItemKey => L_WF_Item_Key
2275: , AName => 'DELIVERABLE_NUM'
2276: , AValue => P_DELIVERABLE_NUM );

Line 2278: WF_ENGINE.SetItemAttrText

2274: , ItemKey => L_WF_Item_Key
2275: , AName => 'DELIVERABLE_NUM'
2276: , AValue => P_DELIVERABLE_NUM );
2277:
2278: WF_ENGINE.SetItemAttrText
2279: ( ItemType => L_WF_Item_Type
2280: , ItemKey => L_WF_Item_Key
2281: , AName => 'INIT_MSG_LIST'
2282: , AValue => P_INIT_MSG_LIST );

Line 2284: WF_ENGINE.SetItemAttrText

2280: , ItemKey => L_WF_Item_Key
2281: , AName => 'INIT_MSG_LIST'
2282: , AValue => P_INIT_MSG_LIST );
2283:
2284: WF_ENGINE.SetItemAttrText
2285: ( ItemType => L_WF_Item_Type
2286: , ItemKey => L_WF_Item_Key
2287: , AName => 'INSPECTION_REQED'
2288: , AValue => P_INSPECTION_REQED );

Line 2290: WF_ENGINE.SetItemAttrText

2286: , ItemKey => L_WF_Item_Key
2287: , AName => 'INSPECTION_REQED'
2288: , AValue => P_INSPECTION_REQED );
2289:
2290: WF_ENGINE.SetItemAttrText
2291: ( ItemType => L_WF_Item_Type
2292: , ItemKey => L_WF_Item_Key
2293: , AName => 'ITEM_DESCRIPTION'
2294: , AValue => P_ITEM_DESCRIPTION );

Line 2296: WF_ENGINE.SetItemAttrNumber

2292: , ItemKey => L_WF_Item_Key
2293: , AName => 'ITEM_DESCRIPTION'
2294: , AValue => P_ITEM_DESCRIPTION );
2295:
2296: WF_ENGINE.SetItemAttrNumber
2297: ( ItemType => L_WF_Item_Type
2298: , ItemKey => L_WF_Item_Key
2299: , AName => 'ITEM_ID'
2300: , AValue => P_ITEM_ID );

Line 2302: WF_ENGINE.SetItemAttrText

2298: , ItemKey => L_WF_Item_Key
2299: , AName => 'ITEM_ID'
2300: , AValue => P_ITEM_ID );
2301:
2302: WF_ENGINE.SetItemAttrText
2303: ( ItemType => L_WF_Item_Type
2304: , ItemKey => L_WF_Item_Key
2305: , AName => 'ITEM_NUM'
2306: , AValue => P_ITEM_NUM );

Line 2308: WF_ENGINE.SetItemAttrNumber

2304: , ItemKey => L_WF_Item_Key
2305: , AName => 'ITEM_NUM'
2306: , AValue => P_ITEM_NUM );
2307:
2308: WF_ENGINE.SetItemAttrNumber
2309: ( ItemType => L_WF_Item_Type
2310: , ItemKey => L_WF_Item_Key
2311: , AName => 'K_HEADER_ID'
2312: , AValue => P_K_HEADER_ID );

Line 2314: WF_ENGINE.SetItemAttrText

2310: , ItemKey => L_WF_Item_Key
2311: , AName => 'K_HEADER_ID'
2312: , AValue => P_K_HEADER_ID );
2313:
2314: WF_ENGINE.SetItemAttrText
2315: ( ItemType => L_WF_Item_Type
2316: , ItemKey => L_WF_Item_Key
2317: , AName => 'K_NUMBER'
2318: , AValue => P_K_NUMBER );

Line 2320: WF_ENGINE.SetItemAttrText

2316: , ItemKey => L_WF_Item_Key
2317: , AName => 'K_NUMBER'
2318: , AValue => P_K_NUMBER );
2319:
2320: WF_ENGINE.SetItemAttrText
2321: ( ItemType => L_WF_Item_Type
2322: , ItemKey => L_WF_Item_Key
2323: , AName => 'LINE_NUMBER'
2324: , AValue => P_LINE_NUMBER );

Line 2326: WF_ENGINE.SetItemAttrNumber

2322: , ItemKey => L_WF_Item_Key
2323: , AName => 'LINE_NUMBER'
2324: , AValue => P_LINE_NUMBER );
2325:
2326: WF_ENGINE.SetItemAttrNumber
2327: ( ItemType => L_WF_Item_Type
2328: , ItemKey => L_WF_Item_Key
2329: , AName => 'MPS_TRANSACTION_ID'
2330: , AValue => P_MPS_TRANSACTION_ID );

Line 2332: WF_ENGINE.SetItemAttrText

2328: , ItemKey => L_WF_Item_Key
2329: , AName => 'MPS_TRANSACTION_ID'
2330: , AValue => P_MPS_TRANSACTION_ID );
2331:
2332: WF_ENGINE.SetItemAttrText
2333: ( ItemType => L_WF_Item_Type
2334: , ItemKey => L_WF_Item_Key
2335: , AName => 'ORGANIZATION'
2336: , AValue => P_ORGANIZATION );

Line 2338: WF_ENGINE.SetItemAttrNumber

2334: , ItemKey => L_WF_Item_Key
2335: , AName => 'ORGANIZATION'
2336: , AValue => P_ORGANIZATION );
2337:
2338: WF_ENGINE.SetItemAttrNumber
2339: ( ItemType => L_WF_Item_Type
2340: , ItemKey => L_WF_Item_Key
2341: , AName => 'ORGANIZATION_ID'
2342: , AValue => P_ORGANIZATION_ID );

Line 2344: WF_ENGINE.SetItemAttrNumber

2340: , ItemKey => L_WF_Item_Key
2341: , AName => 'ORGANIZATION_ID'
2342: , AValue => P_ORGANIZATION_ID );
2343:
2344: WF_ENGINE.SetItemAttrNumber
2345: ( ItemType => L_WF_Item_Type
2346: , ItemKey => L_WF_Item_Key
2347: , AName => 'PROJECT_ID'
2348: , AValue => P_PROJECT_ID );

Line 2350: WF_ENGINE.SetItemAttrText

2346: , ItemKey => L_WF_Item_Key
2347: , AName => 'PROJECT_ID'
2348: , AValue => P_PROJECT_ID );
2349:
2350: WF_ENGINE.SetItemAttrText
2351: ( ItemType => L_WF_Item_Type
2352: , ItemKey => L_WF_Item_Key
2353: , AName => 'PROJECT_NUM'
2354: , AValue => P_PROJECT_NUM );

Line 2356: WF_ENGINE.SetItemAttrNumber

2352: , ItemKey => L_WF_Item_Key
2353: , AName => 'PROJECT_NUM'
2354: , AValue => P_PROJECT_NUM );
2355:
2356: WF_ENGINE.SetItemAttrNumber
2357: ( ItemType => L_WF_Item_Type
2358: , ItemKey => L_WF_Item_Key
2359: , AName => 'QUANTITY'
2360: , AValue => P_QUANTITY );

Line 2362: WF_ENGINE.SetItemAttrDate

2358: , ItemKey => L_WF_Item_Key
2359: , AName => 'QUANTITY'
2360: , AValue => P_QUANTITY );
2361:
2362: WF_ENGINE.SetItemAttrDate
2363: ( ItemType => L_WF_Item_Type
2364: , ItemKey => L_WF_Item_Key
2365: , AName => 'SCHEDULE_DATE'
2366: , AValue => P_SCHEDULE_DATE );

Line 2368: WF_ENGINE.SetItemAttrText

2364: , ItemKey => L_WF_Item_Key
2365: , AName => 'SCHEDULE_DATE'
2366: , AValue => P_SCHEDULE_DATE );
2367:
2368: WF_ENGINE.SetItemAttrText
2369: ( ItemType => L_WF_Item_Type
2370: , ItemKey => L_WF_Item_Key
2371: , AName => 'SCHEDULE_DESIGNATOR'
2372: , AValue => P_SCHEDULE_DESIGNATOR );

Line 2374: WF_ENGINE.SetItemAttrText

2370: , ItemKey => L_WF_Item_Key
2371: , AName => 'SCHEDULE_DESIGNATOR'
2372: , AValue => P_SCHEDULE_DESIGNATOR );
2373:
2374: WF_ENGINE.SetItemAttrText
2375: ( ItemType => L_WF_Item_Type
2376: , ItemKey => L_WF_Item_Key
2377: , AName => 'SHIP_TO_LOCATION'
2378: , AValue => P_SHIP_TO_LOCATION );

Line 2380: WF_ENGINE.SetItemAttrNumber

2376: , ItemKey => L_WF_Item_Key
2377: , AName => 'SHIP_TO_LOCATION'
2378: , AValue => P_SHIP_TO_LOCATION );
2379:
2380: WF_ENGINE.SetItemAttrNumber
2381: ( ItemType => L_WF_Item_Type
2382: , ItemKey => L_WF_Item_Key
2383: , AName => 'TASK_ID'
2384: , AValue => P_TASK_ID );

Line 2386: WF_ENGINE.SetItemAttrText

2382: , ItemKey => L_WF_Item_Key
2383: , AName => 'TASK_ID'
2384: , AValue => P_TASK_ID );
2385:
2386: WF_ENGINE.SetItemAttrText
2387: ( ItemType => L_WF_Item_Type
2388: , ItemKey => L_WF_Item_Key
2389: , AName => 'TASK_NUM'
2390: , AValue => P_TASK_NUM );

Line 2392: WF_ENGINE.SetItemAttrText

2388: , ItemKey => L_WF_Item_Key
2389: , AName => 'TASK_NUM'
2390: , AValue => P_TASK_NUM );
2391:
2392: WF_ENGINE.SetItemAttrText
2393: ( ItemType => L_WF_Item_Type
2394: , ItemKey => L_WF_Item_Key
2395: , AName => 'UNIT_NUMBER'
2396: , AValue => P_UNIT_NUMBER );

Line 2398: WF_ENGINE.SetItemAttrText

2394: , ItemKey => L_WF_Item_Key
2395: , AName => 'UNIT_NUMBER'
2396: , AValue => P_UNIT_NUMBER );
2397:
2398: WF_ENGINE.SetItemAttrText
2399: ( ItemType => L_WF_Item_Type
2400: , ItemKey => L_WF_Item_Key
2401: , AName => 'UOM_CODE'
2402: , AValue => P_UOM_CODE );

Line 2404: WF_ENGINE.SetItemAttrDate

2400: , ItemKey => L_WF_Item_Key
2401: , AName => 'UOM_CODE'
2402: , AValue => P_UOM_CODE );
2403:
2404: WF_ENGINE.SetItemAttrDate
2405: ( ItemType => L_WF_Item_Type
2406: , ItemKey => L_WF_Item_Key
2407: , AName => 'WORK_DATE'
2408: , AValue => P_WORK_DATE );

Line 2410: WF_ENGINE.SetItemAttrText

2406: , ItemKey => L_WF_Item_Key
2407: , AName => 'WORK_DATE'
2408: , AValue => P_WORK_DATE );
2409:
2410: WF_ENGINE.SetItemAttrText
2411: ( ItemType => L_WF_Item_Type
2412: , ItemKey => L_WF_Item_Key
2413: , AName => 'REQUESTOR'
2414: , AValue => l_requestor );

Line 2416: WF_ENGINE.SetItemAttrNumber

2412: , ItemKey => L_WF_Item_Key
2413: , AName => 'REQUESTOR'
2414: , AValue => l_requestor );
2415:
2416: WF_ENGINE.SetItemAttrNumber
2417: ( ItemType => L_WF_Item_Type
2418: , ItemKey => L_WF_Item_Key
2419: , AName => 'CHARGE_ACCOUNT'
2420: , AValue => NULL );

Line 2424: WF_ENGINE.StartProcess( ItemType => L_WF_Item_Type

2420: , AValue => NULL );
2421: --
2422: -- Start the Workflow Process
2423: --
2424: WF_ENGINE.StartProcess( ItemType => L_WF_Item_Type
2425: , ItemKey => L_WF_Item_Key );
2426:
2427:
2428: END Launch_Process;