DBA Data[Home] [Help]

APPS.GMDRPGAP_WF_PKG dependencies on WF_CORE

Line 157: WF_CORE.CONTEXT ('GMDRPGAP_wf_pkg','wf_init',l_itemtype,l_itemkey,'Initial' );

153:
154:
155: EXCEPTION
156: WHEN OTHERS THEN
157: WF_CORE.CONTEXT ('GMDRPGAP_wf_pkg','wf_init',l_itemtype,l_itemkey,'Initial' );
158: raise;
159:
160: END wf_init;
161:

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

207: p_lab_process_name,
208: p_lab_activity_name,
209: p_data_string,
210: P_role);
211: l_data_string := replace(p_wf_data_string,l_delimiter,wf_core.newline);
212: WF_ENGINE.SETITEMATTRTEXT(itemtype => p_itemtype,
213: itemkey => p_itemkey,
214: aname => 'GMDRPGAP_ADDL_TEXT',
215: avalue => l_data_string);

Line 233: WF_CORE.CONTEXT ('GMDRPGAP_wf_pkg','is_approval_req',p_itemtype,p_itemkey,p_role);

229: END IF;
230: END IF;
231: EXCEPTION
232: WHEN OTHERS THEN
233: WF_CORE.CONTEXT ('GMDRPGAP_wf_pkg','is_approval_req',p_itemtype,p_itemkey,p_role);
234: raise;
235: END is_approval_req;
236:
237: /* ######################################################################## */

Line 410: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(SYSDATE)||

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

Line 411: wf_core.newline||l_comment;

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

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

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