DBA Data[Home] [Help]

APPS.BISM_WEAKAGGREGATES dependencies on BISM_ACCESS_CONTROL

Line 45: ret := bism_access_control.check_list_access(fid,myid);

41: bism_core.lookuphelper(fid,a_srcpath,a_srcname,a_srcid,a_srctypeid,myid);
42: else
43: -- when null is supplied for srcname, it means that the user wanted
44: -- this folder to be src object
45: ret := bism_access_control.check_list_access(fid,myid);
46: -- check_list_access will throw an exception if not enough privs
47: a_srcid := fid;
48: a_srctypeid := 100;
49: end if;

Line 77: ret := bism_access_control.check_list_access(fid,myid);

73: bism_core.lookuphelper(fid,a_tgtpath,a_tgtname,a_tgtid,a_tgttypeid,myid);
74: else
75: -- when null is supplied for srcname, it means that the user wanted
76: -- this folder to be src object
77: ret := bism_access_control.check_list_access(fid,myid);
78: a_tgtid := fid;
79: a_tgttypeid := 100;
80: end if;
81:

Line 142: ret := bism_access_control.check_list_access(fid,myid);

138:
139: if a_srcpath is not null then
140: bism_core.lookuphelper(fid,a_srcpath,a_srcname,a_srcid,a_srctypeid,myid);
141: else
142: ret := bism_access_control.check_list_access(fid,myid);
143: a_srcid := fid;
144: a_srctypeid := 100;
145: end if;
146: -- check for exceptions and map them as being related to the source object

Line 213: ret := bism_access_control.check_list_access(fid,myid);

209:
210: if a_srcpath is not null then
211: bism_core.lookuphelper(fid,a_srcpath,a_srcname,a_srcid,a_srctypeid,myid);
212: else
213: ret := bism_access_control.check_list_access(fid,myid);
214: a_srcid := fid;
215: end if;
216: -- check for exceptions and map them as being related to the source object
217: -- so that the caller can distringuish

Line 300: ret := bism_access_control.check_list_access(fid,myid);

296: len := nvl(length(newstr),0);
297: if len <> 0 then
298: begin
299: select object_id,object_type_id,object_name,user_visible into oid,typeid,oname,visible from bism_objects where folder_id = fid and object_name = newstr and user_visible = 'Y';
300: ret := bism_access_control.check_list_access(fid,myid);
301:
302: if ret = 'y' then
303: -- when the given string does not contain the delimiter any more
304: -- get_next_element function will set startpos to zero

Line 364: ret := bism_access_control.check_list_access(fid,myid);

360: else
361: -- when user supplies an empty string into Java listAssociates() API
362: -- that methods binds "" to the bind variable which turns out to be
363: -- a null in plsql.
364: ret := bism_access_control.check_list_access(fid,myid);
365: if ret = 'y' then
366: folderid := fid;
367: return fid;
368: end if;