Seperate window for each view

hi friend.
In my application(TestApp) i have two dirrernt view, i want to see both two view one by one when i run my application. For this i created two windows for each view. when i set the second viewwindow in the Interface property of my Application(TestApp) then not able to run and not even able to set first one again..
Plz suggest me for this..
thanks
Narpal

Hi
You can made it by using plugs and navigation
See this Samples and help
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/b1a3e990-0201-0010-aeb2-a2ef5bc3da8e">creating an Extended Web Dynpro Application</a>
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d">web Dynpro Sample Applications and Tutorials</a>
Kind Regards
Mukesh

Similar Messages

  • Seperate windows for each mail account

    I've just installed Panther and am exploring the Mail application.
    How can I set up completely seperate windows for three seperate accounts that will receive and send mail only specific to each account.
    In Outlook I had three seperate windows all working completely independently but I can't figure how to do this in Mail.
    Geoff H

    There is no separate account named Outbox mailbox for each account under Out in the mailboxes drawer. There is a single Outbox mailbox which is shared by all accounts.
    The account named mailbox under Drafts, Sent, Trash and Junk will not be created until the function is used by the account.
    Mailboxes under In, Drafts, Sent, Trash and Junk in the mailboxes drawer are created and managed automatically by Mail and cannot be manipulated manually.
    The "On My Mac" named Trash mailbox under Trash in the mailboxes drawer is used when selecting a message for deletion that is located in a user created "On My Mac" mailbox.
    The only mailboxes you can create and manipulate in Mail are user created "On My Mac" mailboxes which are stored locally on the hard drive and user created .Mac or IMAP account mailboxes which are stored on the server.

  • Is it necessary to create a seperate window for a pop up view

    Hi Experts,
    Is it necessary to create a seperate window for a pop up view? I don't want to create a seperate window for a pop up view. As I don't want to make much changes in the present program logic.
    My only problem is following code. This code finds out the window. So I have to create a seperate window for a seperate pop up view.
    I am wondering if there is any API or the same API which can allow me to call the view instead of window
    IWDWindowInfo windowInfo =(IWDWindowInfo) wdComponentAPI.getComponentInfo().findInWindows("Popup");
    IWDWindow window = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
    window.show();
    Please help.
    Regards,
    Gary

    Hi
    On OK button's action  you can Destroy the window and navigate to Page1.
    Go through this link for more details and a step by step guide for creation of pop ups  and dialog boxes
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/903fed0d-7be4-2a10-cd96-9136707374e1?quicklink=index&overridelayout=true
    Hope it works
    Regards
    Suresh

  • I have multiple computers set up on homesharing under one itunes account. Can I use face time on all of them or do i need seperate accounts for each?

    I have multiple computers set up on homesharing under one itunes account. Can I use face time on all of them or do i need seperate accounts for each?

    I'd suggest you consider a cloud-based file sharing service such as Dropbox for this sort of use. iOS is not designed to be synched with more than one iTunes library at a time, so attempting to use it as you describe, connecting a single iPad to multiple computers, almost certainly won't work as you intend and is likely to cause nothing but headaches.
    Regads.

  • One Corporate Account for multiple departments or seperate accounts for each

    I would like to know if I can have one central account that can be shared among different departments. Or I would need to purchase seperate account for each department.
    Thank you for your help.

    You can have a master paid  account which create forms for each of your departments and have each deparment have their own account (could be a free account). The paid account can create the forms and share each form with the right deparment. This way each deparment have access to their own data only and can't mess up the other deparment forms and data.
    Really though.... I would recommand for each department to have their own paid account so that they are in full control of their forms.
    Gen

  • I bought an iphone for my daughter and was unaware that we should have a seperate appleid for each.Now we share an id and get eachothers contacts and face time calls. I recently bought another iphone and want to change ids without loosing items and music.

    I bought an iphone for my daughter and was unaware that we should have a seperate appleid for each.Now we share an id and get eachothers contacts and face time calls. I recently bought another iphone and want to change ids without loosing items and music. How do I do this? The new phone is a 5.

    All purchases are always going to be associated to the ID that was used to purchase/download them.
    If you create an ID for your daughter you will want to check everywhere it is used to make sure you are not sharing messages and stuff. These would be iTunes/app store, iCloud, iMessages, and FaceTime.
    Go thru settings and find all mention of your ID.

  • HTTPService request for each View inside a ViewStack

    Can someone point me in the right direction to have a
    httpservice request for each view inside my viewstack?
    <mx:ViewStack id="views">
    <mx:Canvas id="view0">
    </mx:Canvas>
    <mx:Canvas id="view1">
    </mx:Canvas>
    </mx:ViewStack>
    Can someone whip together a quick example or just point me in
    the right direction?
    Thanks

    Ahh, don't do that.
    Use a central HTTPService instance, and use AsyncToken to
    keep track of which result goes where. Some code snippets below.
    Tracy
    Sample code using HTTPService, e4x, handler function to
    populate a list item.
    Also shows usage of AsyncToken.
    The DataGrid tag:
    <mx:DataGrid id="dg" dataProvider="{_xlcMyListData}"
    .../>
    The HTTPService tag:
    <mx:HTTPService id="service" resultFormat="e4x"
    result="onResult(event)" fault="..../>
    Script block declaration:
    import mx.rpc.Events.ResultEvent;
    [Bindable]private var _xlcMyListData:XMLListCollection;
    Invoke send:
    var oRequest:Object = new Object();
    oRequest.Arg1 = "value1";
    var callToken:AsyncToken = service.send(oRequest);
    token.callId = "myQuery1";
    Result Handler function:
    private function onResult(oEvent:ResultEvent):void {
    var xmlResult:XML = XML(event.result); //converts result
    Object to XML. can also use "as" operator
    var xlMyListData:XMLList = xmlResult.myListData; //depends
    on xml format, is row data
    _xlcMyListData = new XMLListCollection(xlMyListData); //wrap
    the XMLList in a collection
    trace(_xlcMyListData.toXMLString()); //so you can see
    exactly how to specify dataField or build labelFunction
    var callToken:AsyncToken = oEvent.token;
    var sCallId = callToken.callId; //"myQuery1"
    switch(sCallId) {
    case "myQuery1":
    doQuery2();
    break;
    }//onResult

  • JTree- seperate tooltip for each node

    hi,
    i would like to have different tooltips for different nodes. in all tutorials they have given the method of assinging tooltip in a general class i.e. setting a tooltip for all leaf nodes etc.. But i would like to have seperate tooltip for each node.
    thanx

    hi,
    Doing both of the above tasks will lead to have a tooltip same for all nodes. But i need all the toltips to be different for different leafs.
    However i solved that problem using mouseListeners and getPath() method..
    Now i have another problem. when i move my mouse over any leaf node(not necessarily selecting just on moving over the text) i would like to change the color of the text of that particular node to another color. If i use renderer to do this then it may change the color of all the nodes.
    how it could be done for only a particular node and not for all. Aren't there any renderers for nodes.
    thanx

  • I backed up two Iphones to the cloud and accidentally chose merge. How can I reset it to have seperate backups for each phone with the same ITUNES login?

    I backed up two Iphones to the cloud and accidentally chose yes to merge the contacts from the two phones. How can I reset it to have seperate backups for each phone even though I am using the ITUNES login?

    i merged two phones contracts are together how to get back to seperate

  • Why is Firefox opening a separate browser window for each link instead of a new tab in the current browser window?

    Suddenly firefox has started opening a new, separate browser window for every link and thing I open. It used to just open a new tab in the current browser. I must have closed down 15 browsers when trying to get back to a previous web page - the back button doesn't work when each click leads to a new window opening! I went into options and my settings have not changed, they still say "open new tab" for links. This just started happening out of the blue today. What's up?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • How can I open a file in a seperate window. for example how can"D:\asd.doc"

    how can I open a file in a separate window. for example how can I view "D:\asd.doc" in ms words window ??

    Check out the Desktop class.
    Edited by: pbrockway2 on Aug 23, 2008 2:20 PM
    There's a detailed example in Sun's Tutorial.

  • Generate a seperate PDF for each copy of the recipients

    Hi
    We have a requirement to generate PDF for each copy of the recipients. Assume , if we have a transaction that has one insured , one broker and three mortgagee copies, we would need to generate 5 PDF's (one for insured , one for broker and three for mortgagee.
    The form has an address section which displays the mortgagee address details. Each of my mortgagee copies needs seperate PDF to be generated.
    Is there any Documaker Server or DAL Rule that we could use this to achieve the functionality. We are using Documaker 11.3 with Docupresentment 2.2 on AIX Platform
    Thanks in advance

    data :tab_otf_data TYPE ssfcrescl,
    cparam TYPE ssfctrlop.
    CALL FUNCTION GV_FMNAME
      EXPORTING
    IMPORTING
       EX_USER                    =
      DOCUMENT_OUTPUT_INFO       =
       JOB_OUTPUT_INFO            =  tab_otf_data
      JOB_OUTPUT_OPTIONS         =
      TABLES
        I_DESC                     =
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    check out for the field TDFORMS of tab_otf_format

  • Do we require a seperate server for each JWS app ?

    We have an app that runs on JWS and uses a fairly large MS SQL database. We currently host this on our server. We use ServletExec and Win2k and IIS. Most customers do not have MS SQL on their laptops. Each customer wants to login and use their own version of our application together with their own version of the database.
    Q: could we host several versions (one for each customer) of our app on a single server with one IP address, or do we need a different server with different IP for each?

    The question is : do you want your user to be able ti use their application offline ?
    If yes, then you may provide them a local database and use a JDBC type4 driver. (The application is fetch directly from the server when first connected and then is able to lauch the applicaiton off-line) Such a network listen is allowed by the JNLP security model without any application sign !
    If no, then why not having a single database and some user debedant table that store the user specific data (as usual), and using a login dialog-bon (or an auto-logon mechanism) to restric identify and access your database thru some business logic via RMI or any ligh-webservice technology.
    Anyway you have plenty of solutions ..... it only depends of what are the exact needs.
    Regards,
    Jean-Baptiste Bugeaud
    WWW.UP2GO.NET - The JNLP Applications Repository

  • Dynamically Iterate through data a deliver a seperate report for each

    How would I configure my Crystal Report Server to dynamically iterate through a batch of check numbers, generate & deliver a report for each check number?

    Jaggy like this

  • 0o we require a seperate server for each JWS app

    We have an app that runs on JWS and uses a fairly large MS SQL database. We currently host this on our server. We use ServletExec and Win2k and IIS. Most customers do not have MS SQL on their laptops. Each customer wants to login and use their own version of our application together with their own version of the database.
    Q: could we host several versions (one for each customer) of our app on a single server with one IP address, or do we need a different server with different IP for each?

    I've used many UNIX databases, not SQL
    database, and I don't know how SQL database
    handles authentication, but with Oracle, for
    instance, it would be easy to run any number
    of apps and databases from a single directory
    on any web server.
    One way to differentiate DB instances would
    be by specifying a -D property in the JNLP
    launch commands.
    Any half-descent web server will permit you
    to control access to individual files by
    source address and/or passwords.

Maybe you are looking for

  • Upgraded - how can I get my meta data back???

    I just updated to Mavericks and installed iPhoto 11 (v9.5). It opened my library and said it would need to upgrade. After it did that, everything had disappeared but after running iPhoto Library Manager, I managed to retrieve all my photos. But they

  • Photoshop CS5 install error

    Hey i have downloaded the trial version of photoshop cs5 extended im running a windows 7 64bit system When i press install i get stuck at 15% and then i get the following errors im also running it as admin but i still get the problem somehow ive also

  • My IPOD keeps on skipping song....

    It skips songs the photos are shown as random pixels and also it shows the wrong picture with the wrong song! I check it up and on the computer the photos are in the right plave!! Help me PLEASE!   Windows XP  

  • Are there any tcode like MD04 but for a list of material or material group

    Hello Experts, Some users want to have a list of dynamic stock (like  MD04), but for a list of materials or material group. Are there reports or standard transactions  for that? Or must make a specific? Thanks in advance. Said

  • Tables created using Enterprise Console Manager do not show up in SQLPLUS

    I am struggling with Enterprise console manager and command line SQLPLUS. I have tried scott/tiger , system/manager and the new user that I have created. But I am having the following problems: 1. I cannot connect as NORMAL through Enterprise Console