LDT FILE GENERATION FOR SPECIFIC SUB MENU OF MENU

Hi,
I am creating a ldt file for menu using below script.
$FND_TOP/bin/FNDLOAD apps/$CLIENT_APPS_PWD O Y DOWNLOAD $FND_TOP/patch/115/import/afsload.lct ICX_POR_SSP_HOME.ldt MENU MENU_NAME="ICX_POR_SSP_HOME"
It's working fine. If 10 submenus are attached to the menu, it will generate ldt file for all submenus using above script.
My requirement is, i want to generate LDT only for some specific subemenus for that menu.
Is there any script or any other alternate solution for this.
It's very urgent, kindly help me at the earliest.
Thanks in advance.

Hi,
Could anybody please help. It's very urgent.
Thanks.

Similar Messages

  • LDT FILE GENERATION FOR MENU

    Hi,
    I am creating a ldt file for menu using below script.
    $FND_TOP/bin/FNDLOAD apps/$CLIENT_APPS_PWD O Y DOWNLOAD $FND_TOP/patch/115/import/afsload.lct ICX_POR_SSP_HOME.ldt MENU MENU_NAME="ICX_POR_SSP_HOME"
    It's working fine. If 10 submenus are attached to the menu, it will generate ldt file for all submenus using above script.
    My requirement is, i want to generate LDT only for some specific subemenus for that menu.
    Is there any script or any other alternate solution for this.
    It's very urgent, kindly help me at the earliest.
    Thanks in advance.

    Pl post details of OS, database and EBS versions.
    I do not believe this is possible. Why would you want to only download some submenus ?
    HTH
    Srini

  • Menubar load modules for each sub-menu

    I am creating an application using the MENUBAR but cannot get a module to open when a sub-menu is clicked. I have stripped my app down to bare bones to eliminate other factors. The menubar has several main options, such as, Button1, Button2, Button3 and then each has a sub-menu dropdown. If Button1 has Button1Sub1 and Button1Sub2 dropdowns I want to have a different module launch when either of the sub-menus are clicked.
    I have been successful in using ModuleManager to open a particular module referencing the creationComplete="moduleLoadHandler()" but not by selecting a menu item from the menubar. My application needs to be as user-friendly and Windows-like as possible. There are many different modules which need to be loaded and unloaded.
    I have attached a screenshot image of my project tree and circled the ActionModule.swf file to show its location.
    I have attached my code below:
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="creationHandler();" >
        <mx:Script>
            <![CDATA[
                import mx.controls.menuClasses.IMenuBarItemRenderer;
                import mx.controls.MenuBar;
                import mx.controls.menuClasses.MenuBarItem;
                import mx.controls.Alert;
    import mx.modules.Module;
    import mx.events.ModuleEvent;
    import mx.modules.ModuleManager;
    import mx.modules.IModuleInfo;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.FlexEvent;
    import mx.events.MenuEvent;
                import mx.collections.*;
                public var _moduleInfo:IModuleInfo;
                [Bindable]
                public var menuBarCollection:XMLListCollection;
                private var menubarXML:XMLList =
                    <>
                        <menuitem label="Menu1" data="top">
                            <menuitem label="MenuItem 1-A" data="1A" itemClick="moduleLoadHandler()"/>
                            <menuitem label="MenuItem 1-B" data="1B"/>
                        </menuitem>
                        <menuitem label="Menu2" data="top">
                            <menuitem label="MenuItem 2-A" type="check"  data="2A"/>
                            <menuitem type="separator"/>
                            <menuitem label="MenuItem 2-B" >
                                <menuitem label="SubMenuItem 3-A" type="radio"
                                    groupName="one" data="3A"/>
                                <menuitem label="SubMenuItem 3-B" type="radio"
                                    groupName="one" data="3B"/>
                            </menuitem>
                        </menuitem>
                        <menuitem label="Menu3" data="top">
                            <menuitem label="MenuItem 3-A" data="3A"/>
                            <menuitem label="MenuItem 3-B" data="3B"/>
                        </menuitem>
                        <menuitem label="Menu4" data="top">
                            <menuitem label="MenuItem 4-A" data="4A"/>
                            <menuitem label="MenuItem 4-B" data="4B"/>
                        </menuitem>                                       
                    </>;
                private function creationHandler():void{
    menuBarCollection = new XMLListCollection(menubarXML);
    private function moduleLoadHandler(event:ModuleEvent ):void{
    canvas.addChild( _moduleInfo.factory.create() as Module );
    _moduleInfo = ModuleManager.getModule('ActionModule.swf');
    _moduleInfo.addEventListener(ModuleEvent.READY, moduleLoadHandler);
    _moduleInfo.load();
                // Event handler for the MenuBar control's itemClick event.
                private function menuHandler(event:MenuEvent):void  {
                    // Don't open the Alert for a menu bar item that
                    // opens a popup submenu.
                    //if (event.item.@data != "top") {
                    //    Alert.show("Label: " + event.item.@label + "\n" +
                    //        "Data: " + event.item.@data, "Clicked menu item");
                private function onTopSelection(event:MenuEvent):void{
                    var mb:MenuBar=event.target as MenuBar;
                    var selectedIndex:int=mb.selectedIndex;
                    for (var i:int=0;i<mb.menuBarItems.length;i++){
                        if(i==selectedIndex){
                            (mb.menuBarItems[i] as MenuBarItem).setStyle("fontWeight","bold");                   
                        else{
                            (mb.menuBarItems[i] as MenuBarItem).setStyle("fontWeight","normal");                           
             ]]>
        </mx:Script>
        <mx:Canvas id="canvas" height="75%" width="75%"
            paddingTop="10" paddingLeft="10">
            <mx:MenuBar labelField="@label" itemClick="menuHandler(event);" dataProvider="{menuBarCollection}" change="onTopSelection(event)" />
        </mx:Canvas>
    </mx:Application>

    Hi,
       I am also doing the same way, but ended up with some issues.
    I have a Main Application with a menu Bar on Top and Rest of the area occupied by a ModuleLoader.
    First I set the URL to login module, on successful login I initialize my menu Bar based on User role and load a new module, it contains only a SuperTabNavigator.
    On click of an item in my Application Menu, I add a Custom Componenet built on Canvas (Named MyCanMod , this contains a Module loader and a progress bar in it , I have attached the code) as a tab to the tab navigator.
    On menu item click, I take the data of my menu item and set that as the URL of my Module Loader inside the Custom canvas. Then it is added as a tab to my tab navigator.
          private function openItem(event:MenuEvent):void
    var myModule:MyCanMod = new MyCanMod();                tabNav.addChild(myModule);
                    tabNav.selectedChild = myModule;
                    myModule.label = event.item.@label;
                    myModule.icon = document_icon;
                    myModule.urlParam = event.item.@module;
    urlParam is a bined to the module Loader url in my Custom componenet.
    All works fine.  I am not unloading any modules and all the module loader are set to current domain.
    When the user logs out and logs back with out refreshing the browser I get Type Error or some time null Object error and it is random. If I refresh the browser and login back, every thing is fine.
    I do have reference for IDragManager,HistoryManager,PopUpManager,RemoteObject in main application.
    I am not concerned about unloading modules now, but then on Tab close event I unloaded the module, and that did not solve the problem.
    I get an error like
    TypeError: Error #1034: Type Coercion failed: cannot convert flexlib.controls::PromptingTextInput@6152a851 to flexlib.controls.PromptingTextInput.
                at mx.core::UIComponent/createReferenceOnParentDocument()
                at mx.core::Container/createComponentFromDescriptor()
                at mx.core::Container/createComponentsFromDescriptors()
                at mx.core::Container/createChildren()
                at mx.core::UIComponent/initialize()
                at mx.core::Container/initialize()
                at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()
                at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()
                at mx.core::Container/addChildAt()
                at mx.core::Container/addChild()
    Any help is appreciated; I am really struck with it, please help.

  • Unable to change File Type for specific file extensions

    Under Preferences->File Types different file extensions are assigned a file type e.g. The file extension .pkb is assigned the file type of PL/SQL. The file type of PL/SQL then opens the Code editor.
    I have a user who would prefer to open .pkb files in the SQL Worksheet editor but I am unable to change the file type to SQL Script as the option is greyed out.
    How do I change the File Type for these extensions? Is there a preferences file I need to change?
    Version: 3.2.20.09
    Thanks for your help.

    Hi,
    There is no preference but it turns out you can manually edit one of the preferences.xml files to force PL/SQL types to use the SQL worksheet editor. For SQL Developer 3.2.20.09.87 that file is system3.2.20.09.87\o.sqldeveloper.11.2.0.9.87\preferences.xml and will be located (on Windows 7, for example) in directory C:\Users\<userid>\AppData\Roaming\SQL Developer
    No guarantee this will work in future versions of the product, but for now you can add the following two xml blocks...
    For example, for .pls, add to <extensionToContentTypeMap ...>
                <Item>
                   <Key>.pls</Key>
                   <Value>TEXT</Value>
                </Item>
    and <userExtensionList>
                <Item>
                   <docClassName>oracle.ide.db.model.SqlNode</docClassName>
                   <userExtensions class="java.util.ArrayList">
                      <Item class="oracle.ide.config.DocumentExtensions$ExtInfo">
                         <extension>.pls</extension>
                         <locked>false</locked>
                      </Item>
                   </userExtensions>
                </Item> I researched this a while back after reading through some forum thread where someone claimed the PL/SQL file extensions got opened in the SQL editor in his environment, but without stating any specific release information. Possibly it worked for him then due to different product behavior (whether intentional or a bug), or perhaps even due to the technique described above.
    Regards,
    Gary
    SQL Developer Team

  • Vcd file generation for the T2 core

    Hello everybody,
    I want to generate a vcd file of a specific unit of the T2 using vcs (I haven't Debussy).
    Which are the compile time flags and the runtime flags to be set using the sims script?
    I tried the -enableEvcd and vcsd and cli at compile time and in the compile.log file I read
    ***** Warning: ACC/CLI capabilities have been enabled for the entire design.
    For faster performance enable module specific capability in pli.tab file
    But when I run the simulation with -dump_evcd instance_name in the sims.log I read
    Error: $dumppports needs acc/cli capabilites specified at compile time. Please recompile with acc/cli capabilites enabled.
    What am I doing wrong? I checked and I run the correct simv executable.
    Thanks a lot in advance
    Regards
    pico

    it is very simple, for example I wanted to generate the evcd file for the pick unit of the T2 core so I added
    $dumpports( tb_top.cpu.spc0.pku, "pku.evcd");
    in the file verif/env/common/verilog/misc/dump.v
    after :
    `ifndef VCD_OFF
    // VCD Dumpfile
    // sims does file naming and start/stop for us.
    initial begin
    $dumpports( tb_top.cpu.spc0.pku, "pku.evcd");
    and I recompiled the T2.
    Then as vcs_run_args I put +vcd
    I recall you that this is not a clean solution, the evcd file will be created every time, maybe you can find something better!
    HTH
    pico

  • Stack file generation for upgrade

    Hello,
    I have to generate Stack.xml file to upgrade the system.
    Kindly guide me for stack file generation and SUM toll for upgrading the system.
    Thanks and Regards,
    Akshay

    Hi Akshay,
    Kindly guide me for stack file generation and SUM toll for upgrading the system.
    Above information is easily available on SCN,please search or elaborate exact issues which you're facing now.Anyways follow SCN doc at Generating Stack For EHP Upgrade
    Regards,

  • Issue with LDT file generated for the XML Template

    Hi,
    I have defined a Template in 11i instance. Attached an .rtf file to the same. Now, I have to migrate the Template definition along with the .rtf assignment to the template to R12 Instance.
    I was able to download the Template definition using FNDLOAD command. LDT file got generated in the same directory where I executed the FNDLOAD DOWNLOAD command.
    But, I was trying to download the .rtf assignment using the command - java oracle.apps.xdo.oa.util.XDOLoader DOWNLOAD.
    I have specified a .ldt file along with the command, but the .ldt file doesnt gets generated. It says the default file is xdotmpl.ldt.
    Where does the .ldt file gets generated for this command?
    Thanks in advance.
    Kiran

    I gave the command as follows -
    java oracle.apps.xdo.oa.util.XDOLoader DOWNLOAD \
    -DB_USERNAME apps \
    -DB_PASSWORD apps \
    -JDBC_CONNECTION server1:1525:instance02 \
    -LOB_TYPE TEMPLATE \
    -APPS_SHORT_NAME IBY \
    -LCT_FILE $XDO_TOP/patch/115/import/xdotmpl.lct \
    -LDT_FILE AP_FORMAT.ldt
    I was expecting a ldt file - AP_FORMAT.ldt. But infact I get a AP_FORMAT.drvx file.
    Also, when the above command is executed, I am getting an error message -
    Calling FNDLOAD: FNDLOAD apps/apps@server1:1525:instance02 0 Y DOWNLOAD /backup1/anliv02/apps/apps_st/appl/xdo/12.0.0/patch/115/import/xdotmpl.lct AP_FORMAT.ldt XDO_DS_DEFINITIONS APPLICATION_SHORT_NAME=IBY
    APP-FND-01564: ORACLE error 12514 in AFPCOA
    Cause: AFPCOA failed due to ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    The SQL statement being executed at the time of the error was: and was executed from the file .
    Generating DRVX file: xdotmpl.drvx
    Any help on this appreciated.
    Thanks in advance.
    Kiran

  • [yaourt] Keep sources/build files only for specific AUR packages

    Hi,
    By default, packages are build in BUILDDIR=/tmp/makepkg, which itself usually is a virtual dir in RAM. I generally like this behaviour, so I don't wanna change the BUILDDIR variable to point to a dir on the harddisk, but for a few packages I'd welcome the sources/build dir to be kept, e.g. for *-git packages to reduce build time on consecutive updates. Is there a neat Arch-way to tell the makepkg system to use a different dir (i.e., one on the harddisk) for specific packages? It'd be even greater to be able to use wildcards as well, so I could just enable this option for all *-git packages.
    And as I said, I generally like the idea of building in RAM so the trick to just let BUILDDIR point to a dir on my hdd and put a command in some shutdown-script to delete all but the directories ending in -git wouldn't be perfect
    Cheers
    Last edited by epinephrine (2013-01-27 16:25:17)

    Oh you're right in that BUILDDIR isn't set by default. I use yaourt for building AUR packages, so this is a yaourt related question, oops. I'll ask in the appropriate forum...
    Some packages are only available as git packages, and that for a good reason. Some git repository maintainers follow the good working principle to always have their master branch stable and deployable and do development and testing in respective branches to keep master clean. E.g. I maintain 2 git packages on the AUR, and there are no other "stable" options, also as git makes sense for these packages.
    And sometimes you just need a more up2date version

  • DME File Generation for Thailand

    Hi Gurus,
    I would like to know which DME File format is using for Thailand.
    I need to generate DME file for the Thailand country format while running APP F110. 
    Thanks in Advance.
    Pavan

    Hi,
    If you are using PMW for DME generation than please go to DMEE transaction code and in tree property node at File Data tab select radio button 'Allow Only These Charact.' and don't specify this characters in the field against Character Definition.
    For blank space control it with Length and Conv. function in the segment definition.
    Regards,
    Anand Raichura

  • DME file generation for Bank of Montreal Canada

    Hello Experts,
    We are doing Electronic funds tranfer for direct deposits in CAnada. WE are using DME for this purpose. WE could get the file layout correct but the records in the file are twice as big - every character is followed by a special character - ".'" or "#" or "blank space depending on how we open the file .
    Any thoughts??
    Thanks,
    Leela

    Hi,
    If you are using PMW for DME generation than please go to DMEE transaction code and in tree property node at File Data tab select radio button 'Allow Only These Charact.' and don't specify this characters in the field against Character Definition.
    For blank space control it with Length and Conv. function in the segment definition.
    Regards,
    Anand Raichura

  • Keyword search on collection set not working for specific sub-collections

    I am having the following problem:
    When I do a search (Text->Keyword->Contains All-> for a keyword (in my
    case "Fave"), it does not work if I select the collection set that contains the
    collection that contains the images with that keyword.
    It DOES work if I select the folder, parent folder, or just the
    collection that contains the image. Just not the collection set.
    The details of how this came about are below - and are probably a
    little unusual, but not outside the realm of what should be allowed.
    Is there a way to reset/reindex keywords in a collection?
    Specifically:
    images lives in collection C1 which is part of collection set
    CS1. It lives in F1 (on disk and in LR) which is in parent folder
    PF1. A keyword search works when I select F1 or PF1 or C1, but NOT
    when I select CS1
    This happens on a set of folders that went through the following
    (totally allowable?) sequence:
    I am running on a Windows 7 64 bit machine with 64 bit LR3.3
    I have an internal disk where I keep my catalog and images. Windows
    mounts this as P:. I also mount it on my Desktop as the folder
    "Lightroom" (this allows me to change to a larger external disk
    by mounting it in the same place without changing the locations of
    all the files).
    I mistakenly imported pics into P:/PF1 rather than
    C:/.../Desktop/Lightroom/PF1 as I normally do.
    Added keywords made a collection C1 put the images in it, and added
    C1 to collection set CS1
    Having realized my import mistake (P: rather than
    C:/.../Desktop/Lightroom), I went in the Folders->P: section and did
    an Update Folder Location on F1 to C:/.../Desktop/Lightroom/F1
    This seemed to be all fine, but this weird Keyword search problem
    resulted.
    I have tried the following things:
    o Deleting and re-adding Keywords in the Collection
    o Deleting and re-adding the Keywords in the Folder
    o Renaming and relocating the Folder
    o Create new collection C2 and move pics from F1 into C2

    See my simplified recipe for reproducing this bug (which turns out not to be related to the drive mounting I described):
    http://forums.adobe.com/thread/764538

  • File Generation for Bank Transfers

    I need to generate the file in a format(Bank has given the format). When the txn F110 is run for Bank Transfer, that file should get generated in the format given by the Bank ? How can i achieve this ...

    Hi,
    This is not possible in standard F110 transaction. You have to do customization.
    Ask your Abaper for enhancement. This particulat enhancemnet will show the data in a particulat format you required.
    we are folloing the same way.
    Bye

  • Oracle Trace File generation for a session

    Hi,
    I am using oracle 10g(10.2.0.5) in RHEL5 server. i have used the exec dbms_system.set_sql_trace_in_session(147,3,TRUE); statement to trace a particular session. i am able to trace successfully but i have created a new table in that session where i am not able to find any create table statement in the generated trace file but i can find the insert statements which i performed on the newly created table in the trace file.
    Does DDL statements not recorded in the trace events???
    Regards,
    007

    Hi;
    Please see below doc which may helps you
    DBMS_SYSTEM.SET_SQL_TRACE_IN_SESSION DOES NOT GENERATE TRACE FOR ACTIVE SESSION [ID 236178.1]
    How To Enable SQL Trace for All New Sessions [ID 178923.1]
    Tracing Sessions in Oracle Using the DBMS_SUPPORT Package [ID 62160.1]
    Regard
    Helios

  • In Yahoo Mail, only Firefox, not IE, quits in attachment of photo while I am going through my file levels for specific photo.

    Using Firefox 6.0; I try to attach file to email, in this case a photo; the Yahoo dialog box shows and as I browse through file levels, when reaching photos, as I click the file holding photo want, the dialog box closes before I can choose. If I try to widen the dialog box, it freezes and after few moments goes back to position before I tried to attach. At that point the Attach button is frozen, and I have to close and restart Firefox. Don't have problem with IE. Seems to be only when attaching photos, not other files, i.e. Word or Excel.

    The direct way to contact Apple is by telephone, there's a Contact Us link at the bottom right of this page with worldwide contact numbers. We are users here, with no real power to contact Apple.

  • Next to the mozilla icon in the startmeny is an arrow for a sub menu how do I get rid of this annoying submenu with irrelevant things?

    It is so freakin annoying. I will never want this shortcut to do anything but start a new browser.

    Make sure that Firefox gets installed properly.<br />
    Open the DMG file and drag to Firefox program to the application folder on your hard drive.<br />
    You shouldn't double-click the Firefox application to run it from the disk image, but drag it out of the DMG folder instead.
    * [[Installing Firefox on Mac]]
    * http://kb.mozillazine.org/Installing_Firefox#Mac_OS_X

Maybe you are looking for

  • Header in alv pop up

    Hello, i need to dislay header as well as item details in an alv pop up. I am using FM REUSE_ALV_POPUP_TO_SELECT. but I am not able to get the header information. I am able to get the item details for a particular Purchase order number. I need to dis

  • Function Module to read in IDOC

    Hello all; I'm looking to locate a function module where I can read in multiple IDOCS including it's segments and data into internal table. I need something that will allow me to draw multiple IDOCS if I have to pass the IDOC document number to a FM

  • IDVD 6 versus iDVD 8 - Quality

    I came across this statement on Apple's site regarding iDVD 8: +"The new professional-quality option in iDVD uses advanced encoding technology to maintain the highest possible quality for DVDs that are near or at the disc's capacity."+ I'm currently

  • In my gmail, my font has suddenly become bigger, how can I bring it original size

    In my gmail, I inadvertently clicked somewhere , now the font size has become bigger on all mail. How can I bring it down to its original size?

  • Burning error on iDVD

    I am trying to burn a DVD that includes pictures and music. I have most of the slideshows done, but when I tried a test-run burn--it won't complete it. It says something about a multiplexing/burning error. I click ok, and then it shows me an error me