DBA Data[Home] [Help]

APPS.FND_OAM_KBF_SUBS dependencies on WF_ENGINE

Line 293: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);

289: fdebug('l_comp_fn=' || l_comp_fn);
290: fdebug('l_severity=' || l_severity);
291:
292:
293: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);
294: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);
295: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);
296: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);
297:

Line 294: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);

290: fdebug('l_severity=' || l_severity);
291:
292:
293: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);
294: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);
295: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);
296: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);
297:
298: fdebug('Out:FND_OAM_KBF_SUBS.setWFAttributes');

Line 295: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);

291:
292:
293: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);
294: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);
295: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);
296: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);
297:
298: fdebug('Out:FND_OAM_KBF_SUBS.setWFAttributes');
299: END setWFAttributes;

Line 296: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);

292:
293: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);
294: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);
295: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);
296: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);
297:
298: fdebug('Out:FND_OAM_KBF_SUBS.setWFAttributes');
299: END setWFAttributes;
300: --------------------------------------------------------------------------------

Line 436: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'ADHC_ROLE_NAME'

432: IF l_sub_list IS NOT NULL THEN
433: fdebug('Valid List: Calling CreateAdHocRole');
434: WF_DIRECTORY.CreateAdHocRole2(role_name=>l_role_name
435: , role_display_name=>l_display_name, ROLE_USERS=>l_role_users);
436: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'ADHC_ROLE_NAME'
437: , l_role_name);
438:
439: --Sets other attributes as app short name severity etc.
440: setWFAttributes(itemtype, itemkey);

Line 444: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'BE_MAIL_SUBJECT'

440: setWFAttributes(itemtype, itemkey);
441:
442: l_BE_SUBJECT := 'plsql:FND_OAM_KBF_SUBS.createSubject/' || itemkey;
443: fdebug('l_BE_SUBJECT=' || l_BE_SUBJECT);
444: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'BE_MAIL_SUBJECT'
445: , l_BE_SUBJECT);
446:
447: l_BE_MESSAGE1 := 'plsql:FND_OAM_KBF_SUBS.createBusExcepDoc/' || itemkey;
448: fdebug('l_BE_MESSAGE1=' || l_BE_MESSAGE1);

Line 449: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'BE_MESSAGE1'

445: , l_BE_SUBJECT);
446:
447: l_BE_MESSAGE1 := 'plsql:FND_OAM_KBF_SUBS.createBusExcepDoc/' || itemkey;
448: fdebug('l_BE_MESSAGE1=' || l_BE_MESSAGE1);
449: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'BE_MESSAGE1'
450: , l_BE_MESSAGE1);
451:
452: l_BE_MESSAGE2 := 'plsql:FND_OAM_KBF_SUBS.createBusExcepDocPart1/' || itemkey;
453: fdebug('l_BE_MESSAGE2=' || l_BE_MESSAGE2);

Line 454: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'EMAIL_BODY_PART1'

450: , l_BE_MESSAGE1);
451:
452: l_BE_MESSAGE2 := 'plsql:FND_OAM_KBF_SUBS.createBusExcepDocPart1/' || itemkey;
453: fdebug('l_BE_MESSAGE2=' || l_BE_MESSAGE2);
454: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'EMAIL_BODY_PART1'
455: , l_BE_MESSAGE2);
456:
457: ELSE
458: l_sub_list := 'NULL';

Line 460: --- WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'ADHC_ROLE_NAME'

456:
457: ELSE
458: l_sub_list := 'NULL';
459: ----This is for test due to wf bug
460: --- WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'ADHC_ROLE_NAME'
461: --- , l_sub_list);
462: END IF;
463:
464: