DBA Data[Home] [Help]

APPS.PA_COMP_PROFILE_PVT dependencies on WF_ENGINE

Line 717: WF_ENGINE.CreateProcess('PACOPR',

713:
714: RAISE FND_API.G_EXC_ERROR;
715: END IF;
716:
717: WF_ENGINE.CreateProcess('PACOPR',
718: to_char(g_profile_id),
719: 'PRO_PROFILE_APPROVAL_FLOW');
720:
721: wf_engine.SetItemAttrText( 'PACOPR'

Line 721: wf_engine.SetItemAttrText( 'PACOPR'

717: WF_ENGINE.CreateProcess('PACOPR',
718: to_char(g_profile_id),
719: 'PRO_PROFILE_APPROVAL_FLOW');
720:
721: wf_engine.SetItemAttrText( 'PACOPR'
722: , g_profile_id
723: , 'MANAGER_NAME'
724: , l_manager_name
725: );

Line 727: wf_engine.SetItemAttrNumber( 'PACOPR'

723: , 'MANAGER_NAME'
724: , l_manager_name
725: );
726:
727: wf_engine.SetItemAttrNumber( 'PACOPR'
728: , g_profile_id
729: , 'MANAGER_ID'
730: , l_manager_id
731: );

Line 733: wf_engine.SetItemAttrText( 'PACOPR'

729: , 'MANAGER_ID'
730: , l_manager_id
731: );
732:
733: wf_engine.SetItemAttrText( 'PACOPR'
734: , g_profile_id
735: , 'MANAGER_DISP_NAME'
736: , l_manager_display_name
737: );

Line 739: wf_engine.SetItemAttrText( 'PACOPR'

735: , 'MANAGER_DISP_NAME'
736: , l_manager_display_name
737: );
738:
739: wf_engine.SetItemAttrText( 'PACOPR'
740: , g_profile_id
741: , 'EMPLOYEE_NAME'
742: , l_employee_name
743: );

Line 745: wf_engine.SetItemAttrNumber( 'PACOPR'

741: , 'EMPLOYEE_NAME'
742: , l_employee_name
743: );
744:
745: wf_engine.SetItemAttrNumber( 'PACOPR'
746: , g_profile_id
747: , 'EMPLOYEE_ID'
748: , g_person_id
749: );

Line 751: wf_engine.SetItemAttrText( 'PACOPR'

747: , 'EMPLOYEE_ID'
748: , g_person_id
749: );
750:
751: wf_engine.SetItemAttrText( 'PACOPR'
752: , g_profile_id
753: , 'EMPLOYEE_DISP_NAME'
754: , l_employee_display_name
755: );

Line 759: wf_engine.SetItemAttrText( 'PACOPR'

755: );
756:
757: l_message_url := 'JSP:/OA_HTML/OA.jsp?akRegionApplicationId=275&akRegionCode=PA_MSG_LAYOUT&paProfileId=' || g_profile_id || '&retainAM=Y';
758:
759: wf_engine.SetItemAttrText( 'PACOPR'
760: , g_profile_id
761: , 'ATTR_APPROVAL_MESSAGE_URL'
762: , l_message_url
763: );

Line 765: WF_ENGINE.StartProcess('PACOPR', g_profile_id);

761: , 'ATTR_APPROVAL_MESSAGE_URL'
762: , l_message_url
763: );
764:
765: WF_ENGINE.StartProcess('PACOPR', g_profile_id);
766:
767: -- Set g_profile_id and g_person_id back to 0 .
768: g_profile_id := 0;
769: g_person_id := 0;

Line 1223: l_profile_id := to_number(wf_engine.setctx_itemkey);

1219: where notification_id = to_number(document_id);
1220: EXCEPTION
1221: WHEN NO_DATA_FOUND THEN
1222: -- if viewing method is email
1223: l_profile_id := to_number(wf_engine.setctx_itemkey);
1224: END;
1225:
1226: l_employee_disp_name := wf_engine.GetItemAttrText('PACOPR',
1227: to_char(l_profile_id),

Line 1226: l_employee_disp_name := wf_engine.GetItemAttrText('PACOPR',

1222: -- if viewing method is email
1223: l_profile_id := to_number(wf_engine.setctx_itemkey);
1224: END;
1225:
1226: l_employee_disp_name := wf_engine.GetItemAttrText('PACOPR',
1227: to_char(l_profile_id),
1228: 'EMPLOYEE_DISP_NAME');
1229:
1230: l_manager_disp_name := wf_engine.GetItemAttrText( 'PACOPR'

Line 1230: l_manager_disp_name := wf_engine.GetItemAttrText( 'PACOPR'

1226: l_employee_disp_name := wf_engine.GetItemAttrText('PACOPR',
1227: to_char(l_profile_id),
1228: 'EMPLOYEE_DISP_NAME');
1229:
1230: l_manager_disp_name := wf_engine.GetItemAttrText( 'PACOPR'
1231: , l_profile_id
1232: , 'MANAGER_DISP_NAME'
1233: );
1234: