DBA Data[Home] [Help]

APPS.OKS_RENEW_UTIL_PVT dependencies on FND_FUNCTION

Line 1505: -- by calling fnd_function.test. This is a wrapper on fnd_function.test

1501:
1502: END GET_RENEWAL_TYPE;
1503:
1504: -- This API checks if function is accessible under current responsibility.
1505: -- by calling fnd_function.test. This is a wrapper on fnd_function.test
1506: -- parameters
1507: -- function_name - function to test
1508: -- RETURNS
1509: -- Y if function is accessible else N

Line 1517: IF fnd_function.test(p_function_name, 'Y') THEN

1513: IS
1514: l_return_val VARCHAR2(1);
1515:
1516: BEGIN
1517: IF fnd_function.test(p_function_name, 'Y') THEN
1518: l_return_val := 'Y';
1519: ELSE
1520: l_return_val := 'N';
1521: END IF;