DBA Data[Home] [Help]

APPS.WF_ITEM_DEFINITION dependencies on WFA_SEC

Line 76: wfa_sec.GetSession(l_username);

72:
73: /*
74: ** Make sure the user has signed on
75: */
76: wfa_sec.GetSession(l_username);
77:
78: /*
79: ** Check what security controls are enabled
80: */

Line 239: wfa_sec.footer;

235:
236: htp.tableRowClose;
237: htp.tableClose;
238:
239: wfa_sec.footer;
240: htp.htmlClose;
241:
242: EXCEPTION
243: WHEN OTHERS THEN

Line 287: wfa_sec.GetSession(l_username);

283:
284: /*
285: ** Make sure the user has signed on
286: */
287: wfa_sec.GetSession(l_username);
288:
289: /*
290: ** Create the three frames for the Item Definition Summary.
291: ** The frames are constructed in the following manner:

Line 488: wfa_sec.GetSession(l_username);

484:
485: BEGIN
486:
487: -- Make sure user has signed on
488: wfa_sec.GetSession(l_username);
489:
490:
491: /*
492: ** Get the display name for the item type if it was passed in

Line 552: wfa_sec.header(FALSE, '', l_title, FALSE);

548: ** Open body and draw standard header
549: */
550: if (p_caller = 'FIND') THEN
551:
552: wfa_sec.header(FALSE, '', l_title, FALSE);
553:
554: else
555:
556: wfa_sec.header(FALSE, 'wf_item_definition.find_item_type', l_title,FALSE);

Line 556: wfa_sec.header(FALSE, 'wf_item_definition.find_item_type', l_title,FALSE);

552: wfa_sec.header(FALSE, '', l_title, FALSE);
553:
554: else
555:
556: wfa_sec.header(FALSE, 'wf_item_definition.find_item_type', l_title,FALSE);
557:
558: end if;
559:
560: htp.p('');

Line 608: wfa_sec.GetSession(l_username);

604:
605: /*
606: ** Make sure the user has signed on
607: */
608: wfa_sec.GetSession(l_username);
609:
610: l_item_type := p_item_type;
611:
612: /*

Line 675: wfa_sec.header(background_only=>TRUE);

671:
672: /*
673: ** Open body and draw standard header
674: */
675: wfa_sec.header(background_only=>TRUE);
676:
677: /*
678: ** Open a new table for each attribute so you can control the spacing
679: ** between each attribute

Line 781: wfa_sec.GetSession(l_username);

777:
778: /*
779: ** Make sure the user has signed on
780: */
781: wfa_sec.GetSession(l_username);
782:
783: /*
784: ** Check the effective date that was passed in. If it is invalid
785: ** Then just show a frame with an error. Otherwise show the

Line 844: wfa_sec.header(background_only=>TRUE);

840:
841: /*
842: ** Open body and draw standard header
843: */
844: wfa_sec.header(background_only=>TRUE);
845:
846: /*
847: ** List all the item type details
848: */

Line 946: wfa_sec.header(background_only=>TRUE);

942: PROCEDURE draw_error (p_effective_date VARCHAR2 ,
943: p_expected_format VARCHAR2 ) IS
944:
945: BEGIN
946: wfa_sec.header(background_only=>TRUE);
947:
948: /*
949: ** skip a line
950: */

Line 974: wfa_sec.footer;

970: */
971: htp.p(wf_core.translate('WFITD_USE_FORMAT')||' '||
972: TO_CHAR(sysdate, p_expected_format));
973:
974: wfa_sec.footer;
975:
976: EXCEPTION
977: WHEN OTHERS THEN
978: Wf_Core.Context('wf_item_definition', 'draw_error');