XML extensions via update centre

Is it possible to bundle XML extensions so that they can be installed via 'Check for updates'?
XML extensions: http://www.oracle.com/technology/oramag/oracle/07-jul/o47sql.html
Bundling Java extensions for update centre: http://www.oracle.com/technology/products/jdev/101/howtos/checkupd/updatecenter.html
Thanks,
Tim

As you may have read from those sites, you have user defined xml extensions and Java extensions. As you can see on the JDev page, the Update Center uses the latter (as sqldev is build on the same framework).
Nevertheless, I think it's a very nice idea to be able to roll out xml extensions the same (or similar) way. Why don't you add a feature request at the announced SQL Developer Exchange?
Regards,
K.

Similar Messages

  • Can't download JUNIT extension via "check for updates"

    Hi,
    since a few weeks (with jdev 11.1.1.1.0 and jdev 11.1.1.2.0) I can't download e.g. JUNIT extensions via "check for updates".
    I have to enter a password but authentication is not possible.
    Even when I reset the passord (via "find password") it does not work any more.
    Im 100% sure that this worked some time ago without problems.
    I can access http://www.oracle.com/technology/products/jdev/101/update/center.xml#oracle.jdeveloper.junit and download the extension manually.
    regards
    Peter

    Peter,
    no problems on my side with my account. I did it yesterday without any problem.
    Timo

  • Upgrade results in loss of preferences and Update Centre paths

    I have just upgraded to EA7. Having started to use SqlDev in earnest I had changed some preference settings. So I checked the ReadMe and was disappointed to find that it's still not possible to export preferences, What the document didn't say, but ought to, is that any links we've put in the Update Centre will also get lost. This is annoying. I hadn't bookmarked the extension sites because I thought the Update Centre was tracking them
    I must admit to being a bit bemused as to why we can export connections but not other kinds of configuration data. Doesn't this annoy you guys too?
    Cheers, APC

    It is very annoying, but it also is not a production product yet. Since development is still occurring on it, I would assume that the structure of the configuration files are still changing.
    The big question is once SQL Developer is production, will they retain preference settings during upgrades? One issue I have is I cannot get the "check for upgrade" to work through my firewall. So will the upgrade guidelines document what configuration files to retain to keep your preferences when doing a fresh install?
    Please do not rely on everyone using the upgrade center for upgrades.
    Mike

  • Creation of a shipping notification for a PO in EBP from a XML file via XI.

    Hi everybody.
    We are trying to create a shipping notification for a Purchase Order in Enterprise Buyer from a XML file via XI.
    For to do it, we are using ‘DespatchedDeliveryNotification_In’ message interface (transaction SPROXY).
    But when we execute it, the system show us next message:
    "An error occured within an XI interface: An exception with the type CX_GDT_CONVERSION occurred, but was neither handled locally, nor declared in a RAISING clause Programm: SAPLBBP_BD_MAPPING_SAPXML1; Include: LBBP_BD_MAPPING_SAPXML1F5B; Line: 4"
    No more information is available.
    Is there any additional transaction to see more information about the error message?
    Is there any documentation about this XML file, mandatory fields, examples…?
    We populated some fields in our XML file, but we do not know if the problem is with mandatory fields, data, program error…
    I will thank for any information
    Thanks in advance.
    Raúl Moncada.

    Raúl,
    This is because of the inbound UOM.
    The include LBBP_BD_MAPPING_SAPXML1F5B is in charge of mapping the item Unit Of Mesure (UOM) sent in the ASN XML file (it should be an ISO code).
    You can test FM UNIT_OF_MEASURE_ISO_TO_SAP with this inbound ISO code.
    PS: you should create an OSS message so the mapping sends back an error message instead of generating an uncatched exception (that generates a dump).
    Rgds
    Christophe
    PS: please reward points for helpfull answers

  • Authentication to XML DB via WebDAV and SSO

    Hi,
    Is there any way to be authentified by XML DB via WebDAV and SSO ?
    If the access to our infrastructure of database servers is controled by SSO, once I'm authentified by OID (SSO), is it possible to pass that authentification to XML DB through standard port 8080 ?
    Thank you for your help

    This is planned for a future (not 10g) release

  • Repository event handler doesn't work when inserting an xml-doc via ftp

    Hi,
    I want to add a 'schemaLocation'-attribute to an XML-document when I load it in the repository. Therefore, I use the precreate-repository event and created a Repository Event Handler (see code extract below).
    Everything works fine if I type the following code in SQL Plus:
    Declare
    v_return BOOLEAN;
    Begin
    v_return:=DBMS_XDB.createresource('/public/xml/test.xml', XMLType(bfilename('XMLDIR', 'test.xml'),nls_charset_id('AL32UTF8')));
    end;Unfortunately, when I try to insert an XML-document via ftp into the /public/xml folder it doesn´t work as expected and no 'schemaLocation'-attribute is added to the new resource.
    What's the reason for this strange behavior and how can I solve it?
    For your information: I use the Oracle Database 11g Enterprise Edition Release 11.2.0.1.0
    Thank you very much for your help!!!
    Repository Event Handler code extract:_
    create or replace
    PACKAGE BODY schemalocation AS
    PROCEDURE handlePreCreate (eventObject DBMS_XEVENT.XDBRepositoryEvent) AS
    XDBResourceObj DBMS_XDBRESOURCE.XDBResource;
    var XMLType;
    l_return BOOLEAN;
    l_xmldoc dbms_xmldom.DOMDocument;
    l_docelem dbms_xmldom.DOMElement;
    l_attr dbms_xmldom.DOMAttr;
    c1 clob;
    node     dbms_xmldom.DOMNode;
    txid varchar2(100);
    dDoc DBMS_XMLDOM.DOMDocument;
    nlNodeList DBMS_XMLDOM.DOMNodeList;
    BEGIN
    XDBResourceObj := DBMS_XEVENT.getResource(eventObject);
    dbms_lob.createTemporary(c1,TRUE);
    var:=DBMS_XDBRESOURCE.getcontentxml(XDBResourceObj);
    l_xmldoc := dbms_xmldom.newDOMDocument(var);
    l_docelem := DBMS_XMLDOM.getDocumentElement(l_xmldoc);
    ------ add schemaLocation attribute
    l_attr := DBMS_XMLDOM.createAttribute(l_xmldoc, 'xsi:schemaLocation');
    DBMS_XMLDOM.setValue(l_attr, 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd');
    l_attr := DBMS_XMLDOM.setAttributeNode(l_docelem, l_attr);
    DBMS_XMLDOM.WRITETOCLOB(l_xmldoc, c1);
    ------- get the value of the TxId-tag
    dDoc := DBMS_XMLDOM.NEWDOMDOCUMENT(c1);
    nlNodeList := DBMS_XMLDOM.GETELEMENTSBYTAGNAME(dDoc, 'TxId');
    node := DBMS_XMLDOM.ITEM(nlNodeList, 0);
    txid:= dbms_xmldom.getnodevalue(dbms_xmldom.getfirstchild(node));
    l_return:=DBMS_XDB.createresource('/public/ok/'||txid||'.xml', XMLType(c1));
    END;

    Marco,
    Here's an example of the problem :
    create or replace package handle_events
    as
      procedure handlePreCreate(p_event dbms_xevent.XDBRepositoryEvent);
    end;
    create or replace package body handle_events
    is
    procedure handlePreCreate (p_event dbms_xevent.XDBRepositoryEvent)
    is
      XDBResourceObj dbms_xdbresource.XDBResource;
      doc XMLType;
      res boolean;
    begin
      XDBResourceObj := dbms_xevent.getResource(p_event);
      doc := dbms_xdbresource.getContentXML(XDBResourceObj);
      select insertchildxml(
        doc
      , '/root'
      , '@xsi:schemaLocation'
      , 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd'
      , 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
      into doc
      from dual;
      res := dbms_xdb.CreateResource('/public/xml/result.xml', doc);
    end;
    end;
    declare
    res boolean;
    begin
    res := dbms_xdb.CreateFolder('/public');
    res := dbms_xdb.CreateFolder('/public/tmp');
    res := dbms_xdb.CreateFolder('/public/xml');
    end;
    declare
    res            boolean;
    resconfig      xmltype;
    my_schema      varchar2(30) := 'DEV';
    resconfig_path varchar2(300) := '/public/ResConfig.xml';
    resource_path  varchar2(300) := '/public/tmp';
    begin
      resconfig  := xmltype(
    '<ResConfig xmlns="http://xmlns.oracle.com/xdb/XDBResConfig.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/xdb/XDBResConfig.xsd http://xmlns.oracle.com/xdb/XDBResConfig.xsd">
      <event-listeners set-invoker="true">
        <listener>
          <description>My event handler</description>
          <schema>'||my_schema||'</schema>
          <source>HANDLE_EVENTS</source>
          <language>PL/SQL</language>
          <events>
            <Pre-Create/>
          </events>
          <pre-condition>
            <existsNode>
              <XPath>/r:Resource[r:ContentType="text/xml"]</XPath>
              <namespace>xmlns:r="http://xmlns.oracle.com/xdb/XDBResource.xsd"</namespace>
            </existsNode>
          </pre-condition>
        </listener>
      </event-listeners>
      <defaultChildConfig>
        <configuration>
          <path>'||resconfig_path||'</path>
        </configuration>
      </defaultChildConfig>
    </ResConfig>'
      res := dbms_xdb.CreateResource(resconfig_path, resconfig);
      dbms_resconfig.addResConfig(resource_path, resconfig_path, null);
    end;
    /Giving the following input XML file :
    <?xml version="1.0" encoding="utf-8"?>
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>This works :
    SQL> declare
      2    res boolean;
      3  begin
      4    res := dbms_xdb.CreateResource('/public/tmp/test.xml',
      5               xmltype(bfilename('TEST_DIR','test.xml'), nls_charset_id('AL32UTF8')));
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    RESULT
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
    urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd
    "/>With the same document loaded via FTP, we get :
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    ERROR:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00283: document encoding is UTF-16-based but default input encoding is not
    Error at line 1
    no rows selectedand the content looks like :
    < ? x m l   v e r s i o n = " 1 . 0 "   e n c o d i n g = " u t f - 8 " ? >
    < r o o t   x m l n s : x s i = " h t t p : / / w w w . w 3 . o r g / 2 0 0 1 / X M L S c h e m a - i n s t a n c e " / >As a workaround, I've found that serializing and re-parsing the document solves the problem :
      select insertchildxml(
        xmltype(doc.getclobval())
      , '/root'
      , '@xsi:schemaLocation'
      , 'urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd'
      , 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
      into doc
      from dual;
    ...We then get the expected result after FTP transfer :
    SQL> select XMLSerialize(document xdburitype('/public/xml/result.xml').getXML()
    as clob indent size = 2)  result
      2  from dual
      3  ;
    RESULT
    <?xml version="1.0" encoding="UTF-8"?>
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
    urn:iso:std:iso:20022:tech:xsd:sese.023.001.01 http://www.test.com/Testswift.xsd
    "/>The workaround also works for the DOM version presented above.
    Any ideas?

  • Xml to Oracle (Update more than one row)

    Hi,
    I want to update more than one row in table from .xml file. My xml file is as follows:
    <ROOT>
    <PROFILE PROFILEMASTER_PKEY="54" DB_MSTR_PKEY="2" PROFILE_NAME="Bhushans" DELIMETER="~" PRE_PROCESSOR="1" POST_PROCESSOR="10" PRE_PROCESSOR_TYPE="1" POST_PROCESSOR_TYPE="2" GROUPID="2" />
    <PROFILEDETAILS PROFILEMASTER_PKEY="54" TARGET_SOURCE_TABLE="FM_FEEDVALIDATION_LU" COLUMN_NAME="FEEDVALIDATION_ID" DATA_TYPE="NUMBER" DATA_SIZE="22" START_POSITION="12" END_POSITION="22" COLUMNORDER="1" PROFILEDETAILS_PKEY="399"/>
    <PROFILEDETAILS PROFILEMASTER_PKEY="54" TARGET_SOURCE_TABLE="FM_FEEDVALIDATION_LU" COLUMN_NAME="CHANGE_TYPE" DATA_TYPE="VARCHAR2" DATA_SIZE="1" START_POSITION="12" END_POSITION="144" COLUMNORDER="5" PROFILEDETAILS_PKEY="403"/>
    <OPTIONS PROFILEMASTER_PKEY ="54" LDR_SYNTX_DTLS_PKEY ="19" OPTIONVALUE="@" PROFILE_CFILE_PKEY="337" />
    <OPTIONS PROFILEMASTER_PKEY ="54" LDR_SYNTX_DTLS_PKEY ="19" OPTIONVALUE="~" PROFILE_CFILE_PKEY="336" />
    </ROOT>
    To update according to xml file, I have written following procedure. My procedure updates the table if u r updating 1 row. If you try to update more than 1 row, I mean .xml file contains more than 1 row then my procedure doesn't work. Please help to solve this problem.
    Procedure:
    create or replace procedure fm_prc_xml_dup_up
    as
    f utl_file.file_type;
    s varchar2(2000);
    v varchar2(3000);
    xml XMLType;
    v_pmpk number;
    v_sdtl_pk number;
    chng_typ VARCHAR2(20);
    type r1 is ref cursor;
    rcur r1;
    v1 varchar2(120);
    v2 number;
    begin
    f := utl_file.fopen('CITI', 'S.XML', 'R');
    loop
    utl_file.get_line(f, s);
    v := v || ' ' || s;
    end loop;
    exception
    when no_data_found then
    utl_file.fclose(f);
    xml := xmltype(v);
    SELECT extract(xml, 'ROOT/CHANGE/@CHANGETYPE').getstringval()
    INTO CHNG_TYP
    FROM DUAL;
    UPDATE FM_PROFILEMAST
    set db_mstr_pkey = extract(xml, 'ROOT/PROFILE/@DB_MSTR_PKEY').getnumberval(),
    profile_name = extract(xml, 'ROOT/PROFILE/@PROFILE_NAME').getstringval(),
    file_type = extract(xml, 'ROOT/PROFILE/@FILE_TYPE').getstringval(),
    delimiter = extract(xml, 'ROOT/PROFILE/@DELIMETER').getstringval(),
    pre_processor = extract(xml, 'ROOT/PROFILE/@PRE_PROCESSOR').getstringval(),
    post_processor = extract(xml, 'ROOT/PROFILE/@POST_PROCESSOR').getstringval(),
    pre_processor_type = extract(xml, 'ROOT/PROFILE/@PRE_PROCESSOR_TYPE').getstringval(),
    post_processor_type = extract(xml, 'ROOT/PROFILE/@POST_PROCESSOR_TYPE').getstringval(),
    groupid = extract(xml, 'ROOT/PROFILE/@GROUPID').getstringval(),
    change_type = 'U',
    change_by = chng_typ,
    change_dt = default,
    active_flag = default
    WHERE profilemaster_pkey = extract(xml, 'ROOT/PROFILE/@PROFILEMASTER_PKEY').getnumberval();
    UPDATE FM_PROFILEDET
    SET target_source_table = extract(xml, 'ROOT/PROFILEDETAILS/@TARGET_SOURCE_TABLE').getstringval(),
    column_name = extract(xml, 'ROOT/PROFILEDETAILS/@COLUMN_NAME').getstringval(),
    data_type = extract(xml, 'ROOT/PROFILEDETAILS/@DATA_TYPE').getstringval(),
    data_size = extract(xml, 'ROOT/PROFILEDETAILS/@DATA_SIZE').getnumberval(),
    start_position = extract(xml, 'ROOT/PROFILEDETAILS/@START_POSITION').getnumberval(),
    end_position = extract(xml, 'ROOT/PROFILEDETAILS/@END_POSITION').getnumberval(),
    change_by = chng_typ,
    change_dt = default,
    columnorder = extract(xml, 'ROOT/PROFILEDETAILS/@COLUMNORDER').getstringval(),
    column_format = extract(xml, 'ROOT/PROFILEDETAILS/@COLUMN_FORMAT').getstringval(),
    nullable = extract(xml, 'ROOT/PROFILEDETAILS/@NULLABLE').getstringval(),
    change_type ='U',
    active_flag = default
    WHERE profiledetails_pkey = extract(xml, 'ROOT/PROFILEDETAILS/@PROFILEDETAILS_PKEY').getstringval();
    UPDATE FM_PROFILE_CFILE
    SET profilemaster_pkey = extract(xml, 'ROOT/PROFILE/@PROFILEMASTER_PKEY').getnumberval(),
    ldr_syntx_dtls_pkey = extract(xml, 'ROOT/OPTIONS/@LDR_SYNTX_DTLS_PKEY').getstringval(),
    val = extract(xml, 'ROOT/OPTIONS/@OPTIONVALUE').getstringval(),
    change_by = chng_typ,
    change_dt = default,
    sub_line_seq = extract(xml, 'ROOT/OPTIONS/@SUB_LINE_SEQ').getstringval(),
    change_type = 'U',
    active_flag = default
    where profile_cfile_pkey = extract(xml, 'ROOT/OPTIONS/@PROFILE_CFILE_PKEY').getnumberval();
    END;

    Hi Bhushan,
    one where clause is missing in the main update.
    update fm_profiledet
    set (....)
    =(select ....)
    where id in (select your profiledetails_pkey from the xml). <--this where clause were missing.
    if xml extracting is too slow(xml very large) then you can create a procedure where exract your data from the xml and then update rows in for loop.
    something like this
    create procedure up_xmls(p_xml xmltype) is
    cursor cur_xml(p_xml xmltype) is
    select ......<--here you extract your xml
    begin
    for r_row in cur_xml(p_xml) loop
    update fm_profiledet set target_source_table=r_row.target_source_table
    where profiledetails_pkey=r_row.profiledetails_pkey;
    end loop;
    end;this should work:
    SQL> drop table fm_profiledet;
    Table dropped.
    SQL> create table fm_profiledet(
      2   profiledetails_pkey number
      3  ,target_source_table varchar2(100)
      4  ,column_name varchar2(100)
      5  ,data_type varchar2(100)
      6  ,data_size number
      7  ,start_position number
      8  ,change_type varchar2(100)
      9  )
    10  /
    Table created.
    SQL>
    SQL>
    SQL> insert into fm_profiledet
      2  values(399,'test','test1','test2',1,2,'A')
      3  /
    1 row created.
    SQL>
    SQL>
    SQL> insert into fm_profiledet
      2  values(403,'test3','test4','test5',3,4,'B')
      3  /
    1 row created.
    SQL> insert into fm_profiledet
      2  values(443,'test3','test4','test5',3,7,'B')
      3  /
    1 row created.
    SQL>
    SQL>
    SQL> select * from fm_profiledet;
    PROFILEDETAILS_PKEY TARGET_SOU COLUMN_NAM DATA_TYPE  DATA_SIZE START_POSITION CHANGE_TYP                               
                    399 test       test1      test2              1              2 A                                        
                    403 test3      test4      test5              3              4 B                                        
                    443 test3      test4      test5              3              7 B                                        
    SQL>
    SQL> create or replace directory xmldir as '/home/ants';
    Directory created.
    SQL>
    SQL>
    SQL>
    SQL> update fm_profiledet fm
      2  set (target_source_table,column_name, data_type, data_size, start_position,change_type)
      3  =(
      4    select  target_source_table
      5          , column_name
      6          , data_type
      7          , data_size
      8          , start_position
      9          , change_type
    10    from(
    11      select
    12        extractValue(value(x),'/PROFILEDETAILS/@PROFILEDETAILS_PKEY') profiledetails_pkey
    13      , extractValue(value(x),'/PROFILEDETAILS/@TARGET_SOURCE_TABLE') target_source_table
    14      , extractValue(value(x),'/PROFILEDETAILS/@COLUMN_NAME') column_name
    15      , extractValue(value(x),'/PROFILEDETAILS/@DATA_TYPE') data_type
    16      , extractValue(value(x),'/PROFILEDETAILS/@DATA_SIZE') data_size
    17      , extractValue(value(x),'/PROFILEDETAILS/@START_POSITION') start_position
    18      ,'U' change_type
    19     from
    20      table(xmlsequence(extract(xmltype(bfilename('XMLDIR','prof.xml')
    21                                      ,nls_charset_id('AL32UTF8'))
    22                               , '/ROOT/PROFILEDETAILS'))) x
    23    ) s
    24  where s.profiledetails_pkey=fm.profiledetails_pkey)
    25  where
    26    fm.profiledetails_pkey in (select
    27        extractValue(value(x),'/PROFILEDETAILS/@PROFILEDETAILS_PKEY') profiledetails_pkey
    28     from
    29      table(xmlsequence(extract(xmltype(bfilename('XMLDIR','prof.xml')
    30                                      ,nls_charset_id('AL32UTF8'))
    31                               , '/ROOT/PROFILEDETAILS'))) x
    32  );
    2 rows updated.
    SQL>
    SQL>
    SQL> select * from fm_profiledet;
    PROFILEDETAILS_PKEY TARGET_SOU COLUMN_NAM DATA_TYPE  DATA_SIZE START_POSITION CHANGE_TYP                               
                    399 FM_FEEDVAL FEEDVALIDA NUMBER            22             12 U                                        
                        IDATION_LU TION_ID                                                                                 
                    403 FM_FEEDVAL CHANGE_TYP VARCHAR2           1             12 U                                        
                        IDATION_LU E                                                                                       
                    443 test3      test4      test5              3              7 B                                        
    SQL> spool off;Ants
    Message was edited by:
    Ants Hindpere

  • Won't update album. on the Sony update centre.. compact z1

    Says two pending updates and installed one through the update centre other one is jus failing (album) think it's photo related..

    Settings > apps > all > album > uninstall updates > restart your phone > then settings > about phone > software updates 
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Problems with creating XML file via Call Transformation

    Hi,
    When creating a XML file via Call transformation an extra character '#'is placed at the beginning of the file.
    This problems occurs since the upgrade to ECC6.0 and the Unicode conversion.
    When opening the XML file the following error message appears:
    Invalid at the top level of the document. Error processing resource 'file ....
    Has anybody an idea why this extra character is placed at the beginning of the file. Has it something to do with the unicode conversion and how can we solve the problem?
    thanks for your help
    kind regards,
    Maarten van IJzendoorn

    Hello Marteen,
    Can you please share the solution to this issue and let me know.
    Our Issue:
    1) We are executing a report which generates an XML file on FTP.
    2) The FTP file is always in Error when executed thorugh JAPANESE login but not thorugh EN login.
    3) The XML files generated have always an extra character in the end ( which can be space,#,$%^&, etc.) when this extra character is removed from XML file with opening it in NOTEPAD then XML works OK in JA login as well.
    4) In the PROGRAM everything has been checked with respect to OPEN dataset statement , XML ports UNICODE etc.
    5) THIS issue has been reported only after upgrading to ECC 6.0 from 4.6C.( in older version it works fine).
    Various OPEN dataset statments are :
    OPEN DATASET path_fil
    FOR OUTPUT
    Thanks to reply.

  • SQL-Developer 2.1.1.64: XML Extensions Wont Work Anymore

    Hello,
    since version 1.5.* we use the following xml extension to add a "error" - tab to all nodes in the treeview and it works fine.
    But since version 2.1.* only the tabs with <item type="editor" node="<nameofnode>" vertical="true"> are shown.
    I think the names of all other nodes ( like <item type="editor" objectType="PACKAGE" vertical="true"> ) are changed.
    So i tried to search for the names but i can’t find anything …
    Does somebody know how to fix the problem?
    I would be very thankful for every hint.
    <?xml version="1.0" encoding="UTF-8"?>
    <items>
    <item type="editor" node="TableNode" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" node="TableNode" vertical="true">
    <title><![CDATA[Ref_Cons]]></title>
    <query>
    <sql>
    <![CDATA[select c.table_name, constraint_name from user_indexes i, user_constraints c where i.INDEX_NAME=c.r_constraint_name and i.table_name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" node="ViewNode" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" node="IndexNode" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="PACKAGE" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="PROCEDURE" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="FUNCTION" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="TRIGGER" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="TYPE" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="SEQUENCE" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="MATERIALIZED VIEW" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" node="MViewLogNode" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="SYNONYM" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="PUBLIC SYNONYM" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" node="PSynonymNode" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="DATABASE LINK" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="PUBLIC DATABASE LINK" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" objectType="DIRECTORY" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    <item type="editor" node="XmlSchemaNode" vertical="true">
    <title><![CDATA[Errors]]></title>
    <query>
    <sql>
    <![CDATA[select name, type, line, position, text from user_errors where name = :OBJECT_NAME]]>
    </sql>
    </query>
    </item>
    </items>
    -----

    There is a known issue in 2.1.1 concerning new editor tabs not being shown on the various PL/SQL object types (Packages, Procedures, Types, Triggers, etc.). Can you double check to see if the other object types for which you are using the objectType attribute (Sequences, for example) to see if they are working or not? As far as I can tell, in general the ability to use objectType should still work.
    - John McGinnis
    SQL Developer Team

  • I moved to new house where I have wifi base station I made extension via TP-link power line adapter and connect my Airport utility 6.3.2, but I don't now how to set up as a second network with one IP address?Could you help me please?

    I moved to new house where I have wifi base station I made extension via TP-link power line adapter and connect my Airport utility 6.3.2, but I don't now how to set up as a second network with one IP address?Could you help me please?

    Urvergessen wrote:
    +You may have already done this, but do you have the first AirPort Express configured to "Allow this network to be extended"?+
    Could not find that setting anywhere.
    It's in AirPort Utility, AirPort panel, Wireless tab.
    When I'm within the range of the base station I connect normally, but further away the connection drops despite the fact that the other Airport is very close and light is green. Interestingly, my PB Pro has signal almost everywhere in the house, but my iPhone and Mac Mini don't. Most likely just a hardware difference?
    In AirPort Utility with the second Express, in the AirPort panel, Wireless tab, have you checked "Allow wireless clients"?
    The second AP does show an IP address: 10.0.1.3.
    With a "Configure IPv4" setting of "Using DHCP", that suggests that the second Express really is connecting to the first Express. In that case I have no other explanation of your your problem.

  • Error during XML inbound via Function Module 'EDI_DATA_INCOMING'

    Hi Team,
    I am facing below error while trying to upload a inbound XML file via Function Module  'EDI_DATA_INCOMING'.
    The control record must begin with <EDI_DC40 segment="1"> instead of
    Message no. EA719
    Diagnosis
    The tag '<EDI_DC40 segment="1">' must be at the start of a control record in XML format, otherwise string '' would be found.
    System Response
    The file cannot be processed.
    Procedure
    Correct file DEV_H\SGIDOCI\MSUTEST\00082_ATT..
    Please suggest a proper solution for the same. If it is because of wrong structure of XML file then please send me correct XML format for file upload.
    Regards,
    Amit Sharma

    Hello,
    It's the error is SAP code.
    Look notes 1616333 and 1535033. Those should fix the error.
    BR, Janne

  • Extension Manager update 6.0.8 error code U44M1P7

    I received the Extension manager update 6.0.8 but I got the error code U44M1P7. I found the suggestion to uninstall and then install again the program, but I can't find it. Can someone help me?

    http://www.adobe.com/exchange/em_download/em6_download.html
    http://www.adobe.com/exchange/em_download/

  • Magnetic lasso tool doesn't work after installing Adobe extension manager update

    Hi , I've just installed Extension Manager Update 6.0.5.9 yesterday and today I've get a wired problem  with my bambo tablet.I've used this tablet for 3-4  years without problem. The problem I've now is when I drag lasso tool on an image to make selection it doesn't make a selection even it is showed in the history state that I've used lasso,or magnetic lasso. My machine is a Mac Pro 2010,Quad-Core Intel Xeon running on Lion 10.7.5 and my bamboo driver is the latest version 5.3.2-2. Even now I've change to use freeform path I've still cannot change form path to selection.

    Hi! Does other select tools work? The might be hidden selections Ctrl+H

  • Textfields iOS not updated when the XML allready is updated

    Hi,
    I am testing an app for iOS and later on also for Android. I am using an XML from PHP with and also without a MySQL database.
    In one case I only use the current date to be published in the app in a textfield. Problem is that to get all ML connected textfields updated even when the XML allready is updated I have to completely restart the iPod Touch which I use to test on. Is there a way that the user is able to push a button to manually update the app without closing down the device? In addition, is there away that the app automaticaly refreshes its content?
    Any help is greatly appreciated.

    Took me some time to find out why I didn't succeed.
    I finally succeeded in the way kglad suggested.
    Problem was that when you close the app and later on open it the information for example a date/time through php/xml doesnot change.
    That is untill you click something.
    So  my test with just the date didnot seem to change anything.
    But when I hit a button to another frame and send it back
    The date/time are updated.
    Thanks kglad for pointing me in the right direction.

Maybe you are looking for

  • How do i make a group in messaging

    How do i create a group in messaging?

  • Remove all non-number characters from a string

    hi How i can remove all non-number characters from a column ? for example , i have a column that contains data like 'sd3456' 'gfg87s989' '45/45fgfg' '4354-df4456' and i want to convert it to '3456' '87989' '4545' '43544456' thx in adv

  • Export JPG at 100% is reducing the pixel dimensions ??

    Im using the most up to date Lightroom (5.5) on a Mac running os 10.9.4. In the not too distant past (i've only been using Lightroom since April)  I have been able to export my processed images to full sized jpegs.  This refers to the physical dimens

  • Decimal places values of Moving  average price

    Hi Experts Here is scenario:  a material having moving average price (V) when transfer posted with movement type 416 (From project stock to Storage location) is creating an extra FI entry in "Stock in Transit" A/C with a minimal value. After a deep s

  • Hovering over links doesn't always show hover state?

    After installing Firefox 7, I noticed something weird. I'm a front-end web developer, so I noticed this recently when creating custom tool-tips that appear on hover. I noticed that the hover tooltip wouldn't appear for certain links, and at first I t