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 190: l_data_string := replace(p_wf_data_string,l_delimiter,wf_core.newline);

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

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

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

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

397: l_performer VARCHAR2(80) := wf_engine.getitemattrtext(p_itemtype, p_itemkey,'GMDFMGAP_CURR_PERFORMER');
398: BEGIN
399: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
400: BEGIN
401: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(SYSDATE)||
402: wf_core.newline||l_comment;
403: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
404: l_comment := null;
405: EXCEPTION WHEN OTHERS THEN

Line 402: wf_core.newline||l_comment;

398: BEGIN
399: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
400: BEGIN
401: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(SYSDATE)||
402: wf_core.newline||l_comment;
403: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
404: l_comment := null;
405: EXCEPTION WHEN OTHERS THEN
406: NULL;

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

399: IF (p_funcmode = 'RUN' AND l_comment IS NOT NULL) THEN
400: BEGIN
401: l_mesg_comment := l_mesg_comment||wf_core.newline||l_performer||' : '||FND_DATE.DATE_TO_CHARDT(SYSDATE)||
402: wf_core.newline||l_comment;
403: -- l_html_mesg := replace(l_mesg_comment,wf_core.newline,'
'||wf_core.newline);
404: l_comment := null;
405: EXCEPTION WHEN OTHERS THEN
406: NULL;
407: END;