DBA Data[Home] [Help]

APPS.PA_PROJECT_REQUEST_PVT dependencies on WF_ENGINE

Line 2365: WF_ENGINE.CreateProcess ( ItemType => l_item_type,

2361: debug('l_item_key(inside loop) = ' || l_item_key);
2362:
2363:
2364: -- Create the WF process
2365: WF_ENGINE.CreateProcess ( ItemType => l_item_type,
2366: ItemKey => l_item_key,
2367: process => 'PRC_PA_OM_UPDATE_PROJECTS');
2368:
2369:

Line 2371: WF_ENGINE.SetItemAttrText

2367: process => 'PRC_PA_OM_UPDATE_PROJECTS');
2368:
2369:
2370: -- Setting the attribute value for recipient
2371: WF_ENGINE.SetItemAttrText
2372: ( itemtype => l_item_type,
2373: itemkey => l_item_key,
2374: aname => 'ATTR_NTF_RECIPIENT',
2375: avalue => l_recipient_tab(i-1)

Line 2388: WF_ENGINE.SetItemAttrNumber

2384: WHERE group_id = l_group_id
2385: AND user_name = l_recipient_tab(i-1);
2386:
2387: -- Setting the attribute value for recipient count
2388: WF_ENGINE.SetItemAttrNumber
2389: ( itemtype => l_item_type,
2390: itemkey => l_item_key,
2391: aname => 'ATTR_UPD_PROJ_COUNT',
2392: avalue => l_project_count_tab.count

Line 2402: WF_ENGINE.SetItemAttrText

2398: || '&paGroupId=' || l_group_id
2399: || '&paItemType=PAYPRJNT';
2400:
2401: -- Setting the attribute value for updated projects URL
2402: WF_ENGINE.SetItemAttrText
2403: ( itemtype => l_item_type,
2404: itemkey => l_item_key,
2405: aname => 'ATTR_UPD_PROJ_URL_INFO',
2406: avalue => l_view_upd_proj_url

Line 2410: WF_ENGINE.StartProcess

2406: avalue => l_view_upd_proj_url
2407: );
2408:
2409: -- Now start the WF process
2410: WF_ENGINE.StartProcess
2411: ( itemtype => l_item_type,
2412: itemkey => l_item_key );
2413:
2414: -- Insert to PA tables wf process information.

Line 2445: WF_ENGINE.CreateProcess ( ItemType => l_item_type,

2441: FROM DUAL;
2442: debug('l_item_key(outside loop) = ' || l_item_key);
2443:
2444: -- Create the WF process
2445: WF_ENGINE.CreateProcess ( ItemType => l_item_type,
2446: ItemKey => l_item_key,
2447: process => 'PRC_PA_OM_UPDATE_PROJECTS');
2448:
2449:

Line 2454: WF_ENGINE.SetItemAttrText

2450: -- Setting the attribute value for recipient
2451:
2452: l_end_recipient := l_recipient_tab(l_recipient_tab.LAST);
2453:
2454: WF_ENGINE.SetItemAttrText
2455: ( itemtype => l_item_type,
2456: itemkey => l_item_key,
2457: aname => 'ATTR_NTF_RECIPIENT',
2458: avalue => l_end_recipient

Line 2472: WF_ENGINE.SetItemAttrNumber

2468: WHERE group_id = l_group_id
2469: AND user_name = l_end_recipient;
2470:
2471: -- Setting the attribute value for recipient count
2472: WF_ENGINE.SetItemAttrNumber
2473: ( itemtype => l_item_type,
2474: itemkey => l_item_key,
2475: aname => 'ATTR_UPD_PROJ_COUNT',
2476: avalue => l_project_count_tab.COUNT

Line 2486: WF_ENGINE.SetItemAttrText

2482: || '&paGroupId=' || l_group_id
2483: || '&paItemType=PAYPRJNT';
2484:
2485: -- Setting the attribute value for updated projects URL
2486: WF_ENGINE.SetItemAttrText
2487: ( itemtype => l_item_type,
2488: itemkey => l_item_key,
2489: aname => 'ATTR_UPD_PROJ_URL_INFO',
2490: avalue => l_view_upd_proj_url

Line 2494: WF_ENGINE.StartProcess

2490: avalue => l_view_upd_proj_url
2491: );
2492:
2493: -- Now start the WF process
2494: WF_ENGINE.StartProcess
2495: ( itemtype => l_item_type,
2496: itemkey => l_item_key );
2497:
2498: -- Insert to PA tables wf process information.