I want to know  how to call navigate to page in new window.

Hi,
I want to know  how to call navigate to page in new window.
Following is the code which i am using on Event OnInputProcessing.
navigation->goto_page( 'index.htm' ).
From the above code i am able to open the index.htm in the same window.
but I need the index.htm in the new window.
Please suggest
Thanks in advance,
Nilesh Labde

Thanks ,
I was able to find the navigatiion tab, But after entering the The Form name in that TAB, Still the New Page opens in ths SAME window.
Following is the Code written on the Eevent--> OnInputProcessing
navigation->next_page( 'NEXT' ).
In the Navigation TAB
Start                             Navigation Request                Target
Sales_Person.htm                   NEXT                            index.htm
Please suggest.
Thanks in advance,
Nilesh Labde

Similar Messages

  • I had download helper n my old computer, This computer broke. I have a new computer and wanted to know how I could get this on the new computer?

    I had download helper n my old computer, This computer broke. I have a new computer and wanted to know how I could get this on the new computer?

    maybe you are talking about this?
    * https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/
    if yes simply go and click on '''Add To Firefox''' button >Restart your Firefox> and Enjoy :)

  • I have switched from using a PC to an iMac and want to know how to register Lightroom 5.7 for new Mac?

    I have switched from using a PC to an iMac and want to know how to register Lightroom 5.7 for new Mac?

    Are you on CC or standalone perpetual licence?
    If the former I believe you merely download LR from the CC site onto your iMac and log in and off you go.
    If the latter, download LR onto your Mac from the perpetual licence site (not the CC version), install it and use the same licence number as with your PC.

  • I started my iTunes account on my Dell Desktop years ago and want to know how to import my files onto my new MacBook Pro?

    I started my iTunes account on my Dell Desktop years ago and want to know how to import my files onto my new MacBook Pro?

    It should be in Favorites.
    If not, click on the desktop then go to Finder menu > Preferences > Sidebar and tick Music.
    Your Music folder is in Macintosh HD > Users > Your username.

  • Does anyone know how I can create "facing pages" in new Pages? I could do it in Pages 09, but can't find the option in new Pages.

    Does anyone know how I can create "facing pages" in new Pages? I could do it in Pages 09 but can't find the option in new Pages. I have documents created in Pages 09 and want to do some further work on them, but am now using new pages.

    There were 100+ features that didn't make it into the "new & improved, rewritten from the ground up” Pages 5. Some have returned with the updates & there are some new features that are worthwhile, but there are still 90+ features missing. Leave feedback for the Pages team using the link in the Pages menu and review & rate the new versions in the Mac App Store.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • Is there a way to move a group of tabs to a new window? I know how to move one tab to a new window, but is there a way to mark a group of tabs and move them to a new window?

    Is there a way to move a group of tabs to a new window? I know how to move one tab to a new window, but is there a way to mark a group of tabs and move them to a new window?

    * Tab Mix Plus: https://addons.mozilla.org/firefox/addon/tab-mix-plus/

  • How do I open a page in new window using af:commandLink?

    Hi,
    I have a requirement where I need to open the page in a new window on clicking the af:commandLink.
    I could use af:goLink, but I cannot as I have to invoke the URL using http POST method. If I use af:goLink, all the parameters will be displayed in the URL. I do not want that.
    I have the below code for the commandLink:
    <af:commandLink text="Open new window" id="cl199bk"
    styleClass="AFRighColLinkText"
    action="dialog:openNewWindow"
    useWindow="true" windowHeight="400"
    windowWidth="800" immediate="true"/>
    When I click the commandLink, the page gets opened but in the same window. I have the below controlflow-case in my taskflow:
    <control-flow-case id="__71">
    <from-outcome id="__133">dialog:openNewWindow</from-outcome>
    <to-activity-id id="__72">openNewWindow</to-activity-id>
    </control-flow-case>
    Please let me know what to do to have the page opened in new window/tab.
    Thanks in advance!

    Hi Frank,
    I tried that too and the page always opened in the same page even with dialog:action set and useWindow set to true. I had the navigation rule in adfc-config as well.
    I got it done using the url-view activity.
    I have created a new bounded task flow with the url-view activity as the default activity. I called this new task flow from the actionListener bean method on commandLink. Set the new task flow to url-invoke-allowed.
    I have my parameters set in the url-view activity. With this the parameters are not shown in the URL.
    That did the trick for me.
    Thanks.

  • I can not find my cd for this printer and wanted to know how to get another cd to update new laptop

    How can I get a new CD for my printer HPc309g?  Can it be mailed to me?

    You can download and install the latest software for your printer from the "Support & Drivers" link at the top of this page.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • I downloaded something called MPlayerX and it is ruining my computer (a macbook pro) and now on safari theres pop up adds that shouldn't be there and on the google homepage theres adds. I want to know how to fix this and get rid of MPlayerX :( PLEASE

    I downloaded something called MPlayerX and it is ruining my computer (a macbook pro) and now on safari theres pop up adds that shouldn't be there and on the google homepage theres adds. I want to know how to fix this and get rid of MPlayerX PLEASE HELP ME!!!!

    MPlayerX isn't itself the problem; it was downloaded from a source that packaged adware with it. Click here and follow the instructions, or if desired, run Adware Medic.
    (114466)

  • Want to know how to check for new line character in text file

    Hi All,
    I`m trying to read data from text file. However I`m not sure whether the data is in 1st line or nth line. Now I`m trying to read the text from the readline. But if text is "" and not NULL then my code fails. So I want to know how to check for new line character and go to next line to find the data. Please help.
    Thanks
    static int readandwriteFile(Logger logger,String filepath){
              BufferedWriter out = null;
              BufferedReader in = null;
              File fr = null;
              int get_count = 0;
              try     {
              if(new File(filepath).exists())
              fr= new File(filepath);
                        System.out.println("FileName: "+fr);
                   if(fr != null){
    in = new BufferedReader(new FileReader(fr));
                             String text = in.readLine();
                             if(text != null){
                             get_count = Integer.parseInt(text);
                             in.close();
                             else{
                                  get_count = 0;
         else{                    
    out = new BufferedWriter(new FileWriter(filepath));
         out.write("0");
                out.close();
                   }          //Reading of the row count file ended.
              catch(Exception e) {
                   e.printStackTrace();
              finally {
                   try{               if (in != null) {
                             in.close();
              if (out != null) {
                             out.close();
              catch(Exception e) {
                        e.printStackTrace();
              return get_count;
         }

    You are calling the readline() only once which means you are reading only the first line from the file...
    Use a loop (Do-While preferably)
    do{
    //your code
    }while(text == "")

  • I want to know how my Ipad is doing in repairs and did it arive yet

    How can i find out how my ipad is doing in repair, can i contact apple with out calling?

    I want to know how the airport express works in hotels overseas
    In my experience, about the same as it does in hotels in the U.S., assuming you are staying at a major hotel chain.
    Also does it speed the connection
    No, the Express can only work with the signal (bandwidth) that it receives from the hotel network. And...there must be an Ethernet port in the hotel room to be able to use the Express.
    Important Note.....the Express will not be able to use a wireless signal at the hotel and "boost" it, if that is what you are thinking about. You must have an Ethernet port in the hotel room to use the Express.
    If the airport express helps how do I do this at each hotel? Do I need to set anything up at home first.
    The Express will work at most hotels right out of the box with no configuration needed.  But, it will be providing a network with a name like Apple Network....and there is no wireless security....so anyone in close range could connect if they saw the network.
    You can customize the Express with your own wireless network name and password. Once configured, you do not need to change the setup. 
    I've used the same Express for almost 5 years all over the world, since it runs on 100-240 Volts and 50-60 Hz.  I do have a nice collection of AC wall adapters, as will you if you travel to a number of different countries on different continents.
    A few more tips.....most hotels will still charge you for the Internet connection daily, so no way around that unless you are an elite member of the club.
    My old travel Express will allow up to 10 wireless devices to connect. The newer version of the Express will allow 50.

  • HT2486 want to know how to add pictures to address book that DO NOT appear as fullscreen images on the iPhone but remain as icons with the iPhone background visible

    want to know how to add pictures to address book that DO NOT appear as fullscreen images on the iPhone but remain as icons with the iPhone background visible (see attached image). for some reason, all new contacts added through Mountain Lion appear as fullscreen caller ID images.

    This would be better addressed in the iPhone forum, I would post there as well.

  • Keep getting a prompt to install java even when not surfing the net. I have java installed and the control panel says it is right version. Want to know how to stop prompts. This started after I installed Yosemite.

    Since installing Yosemite I keep getting a prompt to install Java even when I am not surfing the net. Went system preferences and I have recommended version installed. I want to know how to stop the prompts. I do not have this problem on my iMac.

    Most likely, you have either the Facebook video calling plugin or the "NexDef" plugin for watching baseball streams. Both depend on the Java runtime distributed by Apple. If you no longer need the plugin, remove it. Otherwise, install Java.

  • I have a mac g5 with version 10.4.11 and wanted to know how to upgrade to version 10.5.8?

    I have a mac g5 with version 10.4.11 and wanted to know how to upgrade to version 10.5.8?

    If you call Apple at 1 800 MY APPLE, you can get a set of retail replacement discs of OS X 10.5 Leopard.
    Apple is supplying these on white DVDs for less than $20.
    You'll need to give them your Mac's serial number.
    See this link here.
    https://discussions.apple.com/message/21504111#21504111
    These were reported to work on any PowerMac G4 or G5.

  • Hello! I just want to know how to open a document (.pdf or .doc).

    I have looked at Labview\vi.lib\platform\browser.llb\Open a Document on Disk.vi but the vi has many subvi's. It works well but when I  build a new application I always get errors when I try to open the document. Thank you.

    Altenbach....  we're gonna start calling you "Hawkeye" 
    There was not much info on the other post other than tst's reply..  I'll check it out..
    Thanks buddy!
    RayR
    EDIT PORTION:
    Humm...  the titles were similar....  "Hello! I just want to know how to open a document (.pdf or .doc) after the press of a control button. Thank you."
    But you're right.. nothing mentioned about a build..  >> SORRY: Not Duplicate Post <<
    Message Edited by JoeLabView on 09-21-2007 11:38 AM

Maybe you are looking for