DBA Data[Home] [Help]

APPS.FND_FORM_FUNCTIONS_PKG dependencies on FND_FUNCTION_SECURITY_CACHE

Line 938: fnd_function_security_cache.delete_function(X_FUNCTION_ID);

934: raise no_data_found;
935: else
936: -- This means that a function was deleted.
937: -- Added for Function Security Cache Invalidation Project
938: fnd_function_security_cache.delete_function(X_FUNCTION_ID);
939: end if;
940:
941: delete from FND_FORM_FUNCTIONS_TL
942: where FUNCTION_ID = X_FUNCTION_ID;

Line 1208: fnd_function_security_cache.insert_function(X_FUNCTION_ID);

1204: X_JRAD_REF_PATH
1205: );
1206:
1207: -- Added for Function Security Cache Invalidation Project
1208: fnd_function_security_cache.insert_function(X_FUNCTION_ID);
1209:
1210: if (columns_name is not null) then
1211: -- print out message about which column has been changed to
1212: -- meet the function type validation rule

Line 1490: fnd_function_security_cache.update_function(X_FUNCTION_ID);

1486: raise no_data_found;
1487: else
1488: -- This means that a function was updated.
1489: -- Added for Function Security Cache Invalidation Project
1490: fnd_function_security_cache.update_function(X_FUNCTION_ID);
1491: end if;
1492:
1493: update FND_FORM_FUNCTIONS_TL set
1494: USER_FUNCTION_NAME = X_USER_FUNCTION_NAME,