Manipulate the browser elements in report page....

Hi,
How to manipulate the browser elements in report page? i.e hiding the field element, hiding entire row, disable or enable a particular cell(or text field) from a row, hiding value in a cell....so on.
i used apex_items to create a report text fields.
I tried to manipulate fields using javascript API's, i cant get to...
how to do this?
Thanks....

ok,
I would like to order:
first row: label1 spacer texfield1 spacer label2 texfield2 label3 spacer label3...
secod row: label4 spa.....similarly
I use a af:panelformLayout with rows 2 and maxColumns 3, but no orders....

Similar Messages

  • Features that are not supported by Excel in the browser and interactive reports will be removed from the saved copy

    I Created a power view in Excel 2013 and uploaded to my Power BI for o365 site.
    But when i click on my excel file it opens in browser,After that i click on File tab its showing me two option 
    1. Save a Copy
    2.Download a copy
    When i click on save a copy its showing me an warning below
    Features that are not supported by Excel in the browser and interactive reports will be removed from the saved copy.
    Continue with Save?
    If i continue saving it only saves an excel files with data only not the power view which i want to save with applied filters.
    Please help me for this

    Just to clarify, when you hit the option of Save As Copy, the whole experience goes into a "read-write" mode in Excel services, which currently doesn't support authoring, just consumption of PowerView sheets.
    Two mitigations that come to mind:
    1. Download the copy (as Brad suggests), rename the file and upload.
    2. Use the send to option of SharePoint online, give the file the right target document library (can be the same as source) and rename the file:
    GALROY

  • How to set a cookie in the browser from an html page called via an Iview

    How to set a cookie in the browser from an html page called via an Iview
    Hello all,
    I have an issue which is causing problems. I have a snap survey (html form with submit and cookie setting) which is embedded in a url iview.
    Although the submit and the form work fine, the portal will not allow the cookie to be set it seems.
    Is there a way to allow cookies to be set from an embedded page in a url iview??
    You will make my day if you know!
    System: EP7 SP13
    Kind regards
    Alex

    Hi,
    Check this:
    http://www.oracle.com/technology/products/ias/portal/html/same_cookie_domain_with_pdkv2.html
    Cookie Basics
    Web browsers have built in rules for receiving and sending cookies. When a browser makes a request to a web server and the web server returns cookies with the response, the browser will only accept a cookie if the domain associated with the cookie matches that of the original request. Similarly, when a browser makes a subsequent request, it will only send those cookies whose domain matches that of the target web server.
    These rules are designed to ensure that information encoded in cookies is only "seen" by the web server(s) that the originator of the cookie intended. These rules also ensure that the cookie cannot be corrupted or imitated by another server. By default, the domain associated with a cookie exactly matches that of the server that created it. However, it is possible to modify the domain at the time the cookie is created. Relaxing the cookie domain increases the scope of the cookie's visibility making it available to a wider "audience" of web servers.
    For example, if a cookie is created by a.us.oracle.com, it's domain will usually be set to a.us.oracle.com. This means that the browser will only send the cookie to a.us.oracle.com. It will never send it to any other servers. However, if at the time of creation, the domain of the cookie is set to .us.oracle.com, the browser will send the cookie to any server whose domain falls within .us.oracle.com. such as portal.us.oracle.com, provider.us.oracle.com, app.us.oracle.com etc
    Regards,
    Praveen Gudapati

  • Help.... trying to set the browser title for reports called from 9i form

    hello all
    I am attempting to call a 9i report from an oracle 9i form .I am using the following code
    repid := find_report_object('report5');
    SET_REPORT_OBJECT_PROPERTY
    SET_REPORT_OBJECT_PROPERTY (repid,REPORT_type,CACHE);
    SET_REPORT_OBJECT_PROPERTY (repid,REPORT_DESFORMAT,pdf);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'sandy4');
    v_rep := RUN_REPORT_OBJECT(repid,p1_id);
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://----.--------.com:8888/reports/rwservlet/getjobid'|| substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=sandy4,'_blank');
    .. and so on
    The reports RUNS FINE AND POPS UP AS A NEAT PDF internet explorer page !!!
    I WAS WONDERING IF THERE IS ANYWAY TO SET THE BROWSER TITLE OF THIS REPORT THAT POPS UP..
    DO I HAVE TO CHANGE SOME PROPERTY AT THE REPORT END
    OR CAN I SET IT DYNAMICALLY BY PASSING AS A PARAMETER
    FROM MY FORM
    I HAVE SEARCHED EVERYWHERE FOR THIS
    PL HELP
    I WILL REALLY APPRECIATE IT IF SOMONE CUD HELP ME WITH
    THIS
    THANK YOU
    SANDY

    Hi,
    It is possible to set the Document title for PDF output. Open the Reports Property Inspector, under PDF Document Taxonomy, you can set the Document title. But this does not show up in the browser when you open the document.
    thanks,
    Senthil

  • Title of the browser displaying a report output through web.show_document

    Hiya
    We are using Oracle Forms 10g 10.1.2.0.2
    All our Forms and Reports are working well.
    We are using Java Script in Web.Show_Document so that when the report is displayed on the screen in the browser, the browser's toolbar and menubar should not be visible.
    The code looks like this:
    v_url_in := 'reports/rwservlet' || '/getjobid' || v_job_id || '?server='|| 'my_rep_server';
    v_url_out := 'javascript:window.open("'||v_url_in||'", " ", "toolbar=no,menubar=no");self.close();';
    Web.Show_Document (v_url_out, '_blank');
    The above code is working absolutely fine. No issues about this.
    Now when the report opens in a new browser window,the title of the browser window reads as follows:
    http://<hostname>:8889/reports/rwservlet/getjobid1234?server=my_rep_server - Microsoft Internet Explorer
    So rather than displaying the title of the browser window as the URL of our Application Server, we want to show the title to Reports name so that it
    reads as
    'Customer Sales Summary Report - Microsoft Internet Explorer'.
    Does anyone has any idea if it is possible to change the title of the browser window, if so, how ?
    Cheers
    Mayur

    Mayur,
    I'm not a web developer either, however, I've done this kind of thing using the HTP database package - as I mentioned. What you could do is write a database procedure that accepts the URL and the Title as parameters and let the procedure open the URL for you. For example:
    CREATE OR REPLACE PROCEDURE show_url(p_url VARCHAR2, p_title varchar2) AS
    BEGIN
       htp.htmlOpen;
       htp.headOpen;
       htp.htitle(p_title);
       htp.headClose;
       htp.bodyOpen( cattributes => 'onLoad="WinOpen()"');
       htp.bodyOpen;
       htp.script(clanguage => 'javascript',
                    cscript => '<!--
                                function WinOpen() { open("'||p_url||'","_self");
                                //-->'
       htp.bodyClose;
       htp.htmlClose;
    END;I was unable to test this procedure on my Oracle XE install, but it should work on a non-XE database.
    Hope this helps.
    Craig...
    -- If my response or the response of another is helpful or answers your question, please mark the response accordingly. Thanks!

  • How to change the Browser title when report runs on the web?

    Hi folks,
    How to change the title of the browser when I run my report on the web? Iam using Internet explorer and Reports 6i. Is it possible in 6i or 10g reports?
    Could you please tell me the step by step procedure ?
    Right now the browser is displaying the URL when I run the report with format = PDF.
    Thanks.

    It works for me. I don't see why you have a problem with >this code.
    Can you look at the source code of the html >file that was created (so, not in the browser, but in a >text editor). What do the header and title look like?The Html code in the file is same as the above code I specified. Actually I copied the same code and pasted here. But when I run the html file the Title shows up.
    Don't put </html> there. Maybe that helps. I tried this, but it did not work.
    Please let me know is there any way to set it dynamically inside the triggers using SRW built_in.
    Thanks alot.

  • How to transport the text elements in  Reports?

    need answer to this question.
    how to transport the text elements in the reports?
    Edited by: venkata kumar on Feb 18, 2008 1:33 PM

    Hi Venkata,
    Text Elements are a component/part of the SAP script and are not individual ABAP objects within the SAP environment hence they cannot be transported independently.
    You would need to make changes in your text elements in the SAP script which would result in the SAP script being saved under a transport and moving the transport across the landscape would result in the text elements also getting transported.
    In short: Move SAP script - to move text elements.
    Cheers,
    Aditya

  • Issue Tracker app closing the browser window on chart page

    Hi!
    I am walking through the Issue tracker tutorial. I have created page 10 (Issues Resolved by Month) which is the chart page. Everything looked fine until I try to run the page. Then it simply closed the browser window after it authenticates me. Anyone else see this? Any ideas?
    Thanks!

    Probably a problem with your SVG viewer installation. Does it happen on other chart pages as well? What browser/svg viewer version combination are you using? There are some known issues with what's labeled as the current svg viewer on Adobe's website and Firefox.
    Earl

  • Telling the browser that a new page is coming?

    Hi,
    if I already wrote some stuff to the client with out.print(), how can I tell the browser that he should "forget" the previous stuff and that now a new html page is coming? (maybe I want to do this under a certain condition).
      public void doPost(HttpServletRequest request,HttpServletResponse response)
          throws ServletException, IOException {
         //  REPLY
         PrintWriter out = response.getWriter();
         String retHTML = "<html><head><title>Send</title></head>";
         retHTML = retHTML + "<body text=\"#ffffff\" bgcolor=\"#000000\">";
         retHTML = retHTML + "<body text=\"#ffffff\" bgcolor=\"#000000\">";
         retHTML = retHTML + "<table border=\"0\" width=\"100%\" align=\"center\" cellspacing=\"6\">";
         retHTML = retHTML + "<tbody><tr><td align=\"left\" valign=\"top\"><font align=\"center\" color=\"#ffffff\">";
         retHTML = retHTML + "<b>Nachricht:</b></font></td><td valign=\"top\">";
         retHTML = retHTML + "<FORM action=\"http://www.mycgiserver.com/servlet/usul.Chat\" method=\"post\">";
         retHTML = retHTML + "<INPUT name=message><INPUT type=submit value=\"Send\"></FORM></td></tr></tbody></table></body></html>";
         out.println(retHTML);
            // FORGET IT, I WANT TO START ALL OVER
      }

    Hi,
    if I already wrote some stuff to the client with
    out.print(), how can I tell the browser that he should
    "forget" the previous stuff and that now a new html
    page is coming? (maybe I want to do this under a
    certain condition).
    public void doPost(HttpServletRequest
    t request,HttpServletResponse response)
    throws ServletException, IOException {
         //  REPLY
         PrintWriter out = response.getWriter();
    String retHTML =
    "<html><head><title>Send</title></head>";
    retHTML = retHTML + "<body text=\"#ffffff\"
    bgcolor=\"#000000\">";
    retHTML = retHTML + "<body text=\"#ffffff\"
    bgcolor=\"#000000\">";
    retHTML = retHTML + "<table border=\"0\"
    width=\"100%\" align=\"center\" cellspacing=\"6\">";
    retHTML = retHTML + "<tbody><tr><td align=\"left\"
    valign=\"top\"><font align=\"center\"
    color=\"#ffffff\">";
    retHTML = retHTML + "<b>Nachricht:</b></font></td><td
    valign=\"top\">";
    retHTML = retHTML + "<FORM
    action=\"http://www.mycgiserver.com/servlet/usul.Chat\
    method=\"post\">";
    retHTML = retHTML + "<INPUT name=message><INPUT
    type=submit
    value=\"Send\"></FORM></td></tr></tbody></table></body
    </html>";
         out.println(retHTML);
    // FORGET IT, I WANT TO START ALL OVER
    You cant, but fortunately, you havent written anything yet to the client, so you can just empty your retHTML string.
    By the way, when you build strings dynamically, you should really use StringBuffer since this is less memory expensive.
    Ah hang on, you do have a out.println. Then you cant empty it anymore. Only way to do it, is to parse a bit of javascript function that will start a new request e.g.
    out.println("<script>location.href=/webapp/servlet/newRequest");

  • Display scanned image from the image server in the browser in BW Reports...

    Hi All,
    I need to display a scanned image of invoice In BW Reports ,  the information about image ie URL Llink Present in the table TOA01
    u2022
    TOA02
    u2022
    TOA03
    u2022
    TOAHR
    u2022
    TOADL .  I have an idea that we can extract the information from above table to BW and can able to Display the image in WAD Reporting ................
           Can anybody help regarding this .............? 
    Give some idea or material regarding this will be help full ?

    Hi Guru,
      Check the below link, it will be useful for you:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0c8bfa4-7348-2c10-b9ae-bc1ff04a9aeb?QuickLink=index&overridelayout=true
    Thanks
    Pawan

  • Firefox 3.6.13 will not open as the browser to view web pages from within Dreamweaver CS3

    I build websites with Dreamweaver CS3. I am operating on Mac OS 10.4.11 using Firefox 3.6.13 - The problem began on the last software update. I like to use Firefox instead of Safari. Up to the point where I upgraded, I never had a problem but now, when I go to preview/debug in browser, Firefox loads but it goes no farther than my home page ... it will not load the Dreamweaver page preview. Safari works fine. So I think there may be a problem loading 3.6.13 past the startup page.

    Here's the fix. Dump Firefox 3.6.13 and Re-Install Firefox 3.5.16. Problem solved.

  • How to find the xml elements in Indesign pages

    i imported the xml file in vb.net. now i want to find the number of pages and no. of elements. i found out it. but i was not able to find which elements are placed in which page. i want that information. plz kindly help. i am using vb.net.<br />for eg. <ce:figure> placed in which page no., <ce:sections> placed in which page no., etc..,

    I imported the xml file in vb.net. now i want to find the number of pages and no. of elements. i found out it. but i was not able to find which elements are placed in which page. i want that information. plz kindly help. i am using vb.net. for eg. <ce:figure> placed in which page no., <ce:sections> placed in which page no., etc..,

  • How to use the SCOM 2012 Web Reporting page

    Hello all-
       We are on SCOM 2012 SP1.  I just have a general question about reporting.  I know there is a "Reporting" tab in the real, locally installed, SCOM Operations Console software.  That part I get.  I see that there
    are many pre-made reports the for me to run.  For example under Microsoft Server 2008 Operating System (Monitoring) folder there is a
    Performance History report.  When I double click on it, it takes me to the report window where I can click
    Add Object and add a server and then click
    Run.  
    This is pretty simple in concept.   BUT very few people at my company have the full Operations Console installed on their machine.  And as I'm sure you know, the SCOM Web Console does not have a Reporting Tab.  So they have to use the
    SCOM Reporting website to run such reports.  I found that you can get to this page at the url:
    http://<reporting server>/Reports                       
    This does bring up the Reporting console.  On the list I do see a Report.Windows.Server.2008.PerformanceHistory listed. So this surely seems to be the equivalent from my screenshot above.   However, it's not even close to user friendly like
    the Reporting area in the SCOM operations console software. There's multiple fields at the top. All of which are required, and almost none of which have dropbox or other ways to help you fill them in. I have no idea what to put into these boxes or the format
    to use.
    What am I missing here?  Is there a more user friendly interface anywhere?  In an ideal world, I'd really love to have a user interface where I can post the links to a few popular reports, like CPU and Disk Space for example.  Then ideally
    all the user would have to do is select their servers and the time frame and that's all.   Which really is what you do in the Operations Console software.   So isn't is it that easy in the web reporting tool?  Is there a guide or how-to
    section somewhere I'm missing?  Or just a more friendly looking way to get at this information?

    Well, my first screen shot above is squished, so you really can't see it.  But what I'm saying is that the same report in the SCOM software has the level of configuration I want on it.   It allows you to pick the date range and add objects
    to it, then you can click on Run.     However when I access the same report on the reporting console, it has all these extra fields.  None of which I know how to fill in properly.
    I would ultimately like my customers to be able to do exactly that in the web version.  Pick their server and their date range and run it.   There are not likely going to be too many reports like you're mentioning which I can completely configure
    before hand, so they just click on the link to have it run.  Most times I'd like my users to at least be able to select a server name.
    Any idea how I would simplify the web version of the report?  Or why they look so very different?

  • How can I call a Page Process from the Select statement for Report Page

    I'm able to call a javascript using the below:
    img src="#IMAGE_PREFIX#add2.gif" border="0" alt="Icon 4" onClick="javascript:add_connect1('||CPORT.ID||')"
    But Now,
    I'd like to accomplish (2) New things:
    1. instead of using,....... onClick="javascript:add_connect1,
    I'd like to call a Page Process, onClick=
    2. I'd like to be able to call two different processes onClick.
    a. onClick="javascript:passBack('||ID||')"
    b. onClick= <Please see my question #1 above>
    Can someone please help me with the syntax for this,
    If indeed it can even be done?
    Thanks- Gary

    Greg.
    It seems that my situation is the one you describe in you second paragraph, where you mention:
    you could then add the ID column value as a parameter to the javascript functionBut,
    I do not know how to reference the variable in my javascript nor how to use it in my on-demand process.
    If you can hellp me past this last little bump, then I think I will be able to use these skills in Sooo many different areas of my design.
    Here's what I've got so far:
    A. In the select statement I identify the javascript as:
    onClick="javascript:connect_port('<font color=blue>''||ID||''</font>')";
    B. In my javascript I have this:
    <script language="JavaScript" type="text/javascript">
    function connect_port(ID)
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=CONNECT_PORT',0);
    gReturn = get.get();
    get = null;
    </script>
    C. In my on demand function I have this:
    BEGIN
    INSERT INTO CCONNECTIONS_B
    BLDG_ID,CLST_ID,PORT_ID,STRAND_ID
    ) VALUES
    :P2004_BLDG_ID,:P2004_CLST_ID,:P2004_PORT_ID,:P2004_STRAND_ID1
    END;
    You can see that I dont know how to use the value for 'ID' in either the javascript or the On-Process function.
    If you can help me out with this one, Then I can imitate it for the rest.
    -Gary
    Edited by: garyNboston on Apr 3, 2009 6:44 AM
    Edited by: garyNboston on Apr 3, 2009 6:44 AM
    Edited by: garyNboston on Apr 3, 2009 6:45 AM
    Edited by: garyNboston on Apr 3, 2009 6:47 AM

  • Can i trap the URL of the browser??help!!!!

    Hi,
    I want to trap the URL of the browser in my java
    application.Is it possible to do that??
    In other words, can i manipulate the browser (like 'IE browser' available as an activex component for vb users.)
    in java for some urgent requirement? (Or) Is there any customary browser available that can be customized by the user??
    Any suggessions or comments??
    thanx
    aparna

    I want to trap the URL of the browser in my java
    application.Is it possible to do that??Often browsers send an http-header named "Referer" which contains the url from where the request was made.
    In other words, can i manipulate the browser (like
    'IE browser' available as an activex component for vb
    users.)
    in java for some urgent requirement? (Or) Is there any
    customary browser available that can be customized by
    the user??http://www.icesoft.com/

Maybe you are looking for