Go past page 1 in the main java web interface

Hi All,
This may be a pretty basic question but I can't past page 1 on the main webi java interface after refreshing a report.  If I view the report in pdf mode or export the report I have no problem seeing all of the pages.  Also, no problem paging through the report in edit mode.  What settings do I need to change.
Thanks.

Hello,
When I change my view to Draft mode, I see the whole report on one page (there are no multiple pages).
My Webi Preference settings are:
View format:  Interactive
Report panel:  Java Report Panel.
Not sure if this helps.
Regards,
Helen

Similar Messages

  • Crystal 6.0 : How to hide the Page footer and Page Header of the Main Report on the Sub report.

    Post Author: pranay
    CA Forum: Crystal Reports
    Hi ,
    I have a Main report and a Sub report .  When a subreport spans across multiple pages , the page header and page footer of the main report gets displayed along with it . I want to hide the Page Footer and Page Header of the main report when a sub report is displayed . Is there any way it could be acheived in Crystal Report 6.0.

    I am assuming you are talking about the JSControl dropdown menu navigation. The easiest way to hide Community pages is to disable the Below Banner View for that navigation scheme, although it also disables the Subcommunties, Related Communities and Go up to Parent Community links. If you still want these in below the banner menu you could not display Community Pages in the "In this Community" tab and only leave the "Community Members and Knowledge Directly" link in there.
    You would think that it would be better to remove the "In this Community" tab althogether but it is tricky to remove it due to the fact that there needs to be a default horizontal menu displayed all the time. Not all Communities will have a Subcommunities or Related Communities tab so these communities would not display any below banner menus at all if there is no "In this Community" tab, which could be confusing.

  • How to find the main java class file

    I need to write a Java program which MUST know one of these:
    1) the full path to the main java class (the class with "main" method)
    or
    2) access to the main class as byte array.
    If i know (1) then I have no problems reading the main class into byte array, but the main target is still (2).
    Another option is if the main file is in JAR, which again leads to problems, because I cannot access the file in normal way, but I still need access to the exact byte stream.
    Any help is highly appreciated! Thanks!
    <<< Ivan Davidov >>>

    You could try somthing like this in your main-method:
    InputStream is = getClass().getResourceAsStream(<"myModifiedPackageName/MyClass.class">);I don't know if this works though.
    Have a look at the API doc for this method.
    -Puce

  • I can't get the Facebook page to close. the main screen is blocked by the Facebook page so i can't enter the passcode

    I cant unblock a Facebook page which covers the main screen and therefore cannot enter the passcode on my iPad air.

    How can I close Facebook?

  • Is it possible to suppress the Page Header of the Main Report based on the Section Name?

    Hi,
    I am fairly new to Crystal Reports XI.  Is it possible to suppress the Page Header of the Main Report based on the Section Name?  Thanks.

    In the section expert you can enter a formula on the suppress function.
    You just need something to check against if it is section name you say
    {section name} ="Suppressme"
    I have used it more in drill level to display headers based on how far you have drilled into a report.
    Hope this helps
    Eric
    Via Christi Health System

  • [HELP] Need The best Java Web Host

    Hi all,
    I'm looking for the best java web hosting for my commercial web.
    plz, help and show me :(
    thanks for reading
    Pham

    Hi all,
    I'm looking for the best java web hosting for my commercial web.
    plz, help and show me :(
    thanks for reading
    Pham

  • How do I create a new schedule via the Metadata Navigator Web interface?

    Hi All,
    Just wondering if it is possible to create a new schedule via the Metadata Navigator Web interface? What security rights do you need? Is this even possible? I have logged in as SUPERVISOR and It still looks like I can't do it.
    Thanks,
    Erik

    You can't. To create a new schedule, use the Operator or Designer tool.
    Craig

  • How to determine the jspx page name in the EntityImpl Java Class

    Hello, I'm new jdev programmer. I've come across a scenario that I haven't been able to figure out.
    I have a small application with only two pages, but uses the same Entity class. I have two views (One view per page).
    In the protected void doDML() method the Entity class, I want the custom logic I have in this method to fire if the call is coming only from a certain page.
    Is there a way to determine which "Page" is active in this java class, so that I can do a simple if statement to check if this is the page, and then fire my custom logic in the method?
    Thanks

    I'll +1 Frank on this one.
    There's been a few posts in the past few weeks like this, where I see people trying to access the view state in the model or vice-versa perhaps. I'd like to share one of my "tips and tricks" here:
    Pretend that the model (your business components) and your view (the JSF page/ Swing app) are running on different machines (because they can!) You can physically deploy your model and your view on two separate machines; so, if you find yourself trying to get the view state in the model layer, or trying to grab a JDBC connection in the view layer - don't!
    Hope this helps,
    John

  • The Best Java Web Services Technology for Developing Web Services

    Hi,
    I am new to Web services world.
    I read the java web services page . there are more than 6 technologies.
    JAX-WS,
    JAX-RPC,
    JAXB,
    SAAJ,
    JAXP,
    WSIT,
    XWS-Security
    I went through several documents on web services.
    I could not get a clear idea of which technolgy to use.
    Which Java web service technology will be the best to develop web services independant of language, platform.
    or is there any 3rd party implemetations available ? for rapid development of web services.
    Could anyone help me !.
    Thanks in advance.
    Message was edited by:
    Siva.Prakash

    Which Java web service technology will be the best
    to develop web services independant of language,
    platform.
    Java by nature is a cross-platform language, so if your focus is on the need for portability, the choisce of WS should not be a problem. However, each WS is best suited for paricular uses.
    SAAJ, a low-level level API, offers much simplicity, but is not the first choice for programmers, as SOAP (Simple Object Access Protocol)messages need to be constructed piece by piece, making it a quite arduous code to program.
    If you are not familiar with XML, your best bet would be to use JAX-RPC (Java API for XML-Remote Procedure Calls), as it hides the underlying detail from the programmer, in terms of SOAP and XML. The shortcoming with RPC-based WS is that it is "restricted to the local programming experience". Another failing is that assumes there is a network path- a reliability concern.
    If your program will be contacting other services during downtimes, unlike JAX-RPC, JAXM is quite useful. However, your listing did not mention it, so I wont cover it.
    JAXR is a client-side only API that acts as an interface between registries (not referring to JAXP)
    I am not famiiar with JAXB, JAXP, WSIT or XWS-Security..
    or is there any 3rd party implemetations available ?It depends on what platform you are used to. Assuming you are familiarized with the J2EE platform (now changed to Java EE SDK), the NetBeans IDE (either 5.5, 5.5.1 or the latest editiion) is quite useful. I am using 5.5.1, but have found that it is quite buggy, especially when adding WS operations, a core requirement of a WS. if you will be using to devlop a service for an immediate need, you may find the learning curve to be a bit high, in terms of getting to grips with how to use it. (Download link:
    http://www.netbeans.info/downloads/index.php)
    The IBM Autonomic IDE (or AIDE), based on the WSDM standard, includes 3 sub-tools, icluding the IBM Manageability Endpoint Builder which, according to their website, allows individuals to build endpoints to allow manageability interface exposure; Manageable Resource Browser and the IBM Manageability Endpoint Simulator. However, I'm not familiar with this IDE. (Download link: http://www.alphaworks.ibm.com/tech/aide/download)
    The .NET Framework uses the Visual Studio IDE. For an unbiased comparison of J2EE and the .NET Framework in terms of WS, see http://www.webservicesarchitect.com/content/articles/hanson01.asp.
    Apache Axis2, Geronimo and JiBX allows fast development of WS, or so the creators profess.
    The PHP environment- you could try NuSPHERE PHPed. According to one website, with it you can develop a web service in under an hour.
    I hope this was useful to you.
    [Based partly on Topley, K. (2003) [i]Java TM Web Services in a Nutshell: A desktop Quick Reference. 1st ed. California: O�Reilly & Associates, Inc]

  • The best java web server

    Hi.
    I've been doing tests of an application in both Tomcat and Sun Java System Application Server, sometimes Tomcat load the pages faster than the other.
    So, what server provides the best performance (not only the two mentioned, but all)? or what server would you recommend me to use to install the application?

    I wouldn't look at performance only, I would look at stability and management first. Performance is greatly depending on the used hardware. While Tomcat might be a little faster than Sun Application Server (haven't noticed that myself really), it also has fewer capabilities.
    for production environments I would look into JBoss or Websphere. Beware that Websphere is not free, but it is a fine product.

  • Which is the BEST Java Web Service Framework to use?

    Hi all,
    I'm a beginner to Web Services.
    I am planning to implement java web services to make the communication between java(Tomcat Server) and C# client.
    I found list of web service frameworks like,
    1. Apache Axis,(POJO,Axiom)
    2. JSON-RPC,
    3. Java Web Services Development Pack ,
    4. Web Services Invocation Framework,
    5. Xfire,
    6. XML Interface for Network Services. ...
    Please do reply me that which web service framework will be efficient to use.

    But, I want to know which Framework will provide
    better performance?
    better than what?
    Also I want to develope the web service as a standard
    one andeach has it's own quircks and implementation details. Each should be able to generate and accept the same SOAP messages though if you implement them properly.
    It should be able to provide bulk data exchange.
    That will depend in large part on your hardware.
    Please suggest a web service framework
    (Java-based) which will give better performance.again, better than what?
    Better than messenger pidgeons?
    Better than swallows (European or African)?
    And if so, how heavy would the message capsule be? 2 swallows may be able to carry a coconut together, holding it on a piece of string.

  • Firefox 36.0.1 won't load my yahoo mail web page. It seems to load any other web page, just not the Yahoo. mail web page

    I updated to Firefox 36.0.1 and now I cannot get Firefox to open up my yahoo.com mail page. Although the tool bars required some work to get them to look right again, and I had to update Adobe flash software to get videos to play with this version, everything else seems to work with this version of Firefox.

    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies<br> '''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences'''<Enter> in the address bar.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • Which is the Affordable Java Web Hosting Services?

    Hi,
    I am Indie Game Developer and have just developed my first game. It is in Java and is a client - server based game.
    I need to buy a good but affordable Java Web Hosting Plan but I could not find much to my liking. I don't need too much space (like 5GB), a couple of hundred MB's would be fine.
    Does anybody know about an affordable, good Java Web Hosting service? Please let me know if you know.
    Thanks.
    Niteen Hatle

    SoulTech,
    Thank, for replying. I think the couple of hundred MB's I've mentioned is too much. I have searched the internet for more Java web hosting services.
    It seems Java web hosting is costlier than the normal web hosting services. So I have to separate the company website from the game server site.
    Let's see what comes up in my search. If someone has any suggestion about a web hosting service with java support, if they have used it, then please let me know.
    Thanks.
    Niteen Hatle

  • FIM Out of the box Reporting - web interface

    Hi,
    My customer is using standard FIM 2010 R2 reporting. They want to give access to reports to some users without installing SCSM console. Is there any way to give web access (web interface) to these reports?
    Borys Majewski, Identity Management Solutions Architect (Blog: IDArchitect.NET)

    You could use SQL Server Reporting Services (SSRS). It should already be up and running in their environment as part of the FIM 2010 R2 reporting installation. Security in SSRS can be based on AD group membership.
    You might have to look into what the actual SSRS data sources are using for credentials. If they are impersonating the user executing the report, then the user may not have access to the data.
    Thanks,
    Mark
    Mark Creekmore - BlueVault Software http://www.bluevaultsoftware.com

  • The frustrating 'bug' of the oracle java page if you want 64 bit support.

    gosh, i wish there were a way to simply contact the oracle webmaster/webdev team. there isn't, as far as i can find. here's what i just emailed to [email protected] figured i'd share it here, on the outside chance someone at oracle might know how to escalate this:
    hi, this has frustrated me a number of times in the last year or two.
    go to the main java download page:
    http://www.java.com/en/download/manual.jsp
    i want the 64 bit java plugin. hey, there's a link "information about the 64-bit java plug-in", yay! click it, it goes to
    http://www.java.com/en/download/faq/java_win64bit.xml
    <read a bit through it> ah, there towards the bottom of the page, "java for 64-bit browsers, with the following text and link:
    "for downloading 64-bit java click 64-bit manual download". cool! click the link -
    http://www.java.com/en/download/manual.jsp
    it takes me right back to the main download page! it's an infinite loop!
    i eventually just google, and type in 'jre-7u5-win' and it autocompletes to 'jre-7u5-widows-x64.exe download, and the first result returned is to the actual page needed:
    http://www.oracle.com/technetwork/java/javase/downloads/jre7-downloads-1637588.html
    is there any chance y'all could fix this? i'm sure i'm not the only person frustrated by the circular results the main download page provides.
    thanks,
    paul

    Interesting... I have now tested on various Windows versions with various browsers, including FF, IE, and Safari. I even tested on my iPhone. It appears that the page attempts to identify your platform and browser and displays differences in the page based on that result. So, for example, on my iPhone (in Safari) and Linux (with FF) where I know I can't use java or at least one for Windows, the page resembles what you described. However, on all my Windows machines (regardless of browser) the page displays properly.
    So the questions to you is, are you doing this on a Windows machine or something else? If not Windows, this is why you are having the issue. If you want to download a Windows release while running a Linux, Mac, or other platform, you should use the method I described in my previous post of using java.sun.com then choosing Java SE under Top Downloads.
    If you are on a Windows platform, but are seeing this issue, be sure your browser version is current and ensure that you do not have a security setting or security software which may be preventing this page from properly detecting your platforms.
    Edited by: Michael Ferrante (Oracle) on Aug 1, 2012 9:58 AM

Maybe you are looking for

  • After Mavericks upgrade, I disabled iCloud / iCal connection. Now I can't make any changes to my calendar

    I had multiple bad experiences with my iPhone using iCloud and when I upgraded, realized too late, that my computer was now going to be tied to the Cloud. After I recovered from the stress-induced, post-tramatic syndrome from my iPhone / iCloud exper

  • Error in Creating WS Rule (Manual)

    Hi, I face a customizing error reading 'Customizing Error in Work Schedule Rule 2 T2 01 WSRTAP2 ' while creating WS Rule. Details are as below: I. Public holidays - Independence Day, Gandhi Jayanti & Republic Day with fixed data were created & then a

  • School diary in Indesign for DPS

    Does anyone know if you can create a reliable school diary in Indesign for DPS that can be used for daily planning and reminders?

  • Bdc for f-28

    hi can any body tell me how to handle amount field in bdc AMOUNT CONVERSION 1. FIELD NAME :-WRBTR 2. IN FLAT FILE DATA IS :- 9.5 HOW TO CONVERT IT. waiting for responce Edited by: tapan rath on Dec 21, 2007 8:03 AM

  • Garageband 10.0.1 slow

    Anyone else finding the new garageband 10 running slow? Especially when editing... version 6 seems to run fine (still have a copy of it). Dont thinks is my MBP as all my other programs are going good.. Any suggestions??.. Thanks