Cannot use the same page template in panel tabbed

Hi,
I have a panel tabbed with region in each tab. And all the jsff uses the same pageTemplate, but the jsff displays only a blank with no error . So I apply refresh condition on the Region thinking it might be the cause, initially the two region loaded successfully but when I switch back to the first tab it throws Exception
<RegistrationConfigurator><handleError> Server Exception during PPR, #1
java.lang.NullPointerException
at oracle.adfinternal.view.faces.taglib.region.IncludeTag$RelocatedFacet.restoreFacet(IncludeTag.java:900)
at oracle.adfinternal.view.faces.taglib.region.IncludeTag.doStartTag(IncludeTag.java:200)
at oracle.adfinternal.view.faces.taglib.region.DynamicIncludeTag.doStartTag(DynamicIncludeTag.java:109)
With my investigation it shows that same pageTemplate cannot be used in panel tabbed. What seems to be the solution here? Or Am I lacking something on reusing pageTemplate across panel tabbed?
Thanks in advance.

Hi..
I think this is the not error with pages created with the page template.But may be cause some contents in the page.
anyway you will helpful following link
Re: How to resolve Server Exception during PPR, #16 ?
http://andrejusb.blogspot.com/2008/04/record-split-into-table-and-form.html

Similar Messages

  • I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    The template is a document in itself, it is not applied to an existing document whether it is a Pages document or a Word document converted to a Pages document.
    You would need to either copy and paste content, using existing styles, or apply the styles to the converted Word document.
    You can Import the Styles from an existing document and those imported Styles can be used to override the current document's styles:
    Menu > Format > Import Styles
    The process is simplified if the styles use the same names, otherwise you will need to delete the style you don't want and replace it with the one that you do want when asked, then the substitution is pretty straightforward.
    Peter

  • Clusters cannot use the same multicast address

    Hello All,
    Found following error while starting of managed server in weblogic.
    error***
    <Aug 22, 2012 4:40:57 AM GMT-06:00> <Error> <Cluster> <BEA-000166> <Some other c
    luster in this domain is configured to use the same multicast address as OIM_CLU
    STER. Clusters cannot use the same multicast address.>
    error***
    I have three managed server and two cluster.
    CLUSTER NAME >> MANAGED SERVERS IN CLUSTER
    OIM_CLUSTER >> admin server and oim_server1
    SOA_CLUSTER >> SOA_SERVER1.
    I am starting servers through cammand prompt. In cammand prompt i see above error.
    How can i correct the above error ?
    Thanks in advance,
    Manohar

    Change the multicast address: http://docs.oracle.com/cd/E21764_01/apirefs.1111/e13952/pagehelp/Corecoreclusterclusterconfigmulticasttitle.html
    "The multicast address used by cluster members to communicate with each other.
    The valid range is from from 224.0.0.0 to 239.255.255.255. The default value used by WebLogic Server is 239.192.0.0. You should avoid using multicast addresses in the range x.0.0.1
    This address should be unique to this cluster and should not be shared by other applications."
    Some general information on clusters: http://docs.oracle.com/cd/E21764_01/apirefs.1111/e13952/pagehelp/Corecoreclustercreateclusterpagetitle.html

  • Lock the plant so that other user cannot use the same plant.

    Hi Gurus!
    I ahve this small report which shows the pro-rate factor . In this report I need to block the plant or lock it(a soft) lock witha  message that some other user is using the plant so that other cannot use the same plant to post.Following is the report and if soemone can help me out would be very kind enough.I ahve added teh code where validation of plant is doen , so it must be somewhere here the locking should be done as per my thinking . Kindly suggest please.
    *&      Form  get_pro_factor
    *       get pro rate factor from the given
    *       combination of plant/sloc/mat#/period
    form get_pro_factor .
      select single zpr_factor zpr_disp_factor zpr_pipe_net zpr_pipe_gross
      from zprfactor
      into (zprfactor-zpr_factor, zprfactor-zpr_disp_factor,
            zprfactor-zpr_pipe_net, zprfactor-zpr_pipe_gross)
      where zpr_werks = p_werks    and
            zpr_lgort = p_lgort    and
            zpr_matnr = p_matnr    and
            zpr_mjahr = p_mjahr    and
            zpr_monat = p_monat.
      v_subrc = sy-subrc.
      if zprfactor-zpr_factor = 0.
        if c_wp = p_lgort+0(2).
          zprfactor-zpr_factor = 1. " Don C added this routine
        endif.
      endif.
      if zprfactor-zpr_disp_factor is initial.
        if not zprfactor-zpr_pipe_gross is initial.
          zprfactor-zpr_disp_factor = zprfactor-zpr_pipe_net / zprfactor-zpr_pipe_gross.
        endif.
        if zprfactor-zpr_disp_factor is initial.
          zprfactor-zpr_disp_factor = 1.
        endif.
      endif.
    endform.                    " get_pro_factor
    *&      Form  valid_plant
    *       validate whether plant entered in selection screen
    *       exists in database or not
    form valid_plant .
      if not ( p_werks is initial and
                 p_lgort is initial and
                 p_matnr is initial and
                 p_mjahr is initial and
                 p_monat is initial ).
        select single werks from t001w into t001w-werks
               where werks = p_werks.
        if sy-subrc ne 0.
          message e048(zmm) with p_werks.
        endif.
      endif.
    endform.                    " valid_plant
    *&      Form  FIND_MATKL
    form find_matkl .
      select single matkl into v_matkl from mara where matnr = p_matnr.
    endform.                    " FIND_MATKL
    *&      Form  UPDATE_ZPRFACTOR
    form update_zprfactor using p_flag.                         "DEVK903224
      call function 'ENQUEUE_E_TABLEE'
        exporting
          mode_rstable   = c_e
          tabname        = 'ZPRFACTOR'
        exceptions
          foreign_lock   = 1
          system_failure = 2
          others         = 3.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      else.
        select single * from zprfactor where zpr_werks = p_werks
                                       and   zpr_lgort = p_lgort
                                       and   zpr_matnr = p_matnr
                                       and   zpr_monat = p_monat
                                       and   zpr_mjahr = p_mjahr.
        if sy-subrc = 0.
          zprfactor-zpr_rate_flag = p_flag.                     "DEVK903224
          update zprfactor.
        endif.
      endif.
      call function 'DEQUEUE_E_TABLEE'
        exporting
          mode_rstable = c_e
          tabname      = 'ZPRFACTOR'.
    Thanks
    Aarav

    call function 'ENQUEUE_E_TABLEE'
        exporting
          mode_rstable   = c_e
          tabname        = 'ZPRFACTOR'
        exceptions
          foreign_lock   = 1
          system_failure = 2
          others         = 3.
    ENQUEUE_E_TABLEE   } E_TABLEE is the name of the lock object, it starts with character "E".

  • Cannot use the same PO number as a Purged PO ....

    Hello:
    The users want to use the same PO number as a PO that has been cancelled and purged from the system.
    But when they enter the PO number, it gives them an error that the PO number must be unique.
    What is the reason for this functionality ?
    Yesh

    Hello:
    We are on Release 12.0.6 using Buyer Work Center.
    When I purge a PO it removes all the records from PO_HEADER, PO_LINES, etc and puts it in a PO_HISTORY_POS_ALL table .....I do not see the PO in the PO_HEADER_ARCHIVE tables.
    The question is that once a PO is purged, why can't I go and use the purged PO number for another new PO..... since the user is using manual PO numbering scheme, they want to control the PO numbers and they feel that a purged PO number should be available to them for new PO.
    Yesh

  • HT202879 recently saved a Pages document to Dropbox. Now I cannot open it in the new Pages app, and I cannot use the previous Pages version to open it. Attempting to open the document gives me a flash of a page and then the program crashes. Anybody have a

    I can go to Time Machine and find the document, even read it in Time Machine, but when I try to restore this version I get the same crash. I cannot open with Text or RTF. Preview opens a fuzzy version and can save out as a .PDF, but when I try to convert the .PDF to Word I get a bunch of unusual characters. Any help anyone can give would be greatly appreciated

    OK, I've tried all these tips. Here's what I finally have to do: I open Time Machine. I click on the Pages file and open the Pages file in the Time Machine window. (Restore does not work; nothing works).
    When the Pages file opens, I begin taking screenshots using shift-command-3. I take shots of all 200+ pages of this document. The screenshots are saved to my desktop.
    I then move all 200+ screenshots into one folder, because, face it, that's too many icons to work with on one desktop screen.
    Then I select all the screenshots in the folder at once and open them all in Preview. Then I crop every screenshot using command-K, and save using command-S, and then close that image using command-W.
    When I have cropped all 200+ screenshots, I go back through the folder one by one and adjust the color on each one, moving the mid-range color up to about 75% and the sharpness filter up to about 75%, in order to compensate for the fuzzy image of the screenshot. You can't create a searchable PDF with an image that fuzzy. I do this one by one.
    I make sure everything is saved.
    Then I open all 200+ edited screenshots in Preview and print them out.
    Then I take the 200+ pages of this ****** Pages file and run them through my scanner, making searchable 600 dpi PDFs.
    Then I go to each of the 200+ PDFs and highlight the text, copy, and paste into a NEW word processing document.
    If I'd had 300 pages like the last manuscript, or 700 pages like the one before that, I would have created an Automator program to do all that, but hey, this is not the kind of **** you expect from Apple. Really.  It's taken all week.
    So thanks for your help guys, but no other suggestions worked. I tried to force a download of the file from Dropbox, but got the same result. Besides, my Dropbox folder is saved locally on my harddrive, so it's not their fault. In fact, there is no data in the Dropbox folder under this file name, only preview files. Somehow the Time Machine will open the complete Pages file while in Time Macine, but will not import the saved Time Machine version to the working desktop because it is a preview (i.e., not Preview) image. This is a Pages problem, not a Dropbox problem. Pages did not save the full file.
    If anybody knows a better way to do this, I'd like to know about it. If anybody knows whether I will ever be able to trust Pages again, I'd like to know that too.

  • Can Acrobat create a PDF using the same page numbers as FrameMaker?

    I'm using FrameMaker 10 on Windows 7 and Acrobat Pro 9. I know I can set the page numbers after I create the PDF (Advanced > Document Processing > Page Numbering), but is there any way to tell Acrobat (or Distiller) to do this automatically based on the page format set up in FrameMaker? Right now, the cover and inside cover have no page numbers, but I could assign them numbers and hide them. The TOC is lower case Roman numerals, and the rest of the book uses Arabic page numbering. Someone has asked whether we can have the page numbers be reflected in the page field so that when you enter page 10, it takes you to page 10 of the book (where 10 appears in the corner of the page), not the tenth page of the PDF, which might land you in the TOC.
    We produce PDFs as part of an automated system, which is why I can't mess with it after it's been produced.

    There is a FrameMaker plug-in that can do this:
    http://www.frameexpert.com/plugins/pagelabeler/index.htm
    Or, you might consider using PDFMark to add page labels.

  • Cannot use the same credit card for another apple ID

    Hi,
    I recently created an apple ID and used a credit card to itunes store, now I'm trying to sign up another new apple id to itunes with the same credit card but now I'm getting an error, "Payment method declined, please try another method."
    Please help.

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • OTPC Teams and SVN Repo -- cannot use the same SVN repo for different teams

    Can one Subversion repository be used as the versioning repository for two teams?
    I recently installed OTPC Server and client.
    As the administrator, I created a Rally connection, and a Task connection, and a Subversion connection.
    I created a team, and attached the three connections.
    All worked fine.
    Next I created a second team, attaching the three connections.
    In the JDeveloper OTPC client, the Rally and Task connectors work for BOTH teams that I am on.
    The subversion connection will not.
    In the Team Navigator Panel, under the "Versioning" accordion subpanel, for one team it has a SVN connection, for the other team it says "Create Connection."
    When I double-click on it, enter the repository information, and test read access, it says "Access granted."
    When I press Okay to close the dialog it says:
    "A repository connection with the supplied URL already exists."
    Is this an intentional feature that one subversion repository cannot be used on both teams? Or is it a bug? Or is it my error?
    Thanks,
    Arie

    the proxy env is ok in superuser env
    ➜  ~ git:(master) ✗ export | grep proxy
    ftp_proxy=http://proxy.zte.com.cn:80
    http_proxy=http://proxy.zte.com.cn:80
    https_proxy=http://proxy.zte.com.cn:80
    rvm_proxy=''
    ➜  ~ git:(master) ✗ su   
    Password:
    [root@myhost jinleileiking]# export | grep proxy
    declare -x ftp_proxy="http://proxy.zte.com.cn:80"
    declare -x http_proxy="http://proxy.zte.com.cn:80"
    declare -x https_proxy="http://proxy.zte.com.cn:80"

  • Two different site collection cannot use the same Term Set . Is there any solution for this ?

     I can save department site collection as site collection template. Also I can use this template for a new department site collection creation.
    But Managed Meta data Navigation throws the following error
    •Error loading navigation: The Managed Navigation term set is improperly attached to the site. (Correlation ID: 6fa6b19c-820a-001d-b9e0-d939d702050a)

    Hi ,
    this is a limitation. please refer this
    http://social.technet.microsoft.com/forums/sharepoint/en-US/029b7e2e-661f-4ac3-bfcb-eb99b43016f2/the-selected-term-set-is-already-used-by-another-site
    Unfortunately in SP 2013, a termset can only be used by a single site collection for navigation. This is a known limitation. There is no out of the box way to use a central termset to manage navigation across site collections. You need to develop a custom sitemap
    provider to do that.
    Another way to do this is to create termset for each site collection and reuse/pin the terms from the central termset instead of creating duplicate terms. You can script this easily using Powershell. This has some limitations though.
    Also, you can try little customization. Follow this link -
    http://www.mavention.com/blog/building-global-naviga
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Cannot use the same song at 2 different points in a project?

    I have a video with a song playing and then I have a break where I want to be able to hear the video's audio with no song, then start the song back up. I cannot seem to drag the song onto the project in the 2nd spot. Anyone know how to fix this? I considered just rearranging the clips but they're sequential and I really don't want to do that. Thanks! Using iMovie '09

    Drag the song and drop it on the video frame where you want it to start. Do not drop the song in the background.

  • My iphone is disabled and will not connect to itunes, i cannot use the same computer as my last backup

    I disabled my cousins iPhone by pressing random numbers until his iPhone said ; iPhone is disabled connect to iTune ; in red on his front screen. He is in a different province for a month from where he last backed up his iPhone. We tried connecting it to iTunes, but it says it cannot be connected unless the iphones passcode is put in.. which is impossible. Is there some way i can restore his iphone without him losing ANYTHING on it.. like today...

    Put the device in DFU mode and restore.
    When he gets back to the computer that he normally syncs with, he can restore from his backup.  Everything since that last backup will be lost.
    Start apologizing now... keep it up for a few months to several years.
    Then hopefully you will learn to leave other peoples stuff alone.

  • How to get Bursting file to use the same template as selected by user

    I have created an XML publisher bursting control file for a standard Oracle report Direct Debit letter.
    The user wants to be able to select from a number of different letter templates which is ok except that the bursting control file is fixed to use one template.
    How can I get the bursting control file to use the same letter template as selected by the user when running the report ?
    I am using XML Publisher 5.6.3 with bursting patch.

    Try these following, which come to my mind now as of now.
    In the bursting file, you can do the filtering and apply different template..
    <xapi:template type="rtf" location="/usr/template1" filter=".//DIRECT_DEBIT[./parameter_or_element='first_template']"></xapi:template>
    <xapi:template type="rtf" location="/usr/template2" filter=".//DIRECT_DEBIT[./parameter_or_element='second_template']"></xapi:template>
    second option..
    you can replace the element from the xml in the bursting control file.
    ${ELEMENT_NAME}
    can be used in the template name i guess..
    <xapi:template type="rtf" locale=""
    location="xdo://AR.${SHORT_NAME}.en.US/?getSource=true" translation="" filter="">
    </xapi:template>
    But in this short name has to be in XML file...
    I haven;t tried it...wil try it wheni get time..

  • Should I use the same Adobe ID for multiple apps in the same publication?

    I've been sifting through documentation on building apps for the Amazon AppStore and Google Play variants of Android for a few days and came across something I'm not too clear on.
    Here's a clip from the documentation page outlining the publishing process for Android devices:
    You cannot use the same Adobe ID to create multiple viewer apps. Create a different Adobe ID for each app. When signing in to publish folios, use the appropriate Adobe ID.
    The reason I am confused is because I thought renditions were used to send certain content to one set of devices (iPads, for example) and another set of content elsewehre.
    We currently pubish for the iPad and do so at iPad 1 resolution.  Would we add yet another Adobe ID to the mix when creating our Android apps? That sounds like a lot of logging in and out during the production and publishing process.
    Thanks for any insight,
    Steven

    Hey Steven,
    You can certainly use the same adobe Id and make renditions for two different App's ( one for android and IOS and so on )
    The point that you are referring to means that if you have two different App's in the App store with separate content than use different Id's...

  • How do you do anchors - the three ways listed did not work.  I am using the jQuery mobile template 11.  I want to link to a spot on the same page.

    How do you do anchors - the three ways listed did not work.  I am using the jQuery mobile template 11.  I want to link to a spot on the same page.

    How do you do anchors - the three ways listed did not work.  I am using the jQuery mobile template 11.
    You have aroused my curiousity, what are three ways listed that do not work? At risk of being labeled as an ignoramus, could you also tell me where to get the other 10 templates?
    I usually give an element an ID and use that in my link as in
    <a href="#mySpot">Go to my spot</a>
    <div id="mySpot">
    </div>

Maybe you are looking for

  • The Home button on my iPod Touch is stuck in!

    Hi, Dropped my iPod this morning. The home button is stuck in. It was bought for me as a Christmas Present. Is it still covered with warranty? Hope it is, if it's not how much roughly? Or is it just a simple DIY 10 min job? Thanks in advance, Freely2

  • Choppy mp4 playback in iTunes

    Until tonight, I've never had issues with video playback in iTunes. I have a library of mp4 video files that I've played successfully in the past with little or no video quality issues. All of a sudden, none of my videos will play correctly in iTunes

  • Grid snapping in xy graph

    hi  i want to snap the grid in xy graph i am plotting graph using mouse down event now i want to snap grid on mouse down(means if i click any where the point will be entered on nearest grid) regards mazhar Solved! Go to Solution.

  • Adobe Reader/Acrobat Printing Issues - Weird Fonts / Characters - all versions

    Hi everybody. I'm experiencing a very nasty issue with both adobe reader (last version) and acrobat. When I print something with text, i get only strange characters, mostly symbols. I cannot get out of this, I tried everything. Already tried 1) print

  • WebUI: Data sharing / Component Controller

    Hi All, I am working on CRM2007 WebUI, I have two components( comp1 and comp2 ). I want to get the details entered in a view of comp1 to another view in comp2 after navigation, the context node corresponding to the details ( data ) is already in the