How to Hide Live Data Page

While accessing a Report, i am getting actual report as well as Live data page. For certain reports(Static data), i need to hide the Live Data page.
Is it possible to suppress it.

hello- In the current version, you cannot disable or hide the little livedata window. Engr is aware of this, and we plan to hide this in next version.

Similar Messages

  • How to hide the data in particular table in oracle 10g

    How to hide the data in particular table in oracle 10g
    i want steps

    If its on Report u can  always hide the column - Keyfigure or Selection - Display - Hide......y do u want to have it on the report if it is to be hided in the first place?

  • How can i up date pages on my mac I have osx 10.6.8

    how can i up date pages on my mac I have osx 10.6.8

    To update Pages, open  > Software Update, if you purchased Pages on a DVD, or open the App Store > Updates, if you purchased it from the Mac App Store.
    Note that the most recent Pages only works in Lion or Mountain Lion, so you can install the most recent version for Snow Leopard or the version you have now, If you want the latest Pages '09 version, upgrade to OS X Mountain Lion

  • How to hide the cover page when printing ?

    Dear all,
    I would like to change printings option for the report S_ALR_87013611.
    I would like to hide the cover page (with parameter) when printing.
    How can I do that ?
    Thanks for your help
    Best regards

    Hi,
    Do you mean the part of the report, which contains the report name, selection date, controlling area,
    Fiscal year, and other selection data?
    If yes, then you could proceed as follows: As the 1SIP-001 (S_ALR_87013611) is a standard report, please copy this report with name in the customer naming range and then delete the title page from the copied report as follows:
    1.  Call GRR2, in the library 1VK place the cursor on report 1SIP-001 and click on the icon 'Copy'
    2.  In the 'To report' field enter (for example) ZSIP-001 and press  'Enter'
    3.  Now double-click on ZSIP-001 to enter the report definition.
    4.  Under 'Extras' -> 'Report texts' -> 'Title page' call the title page.
    5.  Choose 'Text' -> 'Delete' and the title page lines are removed.
    6.  Click on the 'Save' icon to save this.
    7.  Assign the report to a new report group by choosing 'Environment'
       -> 'Assign report group' from the menu and enter ZSIP in the popup,
       confirming the next popup that the report group should be created.
    Now call txn GR55 and execute report group ZSIP with your selection
    criteria and follow the steps to print the report:
    - click 'printer icon' - mouseover text 'Print (ctrl+P)'
    - click OK with dot in 'current report'
    - click OK with dot in 'Print formatted report (page length 59)
    - on print parameter screen in menu, blank the 'SAP cover page' field.
    Regards,
    Greta

  • How to extract Live data from website

    Dear Java Specialist,
    I am wondering how to write a Java program to regularly extract certain important live data such as share price on a daily basis:
    ( i ) This program will need to step through a few submenus, possibly accept certain condition to proceed to where the stock price of the interested company which will be displayed on a particular pane/window.
    ( ii ) These data can come in the form of Excel/HTML/PDF format.
    Could Web Service or Java script do the job? Obviously the simpler a solution the better. Please provide some direction on which technology to a achieve this objective with the least effort. Note that these websites could use any form of technology and hence our solution needs to be technology independent.
    Any assistance would be much appreicated.
    Thanks,
    George

    I tried the following codes but got a connection refused error:
    import java.io.*;
    import java.net.*;
    public class DnldURL {
       public static void main (String[] args) {
          URL u;
          InputStream is = null;
          DataInputStream dis;
          String s;
          try {
    //         u = new URL("http://www.homepriceguide.com.au/auction_results/index.cfm?action=view&suburbORpostcode=2010&st_locale=Darlinghurst&source=apm");
    //         u = new URL("http://localhost:8080/index.html");
               u = new URL("http://www.yahoo.com.au/index.html");
             is = u.openStream();         // throws an IOException
             dis = new DataInputStream(new BufferedInputStream(is));
             BufferedReader br = new BufferedReader(new InputStreamReader(dis));
          String strLine;
          //Read File Line By Line
          while ((strLine = br.readLine()) != null)      {
          // Print the content on the console
              System.out.println (strLine);
          //Close the input stream
          dis.close();
          } catch (MalformedURLException mue) {
             System.out.println("Ouch - a MalformedURLException happened.");
             mue.printStackTrace();
             System.exit(1);
          } catch (IOException ioe) {
             System.out.println("Oops- an IOException happened.");
             ioe.printStackTrace();
             System.exit(1);
          } finally {
             try {
                is.close();
             } catch (IOException ioe) {
    } // end of class definition
    The output from JDK 1.6.0_03 and Netbeans 6.0 on Windows XP platform is as follows:
    Execute:Java13CommandLauncher: Executing 'C:\Program Files\Java\jdk1.6.0_03\jre\bin\java.exe' with arguments:
    '-classpath'
    'C:\Documents and Settings\htran\DnldURL\build\classes'
    'DnldURL'
    The ' characters around the executable and arguments are
    not part of the command.
    Oops- an IOException happened.
    java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.Socket.connect(Socket.java:519)
    at java.net.Socket.connect(Socket.java:469)
    at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
    at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
    at sun.net.www.http.HttpClient.<init>(HttpClient.java:233)
    at sun.net.www.http.HttpClient.New(HttpClient.java:306)
    at sun.net.www.http.HttpClient.New(HttpClient.java:323)
    at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:788)
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:729)
    at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:654)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:977)
    at java.net.URL.openStream(URL.java:1009)
    at DnldURL.main(DnldURL.java:45)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 1 second)
    It appears to have partially worked when u = new URL("http://localhost:8080/index.html");. However, my purpose is to be able to extract data from various pane/screen when u = new URL("http://www.homepriceguide.com.au/auction_results/index.cfm? action=view&suburbORpostcode=2010&st_locale=Darlinghurst&source=apm");Likewise, neither http://www.yahoo.com:80/index or http://www.yahoo.com:8080/index worked. Was it because Yahoo was using a different port all together? If so, what port are they or the industry in general are using?
    Many thanks,
    George

  • Listview Report: how to hide "no data found" message

    Good evening everybody,
    I use the "jquery mobile theme 50" and the "listview report" of it. The report always shows "no data found"-entry  if the source query doesn't return any row.
    Is there a way to suppress this entry in Apex? I can hide "no data found"-entry in html using CSS, but I don't want to have it in the html at all.
    Has someone an idea?
    Thanks a lot!
    Jewgenij

    Thank you very much for the answer!
    Unfortunately it works only for desktop themes but doesn't for jquery mobile Theme 50 :-)
    The help text for the listview's (jquery mobile Theme 50) property "No Data Found Message" is
    Defines the text message that displays when the query does not return any rows. If no value is specified the text of the system message APEX.REGION.NO_DATA_FOUND_MESSAGE is used.
    BR
    JeMo

  • How to hide a data column in a planning Layout

    Hi experts,
    we use BW-BPS and I need some datacolums in planning layout, which should be calculated.
    Rest Volume = Forecast - Actual
    The customer wants to see only the "Rest Volume".
    But i need for calculation Forecast and Actual values, which are available in Infocube.
    Do you know how to hide some colums in planning layout ?
    thanks a lot.

    Write a one line macro in SAPAfterDataPut sub module and check the option in the tab MS Excel Settings in the last screen of the layout.
    Sample macro:
    suppose the column you want to hide is 4.
    columns(4).hidden = true

  • How to hide the data in any object(keyfiguer)

    hi expects,
           What is the procedure to hide the data under an object. In my case i supposed to hide the data which is under Tax column, I don't want to be viewed by others. pl. help me in this.
    thanks
    vijay

    If its on Report u can  always hide the column - Keyfigure or Selection - Display - Hide......y do u want to have it on the report if it is to be hided in the first place?

  • How to store live data of Whiteboard of LiveCycle Collaboration Service?

    I am new user of LCCS i refer sample application of LCCS.But I have problem that i want to show live data of whiteboard with communicated users.
    Thanks in Advance.

    Hi,
    When an user draws a figure, as long as the user has his drawing tool on  the whiteboard canvas, all other users see only the cursor movement. The moment the drawing user puts off his drawing tool from canvas, the drawn shape is visible to all.
    This is being done so as not send an overwhelming number of message over the network at any point and at the same time, serving the purpose of whiteboard.
    What's the use case you are trying to support ?
    Lastly, please be bit more clear with your answer. I was finding it very hard to read grammatically.
    Thanks
    Regards
    Hironmay Basu

  • How do I extract Data from a 1D Waveform into individual channels to be used for calculatio​ns on a live data page

    Hello All,
    I am a fairly new user to Labview and am currently creating a program that: monitors sensor inputs from various CompactDAQ modules (9213, 9217), does error checking, then uses the data in some final calculations, such as averaging etc.  I have put together a small piece of code that includes the main functions that I am trying to accomplish.  Right now I am fairly comfortable with getting the channels set up and assigned, then passing this data into a while loop that continually pulls data from these sensors.  
    I have the calculations vi complete and the channel inputs UI complete, now I am working on the reading and data manipulation side of things.  The 1D Waveform that is coming out of read function is being broken up into the components that I am interested in (String Name and Y data).  It then pass this information out of the loop through a queue which passes it along to the parallel loop below which will perform the error checking and the averaging calculations.  There are some things that complicate this. I have shown 2 sensors in my example, but in the actual program, there can be up to 400 inputs.  The issue is that not all these sensors will be used on every test that the software is used for.  To use the inputs in the test VI as an example:  If I am trying to average these 2 inputs to create a common value, but then on one test, sensor 2 is not there, it needs to recognize this and not use this in the averaging function.  
    So to get right down to it, I want to create something that can look through the clusters of data from the 1D Waveform, determine what these values are, then do the necessary functions to those numbers once they are identified, then pass them onto the Calculations VI where it then displays the usable information for the user.  I think I am having an issue with determing how to sort as everything I have thought of makes me think there has to be an easier way.
    Has anyone encountered this?  Does my explaination of what I am trying to do make sense?  Let me know and I can clarify.
    Solved!
    Go to Solution.
    Attachments:
    Channel Testing.vi ‏43 KB

    As far as functionality goes, I don't see anything wrong. when it comes to efficiency you need to keep some general pointers in mind. These issues which I'm bringing up will not affect your code currently since your array sizes are small but can start creating memory fragmentaion and slow down the software if your array sizes are much larger and the software runs for a long period of time.
    1. Try not to use Build Array. Each time you use a built array labview creates a copy in the memory. Try to initilized your arrays and replace the subsets.
    2. as much as you can try not index arrays or unbundle cluster multiple times. try to perform as many tasks as possbile in one shot. (this was evident in your second loop)
    Besides that it's looking good. 
    I made a few modifications to your code and attached it. I wanted to give you a different take on it as it relates to being able to control the inputs and outputs programitically, if you had a look up table. I didn't make the same modifications to your second loop but I can guide you through what needs to be done if you would like to move in this direction. Again your original code is well done for someone who is new to labview so don't feel like you need to follow the new VI design. Just try to remove the build array and multiple indexing as a good programming habbit.
    www.movimed.com - Custom Imaging Solutions
    Attachments:
    Channel Testing.vi ‏41 KB

  • How to hide addnl data tab from CVO1N Transction

    Dear Friend's
    While creation of Document through CVO1N Transction first we fill up the data in "Document Data" tab then system gives"Addnl Data" tab.
    Here i don't need this "Addnl Data" tab.
    Pls guide me how i can hide the same tab.Give me the steps so i can implement.
    Thanks in Advance.
    Regds.
    Sandeep

    Additonal tab control with the assignment of class type and class in the document type. Removing class type and class will eliminate this additional data tab. In this case if any additional data is required then you will have to manually assigne class type and class within document each time
    However this is not what you want, you want to assign additional data after you have created a document, therefore solution could be make characteristics and class as an optional field so that system does not enforce you to maintain information at the time of creation. Second solution could be thought of as screen variant

  • How to hide committed data in the adf table

    Hi,
    I want to hide the existing data or committed data from the ADF Table when it loads.
    When I press the create button the new record only should show.
    How to do this?
    Any suggestions please.
    Thanks in advance,
    Sundar

    You can use VO.setQueryMode(ViewObjectImp.QUERY_MODE_SCAN_UNPOSTED_ENTITY_ROWS) followed by VO.executeQuery() in this case.
    http://docs.oracle.com/cd/E23549_01/apirefs.1111/e10653/oracle/jbo/ViewObject.html#QUERY_MODE_SCAN_UNPOSTED_ENTITY_ROWS
    alternatively you can also iterate over the rowset and check the entity state of the current row to be STATUS_NEW else remove the row from the collection.

  • How to hide product key page while installing SQL server 2012 ?

    I need to hide the product key page while installing SQL server 2012 enterprise edition
    I was trying to use the following command
    Setup.exe /ACTION=Install /FEATURES=SQL /INSTANCENAME=Intuition /PID=<My product Key.
    /IACCEPTSQLSERVERLICENSETERMS
    The product key was applied , but the install screen is being shown with the Product key i have provided and it is in editable mode.
    Is there any way i can hide this SQL server product key page ?
    The reason is we are including SQL setup in our application and as per Microsoft policy we should not reveal the product key to user. If we are able to hide this from installing page , we can hide the installation command in some exe.
    Note : Customers need fulfledged versions so we can't install SQLExpress.

    Hello,
    Could you try using /Q or /QS parameter?
    http://msdn.microsoft.com/en-us/library/ms144259(v=sql.110).aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to HIDE one data field in BEx???

    Hi all,
    I tried to HIDE one CHAR's value from report but no matter what I did. It still shows in the report. Need advice, please.
    <b>EX: In the FILTER, I drag & drop 'product ID' to filter section and assign certain' value' under it and then run the query. It shows 'product ID with those values I assigned in the report.</b> I need to remove them from the report. How? (I already personized my variant so it won't show in the selection screen)
    Thank you
    J.

    Hi all,
    Thank you for all informaiton. Here is an example for my scenario: I need to put Product ID in the FILTER section and 'restrict' the value- #112, #113 (ie: my sales report will be only for these two products). <b>This report is for products-#112,#113 only so my client doesn't want to see one row show: Product ID: #112, #113 in the report.</b> Any advice that I can avoid this row?  I used 'no display' but it is still there.
    J.

  • Can we hide some data in alv report list,if so how to hide that data.

    in my report for single object type i will have 3 to 4 remarks which comes in the next line, so along with that remarks i must have the same object type but it should be in a invisible mode.

    You can do that by simply sorting the alv display by <b>object type</b>, all the data after that will be group according to its object type and the object type will only be printed once.
    You can make a varian inthe ALV and call it on your code, or insert the code with this (if you use function module for creating ALV):
    information for sort and subtotals
    types: begin of slis_sortinfo_alv,
           spos(2) type n,
             spos like alvdynp-sortpos,
             fieldname type slis_fieldname,
             tabname type slis_fieldname,
           up(1) type c,
           down(1) type c,
           group(2) type c,
           subtot(1) type c,
             up like alvdynp-sortup,
             down like alvdynp-sortdown,
             group like alvdynp-grouplevel,
             subtot like alvdynp-subtotals,
             comp(1) type c,
             expa(1) type c,
             obligatory(1) type c,
           end of slis_sortinfo_alv.
    DATA: l_v_sort TYPE slis_sortinfo_alv.
      REFRESH: ta_fieldcat, ta_sort.
      v_layout-zebra = 'X'.
      v_layout-colwidth_optimize = 'X'.
      l_v_sort-fieldname = 'OBJECTTYPE'.
      l_v_sort-spos      = 1.
      l_v_sort-up        = 'X'.
      l_v_sort-subtot    = 'X'.
      APPEND l_v_sort TO ta_sort.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = v_repid
          is_layout          = v_layout
          it_fieldcat        = ta_fieldcat[]
          <b>it_sort            = ta_sort[]</b>
          it_events          = ta_events[]
          is_sel_hide        = wa_selcrit
          i_save             = 'A'
          is_variant         = spec_layout
        TABLES
          t_outtab           = ft_output
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc NE 0.
        EXIT.
      ENDIF.
    Regards,
    -don-

Maybe you are looking for

  • How to create new user for OBIEE presentation service

    Hello Guys I now only have 2 users on my OBIEE, demo1, demo2.. Now I'd like to create a new user call A and make this new user able to log on to OBIEE presenation service.. So I went to the RPD admin tool and created new user there and gave password.

  • Active Sync process "hanging"

    Hi Experts, Last weekend an Acticve Sync task "hung" for 2 days. The Active Sync is scheduled to start every 24 hours at 8:30am. This morning however its status was "Started, executing" yet nothing was being logged. I would expect something as its lo

  • Crashes for user on selecting preferences and siging in to itunes store

    I have a user that is saying that itunes crashes when she tries to open the preferences and also when she tries to log into the itunes store, it doesn't even get to the preferences window or the login window. She has sent the report to apple and I ha

  • Data Transfer from File to Oracle DB.

    I am trying to insert records into oracle database reading data from a file. The file contains id, name, age , city and I have created a oracle table with id (primary key), name, age and city. Fileadapter is working fine. The bpel flow is receive (fi

  • Linking different reports

    Good Morning Friends I have made couple of reports and i want all to be shown i a single page with links. So when i click link 1 it will redirect me to the report page associated to 1. When i click 2 it will redirect me to the report page associated