DBA Data[Home] [Help]

APPS.IEX_STRY_UTL_PUB dependencies on WF_EVENT

Line 1048: p_event in out NOCOPY wf_event_t)

1044: *
1045: **/
1046: FUNCTION create_workitem_check
1047: ( p_subscription_guid in raw,
1048: p_event in out NOCOPY wf_event_t)
1049: return varchar2
1050: is
1051: l_key varchar2(240) := p_event.GetEventKey();
1052: x_return_status VARCHAR2(10) := 'S';

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

1095: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1096: iex_debug_pub.logmessage ('create_workitem_check: ' || 'raised exe error');
1097: END IF;
1098: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_check', p_event.getEventName(), p_subscription_guid);
1099: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1100: RETURN 'ERROR';
1101: WHEN OTHERS THEN
1102: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_check', p_event.getEventName(), p_subscription_guid);
1103: WF_EVENT.setErrorInfo(p_event, 'ERROR');

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

1099: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1100: RETURN 'ERROR';
1101: WHEN OTHERS THEN
1102: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_check', p_event.getEventName(), p_subscription_guid);
1103: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1104: RETURN 'ERROR';
1105:
1106:
1107: END create_workitem_check;

Line 1114: p_event in out NOCOPY wf_event_t)

1110: * for complete work item
1111: **/
1112: FUNCTION create_workitem_complete
1113: ( p_subscription_guid in raw,
1114: p_event in out NOCOPY wf_event_t)
1115: return varchar2
1116: is
1117: l_key varchar2(240) := p_event.GetEventKey();
1118: x_return_status VARCHAR2(10) := 'S';

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

1162: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1163: iex_debug_pub.logmessage ('create_workitem_complete: ' || 'raised exe error');
1164: END IF;
1165: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_complete', p_event.getEventName(), p_subscription_guid);
1166: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1167: RETURN 'ERROR';
1168: WHEN OTHERS THEN
1169: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_complete', p_event.getEventName(), p_subscription_guid);
1170: WF_EVENT.setErrorInfo(p_event, 'ERROR');

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

1166: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1167: RETURN 'ERROR';
1168: WHEN OTHERS THEN
1169: WF_CORE.CONTEXT('IEX_STRY_UTL_PUB', 'create_workitem_complete', p_event.getEventName(), p_subscription_guid);
1170: WF_EVENT.setErrorInfo(p_event, 'ERROR');
1171: RETURN 'ERROR';
1172:
1173:
1174: END create_workitem_complete;