DBA Data[Home] [Help]

APPS.PA_PERF_NOTIFICATION_PKG dependencies on WF_ENGINE

Line 92: WF_ENGINE.CreateProcess( itemtype => p_item_type

88: pa_debug.write(l_module_name,pa_debug.g_err_stage,l_debug_level3);
89: END IF;
90:
91: -- create the workflow process
92: WF_ENGINE.CreateProcess( itemtype => p_item_type
93: ,itemkey => x_item_key
94: ,process => p_process_name);
95:
96:

Line 125: WF_ENGINE.StartProcess(itemtype => p_item_type

121: pa_debug.write(l_module_name,pa_debug.g_err_stage,l_debug_level3);
122: END IF;
123:
124:
125: WF_ENGINE.StartProcess(itemtype => p_item_type
126: ,itemkey => x_item_key);
127:
128: PA_WORKFLOW_UTILS.Insert_WF_Processes(
129: p_wf_type_code => l_wf_type_code

Line 140: WF_ENGINE.AbortProcess(itemtype => p_Item_Type

136: ,p_err_stage => l_err_stage
137: ,p_err_stack => l_err_stack
138: );
139: IF l_err_code <> 0 THEN
140: WF_ENGINE.AbortProcess(itemtype => p_Item_Type
141: ,itemkey => l_Item_Key);
142:
143: --Log an error message and go to exception section.
144: PA_UTILS.Add_Message( p_app_short_name => 'PA'

Line 312: wf_engine.SetItemAttrNumber( p_item_type

308: FOR page_var in get_page(p_project_id)
309: LOOP
310: l_object_page_layout_id := page_var.object_page_layout_id;
311: -- Set the workflow attributes.
312: wf_engine.SetItemAttrNumber( p_item_type
313: ,p_item_key
314: ,'CONF_OBJECT_ID'
315: ,p_project_id);
316:

Line 318: wf_engine.SetItemAttrText( p_item_type

314: ,'CONF_OBJECT_ID'
315: ,p_project_id);
316:
317:
318: wf_engine.SetItemAttrText( p_item_type
319: ,p_item_key
320: ,'CONF_OBJECT_TYPE'
321: ,page_var.object_type);
322:

Line 324: wf_engine.SetItemAttrNumber( p_item_type

320: ,'CONF_OBJECT_TYPE'
321: ,page_var.object_type);
322:
323:
324: wf_engine.SetItemAttrNumber( p_item_type
325: ,p_item_key
326: ,'CONF_PAGE_ID'
327: ,page_var.page_id);
328:

Line 329: wf_engine.SetItemAttrText( p_item_type

325: ,p_item_key
326: ,'CONF_PAGE_ID'
327: ,page_var.page_id);
328:
329: wf_engine.SetItemAttrText( p_item_type
330: ,p_item_key
331: ,'CONF_PAGE_TYPE'
332: ,page_var.page_type_code);
333:

Line 334: wf_engine.SetItemAttrText( p_item_type

330: ,p_item_key
331: ,'CONF_PAGE_TYPE'
332: ,page_var.page_type_code);
333:
334: wf_engine.SetItemAttrText( p_item_type
335: ,p_item_key
336: ,'OBJECT_NAME'
337: ,l_project_name);
338:

Line 339: wf_engine.SetItemAttrText( p_item_type

335: ,p_item_key
336: ,'OBJECT_NAME'
337: ,l_project_name);
338:
339: wf_engine.SetItemAttrText( p_item_type
340: ,p_item_key
341: ,'REPORT_TYPE'
342: ,page_var.report_name);
343:

Line 344: wf_engine.SetItemAttrDate( p_item_type

340: ,p_item_key
341: ,'REPORT_TYPE'
342: ,page_var.report_name);
343:
344: wf_engine.SetItemAttrDate( p_item_type
345: ,p_item_key
346: ,'REP_GEN_DATE'
347: ,sysdate);
348:

Line 349: wf_engine.SetItemAttrText( p_item_type

345: ,p_item_key
346: ,'REP_GEN_DATE'
347: ,sysdate);
348:
349: wf_engine.SetItemAttrText( p_item_type
350: ,p_item_key
351: ,'PROJECT_NUMBER'
352: ,l_project_number);
353:

Line 412: wf_engine.SetItemAttrText( p_item_type

408: IF (l_role_users is NOT NULL) THEN
409: WF_DIRECTORY.AddUsersToAdHocRole( l_role,
410: l_role_users);
411:
412: wf_engine.SetItemAttrText( p_item_type
413: , p_item_key
414: , 'PERFORMER'
415: , l_role);
416: END IF;