DBA Data[Home] [Help]

APPS.FND_FUNCTION_W dependencies on FND_FUNCTION

Line 1: PACKAGE BODY fnd_function_w AS

1: PACKAGE BODY fnd_function_w AS
2: /* $Header: hrfndwrs.pkb 115.1 2001/12/18 21:02:22 pkm ship $*/
3: /*
4: ||===========================================================================
5: || PROCEDURE: test

Line 9: || This procedure will call the actual API - fnd_function.test() which

5: || PROCEDURE: test
6: ||---------------------------------------------------------------------------
7: ||
8: || Description:
9: || This procedure will call the actual API - fnd_function.test() which
10: || does the following ;
11: || Test if function is accessible under current responsibility.
12: || Only checks static function security, not data security.
13: || This is here for cases where performance is important,

Line 51: lb_out_result := FND_FUNCTION.TEST(p_function_name);

47:
48: begin
49: lc_out_result := 'N';
50:
51: lb_out_result := FND_FUNCTION.TEST(p_function_name);
52:
53: if lb_out_result then
54: lc_out_result := 'Y';
55: end if;

Line 69: || This procedure will call the actual API - fnd_function.test() which

65: || PROCEDURE: test_id
66: ||---------------------------------------------------------------------------
67: ||
68: || Description:
69: || This procedure will call the actual API - fnd_function.test() which
70: || does the following ;
71: || Test if function is accessible under current responsibility.
72: ||
73: ||

Line 104: lb_out_result := FND_FUNCTION.TEST_ID(p_function_id);

100: lb_out_result boolean;
101:
102: begin
103: lc_out_result := 'N';
104: lb_out_result := FND_FUNCTION.TEST_ID(p_function_id);
105:
106: if lb_out_result then
107: lc_out_result := 'Y';
108: end if;

Line 118: END fnd_function_w;

114: end;
115:
116:
117:
118: END fnd_function_w;