Where Is the MAINMENU Defined in the "Menu Module" Property of MAINFORM

Hello Ya'll Gurus,
I am trying to locate both the MainMenu.mmx and it's source MainMenu.mmb files that is being executed in the application run time, but so far with no luck. I am desperately in need of your help, and the pressure is on...
I have found the following information in our environment and hopefully it will help in resolving my problem:
The following is the command that runs our application:
c:\orant\BIN\ifrun60.EXE C:\MMS\Production\mainform.fmx <userid>/<psswd>@mms
The following are the images of the property palettes for the MainForm and MainMenu forms:
Image for the mainform.fmb property palette:
!http://dot.state.ak.us/nreg/jtomasic/MainForm_Property_Palette.GIF!
Image for the mainmenu.mmb property palette:
!http://dot.state.ak.us/nreg/jtomasic/MainMenu_Property_Palette.GIF!
Please help me with the following questions:
Q1: Since "C:\MMS\Production\mainform.fmx" is included in the command line that runs our application and the "Menu Module" property of the "mainform.fmb" form is "MAINMENU", does it mean the "MAINMENU.mmx" is being executed through mainform.fmx when the application starts running?
Q2: If the answer to the above (Q1) question is yes, the 'MMS' defined in the Menu Filename is then not being used at all, correct? and where can I find the "MAINMENU" file specified in the "Menu Module" property of the "mainform.fmb" form?
Q3: The attached Libraries for the MAINFORM include HMMSHELP, MAINLIBR and MENULIBR. Are these libraries loaded to the MAINFORM dynamically or statically? BTW, the MENULIBR.pll is also attached to MAINLIBR.pll and what does that mean?
Q4: The 'Main Menu" property in the mainmenu.mmb form is defined as "MAIN_MENU" which ties the "MAINMENU" specified in the Menu Module property of the "mainform.fmb" form, correct?
Thanks in advance for any/all the help on this.

Q2: If the answer to the above (Q1) question is yes, the 'MMS' defined in the Menu Filename is then not being used at all, correct? and where can I find the "MAINMENU" file specified in the >"Menu Module" property of the "mainform.fmb" form?Looking at the onlinehelp, the property "Menu filename" may be used if the menu is stored in the database. As far as i know this is not possible since forms 6i (but i may be wrong here). If i'm right, the property is no longer important.
About finding the MAINMENU. I don't know where you find it. If you get no error it seems that it is somewhere on your machine. I would look into the directory C:\MMS\Production first. If its not where, check the FORMS60_PATH-variable and search in the directories listed in that variable.
Q1: Since "C:\MMS\Production\mainform.fmx" is included in the command line that runs our application and the "Menu Module" property of the "mainform.fmb" form is "MAINMENU", does it >mean the "MAINMENU.mmx" is being executed through mainform.fmx when the application starts running?If i'm right about Q2, the answer is Yes.
Q3: The attached Libraries for the MAINFORM include HMMSHELP, MAINLIBR and MENULIBR. Are these libraries loaded to the MAINFORM dynamically or statically? BTW, the MENULIBR.pll is >also attached to MAINLIBR.pll and what does that mean?What do you mean with dynamically or statically?
Q4: The 'Main Menu" property in the mainmenu.mmb form is defined as "MAIN_MENU" which ties the "MAINMENU" specified in the Menu Module property of the "mainform.fmb" form, >correct?I don't understand your question. Forms searches the menu-module which is specified in the property "Menu Module" and "starts showing" the menu which is defined as the "main menu"

Similar Messages

  • Relation between the Project defination and the PO

    Hi ,
    Where I can find the relation between the Project defination and Purchase order in CJ20 transaction or in Tables.

    Project definition: A project definition identifies the key characteristics of the overall project. For example, a project definition includes the project profile and organizational details (controlling area, company code, etc.).
    All project definitions must include a settlement rule. A settlement rule contains a G/L account that receives the accrued actuals. In some situations, a settlement rule uses multiple G/L accounts. For example, one G/L account is used for settlement for the first half of a year, but in the second half, a different G/L account is used. However, the settlement rule does not allow for multiple receivers to be active at the same time.
    Regards,
    kushagra Sharma

  • How we mail the contents of the task defined in the task

    hi
    can any body help me to send the steps after the condition failed to the assigned
    users

    What Roopesh this ???????
    What do u want clearly..your mails are not clear...first you think what do u want?and then take help from SDN.....
    See your previours Queries in SDN..........
    Your Query :"is it method of creating workflow with screen is correct   "
    Ans:           -  Am clear with your requirement/question ? Can be more clear ?
           Rajesh has been answred but u have not repied to him
                But you have not cleared here also......
    Another Query was
    Your Query: how to configure the workflow in Ep  
    Ans:  Anji Reddy Vang...  Anji has been answred but u have not repied to him
    and not given any reward points to him
    Now this Question....What is this..First Ensure your Questions and get back to us
    Thanks and Regards,
    Prabhakar Dharmala

  • Changing Prompt Order of Prompts defined at the universe level

    Hi All,
    I need to change the order of the prompts defined at the universe level.By default they appear in alphabetical order.
    Thanks,
    Shweta.

    Hi Shweta,
    If you are on XI R2 then you can try the following extended syntax for the prompt definition:
    @Prompt('Region', 'A', 'Class\Object Name', multi,free,,,User:0)
    @Prompt('Area', 'A', 'Class\Object Name', multi,free,,,User:1) ...etc
    Else there is no other way to sort the prompt in the desired order. Either you have to prefix the prompt text with numbers
    or alphabets.
    Regards,
    Rohit

  • View zview is not defined in  the runtime repository that was loaded.

    Hi,
    I created an enhancement for component BT111H_OPPT and created a view "ZVIEW" in it.When i clock on my ZVIEW i am getting the following message:
    view zview is not defined in  the runtime repository that was loaded.
    What does that imply?
    Isnt the view defined in the runtime repositry when we use the wizard to create it?
    Thanks in Advance.
    Regards
    Shilpi

    Hi Shilpi,
    Did you add your view into the Viewset/Window in Repository Browser ?
    Good Luck
    Eli Steklov
    Please Reward Points if it Helped

  • RequestDispatcher -  What is the expected behaviour defined by the spec

    Hello,
    I just try to understand the servlet specification correctly.
    I don't understand what should happen when I try to access an not-existent resource by means of the RequestDispatcher.
    That's the way my source code looks:
    RequestDispatcher rd = servletRequest.getRequestDispatcher(jspName);
    try {
    if (rd != null) rd.include(origRQ, desc.getResponse());
    } catch (Exception e) { e.printStackTrace(); } I see following possibilities:
    1.
    The RequestDispatcher is not null and invoking the method include
    on the RequestDispatcher will lead to a 404 Http error.
    2.
    The RequestDispatcher is not null and invoking the method include
    or forward on the RequestDispatcher will lead to a ServletException (the
    root exception of this is a FileNotFoundException)
    3.
    The requestDispatcher is null
    I don't see anything about this in the servlet specification.
    Maybe I just don't find it. What should be the behaviour defined
    by the servlet spec.
    Any help appreciated.
    Many thanks in advance.

    Thanks for your answers.
    So this means this behaviour differs from servlet container to servlet container and it is not determined by the specification. I asked this
    question mainly, because I observed different behaviour for two different servlet container and I wanted to clarify which behaviour
    is the correct one.
    In ServletExec I got back a 404 error. In Iona's servlet engine I got
    back a ServletExecption (root cause is a FileNotFoundException).

  • How to get the list of all the security Roles defined ?

    I am trying to programatically get a list of all the roles defined
    in the weblogic. How can I access this information using the exiting
    MBean interfaces.
    thanks
    Prasad

    Wrong forum. Just a hint.

  • Not getting the Connect to join the shared review notice in Adobe Reader 9

    I click on my e-mail and entering Shared review but I am not getting the Adobe Acrobat Shared Review Window
    that asks me to click to connect to join the Shared Review

    There's not really anything you can do with just Reader. The creator of the form set it up to behave this way, by intention or not. It could have been set up so that a user is unable to enter more text than can be displayed in the area defined for the field, and that the font size would automatically decrease as the limit is reached, down to a minimum size of 4. If you know who created the form, you may be able to request a new version.
    George

  • How to handle the personal details ( Rejoin the organization )

    Hi All
    I need to update the personal details in HR Master (only rejoin ).
    Any FM or BAPI to update the Personal deta details into HR Master ( Only Rejoin).
    please specify the infotype and transacation code to update the personal details in HR Master ( Only Rejoin).
    Thanks & Regards
    K.Gunasekar.

    For Re-Entry of an employee, you have to perform 'Re-Entry into Company' Personnel Action in PA40. The Personal Information Infotype 0002 will come as per the sequence defined in the infogroup T588D.
    Anyhow, most of the employee details already would have been available in the system. Then why do you need to update the Personal Information?
    Regards
    N  Navaneethan

  • Should I define tables in the CSS file or from the Table option on the menu bar?

    I am having trouble understanding which table definitions are the ascendant ones: the CSSfile table definitions or the definitions from the Table option on the menu bar. Is there a conflict if I am applying the CSS style to every topic? Who wins...CSS or Table?

    Hi there
    Sorry, but I think you are a bit confused. I'm assuming here that you are referring to defining tables via the toolbar? Where you use this button?
    That simply inserts the table structure which is later styled using CSS.
    Then there is the other option where you click Table > Insert > Table and you do two things. You insert the table structure as well as some special CSS codes that are added to your CSS file.
    Cheers... Rick

  • In "LOOP ... WHERE ..." the line type of the table must be statically defin

    Hi All,
            I have written the code, for greater than (GJAHR) 2007 and restricted company codes ( table name = ZGLCCODE).
         Here I have written the following the code which is giving an error
    In "LOOP ... WHERE ..." the line type of the table must be statically defin
    ZGLCCODE Contains only restricted company codes.
    Code is as follows
    TABLES : ZGLCCODE. 
    DATA : LT_DATAPACKAGE TYPE TABLE OF DTFIGL_4.
    DATA : LS_PACKAGE TYPE DTFIGL_4.
    TYPES: BEGIN OF LS_TZGLCCODE,
           ZBUKRS type BUKRS,
            END OF LS_TZGLCCODE.
    DATA : LT_ITZGLCCODE TYPE LS_TZGLCCODE OCCURS 0 WITH HEADER LINE.
    DATA : LI_NUM TYPE I,
           LC_ZGJAHR TYPE BSEG-GJAHR VALUE '2007'.
    SELECT ZBUKRS INTO TABLE LT_ITZGLCCODE FROM ZGLCCODE.
    Note:  "C_T_DATA" dynamic structure = "DTFIGL_4" structure
    *-  Remove from the DataSource Company Code -
    LOOP AT C_T_DATA INTO LS_PACKAGE WHERE GJAHR GE '2007'.
    READ TABLE LT_ITZGLCCODE WITH KEY ZBUKRS = LS_PACKAGE-BUKRS.
    IF SY-SUBRC <> 0.
       APPEND LS_PACKAGE TO LT_DATAPACKAGE.
    ENDIF.
      CLEAR LS_PACKAGE.
    ENDLOOP.
    IF LT_DATAPACKAGE[] IS NOT INITIAL.
    DESCRIBE TABLE LT_DATAPACKAGE LINES LI_NUM.
    IF LI_NUM GT 0.
       REFRESH C_T_DATA.
       APPEND LINES OF LT_DATAPACKAGE TO C_T_DATA.
       REFRESH LT_DATAPACKAGE.
       FREE LT_DATAPACKAGE.
    endif.
    ELSE.
       REFRESH C_T_DATA.
    ENDIF.
    Please give me your valuable suggestions.
    Thanks
    Ganesh Reddy.

    Hi Ganesh,
    whatever you do, you can try like this:
    1 - any code posted should be wrapped in \
    then try something like this:
    field-symbols:
      <tabrec> type any,
      <field>   type any.
    sort ITZGLCCODE by bukrs.
    LOOP AT C_T_DATA ASSIGNING <tabrec>.
      ASSIGN component 'GJAHR' of structure <tabrec> to <field>.
      check <field> <= 2007.
      ASSIGN component 'BUKRS' of structure <tabrec> to <field>.
      READ TABLE LT_ITZGLCCODE WITH KEY ZBUKRS = <field>
        BINARY SEARCH TRANSPORTING NO FIELDS. "speed up the volume.
      IF SY-SUBRC 0.
        MOVE-CORRESPONDING <tabrec> to  LS_PACKAGE.   
        APPEND LS_PACKAGE TO LT_DATAPACKAGE.
      ENDIF.
    ENDLOOP.
    Regards,
    Clemens

  • Want to customize Menu Bar - Where can I find explanations of the almost 200 editable items in the Properties for "ul.MenuBarHorizontal" ?

    I want to design/customize a horizontal Menu Bar. However I'm flying blind on what the meanings (parameters) of each of the almost 200 editable items are in the Properties for "ul.MenuBarHorizontal" ?
    Where can I find each item explained? Have looked on line and in the library.
    Thanks.

    Here's a link to the help pages for the Spry Menu Bar: http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WS90E6DF98-60A3-41a4-B427-CD057D57BB7A. html#WS37318579-3916-46db-80D1-A8C5E6777BE5a
    Understanding the CSS for a Spry Menu Bar is an exercise in understanding descendant styles. David Powers has just published a good tutorial on the Spry Menu Bar. His explanations are very good.
    http://foundationphp.com/tutorials/sprymenu/customize1.php will get you there.
    Beth

  • Where to maintain the user defined variables in Variant maintenace?

    In the variant maintenace screen, ther is provision for
    Type T - Table TVARVC entries
    Type D - Dynamic for date and time fields
    Type B - user defined
    My question :
    Where do you maintain the user defined variables?
    Pl advise.
    Thanks,
    Ven

    You may need to look into this link ( Its sap doc link)
    http://help.sap.com/saphelp_nw70/helpdata/en/c0/98039ee58611d194cc00a0c94260a5/content.htm

  • After making a movie and wanting to burn a DVD, I go for iDVD in the 'DEEL'  menu. Then I get the question ' where is iDVD? What is the problem?

    After making a movie and wanting to burn a DVD, I go for iDVD in the 'DEEL'  menu. After couple of seconds I get the question ' where is iDVD?
    What is the problem? I cannot find iDVD in the programs map.
    regards Tonl

    The current Apple thinking is that the entire world has access to fast broadband and wants to distribute home movies to friends and relatives via download (iCloud) rather than mailing them a DVD. The fact that nothing could be further from the truth has so far had no effect on this policy. If you scream and shout loudly enough down the phone Apple may send you a free copy of iDVD. That worked for some, but is now said to have been withdrawn by Apple. Also, you can complain bitterly here, perhaps suggesting that Apple could have provided a choice between using iCloud and burning DVDs:
    http://www.apple.com/feedback/
    Whilst Macs with a Superdrive continue to be able to burn video DVDs, the software for so doing, iDVD, is no longer included in the iLife bundle that comes with OS 10.7 Lion (which also omitted iWeb) or will come with OS 10.8 Mountain Lion. And it is no longer included in the iLife 11 from the online Apple Store: http://www.apple.com/ilife/. Your only solution is to look on Amazon or eBay and try to get an older version that includes iDVD.
    However, the vastly more expensive FCPX can burn a DVD without iDVD or DVD Studio Pro involvement, but lack the themes etc of iDVD.

  • I can't find the Preferences option in the help menu on Photoshop.  Can you tell me where it is?

    My problem is that I can't find the Preferences option in the help menu on Photoshop.  Can you tell me where it is?

    For Windows, it's under the Edit menu or Ctrl k.

Maybe you are looking for

  • Error in Conversion of Planned order to Production Order

    Hi, I am getting error while converting the planned order to Production order. Error is " Scheduling parameters not defined for the production orders" I have maintained the parameters in Prod-> Shop Floor Control -> Operations -> Scheduling....but af

  • How to save XML timeformat to oracle without loosing "timezone-compensati"

    I hope i post this in the correct forum and I provide enough info for you to understand what I'm looking for... Some time ago I got some help here about how to read a incoming XML-file and insert data into a table, where the Element-tag describes the

  • Japanese Character Display

    Sorry for such a newbie question. My program reads in a UTF-8 file containing some Japanese characters, stores them into a String variable and then attempts to print using: System.out.println(myString); . However, it doesn't display correctly in XCod

  • Possible to view MS SQL Server Log in SAP GUI?

    Hi, I am wondering if I can view the SQL Server log in SAP GUI using a transaction code. I don't readily see how to do this with the TEs.  It would be helpful to see things like: who has tried to log into the SQL Server via a Database Management tool

  • Poor performance when accessing a MSAS 2008 cube via BI Server

    I am having an issue with performance when accessing a MSAS 2008 cube via the BI Server. I think it has to do with the way that the MDX is being generated. Please could someone advise on any settings I could try or any known issues with the integrati