DBA Data[Home] [Help]

APPS.GMDRTGAP_WF_PKG dependencies on WF_CORE

Line 145: WF_CORE.CONTEXT ('GMDRTGAP_wf_pkg','wf_init',l_itemtype,l_itemkey,'Initial' );

141:
142:
143: EXCEPTION
144: WHEN OTHERS THEN
145: WF_CORE.CONTEXT ('GMDRTGAP_wf_pkg','wf_init',l_itemtype,l_itemkey,'Initial' );
146: raise;
147:
148: END wf_init;
149:

Line 199: l_data_string := replace(p_wf_data_string,l_delimiter,wf_core.newline);

195: p_lab_process_name,
196: p_lab_activity_name,
197: p_data_string,
198: P_role);
199: l_data_string := replace(p_wf_data_string,l_delimiter,wf_core.newline);
200: WF_ENGINE.SETITEMATTRTEXT(itemtype => p_itemtype,
201: itemkey => p_itemkey,
202: aname => 'GMDRTGAP_ADDL_TEXT',
203: avalue => l_data_string);

Line 221: WF_CORE.CONTEXT ('GMDRTGAP_wf_pkg','is_approval_req',p_itemtype,p_itemkey,p_role);

217: END IF;
218: END IF;
219: EXCEPTION
220: WHEN OTHERS THEN
221: WF_CORE.CONTEXT ('GMDRTGAP_wf_pkg','is_approval_req',p_itemtype,p_itemkey,p_role);
222: raise;
223: END is_approval_req;
224:
225:

Line 342: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(DATEVAL => SYSDATE, CALENDAR_AWARE => 2)||

338: l_performer VARCHAR2(80) := wf_engine.getitemattrtext(p_itemtype, p_itemkey,'GMDRTGAP_CURR_PERFORMER');
339: BEGIN
340: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
341: BEGIN
342: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(DATEVAL => SYSDATE, CALENDAR_AWARE => 2)||
343: wf_core.newline||l_comment;
344: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
345: l_comment := null;
346: EXCEPTION WHEN OTHERS THEN

Line 343: wf_core.newline||l_comment;

339: BEGIN
340: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
341: BEGIN
342: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(DATEVAL => SYSDATE, CALENDAR_AWARE => 2)||
343: wf_core.newline||l_comment;
344: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
345: l_comment := null;
346: EXCEPTION WHEN OTHERS THEN
347: NULL;

Line 344: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);

340: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
341: BEGIN
342: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(DATEVAL => SYSDATE, CALENDAR_AWARE => 2)||
343: wf_core.newline||l_comment;
344: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
345: l_comment := null;
346: EXCEPTION WHEN OTHERS THEN
347: NULL;
348: END;