DBA Data[Home] [Help]

APPS.GMDFMGAP_WF_PKG dependencies on WF_CORE

Line 135: WF_CORE.CONTEXT ('GMDFMGAP_wf_pkg','wf_init',l_itemtype,l_itemkey,'Initial' );

131: FND_MESSAGE.SET_TOKEN('ERROR_TEXT', sqlerrm);
132: FND_MESSAGE.SET_TOKEN('PKG_NAME', 'GMDFMGAP_WF_PKG');
133: FND_MESSAGE.SET_TOKEN('PROCEDURE_NAME', 'WF_INIT');
134: APP_EXCEPTION.RAISE_EXCEPTION;
135: WF_CORE.CONTEXT ('GMDFMGAP_wf_pkg','wf_init',l_itemtype,l_itemkey,'Initial' );
136: raise;
137:
138: END wf_init;
139:

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

189: p_lab_process_name,
190: p_lab_activity_name,
191: p_data_string,
192: P_role);
193: l_data_string := replace(p_wf_data_string,l_delimiter,wf_core.newline);
194: WF_ENGINE.SETITEMATTRTEXT(itemtype => p_itemtype,
195: itemkey => p_itemkey,
196: aname => 'GMDFMGAP_ADDL_TEXT',
197: avalue => l_data_string);

Line 215: WF_CORE.CONTEXT ('GMDFMGAP_wf_pkg','is_approval_req',p_itemtype,p_itemkey,p_role);

211: END IF;
212: END IF;
213: EXCEPTION
214: WHEN OTHERS THEN
215: WF_CORE.CONTEXT ('GMDFMGAP_wf_pkg','is_approval_req',p_itemtype,p_itemkey,p_role);
216: raise;
217: END is_approval_req;
218:
219:

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

404: l_performer VARCHAR2(80) := wf_engine.getitemattrtext(p_itemtype, p_itemkey,'GMDFMGAP_CURR_PERFORMER');
405: BEGIN
406: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
407: BEGIN
408: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(DATEVAL => SYSDATE, CALENDAR_AWARE => 2)||
409: wf_core.newline||l_comment;
410: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
411: l_comment := null;
412: EXCEPTION WHEN OTHERS THEN

Line 409: wf_core.newline||l_comment;

405: BEGIN
406: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
407: BEGIN
408: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(DATEVAL => SYSDATE, CALENDAR_AWARE => 2)||
409: wf_core.newline||l_comment;
410: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
411: l_comment := null;
412: EXCEPTION WHEN OTHERS THEN
413: NULL;

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

406: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
407: BEGIN
408: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(DATEVAL => SYSDATE, CALENDAR_AWARE => 2)||
409: wf_core.newline||l_comment;
410: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
411: l_comment := null;
412: EXCEPTION WHEN OTHERS THEN
413: NULL;
414: END;