Editor extensions questions

We use editor extensions for several types of objects. It's not clear how to add extensions to PL/SQL objects and triggers.
In my XML file I use for PL/SQL objects : node="PlSqlBaseNode"
When I open a package/procedure/function SQL Developer is only showing my first PL/SQL extension. My second extension is not visible when I open a package, procedure or function.
This is the case in 3.0 and 3.1EAx.
1. Is this a bug or do I need another node or objectType in the XML file?
2. How to add extensions for triggers? Which node or objectType is needed?
3. How to create a vertical layout (like the Details tab for tables)? vertical=true doesn't work.
4. Is there a description (or XSD) of which elements/attributes can be used in the XML file for editor extensions? (this could also answer 2 & 3).

Can someone please answer these questions?

Similar Messages

  • Editor extensions in 3.0 - several questions

    We use editor extensions for several types of objects. It's not clear how to add extensions to PL/SQL objects.
    In my XML file I use for packages/procedures : node="PlSqlBaseNode"
    This works, but it's only showing my first extension. My second extension is not visible when I open a package, procedure or function.
    I also tried objecttpe="PACKAGE", but then the extension is not shown.
    1. Is this a bug or do I need another node of objectType in the XML file?
    2. How to add extensions for triggers?
    3. How to create a vertical layout (like the Details tab for tables)
    4. Is there a description (or XSD) of which elements/attributes can be used in the XML file for editor extensions? (this could also answer 2 & 3).

    Can someone please answer these questions?

  • About Editor Extensions

    In this thread - Re: SDK Schemas have moved - but where? a new question was asked about Editor XML Extensions.
    Nice thing about the XML for editor extensions is that they are almost identical to SQL Developer Reports. So if you want to write one, start by writing a report that does what you want the editor to do. Probably, you will want the report's base query to use a bind variable as an input parameter. Once the report looks the way you want, export the report to an XML file. Then use that file as the starting point for developing your editor extension.

    I, too, am trying to figure out how to open a given file in Eclipse with the application of my choice. Note that I might have several applications that I might want to use to open a given file, so a hard-coded solution of associating the extension with an application is not satisfactory.
    My #1 request is to be able to bind a shortcut key to open a specific editor on the current window. For example, if I want to open it with Photoshop, press F2; with Vim, press F3, with my company's XML editor, press F4, etc.
    I would also want to be able to open it from a global list of editors that I could register with Eclipse that are not necessarily known by the Windows operating system (because the editors are generic and not necessarily associated with a file extension).
    I would do something like::
    [context/right click] > Open with > [application name]
    And, it would be very useful if the above has a way to specify arguments to the application (configurable in Window > Preferences).
    If there isn't a simple way to do the above, there should be. But, so far, I haven't found a simple way to use a shortcut key to invoke an external application on an Eclipse window not using hard-coded file extension associations.
    Please let me know if there is some plugin or technique that can be added or easily instrumented to provide this very basic want.

  • Code Snippets in MEF Editor extension VS2012

    I am trying to implement code snippets with a MEF editor extension, I followed the walkthrough "Implementing Code Snippets" from the link: http://msdn.microsoft.com/en-us/library/ff926100(v=vs.110).aspx
    The implementation is based on the walkthrough Displaying Statement Completion. This feature works fine.
    The first section of "Implementing Code Snippets" is "Creating and Registering Code Snippets" which does not work. At the end of the section is the step 8:
    Build and run the project. In the experimental instance of Visual Studio that starts when the project is run, the snippet you just registered
    should be displayed in the Code Snippets Manager under
    the TestSnippets language.
    There are no errors, but the Code Snippets Manager does not display the TestSnippets language, and as a consequence the snippets are not there. I have been stuck for a few weeks now with this, and could not find resources to understand the issue.
    Any idea on how to overcome this issue will be much appreciated.
    Thanks

    Hi,
    I have to say that I can reproduce your issue on my machine via the steps provided in the walkthrough. However, I finally add that code snippets to C# language not that custom TestSnippets language.
    Here are some modifications which are made on my side, maybe these listed items can be helpful for you to trouble-shoot your issue:
    1). Delete the following line from the test.snippet file.
    <?xml version="1.0" encoding="utf-8" ?>
    2). Edit the test.snippet file, set <Code Language="CSharp">
    3). Edit the SnippetIndex.xml file, set  <Language Lang="CSharp" Guid="{694DD9B6-B865-4C5B-AD85-86356E9C88DC}">
    4). Edit the SnippetUtilities class, and set
    internal const string LanguageServiceGuidStr = "694DD9B6-B865-4C5B-AD85-86356E9C88DC";
    5). Then build and run your project again. And this time you should get the snippet under C# language.
    Thanks.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Lightroom open in elements editor raw question.

    I have just got lightroom 3.3 and it imports my .dng raw files no problem. if I use the save metadata  to file  and try to open in elements editor it open the file as a .tiff. instead of opening it as a raw file with ACR. I think the roblem is the metadata is not being stored in the same directory as the image file but I can't see where to check/change this. I assume that is what is causing this to happen.
    regards
    Alistair

    Thank you for your reply, the question arises from watching this pod cast. I cannot get what is shown to work, please can you [if you have the time] look at it and let me know?
    many thanks
    Alistair
    http://http://http//www.jaredplattworkshops.com/edu/podcasts/Lightroom_Podcast/Entries/201 0/7/6_Using_XMP_Sidecar_Files_to_sync_Lightroom%2C_Bridge_and_Photoshop_Camera_RAW.html

  • Xsd extension question

    Hello, I have a question about the extension of complex Types by xsd.
    Can I use polymorphism with the extension of complex Types.
    By example, I define a xml schema
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2000/10/XMLSchema">
    <xsd:element name="basic" type="basic">
    <xsd:annotation>
    <xsd:documentation>Comment describing your root element</xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    <xsd:complexType name="basic">
    <xsd:sequence>
    <xsd:element name="basicElement" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="derivedBasic">
    <xsd:complexContent>
    <xsd:extension base="basic">
    <xsd:sequence>
    <xsd:element name="derivedElement" type="xsd:integer"/>
    </xsd:sequence>
    </xsd:extension>
    </xsd:complexContent>
    </xsd:complexType>
    </xsd:schema>
    Then my question is, can i use in an xml document which depends on the xml schema the complexType derivedBasic when a basic type is required. (Perhaps i can use a typecast or something).
    I need this, because i want to make a xsd representation of an uml model and want to check dataexchange based on xml.
    Thanks for your help
    Andreas

    If it was me I would post such questions in the XML forum.
    If I understand the question it is not possible.
    In general you cannot describe all possible data validation using only an XSD.

  • EO Extension question?

    Hello,
    I am pretty new to the OA Framework extensions, and have a task of extending one of the self service pages on eBusiness suite. Could anybody please suggest a good approach for this one.
    Requirement is to extend a self-service page to add more user enterable fields on the page. (** These fields are not on the base table EO/VO**)
    This is what I have done so far:
    I have altered the base table to add new attribute columns (attribute1 - attribute15) and attribute_category.
    These attribute columns (attribute1-attribute15 and attribute_category) need to be added to the EO and VO
    Since, this is a custom DFF, can I just personalize the page to add these attributes as DFF on the page?
    Where to put the logic to insert data into these additional attribute columns?Could anyone please list me the steps to do this EO extension?
    Thanks for all the help.

    Thanks Tapash,
    Based on your comments, I have created a custom table to hold the additional information with a key to join with the seeded table.
    Could you please verify if these detailed step is OK? ** I am pretty new to OA Framework extensions and JDeveloper ** (I have done a VO extension before but long time back though!) ** So my questions might be basic/silly **
    Using the Jdeveloper,
    1. Create a OA workspace and OA Project.
    2. Create a new OA business component. (Create a new EO and VO for the custom table) -- Should these extend the original EO and VO ?
    3. Import all the related server.xml
    4. Where should the code be? to insert the additional information (EOImpl?)
    5. Substitutie
    6. Using Personalization, create new items on the page ??? (Or should the Page be customized using the JDeveloper?)
    And I would appreciate if you could share code snippet to insert into table.
    Thanks for you help.

  • OAF: Extension question? Please help.

    Hi All,
    I am extending a seeded VO to add 4 new attributes. These 4 attributes are read-only (FYI only. Doesn't have to go into Database!). I extended, substituted deployed but I am getting errors (JBO-25017)! My question is, am I following the correct path to extend the VO. Below is what I have done. Please let me know where I am going wrong!!!?
    Thanks for all your help.
    FR
    1. Created a Workspace.
    2. Created a Project.
    3. Opened the actual server.xml that I wanted to extend! and imported all the server.xml that it complained that it is missing ! (abt 10 of them)
    4. Created 2 new database views ( without any WHO columns ) (using sqlplus)
    5. Created a new business component for OA (xxx.oracle.apps.per.irc.vacancy.schema.server)
    6. Created 2 EO's (based on the database view that I created in step#4)
    ( Here I did not generate any java files. Unchecked all the checkboxes in Java section. ) ???
    (Also Itried with generating a EOImpl and I got the "it does nor define the method setLastUpdateLogin" error! So I reverted it back. Meaning Did not generate any Java files here! )
    7. Create a new Business component (xxx.oracle.apps.per.irc.vacancy.server)
    8. Create new View Object to extend the seeded VO and selected the EO's that was created in step#6. and chose the new attributes in the new VO and changed the query WHERE condition to include the new criteria. ( Here I checked to generate the VOImpl.java )
    9. Substituted the Seeded VO with the extended VO on the project.
    10. Saved everything
    11. Rebuild the Project ( 0 errors and 0 warning! ). Great.
    12. Zipped everything from <JDEV_HOME>\jdevhome\myclasses\xxx to xxx.zip.
    13. ftpd the xxx.zip to middle tier apps server to the directory $JAVA_TOP
    14. unzipped xxx.zip (created and replaced the files)
    15. Ran jpximport.bat to import the substitutions. It was successful.
    16. Checked to make sure that the jpximport was successful thru jdr_utils. It was successful. I could see the extended VO information.
    17. Bounced the apache.
    18. Logged into apps to check the extension and I got the JBO-25017 error!

    "Error: oracle.jbo.RowCreateException: JBO-25017: Error while creating a new entity row for XxxBonusEligPerGradeEO."
    This is the only error that I get on the message box! even though I have the Diagnostics and message threshold set to debug.
    And btw, am I missing anything from the list ? ( generating Java files ??? or any steps! )
    Please let me know. Thanks.
    FR

  • Use This Thread for All 3rd Party Extension Questions (Migrating from v3-v4)

    This thread is for the 3rd Party Extension developers as they update their extensions to be compatible with the new framework in SQL Developer v4.0.
    To get started with the process, consult this post from the JDeveloper team. If you have questions, post them here.

    What is the correct way to deploy migrated extension on local installation of SQL Developer 4 for testing?
    Could such operation be automated with help of JDeveloper 12c?

  • WL70 Console extension questions

    Hi,
    A couple of questions about Weblogic console extension.
    First, is there any "standard" way of putting that nice banner on top of my JSP
    pages? I've created one using classes "banner", "title", "bannerstatus" from wl:stylesheet,
    but I'm worried that links that I put in it, like
    will not work in the next version of weblogic.
    Second, is it possible to bring up console JSP showing the particular wl:tab rather
    than the first one?
    Thanks,
    Mikhail.

    Donwload SQLMonitor from
    http://www.appfluent.com/products/sqlmonitor/
    It is has console extension for both 7 and 6 and has implemented the
    banner thru one servlet checking the weblogic version.
    Pam S.
    "Wayne W. Scott" <[email protected]> wrote in message news:<[email protected]>...
    Mikhail Bogomolov wrote:
    "Mikhail Bogomolov" <[email protected]> wrote:
    Hi,
    A couple of questions about Weblogic console extension.
    First, is there any "standard" way of putting that nice banner on top
    of my JSP
    pages? I've created one using classes "banner", "title", "bannerstatus"
    from wl:stylesheet,
    but I'm worried that links that I put in it, like
    > >>will not work in the next version of weblogic.
    Second, is it possible to bring up console JSP showing the particular
    wl:tab rather
    than the first one?
    Thanks,
    Mikhail.
    Ok, just found the answer for the second question - add a parameter ?tab=TabName
    to URL, but the first question still stands.
    see if the example under dev2dev helps ->
    http://dev2dev.bea.com/code/codedirect.jsp?highlight=codedirect
    This sample demonstrates how to extend the WebLogic Server 7.0 Administration Console.
    View the readme.html file for instructions on how to deploy the sample. This is Alpha code.
    ConsoleExtensionExample.zip (40 kb)
    Wayne

  • Extension questions and updates to Safari

    When you install extensions from Safari's extension website, are those reviewed by Apple or just checked out by Apple to make sure they work and that their are no issues with it?
    Also, when Apple updates Safari, do they make sure all the extensions work fine before releasing those updates (or is it as your own risk)?
    Should you turn extensions off before updating Safari or Mac OS updates then?
    Message was edited by: powerbook1701
    Message was edited by: powerbook1701

    They're listed by Apple - & downloaded from the developer's website
    Extensions can modify the appearance and behavior of Safari, and access your private information at websites. Apple is providing links to these extensions as a courtesy, and makes no representations regarding the extensions or any information related thereto. When you download and install an extension, the file is delivered by the developer, not by Apple. Some of the extensions listed here may require payment to the developer for use of the extension; this transaction is between the user and the developer. Any questions, complaints, claims, or support requests regarding an extension must be directed to the appropriate software developer.

  • Kernel extension question

    +Before you decide to answer please read this.... I'm doing this for fun and to learn, please save all "Apple urges against kernel extensions...don't do it!!!" for another one of my silly posts+
    Ok so after reading and playing around with apples "HelloKEXT" tutorial I became curious to see if you could launch an executable from a kernel extension. I tried system(), popen() and execl() but always get the warning "Implicit declaration of function "<insert one of the above functions>" so my question is is it possible to launch and executable from a kernel extension if so, how...google was not friendly in this situation
    +also please save any "Why would you want to do that when you can use launchd?"+

    Eric Lundquist wrote:
    etre, if it's not possible to launch an actual executable is possible to carry things out within the extension it self that did relatively the same thing as an executable e.g printf `cd /; ls -l` >> /pathtodesktop
    or something like that
    Again, yes and no. You can print things out and they will be logged as kernel messages. You have to remember that the kernel is the OS, so when writing a kernel extension, you don't really have an OS.
    Almost all kernel extensions are hooks into the kernel for some application to use. You want to try very hard to avoid doing any work in the kernel. The only reason to work in the kernel is to get access to data that you can't get elsewhere. Once you get the data, you use one of a number of low-level communication paths to get it to an application where you can work on it at leisure.

  • Custom Extension questions

    Hi all,
    I'm working on my first Configurator extension, and I'be got a couple of questions.
    1. I'm following the demonstration from this site http://apps2fusion.com/at/pb/292-oracle-configurator to build and deploy a sample CZ extension. I've got the code compiling in JDeveloper, and I am logged into EBS and on the Configurator Develop page where I'm trying to create a Configurator Extension Archive. While trying to upload the class (in a ZIP file following proper package structure) I get an error message stating "This file type is not allowed. Please choose another file". I've tried as both a .ZIP file and a .JAR file. Can anyone offer some ideas on what might be causing this problem?
    2. The reason for my custom extension is this requirement:
    Several fields in the Configurator UI should be defaulted to specific values based upon the Ship To address of the order line item.
    I've been researching Configurator Extensions, but none of the examples or scenarios described seem to talk about how to do something along these lines. Has anyone done anything similar and be willing to give me some pointers on the best way to accomplish this?
    For reference, this is in an 12.1.3 EBS instance and I'm writing the code in JDeveloper 11.1.2.2.0.
    Thanks,
    -Mike

    Mike,
    1.
    Are you able to open the JAR file using winzip or any other zip utility? If not, then its not correctly formatted. You should build Jar using jdeveloper's Project Deployment settings and then you will not have any issue. Search google/oracle site for this if you don't know its details.
    2.
    For your requirement, I think CX guide and CZ methodologies guide will help you.
    Thanks,
    Pankaj

  • ID Mac, save as and file extension questions

    I'm converting a bunch of Quark files over to ID and have a few niggles that I need help with:
    1. Can ID be configured so that it doesn't save the .indd extension every time (when writing a PostScript file as well).
    2. Every time the Save/Save As dialog opens it's a small window & I have to drag the corner to enlarge, is there a way to make it stick?
    TIA,
    Geoff

    No, nor should you. This isn't OS9.
    Those file extension should be left alone.
    Bob

  • Idoc extension question...

    Hi all,
    I have an extension defined for DESADV (outbound) and when I see the process code in we20 it is still tied to the FM, IDOC_OUTPUT_DELVRY. How is it possible for the std. FM to populate the extended segment in DESADV?
    Please tell me if I want to send some more data in the ASN then can I just add a field in the segment or should I add another segment? Which one will be populated in my scenario?
    Thanks,
    Charles.

    Hi Charles,
    We cannot add the New fields in Existing segments.
    For this requirement we have to Create a new Zsegment (Tcode WE31)
    and then Add this in Extension IDOC type that we have to create in we30.
    Regards,
    Satish

Maybe you are looking for

  • Credit memo cant add with cost 0.

    Dear all i have a customer , this upgrade he´s systema to 8.8 in 007 he can add invoices with some lines with cost 0 (cero) and then add his credit memo with (cost cero) in the stock audit the item has not cost cero. in 8.8 they cant do this.  someti

  • Material is changing automatically in the sales order at the time of replac

    Hi experts In a sales order I am changing the 100054447 with material 100054445 after changing the material to 100054445 it is taking me to availability check with 100054447 instead of 100054445 and changing at the item level also I want to know why

  • How to Control Cheque value not exceed the PO Value

    Dear All, My client requirement of the how to control cheque make above the PO Value. My client make the PO before MIRO puchase dept. make the Advance payment request and send to Accounts Dept., Accounts dept. make the payment against the Down paymen

  • I can't create a projector Mac and Win exe in Flash CC (?!?)

    Hello, I use Flash Professionnal CC and I would like to create a projector file or/and an Win exe with my animation... But I do not see anywhere the ability to create these files in "Publish Settings" (no Mac or Windows box to check as in CS5). I rea

  • [SOLVED] Chromium will not launch

    After my my last system upgrade chromium won't launch. I get the following error: [1764:1764:0515/113901:ERROR:url_pattern_set.cc(240)] Invalid url pattern: chrome://print/* [1792:1792:0515/113901:ERROR:sandbox_linux.cc(343)] InitializeSandbox() call