DBA Data[Home] [Help]

APPS.BNE_SECURITY_UTILS_PKG dependencies on FND_FORM_FUNCTIONS

Line 7: -- exist in the FND_FORM_FUNCTIONS table

3:
4: --------------------------------------------------
5: -- Check a comma separated list of form functions.
6: -- This routine will check that all form functions
7: -- exist in the FND_FORM_FUNCTIONS table
8: --------------------------------------------------
9: PROCEDURE CHECK_FUNCTION_EXISTANCE (
10: P_SECURITY_VALUE in VARCHAR2
11: )

Line 24: from FND_FORM_FUNCTIONS

20: FOR i IN v_tab.FIRST .. v_tab.LAST -1
21: LOOP
22: select count(*)
23: into v_funcCount
24: from FND_FORM_FUNCTIONS
25: WHERE FUNCTION_NAME = trim(v_tab(i));
26:
27: if v_funcCount = 0 then
28: RAISE_APPLICATION_ERROR( -20000,'The supplied function: ' || trim(v_tab(i))|| ' is invalid.');