DBA Data[Home] [Help]

APPS.BISM_CORE dependencies on BISM_OBJECT_IDS

Line 279: function prepare_rebind(fid raw,oname varchar2,myid raw,ids out nocopy bism_object_ids, current_time out nocopy date,num number,status out nocopy integer)

275: return bism_access_control.check_read_access(null,oid,'n',myid);
276: end if;
277: end check_lookup_access;
278:
279: function prepare_rebind(fid raw,oname varchar2,myid raw,ids out nocopy bism_object_ids, current_time out nocopy date,num number,status out nocopy integer)
280: return raw
281: is
282: typeid bism_objects.object_type_id%type;
283: oid bism_objects.object_id%type;

Line 288: ids := bism_object_ids();

284: tempid bism_objects.object_id%type;
285: foldername bism_objects.object_name%type;
286: ret varchar2(1) := 'n';
287: begin
288: ids := bism_object_ids();
289: -- make sure the folder exists and that the user has delete
290: -- privilege on it
291: begin
292:

Line 374: --ids := bism_object_ids();

370: tempid bism_objects.object_id%type;
371: foldername bism_objects.object_name%type;
372: ret varchar2(1) := 'n';
373: begin
374: --ids := bism_object_ids();
375: -- the caller shouldn't ask for more than 2000 ids at a time
376: --select sysdate into current_time from dual;
377: --if num > 2000 then
378: -- return null;

Line 490: function prepare_rebind(fid raw,folder_path varchar2,oname varchar2,myid raw,ids out nocopy bism_object_ids, current_time out nocopy date,num number,status out nocopy integer,parentid out nocopy raw)

486: end lookup_folder_wo_security;
487:
488:
489: -- new prepare rebind method
490: function prepare_rebind(fid raw,folder_path varchar2,oname varchar2,myid raw,ids out nocopy bism_object_ids, current_time out nocopy date,num number,status out nocopy integer,parentid out nocopy raw)
491: return raw
492: is
493: typeid bism_objects.object_type_id%type;
494: oid bism_objects.object_id%type;

Line 498: ids := bism_object_ids();

494: oid bism_objects.object_id%type;
495: tempid bism_objects.object_id%type;
496: pos integer := 1;
497: begin
498: ids := bism_object_ids();
499: -- make sure the folder exists
500: if folder_path is null then
501: parentid := fid;
502: else

Line 575: --ids := bism_object_ids();

571: oid bism_objects.object_id%type;
572: tempid bism_objects.object_id%type;
573: pos integer := 1;
574: begin
575: --ids := bism_object_ids();
576: -- make sure the folder exists
577: if folder_path is null then
578: parentid := fid;
579: else