DBA Data[Home] [Help]

APPS.POA_BIS_ALERTS dependencies on WF_ENGINE

Line 1054: wf_engine.CreateProcess(itemtype => p_wf_item_type,

1050: INTO l_wf_item_key
1051: FROM dual;
1052:
1053: -- Create workflow process
1054: wf_engine.CreateProcess(itemtype => p_wf_item_type,
1055: itemkey => l_wf_item_key,
1056: process => p_wf_process);
1057:
1058: -- Set workflow process role

Line 1059: wf_engine.SetItemAttrText(itemtype => p_wf_item_type,

1055: itemkey => l_wf_item_key,
1056: process => p_wf_process);
1057:
1058: -- Set workflow process role
1059: wf_engine.SetItemAttrText(itemtype => p_wf_item_type,
1060: itemkey => l_wf_item_key,
1061: aname=> 'L_ROLE_NAME',
1062: avalue=> l_role_name);
1063:

Line 1077: wf_engine.SetItemAttrText(itemtype => p_wf_item_type,

1073:
1074: POA_LOG.debug_line('Label: ' || p_value_tbl(l_index).label);
1075: POA_LOG.debug_line('Value: ' || l_string);
1076:
1077: wf_engine.SetItemAttrText(itemtype => p_wf_item_type,
1078: itemkey => l_wf_item_key,
1079: aname=> p_value_tbl(l_index).label,
1080: avalue=> l_string);
1081: END LOOP;

Line 1084: wf_engine.StartProcess(itemtype => p_wf_item_type,

1080: avalue=> l_string);
1081: END LOOP;
1082:
1083: -- Start workflow process
1084: wf_engine.StartProcess(itemtype => p_wf_item_type,
1085: itemkey => l_wf_item_key);
1086:
1087: COMMIT;
1088: POA_LOG.debug_line('Exit POA_STRT_WF_PROCESS');