DBA Data[Home] [Help]

APPS.AR_NOTIFICATION_STANDARD dependencies on FND_GLOBAL

Line 12: where name = fnd_global.user_name; */

8:
9: /* cursor role_csr is
10: select name role_name
11: from wf_roles
12: where name = fnd_global.user_name; */
13:
14: function createUrl(p_function in varchar2) return varchar2 is
15: l_url varchar2(1000);
16: l_function_id NUMBER;

Line 24: l_url := l_url||icx_call.encrypt2(fnd_global.resp_appl_id||'*'||

20: if ar_doc_transfer_standard.isDebugOn then ar_doc_transfer_standard.debug('AR_NOTIFICATION_STANDARD.createUrl(+)'); end if;
21: open func; fetch func into l_function_id; close func;
22: fnd_profile.get('APPS_WEB_AGENT', l_url);
23: l_url := l_url||'OracleApps.RF?F=';
24: l_url := l_url||icx_call.encrypt2(fnd_global.resp_appl_id||'*'||
25: fnd_global.resp_id||'*'||
26: fnd_global.security_group_id||'*'||
27: l_function_id||'*'||
28: icx_sec.getsessioncookie());

Line 25: fnd_global.resp_id||'*'||

21: open func; fetch func into l_function_id; close func;
22: fnd_profile.get('APPS_WEB_AGENT', l_url);
23: l_url := l_url||'OracleApps.RF?F=';
24: l_url := l_url||icx_call.encrypt2(fnd_global.resp_appl_id||'*'||
25: fnd_global.resp_id||'*'||
26: fnd_global.security_group_id||'*'||
27: l_function_id||'*'||
28: icx_sec.getsessioncookie());
29: if ar_doc_transfer_standard.isDebugOn then ar_doc_transfer_standard.debug('AR_NOTIFICATION_STANDARD.createUrl(-)');end if;

Line 26: fnd_global.security_group_id||'*'||

22: fnd_profile.get('APPS_WEB_AGENT', l_url);
23: l_url := l_url||'OracleApps.RF?F=';
24: l_url := l_url||icx_call.encrypt2(fnd_global.resp_appl_id||'*'||
25: fnd_global.resp_id||'*'||
26: fnd_global.security_group_id||'*'||
27: l_function_id||'*'||
28: icx_sec.getsessioncookie());
29: if ar_doc_transfer_standard.isDebugOn then ar_doc_transfer_standard.debug('AR_NOTIFICATION_STANDARD.createUrl(-)');end if;
30: return l_url;

Line 48: document := fnd_message.get||fnd_global.newline||fnd_global.newline||l_buffer;

44: ar_notification_standard.parseDocumentId(document_id, l_item_type, l_item_key);
45: l_buffer := wf_engine.getItemAttrText(itemType => l_item_type,
46: itemKey => l_item_key,
47: aname => 'USER_AREA1');
48: document := fnd_message.get||fnd_global.newline||fnd_global.newline||l_buffer;
49: document_type := 'text/plain';
50: if ar_doc_transfer_standard.isDebugOn then ar_doc_transfer_standard.debug('AR_NOTIFICATION_STANDARD.build_error_message(-)'); end if;
51: end;
52:

Line 65: WF_NOTIFICATION.WriteToClob(document,fnd_message.get||fnd_global.newline||fnd_global.newline);

61:
62: begin
63: if ar_doc_transfer_standard.isDebugOn then ar_doc_transfer_standard.debug('AR_NOTIFICATION_STANDARD.build_error_message(+)'); end if;
64: fnd_message.set_name('AR', 'AR_DOC_TRS_BODY');
65: WF_NOTIFICATION.WriteToClob(document,fnd_message.get||fnd_global.newline||fnd_global.newline);
66:
67: ar_notification_standard.parseDocumentId(document_id, l_item_type, l_item_key);
68: l_buffer := wf_engine.getItemAttrText(itemType => l_item_type,
69: itemKey => l_item_key,