DBA Data[Home] [Help]

APPS.IEX_STRY_UTL_PUB dependencies on WF_EVENT

Line 1042: p_event in out NOCOPY wf_event_t)

1038: *
1039: **/
1040: FUNCTION create_workitem_check
1041: ( p_subscription_guid in raw,
1042: p_event in out NOCOPY wf_event_t)
1043: return varchar2
1044: is
1045: l_key varchar2(240) := p_event.GetEventKey();
1046: x_return_status VARCHAR2(10) := 'S';

Line 1093: WF_EVENT.setErrorInfo(p_event, 'ERROR');

1089: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1090: iex_debug_pub.logmessage ('create_workitem_check: ' || 'raised exe error');
1091: END IF;
1092: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_check', p_event.getEventName(), p_subscription_guid);
1093: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1094: RETURN 'ERROR';
1095: WHEN OTHERS THEN
1096: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_check', p_event.getEventName(), p_subscription_guid);
1097: WF_EVENT.setErrorInfo(p_event, 'ERROR');

Line 1097: WF_EVENT.setErrorInfo(p_event, 'ERROR');

1093: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1094: RETURN 'ERROR';
1095: WHEN OTHERS THEN
1096: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_check', p_event.getEventName(), p_subscription_guid);
1097: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1098: RETURN 'ERROR';
1099:
1100:
1101: END create_workitem_check;

Line 1108: p_event in out NOCOPY wf_event_t)

1104: * for complete work item
1105: **/
1106: FUNCTION create_workitem_complete
1107: ( p_subscription_guid in raw,
1108: p_event in out NOCOPY wf_event_t)
1109: return varchar2
1110: is
1111: l_key varchar2(240) := p_event.GetEventKey();
1112: x_return_status VARCHAR2(10) := 'S';

Line 1160: WF_EVENT.setErrorInfo(p_event, 'ERROR');

1156: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1157: iex_debug_pub.logmessage ('create_workitem_complete: ' || 'raised exe error');
1158: END IF;
1159: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_complete', p_event.getEventName(), p_subscription_guid);
1160: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1161: RETURN 'ERROR';
1162: WHEN OTHERS THEN
1163: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_complete', p_event.getEventName(), p_subscription_guid);
1164: WF_EVENT.setErrorInfo(p_event, 'ERROR');

Line 1164: WF_EVENT.setErrorInfo(p_event, 'ERROR');

1160: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1161: RETURN 'ERROR';
1162: WHEN OTHERS THEN
1163: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_complete', p_event.getEventName(), p_subscription_guid);
1164: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1165: RETURN 'ERROR';
1166:
1167:
1168: END create_workitem_complete;