DBA Data[Home] [Help]

APPS.FND_OAM_KBF_SUBS dependencies on WF_ENGINE

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

296: fdebug('l_comp_fn=' || l_comp_fn);
297: fdebug('l_severity=' || l_severity);
298:
299:
300: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);
301: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);
302: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);
303: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);
304:

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

297: fdebug('l_severity=' || l_severity);
298:
299:
300: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);
301: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);
302: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);
303: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);
304:
305: fdebug('Out:FND_OAM_KBF_SUBS.setWFAttributes');

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

298:
299:
300: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);
301: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);
302: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);
303: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);
304:
305: fdebug('Out:FND_OAM_KBF_SUBS.setWFAttributes');
306: END setWFAttributes;

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

299:
300: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SYSTEM', l_system);
301: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'APP_SHORT_NAME', l_app_sn);
302: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'COMP_SHORT_NAME', l_comp_sn);
303: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'SEVERITY', l_severity);
304:
305: fdebug('Out:FND_OAM_KBF_SUBS.setWFAttributes');
306: END setWFAttributes;
307: --------------------------------------------------------------------------------

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

439: IF l_sub_list IS NOT NULL THEN
440: fdebug('Valid List: Calling CreateAdHocRole');
441: WF_DIRECTORY.CreateAdHocRole2(role_name=>l_role_name
442: , role_display_name=>l_display_name, ROLE_USERS=>l_role_users);
443: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'ADHC_ROLE_NAME'
444: , l_role_name);
445:
446: --Sets other attributes as app short name severity etc.
447: setWFAttributes(itemtype, itemkey);

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

447: setWFAttributes(itemtype, itemkey);
448:
449: l_BE_SUBJECT := 'plsql:FND_OAM_KBF_SUBS.createSubject/' || itemkey;
450: fdebug('l_BE_SUBJECT=' || l_BE_SUBJECT);
451: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'BE_MAIL_SUBJECT'
452: , l_BE_SUBJECT);
453:
454: l_BE_MESSAGE1 := 'plsql:FND_OAM_KBF_SUBS.createBusExcepDoc/' || itemkey;
455: fdebug('l_BE_MESSAGE1=' || l_BE_MESSAGE1);

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

452: , l_BE_SUBJECT);
453:
454: l_BE_MESSAGE1 := 'plsql:FND_OAM_KBF_SUBS.createBusExcepDoc/' || itemkey;
455: fdebug('l_BE_MESSAGE1=' || l_BE_MESSAGE1);
456: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'BE_MESSAGE1'
457: , l_BE_MESSAGE1);
458:
459: l_BE_MESSAGE2 := 'plsql:FND_OAM_KBF_SUBS.createBusExcepDocPart1/' || itemkey;
460: fdebug('l_BE_MESSAGE2=' || l_BE_MESSAGE2);

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

457: , l_BE_MESSAGE1);
458:
459: l_BE_MESSAGE2 := 'plsql:FND_OAM_KBF_SUBS.createBusExcepDocPart1/' || itemkey;
460: fdebug('l_BE_MESSAGE2=' || l_BE_MESSAGE2);
461: WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'EMAIL_BODY_PART1'
462: , l_BE_MESSAGE2);
463:
464: ELSE
465: l_sub_list := 'NULL';

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

463:
464: ELSE
465: l_sub_list := 'NULL';
466: ----This is for test due to wf bug
467: --- WF_ENGINE.SetItemAttrtext(itemtype, itemkey, 'ADHC_ROLE_NAME'
468: --- , l_sub_list);
469: END IF;
470:
471: