DBA Data[Home] [Help]

APPS.AMW_SECURITY_UTILS_PVT dependencies on FND_API

Line 103: x_success := FND_API.G_FALSE ;

99:
100: exception
101: when OTHERS then
102:
103: x_success := FND_API.G_FALSE ;
104: x_errorcode:=-1;
105:
106:
107: end give_dependant_grants;

Line 165: x_success := FND_API.G_FALSE ;

161:
162:
163: exception
164: when OTHERS then
165: x_success := FND_API.G_FALSE ;
166:
167: end update_dependant_grants;
168:
169: procedure revoke_dependant_grants(p_grant_guid in raw,

Line 206: x_success := FND_API.G_FALSE ;

202:
203:
204: exception
205: when OTHERS then
206: x_success := FND_API.G_FALSE ;
207: x_errorcode := -1;
208: end revoke_dependant_grants;
209:
210: FUNCTION get_party_id return number

Line 251: raise FND_API.G_EXC_UNEXPECTED_ERROR;

247:
248: BEGIN
249:
250: if (fnd_global.user_name is null) then
251: raise FND_API.G_EXC_UNEXPECTED_ERROR;
252: end if;
253:
254: l_data_security_switch := fnd_profile.value('AMW_DATA_SECURITY_SWITCH');
255:

Line 281: raise FND_API.G_EXC_UNEXPECTED_ERROR;

277: end if;
278:
279: exception
280: when others then
281: raise FND_API.G_EXC_UNEXPECTED_ERROR;
282:
283: END;
284:
285: