Missing support for new datatypes added in 9i and 10g

Oracle has added a few useful datatypes in the last
releases of the database, but ``forgot'' to add them
into both the web and Java versions of the Oracle
Enterprise Manager (oemapp console and Oracle Enterprise
Manager 10g Database Control).
These datatypes are missing, the list is probably not
complete:
INTERVAL YEAR TO MONTH
INTERVAL DAY TO SECOND
BINARY_FLOAT
BINARY_DOUBLE
Why?

i have a solution, and i borrowed from the way i had to build a package for OTA Enterprise Distribution about a year ago. a mac is needed, you will need xcode. also note that i used flash CC with beta air 3.9.1.1080.
refer to this site for building your package from xcode: http://fpstudios.com/2011/08/flash-enterprise-builds/
the difference i figured out this morning is that the archive you duplicate is an archive that you used to submit to apple, not just any ol' debug archive (the Info.plist varies between the two archives)
once you have a new "archive" in xcode organizer for your app, go ahead and unpack the ipa flash creates. if you show package contents of the .app inside the Payload folder you will find a Info.plist. use xcode to edit this file and add the new icons to the appropriate array.
now show package contents of the "archive." in the Products > Applications directory, replace the .app with the .app that was inside the flash Payload folder.
now you need to edit the Info.plist from the "archive." make sure the icon array is the same as the array in the Info.plist from your .app
you will also need to change the application path, the bundle id, both bundle versions, the name, and the scheme name
IMPORTANT - i forgot to mention that on the "general" publish setting tab in flash, make sure to include the new icon files.
once you do all this, you can use organizer to submit the app to the apple store and you should see a confirmation message like the one that i received this morning after following the steps from above:

Similar Messages

  • Support for new Nvidia Quadro gpu?

    When support for new Nvidia Quadro gpu? For example Nvida Quadro K2200 and K4200
    Thk

    What do you mean when you say "support"? All of After Effects OpenGL features already work on those cards.
    The only thing that isn't supported on those cards is GPU acceleration of the ray-traced 3D renderer, which is an obsolete and almost entirely irrelevant feature. No more GPUs will ever be added to the list of cards supported for that feature.
    Details:
    GPU (CUDA, OpenGL) features in After Effects

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • ALV Grid default values for new rows added with Add/Insert buttons

    Hi!
    Help, please,  to find a way how to set default values for new rows added with Add/Insert buttons in
    ALV Grid.

    I have found salution:
    ALV Grid u2013 Insert row function
    Sometimes we need to assign some default values when we create a new row in a grid using standard ALV Append row button. In our scenario we will see how to assign default values to Airline Code (CARRID), Flight Connection Number (CONNID) and Flight date (FLDATE) when a new row is created. To do that we need to handle DATA_CHANGED event in the program like mentioned below.
    Definition of a class:
    Code:
          CLASS lcl_event_receiver DEFINITION
    CLASS LCL_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
    METHODS:
         handle_data_changed
         FOR EVENT data_changed OF cl_gui_alv_grid
         IMPORTING er_data_changed
                           e_ucomm.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    Implementation of a class:
    Code:
    CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.
      METHOD HANDLE_DATA_CHANGED.
        DATA: dl_ins_row TYPE lvc_s_moce.   " Insert Row
          FIELD-SYMBOLS: <fs> TYPE table.    " Output table
    Loop at the inserted rows table and assign default values
        LOOP AT er_data_changed->mt_inserted_rows INTO dl_ins_row.
          ASSIGN er_data_changed->mp_mod_rows->* TO <fs>.
          loop at <fs> into ls_outtab.
            ls_outtab-carrid  = 'LH'.
            ls_outtab-connid  = '400'.
            ls_outtab-fldate  = sy-datum.
            MODIFY <fs> FROM ls_outtab INDEX sy-tabix.
          endloop.
        endloop.
      ENDMETHOD.                    "handle_data_changed
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
    Register the events to trigger DATA_CHANGED event when a new row is created.
    Code:
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.

  • BIOS SUPPORT FOR NEW CPUS!!!!

      hello
    new post , i just got this board (6547 v1.0) board with a celeron 1.7 (clocked at 125mhz ) 2.14ghz and is total stable.
    v1.8 bios support up to a 1.8 cel, are they going to make a update to support a 2hz cel, OR  have they droped support for it.
    and where can you get beta bios for this and other board (msi-development site).... ?(  ;(
    MAKE A VOTE (HOW OLD IS YOU BOARD AND HAVE THEY DROPED SUPPORT FOR NEW CPU,S FOR YOU BOARD-POST?

    assuming its a 645 ultra by the bios numberlink

  • Is there any way to bring back the font type and background of Safari reader from iOS6 in to the iOS7 ? I really miss it, the new design is awful, simple and has now class at all.

    Is there any way to bring back the font type and background of Safari Reader from iOS6 in to the iOS7 ? I really miss it, the new design is awful, simple and has now class at all.

    I agree with you, many things in the ios 6.x were more elegant. The reader was the most one of them. I think the ios7 wants to be the windows 8.

  • HT1338 My software updater freezes when "Checking for new software..." and then fans speed up.

    Whenever I run software update, the blue bar freezes at about a fourth of the way across while "Checking for new software..." and then the fans sometimes speed up until I click Cancel. Sometimes it eventually completes "Checking for new software..." but when it does it is usually 45 minutes to an hour later. What gives?

    If I reinstall the OS, will that jeopardize my data, docs or photo library? 
    No.  Boot into the Recovery volume (boot with the Command + R keys held down) and first select Disk Utility to  repair disk permissions and the disk.  Reboot and try the App Store again.
    If that fails boot again into the Recovery volume again and reinsatll the system.  Your data and photos will not be jeoparadized.
    OT

  • Desupport Documnetation for Oracle database 9.2.0 and 10g

    Desupport Documnetation for Oracle database 9.2.0 and 10g , does any one know where I can get the doc for desupport dates for oracle 9.2.0 and 10g. Please sent me email on [email protected]
    Thanks in Advance
    Regards,
    Nadeem Khan

    Àll available on Metalink , just search for desupport.

  • Camera Raw support for new Nikon D810

    Hi, could you please advise when we can expect to see camera raw support for the new nikon D810.
    Thanks

    Adriana – I installed the download from the link in the 7/27 post and was able to convert my NEF files to DNG format from my new D810 camera, but could not view/edit the NEF-smalls. When I saw your latest post I used your link to go to that download and noticed that in the description it mentioned that the issues with the D810 NEF-small have been resolved.  I deleted/emptied trash of the 7/27 download and re-installed the one mentioned from your link – although they were both identical in file size and version: 8.6 – hmm?  I tried the converter – but nothing new was converted (I presume because all had already been converted before?).  However, CS6 is still not able to open/edit neither the NEF-small file formats, nor the DNG created from it.  I am thinking maybe I am missing a step, because when I select properties for Camera Raw in CS6, the version is 8.5.0.236 – is that ok (my CS6 version is 13.0.6 – and no other updates appear available)? I only downloaded the DNGConverter_8_6.dmg; installed the .pkg – did I forget a step? Thanks for your help!

  • Why no firewire support for new iPods?

    If firewire is so much better and faster why did the geniuses at Apple decide to discontinue support for it? It took me over 30 minutes to upload music & videos to my new iPod w/ USB, which would have taken 5-10 minutes with Firewire. I don't get it!

    They did it because they obviously didn't see the need for it.
    Either you have a usb 1.1 port, or have about 500mb of music. The speeds aren't that different between USB2.0 and FW. In fact, i think USB is faster. Stop complaining here, this is only a user-user support forum.

  • Is it possible to add support for new database type in Data Modeler?

    Hi,
    I see that Data Modeler v.4 supports different versions of Oracle, DB2 and MS SQL. Is it possible to add support for a new database family,
    PostgreSQL for example? I hoped that RDBMS Site editor can do it, but so far I don't see any possibility to add XML files with metadata for a new RDBMS.
    I did it previously for PowerDesigner were it is possible to add and modify definitions for new relational databases.
    Thank you,
    Sergei

    There is discussion option as an out of the box feature. Check this: BI launch pad 4.0: Participate in a discussion about a document

  • CS5.1 support for new DSLR cameras (D600)

    I would like to understand the business decission (if there is any) why Adobe decided that for new DSLR  cameras support they will update only the Camera Raw version for the current release CS6 and not respecting the legacy for the n-1 release (updating the Camera raw for CS5.1).  This is a serious concern and disapointment.  Does it means that each time Adrobe has a new release , if i chnage the DLSR i am FORCED to upgrade and pay 190$ eventhus I do not need the new release features?

    Ah, thanks guys - I am very very happy to eat crow on that one!
    The actual point of my post was to make me feel better, and boy did it work!    I did not expect any actual relief, so actually now the post is twice is good as I thought - I was actually wrong!
    Anyway, I might mention (I didn't get into all the details) that I actually canceled the order for the d800e (the "e" version was backordered until just recently), as the d600 was just announced as my order was about to process.
    So actually I am in the same bad situation as the previous poster, but maybe now I will go back to the d800 - saving a $450 upgrade to CS6 actually saves half the difference in price between the cameras.
    And sorry for the rant on the 2 analogies.  It was not a troll.  I vaguely remember in my research that Lightbox comes with ACR, is that true?  Lightbox doesn't come with CS5.5 MC, but I wonder if i were to buy it ($99??) that'll give me the latest ACR that supports the d600, and problem solved.  I assume once i have the latest ACR it'll let me open straight into PS and not make me go through Lightbox and then PS?
    Anyway, if that is correct, that would be a much better answer to the original poster (and it saves him $100).  Other good answers (if this Lightbox hack won't work), might be:
    "It's an incredible amount of work to support nearly every camera and lens ever made in ACR, so even though it comes free with your software, you don't get free updates once your software moves to a new version."
    or
    "The d600 began shipping nearly immediately upon announcement, and it takes a while to update the software."  (perhaps the responder didn't realize it, but this was the situation with the d600.)
    But the car-story and "if you can afford a new camera, you can afford to pay adobe" were pretty tragic answers - someone needed to call you on it, or you would have only served to upset the original poster.
    Ha, PEBKAC, that is pretty good.  Not very easy to pronounce, though.
    I must say my last dozen interactions with adobe have all been negative, except this one, so maybe things are turning a new leaf.  You're lucky I didn't get into the story of when my HD crashed, and I had to call Adobe to re-activate my old CS4 PS.  It's awesome getting literally laughed at by the activation help desk person.  (I had owned the software for 3 years at that point, and had only ever activated it once.)  ...who just assumed I was lying.  "here now let me tell you how to deactivate the old version" "the HD is dead, it ain't going to happen" "well let me show you again, because you need to do that..."
    Oops, I did get into that story, didn't I?
    Best,
    Inline

  • How to extend interMedia to support for new Image Format

    Does anyone here has experience to extend interMedia to provide support for a new image format.
    I have read the related chapter in Oracle Intermedia User Guide, I'm not very clear about it. Hope a step-by-step tutorial for this topic is available.
    Thanks in advance for any idea

    Can you send the details of your application to [email protected] and explain the reasons extensibility is needed by your application?
    At this time, the only way to extend formats is to write your own procedures (ususally java stored procedures) to populate the image object... This does not extend the image processesing functionality to the new image format. Internally, this requires a translation to and from an intermediate format.
    Larry

  • DNG Converter support for New Camera

    What is the approximate usual time from the release date of a new camera
    (specifically the Sony DSC RX100) and support for the camera by ACR or
    DNG Converter ?

    ACR and the Adobe DNG Converter are updated in an orderly fashion from three to four times a year.  So you'll see a new version every three to four months.
    The release of any new camera model has no bearing on this.

  • Needed Raw-Support for new Samsung SLRs like NX1000

    Hopefully Apple is updating his support for these new cameras (they are still a few month on the market).

    You better tell Apple directly: Apple - Aperture - Feedback
    Here Apple probably will not hear you.

Maybe you are looking for