DBA Data[Home] [Help]

APPS.IBY_DISBURSE_UI_API_PUB_PKG dependencies on FND_FUNCTION

Line 10075: l_bool := fnd_function.test_instance(

10071: loop
10072: FETCH c_pay_function INTO l_func;
10073: exit when c_pay_function%NOTFOUND;
10074: -- check security
10075: l_bool := fnd_function.test_instance(
10076: 'IBY_' || l_func,
10077: null,
10078: null,
10079: null,

Line 11426: | FND_FUNCTION.TEST API.

11422: |
11423: | PURPOSE:
11424: | This API will return Y or N is the security function passed
11425: | is assigned to the user. This function wraps the
11426: | FND_FUNCTION.TEST API.
11427: |
11428: | PARAMETERS:
11429: | IN x_security_function_name
11430: |

Line 11447: IF fnd_function.test(x_security_function_name) THEN

11443: x_return_status VARCHAR2(30) := 'N';
11444:
11445: BEGIN
11446:
11447: IF fnd_function.test(x_security_function_name) THEN
11448: x_return_status := 'Y';
11449: END IF;
11450:
11451: RETURN x_return_status;