Oracle Forms 10G(tabbed canvasses not working the same as in Forms 6i)

Hi everyone,
I have a form which gets called from another form through a list of value. The called form(second form) has a group of tabbed canvases which get displayed depending on the parameters passed from the first form.
The Form is working prefectly fine in Forms 6i but when I converted the same form in to forms 10G it does not seem to work the same way. The tabbed canvasses are not getting displayed. I am manually having to press the execute query to get data displayed in the tabbed canvasses. I checked the parameters that are being passed and they are the same as that in Forms 6i.
Please let me know where my 10G Form is going wrong. Appreciate your help, please send me an email on [email protected]
Thanks

duplicate
Re: Oracle Forms 10G not working as Oracle Forms 6i

Similar Messages

  • Why doesn't the rotate gesture on my trackpad behave as it used to for switching between tabs when it works the same with all other programs besides Firefox?

    Why doesn't the rotate gesture on my trackpad behave as it used to for switching between tabs when it works the same with all other programs besides Firefox?
    I changed the about:config to make the rotate gesture move between tabs, and it worked great for well over a year. Now it behaves erratically as described here:
    https://bugzilla.mozilla.org/show_bug.cgi?id=877598
    It used to be very controllable to move one tab over, now it is erratic and moves quickly and to unexpected tabs regardless of how slow I do the rotate gesture. This is the main reason I use Firefox over Chrome and I would like to continue to do so unless there is no fix to this.

    Just set the browser.gesture.twist.threshold to something around 15-25.

  • Form load rules are not working on display and edit forms

    Hi
    I have customized SharePoint 2013 list form using InfoPath 2013. I want to hide certain fields based on user group. I created rules on form load for that. These rules are working fine on New Form but are not working on display and edit form.
    What can I do?

    It could be because the value might have not changed ie, you might be checking for a particular value, the values might have got overwritten when the new form is saved, see if that value is blank or overwritten in display and edit forms.
    I would first check the form load rules and check those values again in Display form and edit form, if the values are not getting cleared/overwritten.
    It would be better if you could upload the screenprint.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • Internal network not working the same as on previo...

    Hi all,
    I had the previous HH3 when I had standard BT Broadband, with this I was able to browse to webcam.home for example.
    Since my upgrade to Infinity I now have the new HH3 installed (Software version V100R001C01B031SP09_L_B), no matter what I do I can no long browse using the name. If I look at the details in Home Hub manager UI then I can find the IP address of the camera and browse to it, this works fine. It doesn't look like the new hub is handling the internal network in the same way.
    I am using DHCP for all the connected devices.
    Any ideas would be greatly appriciated as i don't want to have to remember all the IP addresses of my networked devices.
    Thanks in advance,
    Steven

    Hi svacher
    If you logon to the HH3, under the Home tab, what is listed under "Devices currently connected to your BT homehub".
    You should see your camera there and it's hostname. If you only see the ip address then the hostname has not been resolved. That could be that the camera has not "registered" it's name with the HH3.
    Not sure if you are using your browser from Windows, but you could try opening up a command prompt and running this command. It will flush any old DNS entries and should allow you to use the hostname.
    ipconfig /flushdns
    ptan

  • Adobe Air ServerSocket not Working the same on XP/Vista/7

    I'm having a strange problems with an air socket server i've written.
    I have an Air application written using Flash Builder 4.  It's basically a simple HTTP server.  It's purpose it to open a server on a specific port and serve files (both html and swf) out to a web browser.
    When i run the air application on my desktop (windows 7, firefox 4.0b11, ie8, flash builder 4 compiled with flex sck 4.1.0) everything works correctly.  Whether i run the server through the Flash Builder debugger or actually do the full packaging and install as a standalone air app then run it using the Air Runtime like any user would.  I load up the server, punch in the address from anywhere and the page loads, and the requested swf displays correctly.  While the server is running on my desktop i've tested clients including Windows XP and Vista with IE8, HTC Evo4g Android phone, and the Playstation 3 browser.  From any tested client with the server running on my desktop all requests are handled correctly and pages/swfs load and display correctly.
    The problem comes when i run the air app on another computer.  When i package it and install it on one of my two test systems (Windows XP and Windows Vista) things start to go wonky.  The Air app loads on the two test systems but when a client tries to use their web browser to request a page things don't display correctly.  The client can load the html file fine but the swf that it receives from the server does not display.  I can check the log on the status server and see the HTTP GET being processed, and the file sent.  However, the browser simply displays a blank box where the SWF should be.  With the server running on either of my two test boxes (XP and Vista) the same clients who can connect and display html and swf's delivered from the server experience this problem.
    I think i've eliminated browser request as the problem from testing different browsers on different OS's on each of the test installations.  As best I can tell, the problem is with the server side of the app.  The server uses the SocketServer class to listen for a connection and then writes out the HTML headers and content to the socket manually, i'm not using any external libraries for writing to the socket.
    here's the code for writing to the socket when a swf is requested.
         var content:ByteArray = new ByteArray();
         var stream:FileStream = new FileStream();
         stream.open(file, FileMode.READ);
         stream.readBytes(content);
         stream.close();
         socket.writeUTFBytes("HTTP/1.1 200 OK\n");
         socket.writeUTFBytes("Content-Type: application/x-shockwave-flash\r\n");
         socket.writeUTFBytes("Content-Length: " + content.length + "\r\n\r\n");
         socket.writeBytes(content);
    I don't believe the problem is with the socket write since it works on my desktop but not when the server is running on another.  I'm wondering if the problem is with an external system dependancy.  Are there any external libraries, visual c++ runtimes, tcp/ip libraries that Air uses to fulfil requests to sockets on different operating systems/versions?  I've been searching around the web and browsing through adobe live docs for a few hours on this but can't seem to find a resolution anywhere.  If more detail is needed, please let me know.  Any help would be much appreciated.

    I appreciate you taking the time to look at this.  Good to know I'm not completely crazy, that makes me feel a little better.
    The 178774 is bytesLoaded()   and 1096810 is bytesTotal() as seen by the swf.
    That's what i was experiencing.  The issue you're seeing with it running on vista of the swf apparently only loading 180k of the 1 meg is what i'm experiencing.  For me that  happens when the server side of things is running on my XP or Vista  machine.  On Win 7 it works fine.  Also, for mp3's it seems to only download the first couple seconds.  When i stream an mp3 from the server it only plays a couple of seconds and stops.
    Not sure if the index.html file that it serves out is small enough that it gets it in one cycle but for larger files it closes out the socket before sending all the data.
    If i get some free time tomorrow i'll see about getting an Ubuntu  virtual machine going and test it there as well.  I don't have access to  a mac to try it on OSX.

  • AVReceive2 and AVTransmit2 not work the same...HELP

    I am using AVReceive2 and AVTranmit2 in a programs I am developing. I have run the two programs as the standalones they are and I get the video or audio I send across. But in my program when the program calls up the routines it launches and only does a hand full of what it should do. It is also like the SessionListener, ControllerListener, and ReceiveStreamListener are missing. The program listens for a RTP connection to come in but it never completes the action when I know that there is a connection being attemped. The same istrue for the AVTransmit2 it does not create the RTP session that I know is supposed to go out. It is like skipping a large piece of code. Even though they are all contained correctly. If someone can give me an answer to why these two programs work out side of what I am doing and why they are not in what I am building it would be highly appreciated. ASAP I need this working by tomorrow morning. Thanks
    public CommPt(String rcvr,String sender,String rcvr2) {
            initComponents();
        //    System.out.println("start to receive signal");
       //     if (pick.equals("Receive")){
       //     at = new AVTransmit(new MediaLocator("vfw://0"),"192.168.1.101","22222",null,new MediaLocator("javasound://8000"));
       //             at.start();
       //     String argsv[]={"192.168.1.102/22222","192.168.1.102/22224"};
            avReceive = new AVReceive(rcvr);
            avReceive.start();
       /*     while((avReceive.getConnection()).equals("false")){//carlos
                System.out.println("2");//carlos
                if (!(avReceive.getConnection()).equals("failed")){//carlos
                    System.out.println("3");//carlos
                    avReceive =new AVReceive(rcvr2);//carlos
                    avReceive.start();//carlos
                    break;//carlos
                }//carlos
            }//carlos*/
          /*  if (!avReceive.initialize()) {
             System.err.println("Failed to initialize the sessions.");
             System.exit(-1);
            // Check to see if AVReceive is done.
            try {
             while (!avReceive.isDone())
              Thread.sleep(1000);
         } catch (Exception e) {}
         System.err.println("Exiting AVReceive");*/
        //    if (pick.equals("Transmit")){
                    Object stand=new Object();
                 //   System.out.println("Start Time delay");
                    try{
                        Thread.sleep(5000);
                    catch(Exception ex){
                        System.err.println(ex);
                 // System.out.println("time delay ended");
                    String [] temp2;
                    temp2=sender.split("\\ ");
                    at = new AVTransmit(new MediaLocator(temp2[0]),temp2[1],temp2[2],null,new MediaLocator("javasound://8000"));
                    at.start();
        }Edited by: Laughincrow on Nov 29, 2009 5:02 PM

    Laughincrow wrote:
    ASAP I need this working by tomorrow morning. ThanksI guess since it's tomrorow morning I shouldn't bother to comment on this thread...
    P.S. If you don't want to take the time to remove your commented-out code that makes it nigh-on impossible to see what your code is actually doing, then why would anyone want to take the time to help you?

  • Mail Signatures, Folder Organization, Notification and Attachments not working the same since upgrade to Mavericks

    Hi All,
    Normally very quick to do so, I’ve been hesitant to upgrade to Mavericks based on so many issues being reported with Mail + Gmail. 
    Previously Apple released a fix for these issues and I still waited a while.  This weekend I upgraded to Mavericks and Mail is definitely not working as I’d expect it. 
    Some of the things I notice include:
    1) My saved mail folders, previously in alphabetical order, are now in reverse alphabetical order and dragging them to be in a different order has no effect
    2) Previously when I clicked on a message and pressed Message > Remove Attachments the message would reappear in my inbox within a second or two, without the attachment.  Now, the message simply disappears.
    3) The little red icon no longer appears in the dock when a new message arrives
    4) For my various accounts, signatures do not appear/disappear as I select a different From account (each of my accounts has different signatures).
    Does anyone have thoughts on any of these items?
    Thanks,

    Not an answer, but a repeat ...
    I too have problem (2) -- Remove Attachment now makes the email in question disappear (in fact moving it to Archive).
    Help would be appreciated.
    (Have just moved from Lion to Mavericks.)

  • Deskewing not working the same in version XI as it did in version 10

    We have been having issues with Adobe XI and the de-skew feature.  In version 10 we could take a previously scanned PDF and go in to Tools > Documnet Processomg >Optimize Scanned PDF > make the needed changes to the Filters (Deskew:On, Background removal: Medium, Descreen: On, Text Sharpening: On) , Edit the OCR PDF output Style to "Searchable Image" and then run the optimization.  This would apply the filters and deskew the document both in the same step.  However, since version XI when we do the same thing, with the same files it will apply the filters but it will not deskew them (we have tried multiple files and multiple systems to rule out file issues and install issues).   The only way that we can get it to deskew it is to set the OCR PDF output to "Clearscan".  This would be fine except for the fact that the the clearscan setting does not apply the filters.  So...the only way we can get this to do what we need is to run the optimization once with the OCR PDF set to "Searchable Image" to apply the filters and then run it again with the OCR PDF output set to "clearscan" to deskew the document.  This is not a big deal with a single page document but becomes a larger time issue when dealing with large, multipage documents.  It appears that this is a "bug" in version XI.  Any suggestions on how to accomplish in version XI what we used to be able to do easily in Version X. 
    Additional information: We are running Adobe 11.0.01 on Windows 7 64 bit OS.
    I have also seen LoriAUC's last post on http://forums.adobe.com/thread/992172 but those settings did not work for us either.
    Thanks in advance for any assistance.

    OK Adobe needs to hire people who can read *and* comprehend words.
    The Issue is WITH Acrobat 11
    I am having the same problem - deskew does not work on Acrobat 11 on Windows 7 64 bit.
    The advice: "For the time being, please use Acrobat 11 as this issue does not exists in Acrobat 11."  is inaccurate.

  • Urgent - Things not working the same in server and local machine

    Hi,
    I have created an advanced table under advanced table as per the instructions in the dev guide. When the Add Row button is pressed in the parent table, I am inserting rows into the child VO and hence I should see rows in the child table in the UI. This is working fine in local machine. But when I deploy in the server it is not working. The child table is showing no search conducted. I have good OAF experience and have deployed things properly. But what could I be missing?

    Hi Sumit,
    "If the Child VO is not getting executed, please check the code which is responsible to execute the child VO. Do pay attention to exit clauses (like if conditions which skips a clause) and pay attention. "
    - If those things were a problem, it wouldn't have run in the local machine also right? Also, I ran diagnostics on the server and I can see the child VO is having the rows. It is something to do with the association of the child with the parent. But again: it's working fine on the local. That's what is bothering me and that's why I need some expert help. If you want, I can send you the page, controller and the AM ( 3 files)
    Of course redeploying the entire code, importing pages and bouncing is an option that could be explored.
    - Done that multiple times with a lot of care. Cleared Cache etc etc.

  • Camera connection kit not working the same on IOS 5 as it did on IOS 4. Bugs or deliberate features?

    Using the Camera connection kit Previously downloaded files were recognised and only new pictures were uploaded. Doesn't seem to work in IOS 5. I was using the Ipad as a photos backup and display device.

    I haven't had an issue. Do you use the same card on both devices and it works differently on each one?
    You might try resetting the one that isn't working. Hold down the sleep and home key, past the red power down slider and until you see the silver apple. Let it reboot and see if it works.
    Might, might not help it, but it's a common fix for glitches.

  • HT4528 Calendar under IOS7.0.2 has been changed. does not work the same. what happened to LIST mode (multiple entries being displayed in list format) or am i doing something wrong?

    I got use to using Calendar app where multiple entries are stacked under IOS6.  Under iOS7.0.2 I enter a new appointment and after the entry I can not find the new appointment after i click on done.  Am I doing something incorrect HELP!

    The list view does not appear to be among the "standard views" for the Calendar app in iOS 7.0.x.  You can still get the list view by going to the day view and hitting the search button (magnifying glass icon).

  • Help! Mac vs PC:  Save As... dialog not working the same

    Hi everyone need some quick help here please.
    I have a friend on a Mac running CS2, trying to take a folder of TIFFs, and do a Save As to create JPGs.
    1. For a single file, he opens the TIFF, hits File/Save As.
    2. He selects JPG from the format dropdown
    3. He sees that the predicted file size in the Size part of the dialog looks right
    4. He actually saves the file
    5. He goes to the folder where the JPG was created, and theres the JPG.
    6. PROBLEM: The JPG file size is exactly the same as the original TIFF.
    7. This happens no matter what JPG quality he selects. Different quality values change (appropriately) the predicted file size, but the end result is always the same.
    8. On the PC, the dialogs the same, but you actually get a JPG thats far far smaller (so it really is compressed). And predicted file size matches the actual size of the JPG that gets created.
    Any Mac gurus out there that know whats going on, and what the answer is?
    We dont want to use Save For Web for huge number of reasons (including the loss of metadata, color profiles, resolution, etc.)
    Thanks in advance for your quick help!
    Jerry

    If you are accustomed to Windows, you know that the explorer view can sometimes give you incorrect information for a list of files. I've seen this a lot on Windows with thumbnail images that do not update properly.
    The Mac Finder does the same thing, and i see the after effect the most with incorrect file size listings.
    On Windows, you can refresh the view to bring everything up to date.
    Mac has no refresh view, and it is an annoying omission on an otherwise very well designed user experience.
    try selecting one of the individual images, type command-I (Get Info) and see what the size reported there is. If that is a more accurate size for a jpeg, then you are seeing the issue I describe.
    the Mac OS, at least up til 10.4.11, lacks a refresh view feature, but you can get a free utility to do this for you, called Nudge. Check VersionTracker to find the download.

  • Pen tool not working the same

    I don't often use the Pen Tool as it is not needed but when I do, I do the same kind of thing and that is  draw around something so that I can use a filter on the selected area.
    I was able to create a shape within a shape so there is a hole and then apply my filter to it. However, when I try to do the same thing it is all weird!
    I create a shape and then put a shape inside, right click and choose Make Selection and the inner shape disappears leaving the larger outer shape.
    Does anyone know what might be causing this and how I can rectify it. Another weird thing is that when I use a filter it applys it outside of the selection, but this is not as annoying as the original issue.
    Any hwlp would be hugely appreciated!
    Nig

    function(){return A.apply(null,[this].concat($A(arguments)))}
    UltimateTop Trumps wrote:
    I create a shape and then put a shape inside, right click and choose Make Selection and the inner shape disappears leaving the larger outer shape.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    UltimateTop Trumps wrote:
    Another weird thing is that when I use a filter it applys it outside of the selection, but this is not as annoying as the original issue.
    This occurs  when you use the quick mask to create a selection. Did you?
    miss_marple

  • Class.newInstance() does not work the same way in Java 5.0

    We upgraded our development environment to RAD 7, and I am experiencing an interesting problem with the code below which worked perfectly with the previous version.
    Class cloneClass = fromObject.getClass();
    Object toObject = null;
    toObject = cloneClass.newInstance();
    I am using an open source hashtable called OrderedHashtable that uses the key-value lookup capabilities of a hashtable and order preserving capablities of a vector. It stores the objects in a hashtable and stores the keys in a vector.
    fromObject in the code above is a key (String) that I retrieve from the OrderedHashtable and clone it using the code above. But with java 1.5 , the cloneClass.newInstance of this String object returns an empty string.
    I guess there is a work around where I can check if the cloneClass is an Instance of String and just do fromObject.toString(), but I was curious to know if there was a change in the way class.newInstance() works in Java 1.5

    >
    fromObject in the code above is a key (String) that I retrieve from the OrderedHashtable and clone it using the code above.No. How could that code possibly clone a String? Where are you telling it what the new String's contents should be?
    (HINT: Nowhere.)
    I guess there is a work around where I can check if the cloneClass is an Instance of String and just do fromObject.toString(), but I was curious to know if there was a change in the way class.newInstance() works in Java 1.5No, it has not changed.

  • CreateFont not working the same in 1.5.0 Beta 2

    The attached code will work as expected under JRE 1.4.2, but not under 1.5.0 Beta 2.
    The createFont method in 1.5.0 doesn't register the new font at the local environment, so it will not appear when listing the available fonts and the embedded HTML-aware components won't be able to use it.
    You can use the loaded font in methods like Component.setFont, though, so there is no I/O problem. I tested with other TT fonts, so no font specific problem.
    Is this a bug or a feature? It would not be backwards compatible then. Can someone reproduce this?
    I checked out a bit the createFont method source code, without going too much in depth. 1.4.2 registers the new font with SunGraphicsEnvironment, but 1.5.0 doesn't. Has this something to do?
    I didn't find any doc or bug report about this, but it seems to me too much an easily detectable bug as not having been reported yet.
    I use JRE 1.5.0 (Beta 2) and 1.4.2_02 under Win98.
    Regards,
    import java.awt.Container;
    import java.awt.FlowLayout;
    import java.awt.Font;
    import java.awt.GraphicsEnvironment;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    * @author  luis
    public class TestMisc extends JFrame {
        /** Creates a new instance of TestMisc */
        public TestMisc() {
        void loadFonts() {
            ClassLoader classLoader = this.getClass().getClassLoader();
            Font ALFABETIX;
            try {
                ALFABETIX = Font.createFont(
                Font.TRUETYPE_FONT,
                classLoader.getResourceAsStream("fonts/ALFABET_.ttf")
            } catch (Exception ex) {
                ex.printStackTrace();
        void dumpFonts() {
            GraphicsEnvironment gEnv = GraphicsEnvironment.getLocalGraphicsEnvironment();
            String envfonts[] = gEnv.getAvailableFontFamilyNames();
            for(int i = 0; i < envfonts.length; i++)
                System.err.println(envfonts);
    * @param args the command line arguments
    public static void main(String[] args) {
    // TODO code application logic here
    TestMisc t = new TestMisc();
    t.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    t.loadFonts();
    t.dumpFonts();
    Container container = t.getContentPane();
    container.setLayout(new FlowLayout());
    container.add(new JLabel("<html><font face='Alfabetix'>TEST"));
    t.pack();
    t.setVisible(true);

    See Bug ID: 5092091. How to add new fonts to the HTML components then?

Maybe you are looking for

  • How can I get My iCloud acct to work after changing my Apple ID?

    I changed my Email on my Apple ID, now my iCloud is unable to be used, it keeps saying the ID is incorrect, and an old one does pop up, but going to settings to Correct the info they need, it won't let me. Apple support told me my password would work

  • Can't update or download apps

    This has been a problem for me for quite some time. I can't download or update any apps from the AppStore. I though that downloading iOS 7.0.6 would do the trick but I still can't download or update any apps.

  • PDF Portfolio

    I have created a portfolio compiled of fill-in forms and other documents.. When I open a document within the portfolio that has multiple pages, the pages get jumbled up. I've noticed that it is happening with page two - so if double click a document

  • Navigator 6210 is suddenly very slow

    I have this Nokia Navigator 6201 for about 1.5 yrs. I noticed that recently it had become very slow. when i slide it open, it takes about 30 sec for display to light up. Also same for all other functions. I already tried hard resetting my mobile ( us

  • Usb port has power but wont read macbook pro

    I have a macbook pro with 2.4ghz intel core i7 mac os x version 10.7.3  and my USB ports recently stopped working.  They still power drives, but are not reading any information.  It's as if the devices do not communicate, though the powering function