Menu Position Changed after upgrade from Forms 10 to 11

Hi,
I have upgraded an application from Forms 10 to 11g. Everything is ok apart from the position of the menus.
In Forms 10 the menus are attached to the window they relate to e.g. a pop up form has the menu (normally default&smartbar) displaying at the top of the pop up window but on the 11g version the same menu is displayed at the top of the screen looking like it is attached to the MDI window.
Is there any way of restoring the original functionality in 11g please.
Thanks,
Jim.

It sounds like this has nothing to do with the version, but rather your configuration. To attach the menu to the form window, set useSDI=yes. To attach it to the MDI window, set useSDI=no or leave it unset. This parameter can be set in formsweb.cfg or in the url used to run the form. For example:
http://server/forms/frmservlet?form=myForm&otherparams=useSDI=yes
Note that useSDI is a Forms runtime parameter and not an applet parameter, so it is set through "otherparams".

Similar Messages

  • Report Layout Changed After Upgrade from 4.6C to ECC6

    Dear Gurus,
    I do functional test of every process in ECC6 after upgrade from 4.6C. I found all report layout changed without variant (it's happen to all Query/SQ01 reports ). So I've to assign manually the fields for the reports, and create a default variant then.
    Why it happen ? Is there configuration or setting missed or this is standard while we do upgrade ?
    Thx in advance.
    Tri Wicaksono

    We do re arrange for all ALV report ...

  • The optimizer changed after upgrade from 8i to 10g

    I have upgraded my Oracle database from 8i (8.1.7.3) to 10g (10.2.0.3). After upgraded, there's some SQLs are with performance issue that the response time is very slow. The SQL can run very fast (around 1 seconde) in the pre-upgrade environment. Also, after generating the execution plan, there's different from the original enivronment (8i) which the query using some full table scan instead of index scan originally used in 8i.
    The optimizer_mode of 8i is RULE and it's CHOOSE when upgraded.
    My questions are:
    1. Do I have any init.ora parameters setting in 10g environment which differ from 8i?
    2. What method of analyzing tables is appropriate to use in 10g? Will this affect the performance like my case?
    Thanks,
    Wai

    Please have a look to following threads:
    Re: Optimizer Statistics collection after upgrade from 8i to 10R2
    Re: DB upgrade from oracle 8.1.7 to oracle 10.2.0.2

  • The synth pad sound Warm Pad has changed after upgrading from Logic Express 7 to Logic Studio

    Hello!
    I have composed a lot of songs over the years using Logic Express 7, and my favourite synth pad sound there was a sound called Warm Pad (from the EXS24 Sampler).
    A half a year ago I upgraded to Logic Studio, mainly because I needed WaveBurner. Happily, all my songs sounded exactly the same after the upgrade, except from 1 sound: The synth pad sound Warm Pad. It still got the same name and location, but the sound was replaced with a very sharp and much more distinct sound (not warm at all, in my ears at least).
    I have tried to replace it with different synth pad sounds from the EXS24 Sampler, and the one I find to come most close to the old Warm Pad from Logic Express, is a synth pad sound called Pad 1. Still, I don’t think it sound exactly the same.
    So, in order to finish all my songs and make an album, I ask you for help:
    1. Do you know how I can get EXACTLY the same sound as the old Warm Pad Logic Express, with my new Logic Studio?
    2. Have you experienced the same with sounds, after upgrading from one Logic version to a newer one? And what have you done to find back to the old sounds?
    I will be VERY thankful for help, because I am not a genius in the mysterious (but yet exiting) world of synthesizer synthesis.
    Best regards,
    Asle
    Composer, guitarist and entrepreneur
    Norway

    I have the boxed version of logic studio.
    When you install, if you pick the "ad hoc" installation you can add the logic7 patches to your existing patches.
    I think running installation again you should be able to install just that.

  • Form element id changed after upgrading from APEX 3.2.1 to 4.0.2

    Hi,
    We are in the process of testing an upgrade of our APEX 3.2.1 app to 4.0.2. The production database was exported, imported as a new database, and then upgraded to 4.0.2. I've noticed that on pages where we have coded our own PL/SQL process in place of the built-in MRU, the form element id (referenced using g_fxx) has changed. For example, in our existing production system, the id for the first row of data is f06_0001, but when we look at the same page in APEX 4.0 environment, the element id has changed to f08_0001. Is this a known issue when performing an upgrade? Has anyone else experienced this?

    Hi,
    I have seen this problem.
    I assume that Apex 4 do not give fxx name to items anymore in order where columns are in query.
    This is one of reasons why we have not been yet able to upgrade.
    And it seems this same problem exists in Apex 4.1 on apex.oracle.com
    Regards,
    Jari

  • Accessing wwv_flow_files changed after upgrading from 2.0 to 2.2

    We have recently moved to 2.2 After the move uploading files, under some circumstances, failed.
    Further investigation found that the upload was working fine, accessing wwv_flow_files table had changed in some way.
    From the SQL Workshop we could see the files which had been uploaded. From SQL*Plus we couldn't see the same files.
    I have read Re: Lost permissions on WWV_FLOW_FILE_OBJECTS$ and see at the end it says that access to wwv_flow_files is not supported from SQL*Plus. That's fine.
    The problem we have is that the same limit seems to apply to functions called from within an APEX application. We have a function that at one point issues the following SQL -
    SELECT blob_content
    INTO l_blob
    FROM wwv_flow_files
    WHERE name = p_file_name;
    (The function goes on to extract rows from the uploaded file to be uploaded into a table).
    This function was not able to find the row which we knew was in the table.
    Drilling down wwv_flow_files is a view of wwv_flow_file_objects$ with the following condition 'where security_group_id = wwv_flow.get_sgid'
    By changing the original SQL to
    SELECT blob_content
    INTO l_blob
    FROM WWV_FLOW_FILE_OBJECTS$
    WHERE name = p_file_name
    AND created_by = 'HTMLDB_PUBLIC_USER';
    we get what we want.
    My question is .. as the function is called from with an APEX application, why is the where clause preventing it from accessing the data we need.

    Thanks for the details, it's making more sense to me.
    The function extracts the rows from the uploaded file and displays them in a textarea.When you say "and displays them in a textarea" it sounds like something that happens during page rendering. But I think maybe your page selects the rows in an after-submit process and puts some content into a textarea item for display during the next page "show". Tell me if I'm on the right track. In 2.2, there's a bug that prevents queries from seeing the just-uploaded "files" or rows until after computations have fired. You need to move any code that selects those rows to a process "after computations and validations" (you could run it as a validation if you really needed to). Let me know if you think this explains what you're seeing. This is fixed, by the way, in 3.0.
    The created_by = 'HTMLDB_PUBLIC_USER' clause is required as the >>WWV_FLOW_FILE_OBJECTS$ table also contains objects created by other users, for >>example ADMIN (eg APP imports etc)But your predicate specifies "where name=" and name has a unique constraint so you'll get the row you want without specifying created_by.
    Scott

  • SQ01 query layouts has been changed after upgrade from 4.6c to ECC

    Hi All,
    If any one come across the following situation please provide the solution as soon as posssible.
    When you execute the query the results are not displayed as fields are not copied under display column,not sorted,not filtered becos of this the query results are not displayed. Is there any solution are setting that need to be done so that the layouts fields are copied,sorted and filtered as they were before upgrade. I have checked all the query variants and they are imported correctly to ECC from 4.6c,there is problem only with the display.
    Is the query layout changes due to upgrade?
    Regards,
    JB

    Please Post the Note Number.
    late but Sure it will help others in future.

  • After upgrading from acrobat 9.5 to XI pro my users have complained on slow typing when filling in form that were created in version 9.5?

    After upgrading from acrobat 9.5 to XI pro my users have complained on slow typing when filling in form that were created in version 9.5?
    The issue is they type but there is 2 second delay when it appears in the field.
    Windows 7 64bit

    I see, I misread your reference to Reader 11 to mean you were using Acrobat 11, but it looks like it worked out anyway.
    The base-14 fonts are special in PDF because they are guaranteed to be available even if they are not embedded. If you select a non-base-14 font for use with a form field, the entire font usually gets embedded, since each glyph it contains has to be available for use with the field. This can take up a lot of space if you do this a lot, and the space isn't reduced if you change back to a base-14 font later because the internal reference to it is not removed. This is caused by the bug I mentioned.
    In your case, however, the entire font doesn't get embedded because fonts like it (e.g., large asian fonts with a lot of glyphs, Arial Unicode) would take up too much space if fully embedded. If it did, a 100KB PDF could bloat to 20MB with that one change. Instead, users are expected to have such fonts installed on their system, which is why you were prompted to install the font pack. This despite the fact that the font was not actually used by anything in your document, it was simply the orphaned reference to it that triggered this. This should get fixed in Acrobat eventually so this type of thing doesn't happen again.

  • After upgrade from 11.5.10 to 12.1.3 unable to view picture in people form

    After upgrade from 11.5.10 to 12.1.3 unable to view picture in people form
    An error msg "You do not hava access to perform this action" is displayed
    Can anyone pls help me to resolve this issue
    Thanks

    Jay, Thanks for your inputs, i went throught the metalink notes suggested by you but could not find a solution to resolve my issue.
    I am getting this error from other responsibilities aswell. But i could view the picture from the same responsibility in 11i. After upgrade to R12 i am not able to view the picture. can you suggest some steps to troubleshoot this issue.
    Thanks

  • How to change table defnition after upgrade from 9 to 10 ?

    after upgrade from 9 to 10, tables ddl still like 9i:
    .................PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255..........
    ................ inndex PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS..........
    Is there a method to convert it all tables to new 10g style without re-create thousands tables then emp/imp one by one?
    Thanks

    What do you mean by "10g style"? Do you want tables to be using ASSM? If that's the case, that's a feature of tablespace itself. So it means that your tables need to be in those tablespace which are having Segment Space management auto set in them.I don't think that there is any automatic package which can do the same on the fly.
    One way ,which may not be very less time consuming but still can help is to convert the segment space management using EM.But again,this does recreate teh tablespace so I don't think that this is any different from exp/imp.
    HTH
    Aman....

  • Smartview reports do not open in HFM v11.1.2.1 after upgrade from v9.3.1.

    Smartview reports when I attempt to open in HFM v11.1.2.1 (after upgrade from v9.3.1), points me to launch v9.3.1 workspace. Any advise pls... Thanks, Mark

    Mark,
    I still don't fully understand the issue. Smart View is not launched from Workspace -- it is instead run from within one of the Microsoft Office products (Excel, Word, PowerPoint, Outlook). Are you instead asking about Financial Reports? These are run from the Explore menu within Workspace. You can view these as html or PDF.
    A little more confusing is the fact that Smart View can run a Financial Report from within any of the Office products. In any case, when you use Smart View in 11.1.2.1 you could open a connection to the Workspace server (the connection in Smart View is defined in the Smart View options under Advanced > Shared Connections URL). Assuming you have provided a correct URL there, pointing to the 11.1.2.1 workspace server, you should see the available shared connections when you open a new conenction.
    I re-read your e-mail and wonder if you are confusing things a bit. If you log into Workspace, using Internet Explorer, each user has their own preferences as to what page launches by default upon login. I think you are saying that a usr logging into the 11.1.2.1 workspace somehow has a default page leading them back to the 9.x workspace? If so, check their preferences to examine the default document and it's URL. Once logged into Workspace, choose File > Preferences > General, to view the Startup page. You can make any changes here, but this is user-by-user.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • File- Export not working after upgrade from 11i to R12

    Hi,
    File -> Export not working after upgrade from 11i to R12.1.3 in few systems. Can you please let me know what could be the issue.
    If export record count more than 200 it is working fine in all the systems and if change the profile option "Export MIME type” value to ‘text/tab-separated-values’ from application/excel also it is wokring.
    Thanks and Regards,
    Jagadeesha

    Enabled the FRD. Below are few last lines. Can you please let me know what i can in this log file contents.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing GET_ITEM_PROPERTY/FIELD_CHARACTERISTIC Built-in:
    In Argument 0 - Type: Integer Value: 196613
    In Argument 1 - Type: Number Value: 54
    Out Argument 0 - Type: String Value: 12
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Entering app_menu.set_prop.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing FIND_MENU_ITEM Built-in:
    In Argument 0 - Type: String Value: FILE.EXPORT
    Out Argument 0 - Type: Integer Value: 19
    Executing GET_MENU_ITEM_PROPERTY Built-in:
    In Argument 0 - Type: Integer Value: 19
    In Argument 1 - Type: Number Value: 79
    Out Argument 0 - Type: String Value: TRUE
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_menu.set_prop.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_synch.menu_toolbar_sync. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.APP_CUSTOM_MODE
    Out Argument 0 - Type: String Value: NORMAL
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.APP_CUSTOM_MODE
    Out Argument 0 - Type: String Value: NORMAL
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: NULL
    In Argument 1 - Type: String Value: GLOBAL.OUT
    Executing USER_EXIT Built-in:
    In Argument 0 - Type: String Value: FND GETPROFILE NAME="UPK_RECORDING_ENABLED" FIELD="GLOBAL.OUT" N
    FNDCPVCM, 11, Built-In, Entry, 316509814, USER_EXIT
    FNDCPVCM, 11, Built-In, Exit, 316509814, USER_EXIT
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.OUT
    Out Argument 0 - Type: String Value: N
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_form
    Out Argument 0 - Type: String Value: FNDCPVCM
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_block
    Out Argument 0 - Type: String Value: MASTER
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_form
    Out Argument 0 - Type: String Value: FNDCPVCM
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_block
    Out Argument 0 - Type: String Value: MASTER
    Executing GET_APPLICATION_PROPERTY Built-in:
    In Argument 0 - Type: Number Value: 75
    Out Argument 0 - Type: String Value: IHR40P
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed call_all_libraries. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_standard.event. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    FNDCPVCM, 10, Prog Unit, Exit, 316509814, /FNDCPVCM-3/P45_30_DEC_201223_28_33
    FNDCPVCM, 9, Trigger, Exit, 316509814, WHEN-NEW-ITEM-INSTANCE
    FNDCPVCM, 8, Prog Unit, Exit, 316509814, /DMU-4/P8_30_DEC_201223_23_12
    # 15 - FNDCPVCM:MASTER.USER_CONCURRENT_QUEUE_NAME.1359399301498413820
    WINDOW FNDCPVCM PROGRESS_INDICATOR RESIZE 4198 1500 3
    # 16 - FNDCPVCM:MASTER.USER_CONCURRENT_QUEUE_NAME.1359399301512613925
    WINDOW FNDCPVCM PROGRESS_INDICATOR RESIZE 4198 1500 3

  • Hotkey (Ctrl+B) is not working after migration from Forms 6i to 10g

    Dear Gurus,
    Need your help regarding the following problem:
    After migrating from Forms 6i to 10g (Rel 2), Ctrl+B (used to list the blocks in a form) hotkey is not working anymore (all other hotkeys are working fine). I've checked my FMRWEB.RES and it contains an entry for Ctrl+B:
    66 : 2 : "Ctrl+B" : 70 : "Block Menu"
    Additional Information:
    OS: AIX
    NLS_LANG = UTF8
    fmrweb_utf8.res also contains the same text for Ctrl+B as above.
    I tried to reproduce it on my Windows Machine (with NLS_LANG set to AMERICAN_AMERICA.WE8ISO8859P1) and its not working as well. I don't have right to put move files on AIX server but i can try anything (on my local system) suggested by the Oracle gurus.
    Best Regards,

    Dear Gerd,
    "are you sure, that it is the hotkey"
    Yes, i am dead sure. Since:
    (1) It was working fine in forms 6i
    (2) If you run a form and select Help => Keys, you will see Ctrl+B on the top of list
    The problem is its not taking into account the keys which i am defining in the file (although i am following the same procedure detailed on metalink.oracle.com).
    Regards

  • When creating a new window in safari, using command T, the marker have not activated the search field. It means you have to click there every time. Changed after upgrading to Mavericks. Anyone knows how to change this?

    When creating a new window in safari, using command T, the marker have not activated the search field. It means you have to click there every time. Changed after upgrading to Mavericks. Anyone knows how to change this?

    Yes, you can do something like that. What you would do is create a button for each image and then hide them. When I do this type of thing I place all of the buttons on a template page and then hide the template.
    You can then use JavaScript to copy the icon from any of the hidden buttons to the main button that you've set up to display the image. For example, suppose you set up 10 buttons named b1, b2, b3, ...b10. The code to copy the icon from one of them to the button used to display the image (b0) would be something like this:
    // Get the icon from the b3 button
    var oIcon = getField("b3").buttonGetIcon();
    // Get  reference to the b0 button
    var f = getField("b0");
    // Set the icon of the b0 button to the icon retrieved from the hidden button
    f.buttonSetIcon(oIcon);
    // Show the b0 button
    f.display = display.visible;
    This code would go in the Mouse Up event of the smaller button.

  • Remote Desktop Connection stop working after upgrade from 10.5.8 to 10.6.1

    I too could not connect to a W2K3 server with RDC 2.0.1 after upgrading from Mac OS X, 10.5.8 to 10.6/10.6.1. I have another Mac which is on 10.5.8 and connect fine with the same version of RDC 2.0.1 as well as other PC with Terminal Service Clients.
    There is no change on the server side. I have uninstalled and reinstalled RDC 2.0.1 several time and it did not resolve the issue. To rule out firewall/network, I tested with another remote desktop application called CoRD (for Mac) on the same laptop running SL 10.6.1 and it connected to the same W2K3 server fine.
    One thing that is worth mentioning (in my case), when it does not connect, RDC totally quit (not running anymore. Not minimize, no cannot connect error message, no little dot on the Dock for RDC, nothing) right after I put in the credential in. When looking at the log entries that are related to RDC in the Console application, I see the following
    machine 10.6.1. with RDC 2.0.1 (non-working)
    9/22/09 1:17:16 PM [0x0-0x3a03a].com.microsoft.rdc[468] objc[468]: Class NLAssertionHandler is implemented in both /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/Netlib.framework/Versions/12/Netlib and /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/RDCPAL.framework/Versions/12/RDCPAL . One of the two will be used. Which one is undefined.
    On the 10.5.8 machine with RDC 2.0.1 (working), I see the following entries
    9/22/09 1:13:23 PM [0x0-0x24f24f].com.microsoft.rdc[5502] objc[5502]: Class NLAssertionHandler is implemented in both /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/Netlib.framework/Versions/12/Netlib and /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/RDCPAL.framework/Versions/12/RDCPAL . Using implementation from /Applications/Remote Desktop Connection.app/Contents/MacOS/../Frameworks/RDCPAL.framework/Versions/12/RDCPAL .
    9/22/09 1:13:39 PM Remote Desktop Connection[5502] * _NSAutoreleaseNoPool(): Object 0x16a25c20 of class NSCFArray autoreleased with no pool in place - just leaking
    Stack: (0x9277af4f 0x92687432 0x93062bf5 0x926ce0fb 0x9723dff5 0x9268d52c 0x92fd447a 0x92fd4753 0x92fd4a48 0x930375da 0x530bac 0x4831a2 0x483750 0x483c0b 0x47a811 0x4796ac 0x485dad 0x47d475 0x5099dc 0x574c70 0x4ade03 0x4ae65d 0x4ae6f7 0x4ac8dd 0x53260c 0x534187 0x4ae76a 0x4ae7d0 0x4ae88e 0x493925 0x4ae13d 0x533b1a 0x53da6c 0x94a48057 0x934b3155 0x934b3012)
    Any help would be appreciated

    Doing some more troubleshooting after my post above as I saw a couple of entries referencing Stop Light keep popping up in the log of the Console. I removed Stoplight and Cocoa Gesture (for good meausre) and RDC 2.0.1 started working. I think it is Stop Light which causes RDC stop working, but I don't have to time right now to put Cocoa Gesture back to confirm that. I might if I have the time or post here if you have Stop Light installed as well and removing it resolved the RDC issue for you.

Maybe you are looking for

  • Do not know how big or small items in image will be after being printed out

    I have just started using photoshop to develop some designs that are meant to be printed on fabric. And then sewn into dresses While I know how to change the size and scale of the image and canvas. I can not tell how big or small the objects or diffe

  • Css stickiness based on the http header

    there is CSS 11503 that should load balances the traffic between 2 servers running IIS (http port 80). In front of load balancer there is a reverse proxy, that hides all real ip addresses of users that send requests to web-servers. The customer would

  • Can´t add texteffects to editorable text

    Hi, did i do something wrong or is it a bug? I can´t add effects to text, but to textframes.

  • Condition JEXC not working in Pricing procedure for Non Set Off

    Hi,      While creating PO in case of Dealer procurements i; e we are not buying the materials from the direct manufacturer but from dealer  we need to have BED other than 8%(maintained in J1ID).       I am using the condition type JEXC in the Pricin

  • Ipod classic in 3rd generation ihome

    will my ipod classic work in my 3rd generation ihome? i got the ihome last year and i have the ipod mini insert in it right now. Should i get the ipod classic insert? will that make it work? because right now the ipod plays but no sound comes out, bu