How to get New Window without Variable Entry screen from one Web Template?

Hi Experts,
I've a WebTemplate contains 2 Graphs. Each graph have one Zoom Button. My requirement is, When I click the Zoom button that corresponding Grpah should display in a New Window. I've finished all the above requirements.
Since, I have One Mandatory field, I'm always getting the Variable Screen in a New Window while I clik the Zoom Button.
I need to avoid this "Rerun" feature in New Window.
Kindly suggest me how to achieve this..
Full points will be given.
Thanks
Jay Jay

Hi Thanks.
Even I'm also trying for the same scenario only.
Actually I have 2 Web Templates.
In First Template I have 2 Charts and 2 Zoom buttons for each.
While I running the 1 Template, i give an Value in the  Variable screen of First Web Template.
If I click a Zoom button of 1st Chart, It should open a New window with the Second Web Template. And Second Web Template should automatically take a First Template's Variable screen Values.
(Since, U have an Mandatory field in Second Template u were not faced this requirment.)
Even I tried with "TRANSFER_STATE". It is not taking the First Variable Screen's input values.
Kindly help me in this issue.
Thanks in advance.

Similar Messages

  • How to achieve New Window requirement from One Web Template?

    Hi Experts,
    I've a WebTemplate contains 2 Graphs. Each graph have one Zoom Button. My requirement is, When I click the Zoom button that corresponding Grpah should display in a New Window. I've finished all the above requirements.
    Since, I have One Mandatory field, I'm always getting the Variable Screen in a New Window while I clik the Zoom Button.
    I need to avoid this "Rerun" feature in New Window.
    Kindly suggest me how to achieve this..
    Full points will be given.
    Thanks
    Jay Jay

    Hi Thanks.
    Even I'm also trying for the same scenario only.
    Actually I have 2 Web Templates.
    In First Template I have 2 Charts and 2 Zoom buttons for each.
    While I running the 1 Template, i give an Value in the  Variable screen of First Web Template.
    If I click a Zoom button of 1st Chart, It should open a New window with the Second Web Template. And Second Web Template should automatically take a First Template's Variable screen Values.
    (Since, U have an Mandatory field in Second Template u were not faced this requirment.)
    Even I tried with "TRANSFER_STATE". It is not taking the First Variable Screen's input values.
    Kindly help me in this issue.
    Thanks in advance.

  • How to open new window and generate oracle report from apex

    Hi,
    I had created an application that generates PDF files using Oracle Reports, following this Guide.
    http://www.oracle.com/technology/products/database/application_express/howtos/howto_integrate_oracle_reports.html
    And I followed 'Advanced Technique', so that users can't generate PDF file by changing URL and parameters. This is done for security reasons.
    But in this tutorial, when 'Go' button is pressed, the PDF file is displayed on the same window of apex application. If so, user might close the window by mistake. In order to avoid this, another window have to be opened.
    So, I put this code in the BRANCH - URL Target. (Note that this is not in Optional URL Redirect in the button property, but the branch which is called by the button.)
    javascript:popupURL('&REPORTS_URL.quotation&P2100_REP_JOB_ID.')
    But if the button is pressed, I get this error.
    ERR-1777: Page 2100 provided no page to branch to. Please report this error to your application administrator.
    Restart Application
    If I put the code 'javascritpt ....' in the Optional URL Redirect, another window opens successfully, but the Process to generate report job is not executed.
    Does anyone know how to open new window from the Branch in this case?

    G'day Shohei,
    Try putting your javascript into your plsql process using the htp.p(); procedure.
    For example, something along these lines should do it:
    BEGIN
    -- Your other process code goes here...
    htp.p('<script type="javascript/text">');
    htp.p('popupURL("&REPORTS_URL.quotation&P2100_REP_JOB_ID.")');
    htp.p('</script>');
    END;
    What happens is the javascript is browser based whereas your plsql process is server based and so if you put the javascript into your button item Optional URL Redirect it is executed prior to getting to the page plsql process and therefore it will never execute the process. When you have it in your branch which normally follows the processes, control has been handed to the server and the javascript cannot be executed and so your page throws the error "Page 2100 provided no page to branch to"... By "seeding" the plsql process with the embedded javascript in the htp.p() procedure you can achieve the desired result. You could also have it as a separate process also as long as it is sequenced correctly to follow your other process.
    HTH
    Cheers,
    Mike

  • Variable entry screen from BW in webdynpro

    Hi all,
        can I use the variable entry screen for a BEx query to access all the user inputted values in a webdynpro application.
        I want to launch this screen from within the webdynpro application, and once the user presses "Execute", I want all the user selections back in the application.
        Is this possible at all?
    Thanks,
    Satyajit.

    Hi Satyajit,
      Since the variable entry screen orignates from the BI system in conjunction with a web template it cannot be invoked separately. Do you plan to run the web application within a Web Dynpro application (i.e. an iFrame)? One option would be to use the BI Java SDK to populate the values in a user selection screen and then use the user's selection to execute a query or MDX statement. Of course you Web Dynpro app is responsible for rendering the result set.
    Regards,
    Oliver

  • How to open new window without loosing pageFlow context?

    I am using 8.1 SP 3.
    Here is what I need to do. I have a an anchor link in a jsp that needs to open a new window after executing an action in a page flow. That action forwards to a jsp that needs to be able to access pageFlow variables.
    So, I have the following:
    <netui:anchor target="_blank" action="timesheetSubmitView">
    Everything works fine, that is it opens a new window and keeps the pageFlow content, BUT the new window contains all of the portlets that were on the original page. What I need is a new window that just contains the jsp that my action forwards to.
    I looked through the various topics on this forum, but the recomended approach posted by someone to enable redirect does not work because weblogic is loosing the pageFlow context, so jsp errors out due to the fact that variable on a pageFlow is null.

    I had the same issue. A couple different things to try -
    1. There is a property called redirect in the action. Set it to true.
    That did not work for me, so I just used pageFlow variables and put things into the session. Bad way of doing it, but works :)
    In the action that loads the first JSP, put things into the session. Then in the timesheetSubmitView action get the stuff from the session.
    Write an onDestroy method that deletes the session stuff, when u are done with it.

  • How to get new controller instance instead of a cached one?

    Hi,
    I have the following problem. I am working on a stateful mvc application. You can search for items and then click on a button which allows you to see the details of an item in a new window and it is possible to modify it.
    I use standard javascript code to open the details windows:
    window.open("item.do?itemnumber=1", "MyFirstWindow");
    This works fine. It opens the first window. The item controller is called for the first time  and the do_init method will be executed.
    Now, I open a second window with this code:
    window.open("item.do?itemnumber=2", "MySecondWindow");
    Unfortunately the framework will not create a second controller instance for the second window. It will use the already existing item controller (the do_init method will not be called).
    Now, I have two windows open which both use the same controller instance.
    So my question is: Is there the possibility to tell the framework that I need a new item controller instance for every new window?
    I already checked various official url sap-parameters but did not find anything useful.
    regards
    Thomas

    Hi,
    sorry for not answering earlier. To be honest I thought there might a standard way to get a new controller instance. But it seems that is not the case. For everybody who is interested I think I will use the following solution.
    I create a wrapper controller called itemwrapper.do. The view of this controller has the following layout:
    <htmlb:content design="design2003" >
      <htmlb:document>
        <htmlb:documentHead>
        </htmlb:documentHead>
        <htmlb:documentBody>
                  <bsp:call url     = "item.do"
                            comp_id = "<%= item_id %>">
                    <bsp:parameter name="itemid" value="<%= item_id %>"/> 
                  </bsp:call>
        </htmlb:documentBody>
      </htmlb:document>
    </htmlb:content>
    The wrapper controller is called like this: item.do?itemid=1234.
    How does is works? The wrappercontroller gets a request -> it gets the itemid from the url -> it opens the view and fills the page attribute item_id. In the view the bsp:call extension will create a new item controller instance everytime a unique item_id is used.
    regards
    Thomas

  • How to get back windows that are off screen?

    I use my macbook at work with one attached display, and then at home with a different attached display. The two extra displays are different sizes. A lot of times when I plug it into the smaller of the two displays, some of the windows come up off screen and I can't figure out how to drag them back on. For example now I have a Microsoft Word window where the bottom half is on the screen, and the top half is up above the top of the screen. The only way I know to move a window is to grab the top edge and drag it, but the top edge is off the screen so I can't do that.
    Also sometimes a window is bigger than the screen height, and the only way I know to make it smaller is to drag the bottom right corner, but the bottom right corner is off the screen and the window height is bigger than the monitor height.
    Is there a way to get these windows back all the way onto the screen? Thanks.

    This is one of the most serious flaws of the Macintosh, and in many instances there is just NO answer. You could resort to writing a script using the Script Editor, but this seems a tough way to get round what is essentially a bug in the OS - it has been there for over 20 years and I don't think Apple are about to realise that the age of multiple screens and changing screen sizes is here NOW and it is time to change so we can resize from any border like all other modern OSs.
    If you want to try the script approach - try this link for help:
    http://www.transparen.com/macintosh-technical-support-group/window-offscreen

  • HOW TO GET THE SELECTED VALUE IN A ROW FROM ONE VIEW TO ANOTHER VIEW?

    hi all,
    I  have a small issue.
    i have created two views.In the table of the first view i'm selecting a row and pressing the button it will move to next view.
    i am adding some fields manually in the table of the second view and pressing the save button.Here all the values should get updated corresponding to the field which i have selected in the first view.
    I want to know how to get the particular field in the selected row from one view to another view.
    Kindly help me.

    Hi,
            Any data sharing accross views can be achiveved by defining CONTEXT data in COMPONENT CONTROLLER and mapping it to the CONTEXT of all the views. Follow the below steps.
    1. Define a CONTEXT NODE in component controller
    2. Define same CONTEXT NODE in all the views where this has to be accessed & changed.
    3. Go to CONTEXT NODE of each view, right click on the node and choose DEFINE MAPPING.
    This is how you map CONTEXT NODE and same can be accessed/changed from any VIEW or even from COMPONENT CONTROLLER. Any change happens at one VIEW will be automatically available in others.
    Check the below link for more info regarding same.
    [http://help.sap.com/saphelp_nw04s/helpdata/EN/48/444941db42f423e10000000a155106/content.htm]
    Regards,
    Manne.

  • How to get the list of data providers used in a web template?

    I want to find a quick way to retrieve the list of data providers defined in the <object> tag in the Web template. One awkward approach is to parse the entire HTML page for <object> then filter out "DATA_PROVIDER: xxx".
    But is there any method or function call to retrieve the list quickly?
    Thanks!

    Try the function below, pass the item name and get the Data provider for that particular item, you will have to do this for all the items in the template.
    function getDPName(item){
         prop = SAPBWGetItemProp(item);
         var tableHidden=true;
         if (prop != null){
           for(i=1;i<prop.length;i++){
             if (prop<i>[0] == "DATA_PROVIDER")
                   return prop<i>[1]
           }//end for
         }//end if
    }//end function
    Thanks.

  • How to Get New Windows Setup Disk

    I got an r61i with Windows XP a couple of years ago.  I purchased another hard drive and installed Linux on it.  That is what I normally use, but, I kept the drive with XP when I need to use Widows.
    I seem to have lost the drive with XP on it.  I guess I'll have to get another drive and get a new setup disk, but, I can't find out how on the Lenovo site.  I bought the computer new (through CDW).   I saw another post where someone with the same computer downloaded Windows XP, but, I can't find any mention on the Lenovo site of either obtaining a CD or downloading.
    Does anyone know?

    http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-4M7HWZ#purchase
    start here to get restore media.
    T430u, x301, x200T, x61T, x61, x32, x41T, x40, U160, ThinkPad Tablet 1838-22R, Z500 touch, Yoga Tab 2 Windows 8.1, Yoga Tablet 3 Pro
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    If someone helped you today, pay it forward. Help Someone Else!
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Imac G3 How to get the crt off? or screen span one or the other

    I have an imac g3 3500 mh and a slot loading drive. but the crt is geting very old the computer is like 10 years. but how do i screen spam on it.. i know there is a vga port on the back of it and i have a vga screen hooked up to it at the moment but its just that same pic as the other one.. i scree span with my mac book so i know how.. but how would i do it? Know if i cant do that is there a way i can turn off the crt? that would help even more as i hate crts I would jut put the imac under my desk and thats fine with me as i dont care about the computer being donw there or is there omthing i could put the logic born in and make it like a mini tower? i dont care if i mees up the computer also as becuase i have a brand new mac book but it would be cool to bout the mac book in the cace of the old i mac as a joke lol. and my mac book is the last gen not the new new ones bues i need fire wire lol ok thanks. and my main lang is french and i typed this all in eng. ok thanks.

    Hey Jake,
    I have an imac g3 3500 mh and a slot loading drive. but the crt is geting very old the computer is like 10 years. but how do i screen spam on it.. i know there is a vga port on the back of it and i have a vga screen hooked up to it at the moment but its just that same pic as the other one.
    Hmm wasn't aware that any of the 350s had a VGA port.
    but would there be a way in the computer to unplug the crt?
    There might be a way but it would involve going into the computer and disconnecting the video cable.
    If you have the bottom off you could turn the "screen" control down on the flyback. It's the big black thing on top of the PAV on the computers right and those controls can be seen from the bottom right (computer's). I use a chopstick shaved into a flat bladed screwdriver point to do this.
    Richard
    Message was edited by: spudnuty

  • My old Apple ID email add is deleted now how to get new on device??

    I Have deactivated my old email Ladd which was my apple I'd now how to get new id on device as the old one is saved on it???

    Hi Mahatif,
    You will need to do the following:
    1.     Go to Manage your Apple ID, and sign in with your current ID. EDIT that ID back to the old email address. This is temporary. Do NOT verify the email address, do NOT change the password: Apple - My Apple ID
    2.     Go to Settings>iCloud and Sign off of/Delete the iCloud account. When prompted, input your current password. Sign out of any other apps that are signed into the old ID: iTunes & App Store, FaceTime, Messages, Mail.
    3.     Go back to Manage your Apple ID and sign in with the old ID/current password. EDIT the old ID back to your current ID. You may have to verify the email address again.
    4.     Go back to your device and sign into iCloud, iTunes, FaceTime, Messages, Mail as needed.
    Cheers,
    GB

  • Using a hierarchy node variable in a BI 7 web template

    Hi all,
    I am searching for a way how to use a hierarchy node variable in a BI 7 web template. I have seen that there is a hierarchy web item, but I can only link that to a characteristic. I need to link the navigation item to a hierarchy node variable as I want to use the chosen variable value in a customer exit as well. Therefore the hierarchy web item is not working for me.
    Is there any web item that can be used to offer hierarchy node variables as navigation options in a web template?
    If you have any idea, every hint is highly appreciated!
    Cheers
    Tatjana

    The Filter panel will only display you the characteristics and key figures available in the query.
    If you want to add a combo box to make "on the fly" currency conversion, you'll have to do that by another way.

  • How to call a servlet in new window without toolbar from OA page

    How to call a servlet in new window without toolbar from a OA page?Please provide sample code

    I have tried with the way suggested in Mukul's blog using javascript in Destination URI property.
    I tried to open a OA Page and from which forwarded it to a servlet..
    It is showing the error:
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: The application id or shortname () you entered does not exist.
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1969)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at oa_html._OA._jspService(_OA.java:86)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
         at oracle.jsp.JspServlet.service(JspServlet.java:148)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:175)
         at oa_html._OA._jspService(_OA.java:96)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
         at oracle.jsp.JspServlet.service(JspServlet.java:148)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.apps.fnd.framework.OAException: The application id or shortname () you entered does not exist.
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getAppId(OAWebBeanFactoryImpl.java:5391)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:969)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at oa_html._OA._jspService(_OA.java:86)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
         at oracle.jsp.JspServlet.service(JspServlet.java:148)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:175)
         at oa_html._OA._jspService(_OA.java:96)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
         at oracle.jsp.JspServlet.service(JspServlet.java:148)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    oracle.apps.fnd.framework.OAException: The application id or shortname () you entered does not exist.
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getAppId(OAWebBeanFactoryImpl.java:5391)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:969)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
         at oa_html._OA._jspService(_OA.java:86)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
         at oracle.jsp.JspServlet.service(JspServlet.java:148)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:175)
         at oa_html._OA._jspService(_OA.java:96)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
         at oracle.jsp.JspServlet.service(JspServlet.java:148)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)

  • Macbook hard drive crashed, i lost windows for mac, bought a disc when i got the mac, no longer have the disc, need my apps, don't wanna pay for it again.  know how to get it quick without having to give my mac to the genius bar at apple store overnight

    macbook hard drive crashed, i lost windows for mac, bought a disc when i got the mac, no longer have the disc, need my apps, don't wanna pay for it again.  know how to get it quick without having to give my mac to the genius bar at apple store overnight?

    What is it you need - Windows installer disc or something else?  Your question is unclear.  Could you be more specific?

Maybe you are looking for

  • WebLogic 10.3.5.0 won't stop or start propperly after Jdev upgrade

    Greetings, Our developers have installed Weblogic with Jdeveloper. Now I'm trying to setup a production environment and use only the ADF runtime version. From download ADF runtime is only available in version 11.1.1.6. With this I was able to start a

  • Upgrading to IOS8 on iTunes

    Hi all, I have an iPhone 5s and newest iPad -. If I use USB and iTunes (macbook 10.8) - can I just download ios8 1x and use it for BOTH devices(time saver...) - Or do I need to download separate one for each device-.?

  • About IDoc Basics

    Hi, I am learning IDocs. But I am getting confused with basic concept only. Can any one clear me following points in simple manner: 1. What is Inbound proceesing? In which senario we use it? 2. What is Outbound proceesing? In which senario we use it?

  • Where is the JAVA console?

    Hi, i need to tracethe System.out.println() information given from my JAVA applet, but actually the default console of Firefox 25.1 don't show anything... Why?? I need to download an extension separately?

  • How can i drop the redolog File

    hello , I was installing oracle 10g on windows using DBCA. The problem is that i made three group of redolog size 1M. When DBCA was creating the database i got an error msg that "Size of redo log is less "But i ignored that error. Ater that the datab