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

Similar Messages

  • Is it necessary to create a Billing Plan for the Service Contracts

    Hi All,
      Is it necessary to create a billing plan for the service contracts.
      My requirement.
      In CRM 7.0, we created a service contract. For the item in that service contract there is a Billing Plan tab.
      In that tab we have the dates for Period, Billing Date etc.
      Now our requirement is to get the Billing Date quarterly. For this we created date rules and date profiles and assigned these date profiles to header and item level transactions.
    And we are able to see the date rules under the drop down of the billing date.
    I copied the standard date rule BILL004 to ZBILL004.
      But when we changed to our date rule it is not changing to quarterly date.
      Can you please let me know  what are the configurations to be done for this.
      Is the billing plan has to be created for this kind of scenario.
    Thanks in advance
    Thanks and Regards,
    Raghu

    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

  • 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.

  • I have an I phone and my own account  and just purchased an ITouch for my daughter - how do i create a seperate account for her on my computer?

    I have an I phone and my own  I tunes account  and just purchased an ITouch for my daughter - how do i create a seperate account for her on my computer? I want to make sure that my apps do not sync on her I touch.

    Go into Setttings -> Messages and make sure your Caller ID setting for Messages is set properly.

  • It is necessary to create one header data for each file to be sent to CDFS.

    hi GUYS
    my sce anrio is FILE-XI-PROXY
    REQUIREMENT IS
    SOURCE FILE                      TARGET FILE WILL BE
    H1                                             H1                        H1                    H1
    I1                                               I1                         I2                      I3
    I2                                                F1                        F1                    F1
    I3                                           
    F1
    It is necessary to create one header data for each file to be sent to TARGET. Each file will be related to only one SAP Company Code.
    Thanks
    NAG

    aa

  • Portal Run time error when created a seperate role for Transport package.

    Hi Experts,
    I have created a seperate role for Transport Package(import/export iviews).
    Normally we have transport package functionality in system admin.
    Below steps i followed for creating the new role(trans admin)
    1.Copied SAP provided system admin role to a seperate folder.
    2.Deleted reamining portal objects(like UWL, portal display etc ..) except transport packege workset.
    3.Renamed the role to trans admin.
    I have assigned that role to my self, it is working fine to me when i clcik on export and import.I have super admin role.
    when i assign this role to some portal users, Export is not working.
    when user clicks on Export role they are getting below error.
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Access denied (Object(s): com.sap.portal.system/security/sap.com/NetWeaver.Portal/medium_safety/com.sap.portal.appdesigner.contentcatalog/components/Framework).
    Exception id: 12:10_31/08/09_0031_21763550
    See the details for the exception ID in the log file
    By looking into exception iD also, same error access denied it is showing.
    Please Advice.
    Thanks
    Sony.

    Hi Raghu,
    Thanks for the reply.
    I have given full permissions to all users to this trans admin role before itself.
    Thanks in advance.
    Sony.
    Edited by: ambica sony on Aug 31, 2009 1:53 PM

  • How can we create a popup window for confirmation while clicking of button

    HI Friends,
    I am creating a application, In which I want to create a popup window for confirmation on clicking of a button.
    I also need two buttons on popup window i.e. 'Yes' & 'No'.
    On yes i want to perform some operation and on No i want to cancel that operation.

    Hi Narendra,
    try using the following code in ONACTION of ur button for popup :
    * Popup
       *  Generate Popup
        DATA lo_window_manager TYPE REF TO if_wd_window_manager.
        DATA lo_api_component  TYPE REF TO if_wd_component.
        DATA lo_window         TYPE REF TO if_wd_window.
        lo_api_component  = wd_comp_controller->wd_get_api( ).
        lo_window_manager = lo_api_component->get_window_manager( ).
        lo_window         = lo_window_manager->create_window(
          window_name          = 'W_POPUP'
         window_position = if_wd_window=>co_center
          message_display_mode = if_wd_window=>co_msg_display_mode_selected
          button_kind          = if_wd_window=>co_buttons_yesno
          message_type         = if_wd_window=>co_msg_type_none
          default_button       = if_wd_window=>co_button_yes
        DATA:  l_api TYPE REF TO if_wd_view_controller.
        l_api = wd_this->wd_get_api( ).
        " subscribe action for Ok button
        lo_window->subscribe_to_button_event(
                     button            = if_wd_window=>co_button_yes
                     action_name       = 'OK_POPUP'
                     action_view       = l_api
                     is_default_button = abap_true ).
        lo_window->open( ).
    regds,
    amit

  • How do I create an expandable window for articles.

    Working on a new website design that will have hundreds of articles that look similar to these. These are the teaser links to get the viewer to the main full feature article. My main question is how to I make the article attached to the link so it opens up into a window but not have to create an actual page for it on the site. I hope I am explaining this clearly. I just want it to pop up into its own window. The page that opens up will look like a page from a magazine with photos, text and also some videos. 
    Thanks a bunch, Lance

    Hi Lance,
    You'll need to use the 'featured news' widget. Just go into the options and choose 'show target: on click' and 'hide target: on click.'
    Managing "hundreds" of articles like this is going to be a real pain in the arse, so you're maybe better having a seperate blog, and making a popup window that contains the article using the instructions I gave on this post: http://forums.adobe.com/thread/1037307?start=0&tstart=0
    Hope that helps! For any more questions, tweet me: @upchurchpwm
    Thanks,
    Nathan

  • Creating Iweb seperate domains for multiple sites DIDNT WORK

    Hi! Any help would be much appreicaited!
    I am creating mutiple websites in iWeb 09'. All 3 of my websites have been stored under 1 domain file on my mac. I have read numerous discussion boards stating the steps of how to seperate each of the created sites from the one domain file, into mutiple domain files. I followed the steps on this website :
    http://lmsdiweb.wikispaces.com/Saving+Locally
    I moved the Domain folder out of its original location into a new folder on my harddrive entitled "Sites". Then i made sub folders within that folder and duplicated the domain 3 times and placed each copy in those folders. then i double clicked on the domain for my 1st site, opened iWeb, and then deleted the other sites i did not want on this new "domain" file i created and hit saved. This is exactly what the website said to do to create the seperate domain files for each seperate site. It then said repeat for each site, deleting the sites that are not needed on that domain.
    All of that being said, it didnt seem to work when i tried to open the 2nd copy of the domain. When iWeb opened after double clicking the 2nd domain copy, it did not open and show me all 3 sites as it should have, it opened to show me the one site that i just "saved" after deleting the other sites for the previous domain i was trying to create.
    I'm afraid i posisbly lost my other 2 sites. I backed up my first initial "domain" file which had all 3 sites within it on my external hard drive, and when i double clicked on that to make sure my sites weren't lost forever, same thing happened and only my lastest site that i saved on the 1st attempt to seperate domain files is visable on my iWeb.
    Did i loose everything i created in my other 2 sites? How do i get them back? What did i do wrong? Any help is much appreiciated as i have a feeling i might have made a serious mistake and need some help figuring this all out!
    Thank you!
    Also, I published all of my sites "to a folder" on my hard drive before doing this as well. Is there any way to take the published folder contents and put my site back on iweb for editing again?

    With three sites in a domain file here's how I would do it.  Create 3 copies of your domain file and name them for the three website, i.e "website1.sites, website 2.sites, etc.
    With the application discussed in the text below open website1.sites and delete website 2 and website 3 from it and save.  Open website 2.sites and delete 1 and 3.  Do the same for website 3.sites. 
    Then use the application mentioned below to open iWeb and select the website you want. 
    In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or Mountain Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file in your Home/Library/Application Support/iWeb folder that you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    NOTE:  iWeb 2 is not compatible with Mt. Lion and has trouble saving to the hard drive.  It's suggested you obtain iWeb 3
    OT

  • How do you create multiple execution windows for a custom opterator interface

    I am starting to create a custom operator interface for TestStand 3.5 using Labview 8.0.  This is my first exposure to custom operator interfaces (and ActiveX).  The example operator interfaces have only one execution window that changes based on the executions combo box.  My sequence is going to be run with the parallel sequence model (2 test sockets).  So I want my custom operator interface to have 2 execution windows, one for each test socket.  How can I do this?  I created a second execution window but it just mirrors the first execution window. 

    Hi, All:
     With the similar approach, I create a multiple window user interface with CVI. Although it can run, the Execution view doesn't display
    anything while execution. In my user interface, there is an applicaiton manager resident in Parent form, and every child forms has
    itsown Exection view and Manager.
     Referred to the C# sample, in the function rivate void DisplayExecution(Execution execution)
       if (executionForm == null) // execution is not in a form, make a new form
        executionForm = new ExecutionForm(this, this.axApplicationMgr, execution);
        this.mChildFormsKeyedByViewMgr.Add(executionForm.GetViewMgr().GetOcx(), executionForm);
        SetNewChildFormLocation(executionForm);
     I guess the execution form "hook" the exectuion view manager via Add(), so the exectuion view can be updated properly.
    And according to reference manual of teststand, it mentions that "The application sets the ExecutionViewMgr.UserData property to
    attach a handle, reference, or pointer that represents the window." But when I try to utilize this method, I got 2 problems:
    1. How to get a window handle of a CVI panel? As execution view are resident in child panels, so I may need the window handle of
     individual child panels.
    2. Even the window hanlde is gotten, how can I convert it to a VARIANT Type? According to the function panle of
    TSUI_ExecutionViewMgrSetUserData (, NULL, ), the last parameter is a "VARIANT".
    Any comments or instructions for my assumption?
    Thank you for your help.

  • Creating a seperate inbox for SMS and MMS text msgs

    I followed the instructions on creating the seperate inboxes and it doesnt appear to have worked since my text messages and emails appear in the same basket and when I create the seperate option, a seperate icon does not appear on my blackberry. Has any one experienced this or knows where this seperate inbox is?
    Solved!
    Go to Solution.

    Hi and welome to the forums
    Verify the setting used:
    from the Main Messgage Queue MENU KEY - OPTIONS- GENERAL OPTIONS
    SMS AND EMAIL INBOXES SEPERATE.
    Pull the battery while the device is ON, replace after a minute,
    let the device reboot 1-3 min, Retry the function that was the problem
    Please let me know!
    Thanks
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • 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

  • How do I create a new window for the iTunes store?

    Hi,
    I have the latest iTunes update on a Windows PC, but I can't seem to open any new windows for the iStore like you used to be able to, so you have to come out of your iTunes library (annoying if you want to check that you haven't already purchased a song you're looking at etc.).
    Please tell me there is a fix (easy or difficult) for this!!
    Matt
    P.s. I have the latest iTunes update.
    PLEASE HELP!!!!

    Reboot the ATV and try it again. If it still won't play correctly, find the file in your iTunes store purchase history, click on the "Report a Problem" link, and report it to iTunes store support.

  • 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.

  • How to create a context node for "IBHeader" at the view "BuPaIBaseDetail"?

    hi, experts
    for the requirement, i have to get data from a root BO-IBHeader in the view of "BuPaIBaseDetail".But the view already has IBHeader's child object-"IBComponent", whose controller class is "CL_CRM_IC_BUPACONTROLLER_CN08", how can i create the context node for "IBHeader"?
    angerly wait for the answer. thanks a lot

    If you right click on an empty container or a container with an object in it, it has the same available choices to select. However, if you create a blank property node on the block diagram, and wire up the .net object to it, you will see a much different list of properties.
    So, the property node created from right clicking a .NET container will be for that container, even if there is an object inside. To create a property node for the object, you must wire the .NET object to an empty property node on the block diagram.
    Chris Van Horn
    Applications Engineer

Maybe you are looking for

  • Upgraded to yosemite and its asking me for iCloud password to an old ID

    I just upgraded to Yosemite on my mac mini.  When I turn on the computer it asks me for a password to an id that no longer exists.  when I try to use mail, it is apparently using the old ID so it defaults to an iCloud email address and none of my con

  • Can't import ppt in Captivate 7

    I have just installed Captivate 7 (v. 7.0.1.237) on my laptop with Vista 64-bit os.  When I try to import ppt slides, the option is greyed out.  How can I fix this?

  • LOV page not opened after an insert action

    (Using jdev 10.1.3.4.0.4270) I have an overview page with a detail edit/create page. On the edit/create page are some(5) LOV's. These LOV's are actualy created as : <afh:cellFormat> <af:commandLink id="lov_link_product" useWindow="true" action="dialo

  • Sorting date Field

    Hi,       I am using  groupField in Advanced Datagird, in that i want sort the date field. The  date field sees like that 06/22/1986(Month/Date/Year). How i can sort  it. Regards, Sivabharathi

  • Database Connection Timed out

    Hi, I am new in OEM so please tell me, Which type of alert should i set to understand Database Connection Timed out in OEM 12c.