DBA Data[Home] [Help]

APPS.FND_RESP_FUNCTIONS_PKG dependencies on FND_FUNCTION_SECURITY_CACHE

Line 46: fnd_function_security_cache.update_resp(X_RESPONSIBILITY_ID, X_APPLICATION_ID);

42: X_LAST_UPDATE_LOGIN
43: );
44:
45: -- Added for Function Security Cache Invalidation Project.
46: fnd_function_security_cache.update_resp(X_RESPONSIBILITY_ID, X_APPLICATION_ID);
47:
48: open c;
49: fetch c into X_ROWID;
50: if (c%notfound) then

Line 111: fnd_function_security_cache.update_resp(X_RESPONSIBILITY_ID, X_APPLICATION_ID);

107: if (sql%notfound) then
108: raise no_data_found;
109: else
110: -- Added for Function Security Cache Invalidation Project.
111: fnd_function_security_cache.update_resp(X_RESPONSIBILITY_ID, X_APPLICATION_ID);
112: end if;
113: end UPDATE_ROW;
114:
115: procedure DELETE_ROW (

Line 131: fnd_function_security_cache.update_resp(X_RESPONSIBILITY_ID, X_APPLICATION_ID);

127: if (sql%notfound) then
128: raise no_data_found;
129: else
130: -- Added for Function Security Cache Invalidation Project.
131: fnd_function_security_cache.update_resp(X_RESPONSIBILITY_ID, X_APPLICATION_ID);
132: end if;
133: end DELETE_ROW;
134:
135: --Overloaded!!