MENU - mmx file not used by form 6

Hi,
I have created a "tree root" menu with submenus, I compile them and get a .mmx with the menu name, however this menu is not used by runform.
Should I set a parameter in a config file to change which menu is taken into account?
Many thanks for your reply :-)

Hi again ,
The menu was REPLACED in a When New Form Instance trigger.

Similar Messages

  • Blue-Ray Object: "Menu"; Export File Not Found--Any Clues?

    Trying to build a Blue-Ray DVD in CS3 (version 3.0.1.008). Project has motion menus and previews without errors. Upon trying to build either a disc or image I get the error
    Blue-ray object: "Menu"; Export file not found.
    Where "Menu" is the name of one of the sub menus in my project.
    Has anyone seen this error? What is an Export file? When and how does it get created?
    I have successfully burned this project to a standard DVD format.

    I have the pleasure of closing out my own question. I found the following post that was the clue I needed.
    http://forums.creativecow.net/readpost/145/857374
    It would appear that the Blue Ray build process is a lot more sensitive to file naming. I brought into my project a menu that I used as a starting template, I edited it in Photoshop and then renamed it in Encore. During the Blue Ray build process Encore rendered the menus to the original template names, but when it needed them to build the DVD it looked for the files that had the new names I had given the menus in Encore.
    Here is the fix. I exported the final menus using the Save as Template function in Encore. I then re-imported them as menus and relinked them to the DVD assets. Everything worked fine from that point on.
    The interesting thing is this did not happen when building a standard DVD using the same menus.

  • External swf file not using URLRequest

    Good morning guys.
    You can load an external swf file not using URLRequest? Since embed html code is setted as <param value="never" name="allowscriptaccess"/>
    I have this problem and I need to load a swf skin
    thank you

    are you loading a swf (done during runtime) or importing one (done during authortime)?
    in either case, the allowscriptaccess parameter of the external swf (that your loading or importing) is irrelevant.  allowscriptaccess is assigned in the main (loading or importing) swf's embedding html page and is used to control html/js access of the main and loaded swfs.
    if you trust the swf you're loading, you can change allowscriptacess to always.  if you're importing a swf, none of its actionscript will execute anyway so it doesn't matter whether its trusted or not.

  • Anybody know what's up with the menu.xml.files not being available for DW after installing on a new comp?

    Anybody know what's up with the menu.xml.files not being available for DW after installing on a new comp?

    Usually that error can be cleared up by renaming the personal config folder. Turn on your OS's hidden files and then go to...
    C: > Users > your username > AppData > Roaming > Dreamweaver (version) > your language > configuration
    Rename the configuration folder configuration-old and start DW up. That should create an entirely new configuration folder and correct the menu.xml file.

  • SD delivery notes using adobe forms

    Dear Gurus,
    I need to pring SD delivery notes using adobe forms
    I tried to assign:
    Program: RVADDN01                               
    Routine: ENTRY
    Form: RVDELNOTE
    But it is not working....Do you have any idea?
    Regards,
    MaX

    Solved...use ENTRY_PDF

  • How to print pdf file not using the the adobe reader ?

    hello,
    i used the adobe sdk to open a pdf file in read and modify it serveral times and each time save it to another directory,and now i need to write a program to print the pdf file in this directory.when print the file,i want to continue my work also,so who i tell me how to solve this problem?
    thanks.

    The SDK is only a collection of documentation and headers that show you how to interact with and automate Adobe Acrobat and to some extent Adobe Reader. You need a copy of Acrobat or Reader installed on the system in order to use any of the SDK functions. You cannot "print not using the Adobe Reader", unless you have Adobe Acrobat installed on the system instead of Reader.

  • Using WEBUTIL in the Menu - problems when not in current form..

    We make a webutil call in the menu - but it is a problem when the current form does not have webutil attached to it.
    Is there any work around other than putting webutil in 100 forms?
    OPEN_FORM/CALL_FORM both affected.
    Message was edited by:
    brian952
    Message was edited by:
    brian952

    I've just spotted this thread, so my comments might be too late to be useful, but... I had a similar problem, and as Eric suggested, went for the approach of having a single, small form dedicated solely to running Webutil functions. Any form or menu option that needs to do something WebUtil-related (e.g. 'I need to have File A moved from the apps server to the client') calls a library routine which then calls the dedicated form, passing it all the instructions it needs to carry out the action. Control then returns to the original form. At the moment, I leave the dedicated form in the background in modeless state, so it can be used again if needed elsewhere without having to be reloaded. (If the user tries to click on the modeless form, it shoves control straight back to the 'main' form.)
    I read somewhere that ideally you shouldn't WebUtil-enable every form, if most of the time, most of them won't use it. There's the overhead of initialising all the beans every time a form is opened, and it seems to me that that's relatively intensive, as bean usage goes. Not a showstopper by any means, though.
    James

  • Azure Files - not useful (for me) in its present form

    Not sure where to offer feedback for Azure Files so I thought I'd put it here.
    Azure Files looks like an interesting technology but unfortunately doesn't suit my particular scenario. We have files sitting on a VM that we need to get into BLOB Storage so that they can be processed via a HDInsight cluster. I had hoped that Azure Files
    would simply be an SMB interface over the top of existing BLOB Storage but it turns out that's not the case, its another area of storage entirely.
    What I'd like is an SMB interface over BLOB Storage so that I could simply drop files into BLOB Storage using SMB. Either that or give HDinsight the ability to access files in File Storage as easily as as it currently accesses file in BLOB Storage.
    Hope that is useful.

    Hi,
    Thanks for Posting here and that is helpful.
    However, you may post your concern at http://feedback.azure.com/forums/217298-storage which is a feedback dedicated forum.
    Regards,
    Shirisha Paderu.

  • Temporary tablespace groups - all available temp files not used

    We have a temporary tablespace group TEMP_GROUP made of the following pre-existing temp files. I have placed the size in MB in brackets. Names have been changed to protect our privacy. NLS is spanish
    SQL> select * from dba_tablespace_groups;
    TEMP_GROUP TEMP1 --(1024)     
    TEMP_GROUP TEMP2 --(2000)
    TEMP_GROUP TEMP3 --(8048)
    This tablespace group is the default temp tablespace of this database, and is the default temp tablespace of sys in the example that follows
    connect sys/password
    alter INDEX schema1.idx1 rebuild
    ERROR en línea 1:
    ORA-01652: no se ha podido ampliar el segmento temporal con 128 en el tablespace TEMP1
    -- this coinicdes with the TEMP1 showing 100% used
    NOTE that the message refers to the tempfile TEMP1 and not the TEMP_GROUP, which has 11GB of space available
    The size of the index is small enough to be handled by this TEMP_GROUP, although quite large to be handled by TEMP1 on its own.
    SQL> SELECT sum(bytes)/1048576 Megs, segment_name
    2 FROM dba_extents
    3 WHERE segment_name = 'IDX1'
    4 GROUP BY segment_name
    5 /
    MEGS SEGMENT_NAME
    840 IDX1
    What appears to be happening is that when the rebuild index has used all the space available in TEMP1 tempfile, it does not go on to use the space available in the other two tempfiles that make up the TEMP_GROUP. This seems to be contrary to the very idea of having set up a TEMP_GROUP.
    This suposition is born out by the repitition of the operation using the owner of the index, whose default temp file is not TEMP_GROUP as a whole, but the component tempfile TEMP_3 which has 8048MB available
    connect schema1/password
    SQL> alter INDEX schema1.idx1 rebuild
    Índice modificado.
    -- This time the index does get rebuilt, pesumably because there is space available in TEMP_3 to carry out the rebuild.
    My questions are
    1. ¿Why does the original operation fail out when it has reached the limit of tempfile TEMP1 instead of using the further space availbel within TEMP_GROUP? ¿Isn´t the point of temporary tablespace groups the explicit avoidance of this type of issue?
    2. Depending on the answer to #1, and asuming that the behaviour is normal (ie, that a rebuild index should not be expected to take place using more than one temp file), does anyone have any idea ¿what dicatates the order of usage of the component temp files in a group?. ¿Is it alphabetical order of tempfile name?, ¿file create time? or ¿something else?
    3. As I mentioned the group was created out of existing tempfiles, rather than creating some temp file specifically to form the group. ¿Could this fact explain the inability of the operation to move onto the next temp file, once the first is exhausted. There is nothing in the documentation to suggest that there should be any difference in behaviour between a temp group created with new temp files, or the inclusion of existing temp files when creating a temp group.
    As you can see, we have worked round this problem, but it is an issue of importance given that it may affect other operations that leverage this temp file group. Any information or pointers to documented instances of similar occurances would be greatly appreciated. Thank you.
    Edited by: user602617 on 06-may-2009 0:57

    Half solved. This thread seems to suggest that there should be n expectation that a sort operation will begin to use the n+1 member of a temp tablespace group once it has exhausted member n.
    TEMP Tablespace Groups
    But this does not answer my secondary question as to how to determine which temp tablespace member is used first. I guess the solution would be to drop the the group and recreate it with three adequatly sized temp tablespaces.

  • NEW_FORM call from menu module does not close previous form window

    We run Forms 9.0.4 and I just developed three new form screens. The problem is that when new screens are called with NEW_FORM call from menu module:
    New_Form(p_form_to_open,TO_SAVEPOINT,NO_QUERY_ONLY,NO_SHARE_LIBRARY_DATA,Menu_Globals.v_form_parml);
    the window from previous form is visible in the background.
    Strangely enough same call from the same menu module using exactly same NEW_FORM call for old screens does not leave previous window visible. I've checked Form level properties, Window Level Properties, Different Menu Properties, and could not find anything that would fix it.
    Any pointer would be appreciated.

    I've figured it out:
    The old screens have main window named ROOT_WINDOW. As soon as I named the window on new screen to be ROOT_WINDOW the background window disappeared.
    How stupid is that. Wasted my whole day on this.

  • How Do I Quickly Find Music Files Not Used By iTunes So I Can Delete Them?

    Hello, I have deleted many songs from my Windows iTunes library; but, the music files remain on my hard drive and are taking up space.  I need to quickly and efficiently find these music files to delete them.  I would prefer to not have to download another utility to accomplish this.
    While I now have iTunes setup so that any future deletions will prompt me to move the music file to the recycle bin, I want to clean-up my hard drive.
    Thanks in advance for your help!

    How did you Migrate? On original Startup, or after starting up and creating a user.
    If the latter, then you migrated data is in the migrated user's account.
    If that is the case, log into the other account and move the music into the /Users/Shared folder. Then, log into the account you want to use and import the music into iTunes.
    If that is not the case, please explain where your music is located.

  • PDF file not useful in iPad or in different PCs

    I just made a web form. It works fine in the test. I made a PDF that should allow direct ordering just by filling in which products to order and which amount.  The PDF works fine in my PC and I received the orders just fine. However, when I try to open the PDF in my iPad, the text boxes are simply not visible and the send button has disappeared... Any help?
    On top of this, the PDF cannot be used bu a different person from another PC...
    José

    On the iPad make sure you use the free "Adobe Reader" from the app store to view/fill the PDF, the built in PDF viewer will not work with FormsCentral forms.  The same is true for a desktop, always use Adobe Reader or Acrobat to fill out a FormsCentral PDF, other viewers will not work correctly.  I hope this resolves your iPad issue and maybe the "On top of this, the PDF cannot be used bu a different person from another PC"
    Thanks,
    Josh

  • How to print pdf files not using acrobat product?

    i just want to print pdf files,but not want to use the adobe acrobat or acrobat reader,just want to write a tools print pdf files directly.

    > no i just want to print it,not need to read it.can you help me?
    Well, the problem is to print it you need to be able to read it. Something needs to convert it into a format the printer can understand (most printers are PostScript or PCL).
    I'm not sure you entirely understand what a PDF file is. It's not a fancy text file. It's a binary format. Saying "I want to print a PDF without a PDF interpreter" is like saying "I want to run an EXE without Windows". You need software to interpret the format.
    You certainly can write your own software to interpret the PDF format, convert it to a print language and output that to a printer, but as Aandi said you will need to start by reading the PDF Reference so you know how the inside of a PDF file works, and it will most likely take several years of development even for a seasoned, expert programmer. It's just not as simple as "Printer, meet PDF. PDF, meet printer."

  • EPS File Not Using Proper Fonts in Illustrator

    I am trying to import an EPS file that I created in Finale 2014 into Illustrator CS6 (64 bit). It seems to not want to use the Maestro font for the noteheads, rather replacing it with Myriad Pro. I have tried this on multiple machines with the same result. I have tried to switch the font manually, but it will not change.
    Likewise, I can open the file in Photoshop just fine with all fonts intact.
    I need it as an EPS file because I need to be able to ungroup the vectors and alter them in Illustrator.

    devinc,
    Maybe the maestro font is not up the requirements.
    Illy is particularly particular about the quality of fonts, because she can work with them at a deeper/higher level than most, so you can easily have a font that works in all other applications, but Illy refuses to recognize it as a font.
    Some failing fonts discussed in earlier threads have turned out to have rather basic flaws, such as redundant, superfluous, or (if I remember rightly) even stray points, or other clear errors in the paths that they consist of.
    You may need to look for similar fonts that Illy is willing to work with.

  • I want to keep a Pop Up Menu blank when not used?

    I've got a spread sheet that in several cells that I have a Pop Up Menu assigned and the first menu shows up in the cell in all of the cells for the Pop Up Menu. What I'd like to have is to keep those cells blank with no text or anything unless I click on the cell and use the Pop Up Menu.
    Hopefully someone understands what I'm trying to do here.

    Todd,
    Your new question can be construed as, sort of, similar if you use the Conditional Format route.
    Select all the cells where you want to have this effect, and set a Conditional Fornat where "Equal To: 0" results in Text Color of the same as your cell background Fill, usually White.
    An IF-test in the cells with the percentage calculation will wortk too. Let's say your base value is in Column A.
    =IF(A>0, A*X%, "")
    where X is the amount of the percentage you are calculating will blank the cell on a zero result.
    Regards,
    Jerry

Maybe you are looking for

  • Anyone know how to fix an "empty" JPEG file?

    I'm fairly new to photo editing but I've been working on some photos recently that I started editing in iPhoto '09, and eight of the photos need a text caption added to them. I tried to export them to Photoshop to do this (iPhoto doesn't seem to be a

  • App Store broken in OS X Mavericks

    After Installing OS X Mavericks on my Mac Book Air the App Store no longer works. The app store loads and says that I have 1 update available but it doesn't show the availbale update. All the other tabs (Features, Top Charts, Categories, and Purchase

  • I've installed iTune on my computer. But when i tried to open it, nothing happens... A window ask me if i autorise apple to modified my hard drive, and then... nothing?

    Itune is installed on my laptop. But i can't run it! there is this small blue and yellow sign on the itune icon on my desk. when i tried to open it, a window pops up asking me if a allow apple inc. to do some modification on my computer. No matter if

  • Open an image in new external window...

    Hi all, I have an image in the server, say "c:\hai.jpg", through my application i want to open this image in a new external window on click of a button. I used the following code,           String file ="C:\images\p.JPG";           final byte[] conte

  • Upload bulk data into sap?

    hi all, let me know is there any methods to upload bulk data into sap and can same data be modified , delete , add. please correct me if i am wrong. what i know is that we can do with lsmw method, as i am new to lsmw method please let me know where t