DBA Data[Home] [Help]

APPS.WFA_HTML dependencies on WFA_SEC

Line 64: wfa_sec.Header(background_only=>FALSE, inc_lov_applet=>FALSE);

60: htp.headOpen;
61: htp.title(wf_core.translate('WFA_LOGIN_REQUEST'));
62: wfa_html.create_help_function('wf/links/log.htm?LOGIN');
63: htp.headClose;
64: wfa_sec.Header(background_only=>FALSE, inc_lov_applet=>FALSE);
65:
66: htp.p('

');
67:
68: -- bug 1838410

Line 122: wfa_sec.Footer;

118:
119: htp.tableRowClose;
120: htp.tableClose;
121:
122: wfa_sec.Footer;
123: htp.htmlClose;
124: exception
125: when others then
126: rollback;

Line 162: wfa_sec.CreateSession(username, password);

158: end if;
159: username := upper(user_id);
160:
161: begin
162: wfa_sec.CreateSession(username, password);
163: exception
164: when others then
165: if (wf_core.error_name='WFSEC_USER_PASSWORD') then
166: -- Bad username or password

Line 375: Wfa_Sec.GetSession(username);

371: oosid number;
372: begin
373: if (nkey is null) then
374: -- No nkey passed, means must be connected. Get current user.
375: Wfa_Sec.GetSession(username);
376:
377: -- Get recipient and original recipient of this notification
378: begin
379: select RECIPIENT_ROLE, ORIGINAL_RECIPIENT

Line 794: ' src="'||agent || '/' || wfa_sec.DirectLogin(nid) || '">'||g_newLine;

790: result := result||''||g_newLine;
791:
792: result := result ||
793: ' 794: ' src="'||agent || '/' || wfa_sec.DirectLogin(nid) || '">'||g_newLine;
795: result := result || ''||g_newLine;
796: result := result || htf.htmlClose;
797: end if;
798:

Line 1185: wfa_sec.create_help_syntax (l_help_target, l_lang);

1181: l_help_target := p_help_file;
1182:
1183: END IF;
1184:
1185: wfa_sec.create_help_syntax (l_help_target, l_lang);
1186:
1187: end if;
1188:
1189: exception

Line 1608: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),

1604: htp.p('');
1605: htp.title(wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'));
1606: wfa_html.create_help_function('wfnew/wfnew52.htm#nrr');
1607: htp.headClose;
1608: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),
1609: TRUE);
1610: htp.br;
1611:
1612: lobsize := dbms_lob.getlength(clob_loc);

Line 1619: wfa_sec.Footer;

1615: while not (end_of_text) loop
1616: wf_notification.readattrclob(nid, aname, doctext, end_of_text);
1617: htp.prn(doctext);
1618: end loop;
1619: wfa_sec.Footer;
1620: htp.htmlClose;
1621: elsif attr_name is not null then
1622: -- BINARY Document
1623: if (l_encoding is not null) then

Line 1684: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),

1680: htp.headOpen;
1681: htp.title(wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'));
1682: wfa_html.create_help_function('wfnew/wfnew52.htm#nrr');
1683: htp.headClose;
1684: wfa_sec.Header(FALSE, '',wf_core.translate('WFITD_ATTR_TYPE_DOCUMENT'),
1685: TRUE);
1686: htp.br;
1687:
1688: htp.p (doctext);

Line 1690: wfa_sec.Footer;

1686: htp.br;
1687:
1688: htp.p (doctext);
1689:
1690: wfa_sec.Footer;
1691: htp.htmlClose;
1692: end if;
1693:
1694: exception

Line 2105: wfa_sec.Header(background_only=>TRUE);

2101: htp.title(wf_core.translate('LONG_DESC'));
2102: htp.headClose;
2103:
2104: begin
2105: wfa_sec.Header(background_only=>TRUE);
2106: exception
2107: when others then
2108: htp.bodyOpen;
2109: end;

Line 2113: wfa_sec.Footer;

2109: end;
2110:
2111: htp.p(WF_CORE.Translate(UPPER(p_token)));
2112:
2113: wfa_sec.Footer;
2114: htp.htmlClose;
2115:
2116: END LongDesc;
2117: