DBA Data[Home] [Help]

APPS.OKC_REPORT_PVT dependencies on WF_MAIL

Line 30: -- wf_mail (.urlencode)

26: --
27: -- Dependencies:
28: --
29: -- okc_tree_index (.set_root_id)
30: -- wf_mail (.urlencode)
31: --
32: -- okcFormsXmlPrint.jsp (former okcxmlkf.jsp) - print xml contract
33: --
34: -- Profile values used:

Line 768: return replace(replace(WF_MAIL.URLENCODE(value),'\','%5C'),':','%3A');

764: -- escapes parameter values
765: --
766: function urlencode (value varchar2) return varchar2 is
767: begin
768: return replace(replace(WF_MAIL.URLENCODE(value),'\','%5C'),':','%3A');
769: end;
770:
771: --
772: -- PROCEDURE/Function

Line 1091: select wf_mail.URLENCODE(value) into l_value

1087: l_url := l_url||'&'||'sid='||to_char(p_scn_id);
1088: l_url := l_url||'&'||'xid='||fnd_profile.value('OKC_WEB_REPORT');
1089: --
1090: l_url := l_url||'&'||'nlsl=';
1091: select wf_mail.URLENCODE(value) into l_value
1092: from NLS_SESSION_PARAMETERS
1093: where PARAMETER='NLS_LANGUAGE';
1094: l_url := l_url||l_value;
1095: --

Line 1097: select wf_mail.URLENCODE(value) into l_value

1093: where PARAMETER='NLS_LANGUAGE';
1094: l_url := l_url||l_value;
1095: --
1096: l_url := l_url||'&'||'nlst=';
1097: select wf_mail.URLENCODE(value) into l_value
1098: from NLS_SESSION_PARAMETERS
1099: where PARAMETER='NLS_TERRITORY';
1100: l_url := l_url||l_value;
1101: --