DBA Data[Home] [Help]

APPS.BISM_CORE dependencies on XMLTYPE

Line 2239: -- convert CLOB representation of extensible attributes into XMLType representation

2235: else
2236: timeM := sysdate;
2237: end if;
2238: if p_extAttrs_Clob is not null then
2239: -- convert CLOB representation of extensible attributes into XMLType representation
2240: p_extAttrs := sys.xmltype.createXML(p_extAttrs_Clob);
2241: end if;
2242:
2243: insert into BISM_OBJECTS

Line 2240: p_extAttrs := sys.xmltype.createXML(p_extAttrs_Clob);

2236: timeM := sysdate;
2237: end if;
2238: if p_extAttrs_Clob is not null then
2239: -- convert CLOB representation of extensible attributes into XMLType representation
2240: p_extAttrs := sys.xmltype.createXML(p_extAttrs_Clob);
2241: end if;
2242:
2243: insert into BISM_OBJECTS
2244: (USER_VISIBLE, OBJECT_TYPE_ID,VERSION, TIME_DATE_CREATED, TIME_DATE_MODIFIED, OBJECT_ID, CONTAINER_ID, FOLDER_ID, CREATED_BY,

Line 2309: -- convert CLOB representation of extensible attributes into XMLType representation

2305: end;
2306:
2307: if ret = 'y' then
2308: if p_ext_attrs_clob is not null then
2309: -- convert CLOB representation of extensible attributes into XMLType representation
2310: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);
2311: end if;
2312:
2313: insert into BISM_OBJECTS (USER_VISIBLE,OBJECT_TYPE_ID,VERSION,TIME_DATE_CREATED,TIME_DATE_MODIFIED,OBJECT_ID,CONTAINER_ID,FOLDER_ID,

Line 2310: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);

2306:
2307: if ret = 'y' then
2308: if p_ext_attrs_clob is not null then
2309: -- convert CLOB representation of extensible attributes into XMLType representation
2310: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);
2311: end if;
2312:
2313: insert into BISM_OBJECTS (USER_VISIBLE,OBJECT_TYPE_ID,VERSION,TIME_DATE_CREATED,TIME_DATE_MODIFIED,OBJECT_ID,CONTAINER_ID,FOLDER_ID,
2314: CREATED_BY,LAST_MODIFIED_BY,OBJECT_NAME,TITLE,APPLICATION,DATABASE,DESCRIPTION,KEYWORDS,XML,

Line 2460: -- convert CLOB representation of extensible attributes into XMLType representation

2456: -- nothing to do with parent folder
2457: ret := bism_access_control.check_upd_access(null,p_oid,'n',p_subject_id);
2458: if ret = 'y' then
2459: if p_ext_attrs_clob is not null then
2460: -- convert CLOB representation of extensible attributes into XMLType representation
2461: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);
2462: end if;
2463:
2464: update bism_objects

Line 2461: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);

2457: ret := bism_access_control.check_upd_access(null,p_oid,'n',p_subject_id);
2458: if ret = 'y' then
2459: if p_ext_attrs_clob is not null then
2460: -- convert CLOB representation of extensible attributes into XMLType representation
2461: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);
2462: end if;
2463:
2464: update bism_objects
2465: set USER_VISIBLE=p_visible,

Line 2494: -- convert CLOB representation of extensible attributes into XMLType representation

2490:
2491: else
2492: -- if rebind is called to insert an aggregate object, dont check privs
2493: if p_ext_attrs_clob is not null then
2494: -- convert CLOB representation of extensible attributes into XMLType representation
2495: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);
2496: end if;
2497:
2498: insert into bism_objects (USER_VISIBLE, OBJECT_TYPE_ID,VERSION, TIME_DATE_CREATED, TIME_DATE_MODIFIED, OBJECT_ID, CONTAINER_ID, FOLDER_ID, CREATED_BY,

Line 2495: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);

2491: else
2492: -- if rebind is called to insert an aggregate object, dont check privs
2493: if p_ext_attrs_clob is not null then
2494: -- convert CLOB representation of extensible attributes into XMLType representation
2495: p_ext_attrs := sys.xmltype.createXML(p_ext_attrs_clob);
2496: end if;
2497:
2498: insert into bism_objects (USER_VISIBLE, OBJECT_TYPE_ID,VERSION, TIME_DATE_CREATED, TIME_DATE_MODIFIED, OBJECT_ID, CONTAINER_ID, FOLDER_ID, CREATED_BY,
2499: LAST_MODIFIED_BY, OBJECT_NAME, TITLE, APPLICATION, DATABASE, DESCRIPTION, KEYWORDS, XML, APPLICATION_SUBTYPE1, COMP_SUBTYPE1,