Page navigation issues

I am not able to move to next page in the ebooks adobe digital version - tried in both version 2 & 3 - please help
I have to go to the main topic of content tab & then click on any topic - again It will not let me scroll furhter down than what i can see on the screen

Hi John,
This will happen if the objects being used to view reports are stored in session variables.  If the objects aren't cleared out, then as long as the session is valid, you will get issues like this.
So to fix this, you will probably need to do the following:
1. Figure out what objects are being stored in session, and what names are given to them.  Some standard session variables are:
oClientDoc
ReportName
oEMF
These are all used in rptserver.asp as well
2. Make sure that you are either clearing out those variables or using differently named ones when you try to view multiple reports.  Or a common tactic is to use arrays and pass the array index as part of the query string.
In any case, you will probably need to modify rptserver.asp for this to succeed.
Shawn

Similar Messages

  • Regarding page-navigation issue:

    Hi,
    In our project front page we are having some 10 forms and some 50 buttons. In the page navigation session i could be able to see only the first 11 buttons. how could i give link from other buttons to other page as those things are not visible on that page.
    and also our project is somewhat big(some 1500 files) having 1 page navigation file. it is something difficult for us to identiffy the page for link . is there any solution to reduce this complexity?.
    one more thing , where can i find components like tabbedpane , messagepane , menus to include in the pages . as
    i like to add as third party . It does not avail in standard jsf components yet.

    Hi,
    I am having a similar issue with page navigation. I have lot of hyperlinks and buttons on one page, but when you open the page in page navigation, the view of all the links is limited and the page does not get the vertical scroll bar.
    From previous forums on this issue I gathered that this is a known problem for a long time and the developers are working on it for almost two years.
    Please let us know when this issue is likely to be fixed.
    Thank you in advance for your reply
    Regards,
    Rajiv

  • Page navigation issue

    HI ,
    We have custom applicaton with 4 OA Train Links and and in 3 rd Link we have added Managed Attachment Button( submit Button using personalization ( that is extending
    /oracle/apps/ak/ucm/axf/webui/ManagedAttachmentButtonRN )
    On Clicking Managed Attachment button it open external application( UCM application) following sequence as  -
    CO behind manage attachment gather information from custom schema where to redirect  and opens external page , with retain AM = true
    Now when we click on Next button without managed attachment button being called it works fine that is UCM application opens  but once Managed attachment button is presssed , on clicking Next  button in OA train it gives following error -
    You cannot complete this task because one of the following
    events caused a loss of page data:
    You accessed this page using the browser's navigation buttons (the browser
    Back button, for example).
    Your login session has expired.
    A system failure has occurred.
    On investigating further AM context of Our custom application is lost , over ridden by AM behind Managed attachment though retainAM = true. how can we stop this ?
    Also I see everytime transaction_id is associated in browser URL every time we navigate from one OAF to another but after clicking manage attachment button this transaction id changes which causes this issue.
    How to hold this transaction id so that even new application is opened transaction id is not lost or in other words AM retain should,be honored
    Please advice.
    Thanks ,
    Ashish

    What's going on in BlankPage1 that might cause this?
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Publish Navigation Bar Entries - page navigation issue

    I have created Navigation Bar entries in a master application and have created them in a secondary application using 'Copy and Subscribe'.
    I changed my entries in the master application and I wanted to republish them.
    Breadcrumb region is currently: Shared Components>Navigation Bar Entries>Edit
    Click on 'Publish NavBar' button and page navigates to "Confirm Publish Navigation Bar", breadcrumb changes to: Shared Components>Templates>Confirm Publish Template
    Click on 'Refresh All'.
    Page now navigates to the "Templates" page. Breadcrumb is Shared Components>Templates.
    I now have to navigate back to the Navigation Bar Entries section to publish my next entry.
    Regards,
    Jon

    Fateh,
    My Navigation Bar Entry has:
    <a href="#LINK#" class="t13NavLink">#TEXT#
    <img src="#IMAGE#" height="#HEIGHT#" width="#WIDTH#" title="#ALT#" />
    </a>My navigation bar has:
    #WORKSPACE_IMAGES#logout.pngJeff

  • Tab Page Navigation Issue

    I've two tab page tab1 and tab2.
    tab2 contains three tab page tabA,tabB and tabC.
    In tab1 i've a commadButton.
    Now, if i click on this commandButton then i want to go into tabB which is inside of tab2.
    Please give any idea how can i navigate in tab2

    Hi puthanampatti,
    Thanks for your reply.
    Here sdi3 means showDetailItem3. I've tried but one error is raised.
    Error is : identifier sdi3 not found.
    My java code is:
    public String showTab() {
    sdi3.setDisclosed(Boolean.TRUE);
    AdfFacesContext.getCurrentInstance().addPartialTarget(sdi3);
    return null;
    i've a showDetailItem(Tab Page) which id is sdi3.
    But error raised.
    How to write it and solve it?

  • Page Navigation Portlet issue

    I am having an issue with a page navigation portlet. I am using adaptive tags and we have actually implemented one custom tag that outputs the current page id.
    I will paste the code here. The issue is that in our portal the pages don't show up in the order we have set in community editor. They are showing up ordered by page id.
    This is being done on 6.0 sp1.
    Here is the code I am using.
    <link type="text/css" href="pt://images/plumtree/common/custom/CIENA/PageNavStandard/MenuStyle.css" rel="StyleSheet" lang="en" />
    <div id="PageNavStandard" xmlns:pt="http://www.plumtree.com/xmlschemas/ptui/">
    <div id="PageNavStandardTitle">Navigation</div>
    <pt:ptdata.currcommunitypagesdata pt:id="compages" />
         <ul id="MenuNav">
         <pt:logic.foreach pt:data="compages" pt:var="commpg">
                   <li>
                   <script>
                        var linkstr = "<pt:logic.value pt:value="$commpg.url" />";
                        var PageReg = new RegExp(/PageID=(\d*)\D/);
                        if(PageReg.exec("<pt:logic.value pt:value="$commpg.url" />")[1] == <pt:ciena.currpageid/>) {
                             document.write('<a href=" + linkstr +  id="ActivePage" ">');
                        } else {
                             document.write('<a href=" + linkstr +  ">');
                        document.write('<pt:logic.value pt:value="$commpg.title"/>');
                        document.write('</a>');
                        //document.write(PageReg.exec("<pt:logic.value pt:value="$commpg.url" />")[1]);
                   </script> <!--
                   <pt:core.html pt:tag="a" href="$commpg.url">
                        <pt:logic.value pt:value="$commpg.title"/>
                   </pt:core.html>
                                  -->
         </pt:logic.foreach>
         </ul>
    </div></a>

    That is most peculiar because we are doing a nearly identical page navigation portlet and we have the ability to shuffle the pages via the community object.
    Are you using your code in publisher or in a custom portlet?
    Perhaps you could try using this code in publisher and see if the results are returned appropriately:
    <span xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <!-- TOKEN NAMESPACE -->
    <pt:namespace pt:token="$$TOKEN$$"/>
    <style type="text/css">
            #pt-portlet-$$TOKEN$$ {
                    background-color: #3366CC;
                    font: verdana,arial,helvetica,"sans-serif";
                    font-size: 10px;
              margin-bottom: 10px;
            #portlet_navigation$$TOKEN$$ td {
              font: verdana,arial,helvetica,"sans-serif";
              font-size: 10px;
              color: #8CB5DE;
         #portlet_navigation$$TOKEN$$ a {
              text-decoration: none;
              color: #FFFFFF;
            #portlet_navigation$$TOKEN$$ a:hover {
              text-decoration: underline;
       #portlet_parent$$TOKEN$$ td {
          color: #8CB5DE;
          text-decoration: none;
          font: bold 10px verdana,arial,helvetica,"sans-serif";
       #portlet_parent$$TOKEN$$ a {
          color: #8CB5DE;
          text-decoration: none;
          font: bold 10px verdana,arial,helvetica,"sans-serif";
       #portlet_parent$$TOKEN$$ a:hover {
         text-decoration: underline;
    </style>
    <!-- get the portal data -->
    <pt:ptdata.currcommunitypagesdata pt:id="commmenu"/>
    <pt:ptdata.editcommunitydata pt:id="commactions"/>
    <pt:ptdata.currparentcommunitydata pt:id="parent"/>
    <pt:ptdata.currentcommunitypageiddata pt:id="currpage" />
    <table id="portlet_parent$$TOKEN$$" width="100%">
       <tr>
          <td colspan="2"> </td>
       </tr>
       <tr>
          <td class="platportletwideheader">
          <pt:logic.foreach pt:data="parent" pt:var="curr">
             <pt:core.html pt:tag="a" href="$curr.url"><pt:logic.value pt:value="$curr.title"/></pt:core.html>/
          </pt:logic.foreach><pt:standard.realmname/>
          </td>
       </tr>
    </table>
    <table cellpadding="0" cellspacing="0" border="0" width="100%" id="portlet_navigation$$TOKEN$$">
       <tr>
          <td>
          <table cellpadding="0" cellspacing="0" border="0" width="100%">
                  <pt:logic.foreach pt:data="commmenu" pt:var="commpg">
                  <!-- currpage will be set to null if it's not the current page -->
             <pt:standard.choose>
             <pt:standard.when pt:test="intsequal" pt:int1="$currpage.PageID" pt:int2="$commpg.PageID">
              <tr bgcolor="#338AF0" width="100%" style="padding-top:2px; padding-bottom:2px;">
                   <td width="15px" align="right"><img src="images/bullet_white_highlight.gif" /></td>
                          <td>
                               <pt:core.html pt:tag="a" href="$commpg.url">
                             <pt:logic.value pt:value="$commpg.title"/>
                        </pt:core.html>
                   </td>
                   <td valign="middle" align="right" style="padding-bottom:5px;"><img src="images/leftnav_arrow.gif" border="0" /></td>
              </tr>
         </pt:standard.when>
         <pt:standard.otherwise>
              <tr width="100%" style="padding-top:2px; padding-bottom:2px;">
                   <td width="15px" align="right"><img src="images/bullet_white.gif" /></td>
                   <td colspan="2">
                        <pt:core.html pt:tag="a" href="$commpg.url">
                             <pt:logic.value pt:value="$commpg.title"/>
                        </pt:core.html>
                   </td>
              </tr>
         </pt:standard:otherwise>
         </pt:standard.choose>
             </pt:logic.foreach>
             <tr>
                <td colspan="3"> </td>
             </tr>
             <!-- RETRIEVE RELATED COMMUNITY LIST AND SUBCOMMUNITY LIST -->
             <pt:ptdata.currrelatedcommunitiesdata pt:id="relcomms" />
             <pt:ptdata.currsubcommunitiesdata pt:id="relcomms" />
         <pt:ptdata.sortcollectiondata pt:id="sortedsubcomms" pt:data="relcomms" pt:sortby="title" pt:sorttype="string"></pt:ptdata.sortcollectiondata>
         <pt:standard.choose>
              <pt:standard.when pt:test="isEmpty" pt:col="relcomms">
              </pt:standard.when>
              <pt:standard.otherwise>
                   <tr><!--dotted line-->
                        <td colspan="3" background="images/dotted_line_leftnav.gif"><img src="images/spc.gif" width="180" height="1" alt="" border="0"></td>
                            </tr>
                   <tr>
                                 <td colspan="3" class="platportletwideheader">Associated Communities</td>
                                                    </tr>
                   <pt:logic.foreach pt:data="sortedsubcomms" pt:var="commpg" >
                                 <tr width="100%" style="padding-top:2px; padding-bottom:2px;">
                             <td height="16"> </td>
                                    <td colspan="2">
                                         <pt:core.html pt:tag="a" href="$commpg.url">
                                              <pt:logic.value pt:value="$commpg.title"/>
                                         </pt:core.html>
                                    </td>
                        </tr>
                            </pt:logic.foreach>
              </pt:standard.otherwise>
         </pt:standard.choose>
         <pt:standard.choose>
              <pt:standard.when pt:test="stringToACLGroup('group=1,771;').isMember($currentuser)" >
                   <tr><!--dotted line-->
                        <td colspan="3" background="images/dotted_line_leftnav.gif"><img src="images/spc.gif" width="180" height="1" alt="" border="0"></td>
                            </tr>
                   <!-- PORTAL TOOLS -->
                   <tr>
                               <td colspan="3" class="platportletwideheader">Portal Tools</td>
                            </tr>
                            <pt:logic.foreach pt:data="commactions" pt:var="element">
                            <tr width="100%" style="padding-top:2px; padding-bottom:2px;">
                        <td height="16"> </td>
                               <td colspan="2">
                                    <pt:core.html pt:tag="a" href="$element.url">
                                         <pt:logic.value pt:value="$element.title"/>
                                    </pt:core.html>
                               </td>
                   </tr>
                            </pt:logic.foreach>
                    </pt:standard.when>
         </pt:standard.choose>
          </table>
          </td>
       </tr>
       <tr>
          <td> </td>
       </tr>
    </table>
    </span>

  • Page navigation buttons not working properly

    Hi,
    I am having a multilingual Java Application (e.g. English, Japanese, French...).  In this application there are reports which display the data using locale parameter (like en_US, ja_JP etc.) to display the data in selected language.
    The problem comes up when I see Japanese reports on English operating system machine and vice versa.
    When I click any button of page navigation it changes the page number but does not load and display the page accordingly.
    It's like when I run the report it displays the first page, then clicking on Next button brings 2 in navigation field but the report  would still show first page, same happens for 3, 4.... all pages. 
    The other navigation buttons also do not work, they change the page number but display only the first page.
    This problem does not occur when I see Japanese reports on Japanese OS machine and English reports on English OS machine.
    However my clients need the first case, Japanese reports should work on English OS machine also.
    Please advise urgenly.

    Hi,
    I resolved the above issue by removing the call to method setProductLocale in jsp file (which was really unnecessary in code as product locale is meant to set languange for crystal report design environment ).
    Actually the problem was I had set locale at two place
                    1. using setLocale method of ReportClientDocument object) after the initialization of report client document object
                    2. using setProductLocale method of CrystalReportViewer object after the initialization of Crystal Report Viewer  object
    After commenting out code for setProductLocale, reports in all languages and all their functionalities started working 100% perfectly.
    Thanks.

  • IWeb Page Navigational Links not working with Internet Explorer 7

    I'm hoping someone can help me out here? My wife created her 1st website using iWeb. I am testing the sites functionality before we publish it. All the pages and links work fine on Firefox and Safari for windows. However, the page navigational links are not working on Internet Explorer 7. All I see is a dot to the left side of where the page links should be. When I start the site in IE7 I get an Active X script warning and I am asked if I want to allow the script to run; to which I reply yes. After I allow the Active X script the dot to the left side of where the page links should be disappears, but the links do not appear.
    Is there anyway to resolve this? Most of the members of her club have Windows based PCs and are using IE7.
    Message was edited by: cviz821

    Yes, Javascript is running on IE7 and other java script applets appear to be working with the exception of the Navbar script.
    It would be great if my wife's friends used a "real" browser, unfortunately 70% of the people on the web use IE7, so this is a real concern if we can't get this to work. I'v seen other iWeb site on IE7 that seem to function fine, so I'm not sure what the issue is here.
    Message was edited by: cviz821

  • Strange Navigation Issues After Using Pop-up Menu

    I have a Blu-ray project I'm working on.  It's 1920x1080 resolution. 
    I have a main menu and then seven sub-menus as chapter-selection menus for three different videos.
    The Main Menu has four buttons.  Button one is a highlights video, button two takes the user to the first of three chapter-selection menus for the first video.  Button three takes the user to the first of two chapter-selection menus for the second video and button four takes the user to the first of two chapter-selection menus for the third video.  I have transitions from the main menu to each of the three chapter-selection menus and back from any of the seven chapter-selection menus to the main menu.
    I also have a pop-up menu with the same four buttons on it as the main menu, except that the top button takes you to the main menu rather than playing the highlights video.
    The problem I have is that all of the navagition works fine when moving around the menus, unless you open the pop-up menu during a video and navigate to one of the chapter-selection menus.  When you do this, it works.  It goes to the first page of the chapter-selection menu for any of the three videos, but if you then go to the main menu from there (each chapter-selection menu has a "back to main menu" button on it), it will play the transition, but then jump you to one of the chapter-selection menus for the video who's chapter-selection menu you were just on.
    For example:  If I play the highlights video and while it's playing I open the pop-up menu and choose Video 3, it will take me to the first chapter-selection menu for Video 3.  If, once that menu comes up, I then scroll down to the "Back to Main Menu" button on that page and choose it, the transition from that menu to the Main Menu will play, but after it finishes, the Blu-ray will jump to the last chapter-selection menu page for Video 3.  If I then navigate back to menu page 1 of the chapter-selection menus for Video 3 and choose the exact same "Back to Main Menu" button, the transition will play again and this time the Main Menu will open up.
    The links for all of the menu buttons are correct, I've check them numerous times.  It just seems that they get screwed up after you've navigated somewhere from the pop-up menu.
    Sorry this is so long, but I wanted to try to explain it as best as possible.
    Any suggestions?
    Thanks.

    Hey Shark.  I read your explanation of what's happening, but I am not sure why you are having that weird navigation issue.  There are a lot of weird anomalies that happen with Encore authored blu-rays, and things that just don't work that really should.  For the price, it does the job, but there are limitations.
    Last year when I started using it for blu-ray authoring, there were non-stop road blocks and things to overcome.
    Check out the documented misery.  It gets better at the end  .
    http://forums.adobe.com/message/3446748#3446748

  • Portlet Page Navigation

    Hi,
    Can we have page navigation in portlet? What I mean to say is, can we have a link inside a WSRP portlet page (A JSF page actually) to navigate to a different JSP/JSF page within the same portlet container? Seems like it only refreshes the same page.
    I am using Oracle WebCenter 11G and created a portlet application and consumed it inside webcenter. The portlet itself works fine, but when I am trying to click on a command link on the same page, it only refreshes the portlet, the actual page transition does not happen.
    Please help.
    Thank you,
    Kanchan Upadhyay

    Hi Yannick,
    I would like to express my gratitude for helping so much!! Following your suggestion ("Performance issue"), I have started using the taskflow thru WebCenter extended application and not as a portlet. I have created .jsff pages (just copied the contents of my old JSPs to them) and created all navigation rules the way a bounded taskflow would expect to be (task-flow-definitions.xml). Finally I created a JSP page and dragged and dropped the taskflow file on the JSP to create a region and use it inside that.
    Now, when I run it, I get the following exception..
    path:/PollingPortlet-PollViewController-context-root spec-version:2.5]] Servlet failed with Exception
    java.lang.NullPointerException
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:234)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2572)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:432)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1066)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1501)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:771)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:710)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:205)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101020 MACHINE = TN-WS722-122 TXID = CONTEXTID = TIMESTAMP = 1269955815847
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 30000
    Can you please guide me on this? I am totally clueless as the exception is not coming from any of my class!!
    Another problem that I am facing is, how can I validate users in such applications? What I mean to say is, if a user is logged in webcenter, and is trying to access my application exposed as a taskflow, that user's login information should automatically propagate in my application. For example, I may have an admin link in my application, that should only be available to admin user's and no other user should be able to check it. I am unable to implement such functionality. If you can guide on this, that would be helpful too.
    Many thanks in advance!!
    Thank you,
    Kanchan

  • CrystalReportViewer page navigation re-hash

    Hi Everyone,
    I've been searching for a solution to the widely discussed page navigation problem when you place all your report binding code in Page_Load().  Lots of references are to older versions of VS and CR so they don't quite fit.  I am running VS2008 and CR2008.  Here's what I've done so far.
    Added an OnInit parameter to point to my initialization routine:
    <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true" DisplayGroupTree="False" EnableDatabaseLogonPrompt="False" EnableParameterPrompt="False"
    OnInit="InitMyReport"/>
    Moved my report binding code from Page_Load to InitMyReport().  The issue I am having is that the paramaters that are being passed via the URL (and fetched via request.querystring("id1")) are not available during the initialization phase so I can't set them.
    Where did I run astray?
    Dave

    OK - I figured this out. 
    First I took all of the report setup code (parameter and selection formula assignment) and put it into its own subroutine called ReportSetup().  This is called only once from page_load as I am checking for postback.
    Next I added a new subroutine called ReportNavigate() to fire when the viewer navigate event is triggered.  This simply calles ReportSetup() which rebinds the report correctly.
    Simple solution.
    Dave

  • Page navigation same portal different portlet applications

    Hello OTN,
    I have a question regarding the best way to perform page navigation using the ActionResponse.sendRedirect method.
    There is one Webcenter Portal, and in it are multiple pages. Each page has portlets from different 286 PortletProducer applications.
    I can copy the url out of the browser and remove the params, and use that string in my controller to redirect me successfully to the home page of the portal.
    However that URL does not reference a non-home page, i.e. one not hooked up to Root.
    I tried constructing the page url by appending the path from pages.xml to the portal context, but got no love from that either.
    If i want to redirect to a different page, what is the best way to specify the page so I can use the sendRedirect method?
    Thanks,
    PowerUser 862605

    if you use sendRedirect method ,then make sure the following conditions are satisfied.
    This method only accepts an absolute URL (e.g. http://my.co/myportal/mywebap/myfolder/myresource.gif) or a full path URI (e.g. /myportal/mywebap/myfolder/myresource.gif). If required, the portlet container may encode the given URL before the redirection is issued to the client.
    some good examples are her -http://www.javadocexamples.com/javax/portlet/ActionResponse/sendRedirect%28String%20location%29.html
    Personally , I haven't checked it .so try this and see what's the results is .

  • IDE bug? Page navigation problem.

    Is there any way to see all of the buttons on a page in the Page Navigation screen?
    When you left click on the page in the Page Navigation screen, it expands, but not enough to see all of the buttons.
    I have a page with a lot of buttons on it, and I can only see the first 10 of them and cannot find a way to scroll down.
    Thanks.

    A bug report has laready been filed for this issue.

  • Page navigation when frame replaced with div

    Hi,
    I am using CF8. I have an existing  apllication using frame to render the pages.
    <frame name="main" scrolling="AUTO" noresize src="mypage.cfm">
    The issue is that layout is not rendering correctly in iPad and therefore
    made some changes to replace the frame with div.
    How can we now include the page navigation given in the src while using the
    div?

    thanks, this is helpful although it produces a slightly different behavior from hat I hand in mind. the forum settings page allows up to 50 posts per page but this gives more.
    Still having 100+ posts on a single page is not the most convenient arrangement and my original request stands. One needs a built in way to jump to more than one page ahead.
    Message was edited by: V.K.

  • Navigation Issue on HC 91, Tools 8.51, SQL Server 2008 on Windows 2008

    Hi Guys,
    I installed HCM 91 -Tools 851-SQL Server 2008 on Windows 2008 server. App server running perfectly, initiated web server fine.
    When I login in n-tier/web via PS userid, navigation to Panels are fine but when I try to click on any page, it gives error IE exception at the bottom – “Error on the page”, page does nothing, no searches and does not display the page.
    I tried installation from ground zero the 3rd time last night, followed all the steps and stuck at this point.
    I am wondering if anyone has encountered these issues.
    I appreciate any pointers.
    Thanks in advance.
    Cheers
    -Vinay

    Same question, same answer :
    http://peoplesoft.ittoolbox.com/groups/technical-functional/peopletools-l/navigation-issue-on-hc-91-tools-851-sql-server-2008-on-windows-2008-server-3837147
    Nicolas.

Maybe you are looking for

  • How can I buy more than one item at a time?

    How can I buy more than one item at a time i iPhote fx a book and a calander? It would be nice to place one order and only pay for the shipping once!

  • My iPhone 5 (ios 7.0.4) has a horrible battery. How can I fix this?

    For a few months now, my phone keeps dying at 20, 30, 40, 50, 60, and today at 70 percent. I don't know why it's been doing this (at first I thought it was from the cold, but it's almost May now and I don't live in a very cold climate). There's been

  • Tomcat Doesnt display images in browser

    HI frnds, i m hving some prblm wid tomcat server.whenever i display my menu using tomcat 4.1, it displays the text but doesnt display the images, i hv checkd all the paths are correct.How to solve this prblm Looking frwrd for an early reply

  • How to compare the simulation version

    Dear Experts, For Operative Projects we can create Simulation Versions (CJV1 / CJV4) & Project Version (CN72). We can compare different Project Versions with Operative Project (S_ALR_87013539 / 38). Similarly can we compare Simulation version with Op

  • Help with Group By and Two Sums

    I have a table of transactions, debits and credits. The amount of the transaction is stored as a positive number. A separate field tells if it is a debit or credit. Each transaction contains a foreign key to a facilitie record. I need to write a quer