DBA Data[Home] [Help]

APPS.GMDRTLAP_WF_PKG dependencies on WF_CORE

Line 144: WF_CORE.CONTEXT ('GMDRTLAP_wf_pkg','wf_init',l_itemtype,l_itemkey,'Initial' );

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

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

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

Line 220: WF_CORE.CONTEXT ('GMDRTLAP_wf_pkg','is_approval_req',p_itemtype,p_itemkey,p_role);

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

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

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

Line 341: wf_core.newline||l_comment;

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

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

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