Framework page problem

Hi
Accidently the visibility of innerpage of the default framework page has been turned off due to which only the TLN & SLN is visible. I tried using solutions of directly opening content admin page by using :
http://server:port/irj/servlet/prt/portal/prteventname/Navigate/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fevery_user!2fgeneral!2fcom.sap.portal.frameworkpage
and also: loading framework page directly. also the pcdinspector is not wkin.
It says portal runtime error iview can't be displayed.\ I could also not find com.sap.portal.innerpage par
Can somebody help.It is urgent
Thanks in advance.

Hi, Priyanka could you please tell me how did you fixed this because i made an error i delete the framework page that was in use so now when you login reports an exception. How did you fixed???? Thanks in advance

Similar Messages

  • Problem with Absolute Navigation (External Window) and Light Framework Page

    Hi All,
    We are using Light Framework page for the portal devolopment. We have an application including two webdynpro iviews where absolute navigation is used to traverse from first iview to second iview (When user clicks a button on first iview). We are showing the second iview in external window (SHOW_EXTERNAL). When ever i clicks the button to traverse to second iview, i am getting an exception.
    When we are showing it in same window (SHOW_INPLACE), it is working fine. But the iview is appeared in half of the page with scrollbars. It is working fine with default framework page (with both options SHOW_INPLACE and SHOW_EXTERNAL) and dispalyed in original size as mentioned in iview properties.
    Could you please suggest us whether there is any work around for this.
    Thanks,
    Sudheer

    Hi Kathiresan
    I couldn't see the address bar of the window (In which second iview is getting displayed). But i can observe no parameters that i passed from first iview is visible in the view source of the second iview (When SHOW_EXTERNAL is used in absolute navigation). I could see all the parameters in the view source (when SHOW_INPLACE is used for absolute navigation). But i am using the same url for both the options (for SHOW_INPLACE and SHOW_EXTERNAL).
    I doubt about the url being passed when SHOW_EXTERNAL option is used. But when we checked in debug, The correct url is being triggered (Atleast from first iview). Is there any way that could display the second window with address bar. What is making difference  between SHOW_INPLACE and SHOW_EXTERNAL with absolute navigation and light framework page.
    Could someone please suggest.
    Thanks,
    Sudheer.

  • Development problem  about layout of default framework page

    Hello experts,
    I want to do some development for layout of default framework page.
    The layout of default framework page named "framework page layout".
    But I can't find the JSP file of "framework page layout".
    I download and unzip the "com.sap.portal.layouts.default.par.bak" and "com.sap.portal.layouts.framework.par.bak", but both of them not contain the JSP file of "framework page layout".
    Could you please tell me where to get the par or  JSP file of "framework page layout"?
    Best Rrgards,
    Jianguo Chen

    Hi Johan,
    You are right !
    Do you have modified the framework.jsp ? e.g:  set the width to 800 .
    <lyt:template>
    <%
    pageRunMode = epPageVariables.getRunMode();
    if(pageRunMode == RunMode.RUN_TIME){
    %>
        <script>
            document.body.style.margin=0;
            document.body.scroll = "no";
        </script>
    <%}%>
        <hbj:content id="myContext" >
            <hbj:page title="Portal Page">
            <hbj:gridLayout   id="GridLayout1"  width="800" cellSpacing="0">    
                <lyt:container id="frameworkColumn" />
            </hbj:gridLayout>
            </hbj:page>
        </hbj:content>
    </lyt:template>
    Is this code right to change the with of frameworkpage to 800 pixels ?
    Expect your responding
    Best Regards,
    Jianguo Chen

  • PDF file cannot be viewed from OA Framework page.

    Hi all,
    I have developed an OA Framework page which shall present an XMLP report in pdf within the browser.
    When I click on my menu item which opens the oa page, the Open file.. diaglog appears. When I open or save the file (and thereafter opening if) the following error appears: _Acrobat could not open [filename] because it is either not a supported file type or because the file has been damaged._
    I can open the file if I go to the server and copies the output file to my own machine.
    The error that i'm describing is happening on the server and NOT in my development environment. I cannot get it to work at all on my own machine.
    Some facts:
    JDeveloper 9i RUP7
    XML Publisher 6.5.3
    APPS 11.5.10 CU2
    The code:
    package bksv.oracle.apps.bkfnd.bkrepgw.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.common.AppsContext;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    import oracle.apps.xdo.dataengine.Parameter;
    import oracle.apps.xdo.oa.util.DataTemplate;
    import oracle.apps.xdo.oa.schema.server.TemplateHelper;
    import java.io.OutputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.FileInputStream;
    import java.util.Properties;
    import java.util.Calendar;
    import java.text.SimpleDateFormat;
    import com.sun.java.util.collections.ArrayList;
    import com.sun.java.util.collections.Iterator;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletOutputStream;
    import oracle.cabo.ui.data.DataObject;
    * Controller for ...
    public class ReportGenerationCO extends OAControllerImpl
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        String currentDateTime = ReportGenerationCO.now();
        String filename = "/home/appsamba/kkristoff/KKR_TEST_" + currentDateTime;
        //Get application context
        OAApplicationModule am = pageContext.getApplicationModule(webBean);
        AppsContext appsContext = ((OADBTransactionImpl)am.getOADBTransaction()).getAppsContext();
        DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
        HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
        // Set the Output Report File Name and Content Type
        String contentDisposition = "attachment;filename=" + filename + ".pdf";
        response.setHeader("Content-Disposition",contentDisposition);
        response.setContentType("application/pdf");
        //Initilization//   
        try {
          ServletOutputStream os = response.getOutputStream();
          DataTemplate dataTemplate = new DataTemplate(appsContext, "CS", "BKCSSR");
         //Get Parameters
        ArrayList parameters = dataTemplate.getParameters();
         //set Parameter Values as ArrayList of oracle.apps.xdo.dataengine.Parameter
          Iterator it = parameters.iterator();
          while (it.hasNext())
             Parameter p = (Parameter)it.next();
             if (p.getName().equals("P_INCIDENT_NUMBER")) {
              p.setValue("369");
             if (p.getName().equals("P_REPAIR_ORDER_NUMBER")) {
              p.setValue("");
             if (p.getName().equals("P_REPORT_NAME")) {
              p.setValue("Service Request Overview");
             if (p.getName().equals("P_SERVICE_TYPE")) {
              p.setValue("ALL");
         dataTemplate.setParameters(parameters);
          dataTemplate.setOutput(filename + ".xml");
          dataTemplate.processData();
          OutputStream outputStream = new FileOutputStream(filename + ".pdf");
          InputStream inputStream = new FileInputStream(filename + ".xml");
          Properties prop = new Properties();
          // Process template
         TemplateHelper.processTemplate(appsContext, // AppsContext
         "CS", // Application short name of the template
         "BKCSSR", // Template code of the template
         "en", // ISO language code of the template
         "00", // ISO territory code of the template
         inputStream, // XML data for the template
         TemplateHelper.OUTPUT_TYPE_PDF, // Output type of the procesed document
         prop, // Properties for the template processing
         outputStream); // OutputStream where the processed document goes.
          String sByteArray = outputStream.toString();
          byte[] outputBytes = sByteArray.getBytes();
          response.setContentLength(outputBytes.length);
          os.write(outputBytes, 0, outputBytes.length);
          os.flush();
          os.close();
        inputStream.close();
        outputStream.close();
         } catch (Exception e)
            //throw new OAException("An Error has occured master: " + e.getStackTrace().toString(), OAException.ERROR);
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
      public static final String DATE_FORMAT_NOW = "yyyy-MM-dd";
      public static String now() {
        Calendar cal = Calendar.getInstance();
        SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW);
        return sdf.format(cal.getTime());
    Thank you in advance.
    Regards
    Kenneth
    Edited by: Kenneth_ on 2010-07-30 12:58
    Edited by: Kenneth_ on 2010-07-30 13:33

    I have now found a solution to this problem. Thank god!
    See the code below.
    Thank you all for helping me getting this far.
    Kenneth
    package bksv.oracle.apps.bkfnd.bkrepgw.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;n
    import oracle.apps.fnd.common.AppsContext;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    import oracle.apps.xdo.dataengine.Parameter;
    import oracle.apps.xdo.oa.util.DataTemplate;
    import oracle.apps.xdo.oa.schema.server.TemplateHelper;
    import java.io.OutputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.FileInputStream;
    import java.util.Properties;
    import java.util.Calendar;
    import java.text.SimpleDateFormat;
    import com.sun.java.util.collections.ArrayList;
    import com.sun.java.util.collections.Iterator;
    import java.io.ByteArrayOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletOutputStream;
    import oracle.cabo.ui.data.DataObject;
    * Controller for ...
    public class ReportGenerationCO extends OAControllerImpl
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        String currentDateTime = ReportGenerationCO.now();
        String filename = "/home/appsamba/kkristoff/KKR_TEST_" + currentDateTime;
        //Get application context
        OAApplicationModule am = pageContext.getApplicationModule(webBean);
        AppsContext appsContext = ((OADBTransactionImpl)am.getOADBTransaction()).getAppsContext();
        DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
        HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
        // Set the Output Report File Name and Content Type
        String contentDisposition = "attachment;filename=" + filename + ".pdf";
        response.setHeader("Content-Disposition",contentDisposition);
        response.setContentType("application/pdf");
        //Initilization//   
        try {
          ServletOutputStream os = response.getOutputStream();
          DataTemplate dataTemplate = new DataTemplate(appsContext, "CS", "BKCSSR");
         //Get Parameters
        ArrayList parameters = dataTemplate.getParameters();
         //set Parameter Values as ArrayList of oracle.apps.xdo.dataengine.Parameter
          Iterator it = parameters.iterator();
          while (it.hasNext())
             Parameter p = (Parameter)it.next();
             if (p.getName().equals("P_INCIDENT_NUMBER")) {
              p.setValue("369");
             if (p.getName().equals("P_REPAIR_ORDER_NUMBER")) {
              p.setValue("");
             if (p.getName().equals("P_REPORT_NAME")) {
              p.setValue("Service Request Overview");
             if (p.getName().equals("P_SERVICE_TYPE")) {
              p.setValue("ALL");
         dataTemplate.setParameters(parameters);
          dataTemplate.setOutput(filename + ".xml");
          dataTemplate.processData();
          //OutputStream outputStream = new FileOutputStream(filename + ".pdf");
          ByteArrayOutputStream localByteArrayOutputStream = new ByteArrayOutputStream();
          InputStream inputStream = new FileInputStream(filename + ".xml");
          Properties prop = new Properties();
          // Process template
         TemplateHelper.processTemplate(appsContext, // AppsContext
         "CS", // Application short name of the template
         "BKCSSR", // Template code of the template
         "en", // ISO language code of the template
         "00", // ISO territory code of the template
         inputStream, // XML data for the template
         TemplateHelper.OUTPUT_TYPE_PDF, // Output type of the procesed document
         prop, // Properties for the template processing
         localByteArrayOutputStream); // OutputStream where the processed document goes.
          byte[] b = localByteArrayOutputStream.toByteArray();
          response.setContentLength(b.length);
          os.write(b, 0, b.length);
          os.flush();
          os.close();
        inputStream.close();
        localByteArrayOutputStream.close();
         } catch (Exception e)
            //throw new OAException("An Error has occured master: " + e.getStackTrace().toString(), OAException.ERROR);
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
      public static final String DATE_FORMAT_NOW = "yyyy-MM-dd";
      public static String now() {
        Calendar cal = Calendar.getInstance();
        SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW);
        return sdf.format(cal.getTime());
    }

  • Add to favourites disabled when using light framework page

    Hi,
    When using the light framework page our "add to favourites" link is disabled. If we instead use the normal framework page add to favourites in the dropdown menu works. Does anyone have an idea why this could be?
    Regards
    Mattias

    Hi,
    The reason why I decide to use Light Framework, itu2019s because Iu2019m creating an EFP, and Iu2019m using the WPC to publish the content (articles, news, and link list), using the standard Web Forms.
    The problem is, after adding to a WPC Page something so simple like an article (using the Web Form Article), no Portal iView, HTMLB or other stuff included, the preview of the WPC Page using the Default Framework Page is ok, but when using the Light Framework Page, the text in the article doesnu2019t have the correct font-family. It looks like there are some styles missing in the Light Framework Page, that WPC content is expecting.
    Thanks and Regards,
    John

  • NW2004s SPS10: color issues wirh light framework Page

    Hi,
    we're using NW2004s SPS10 and the light framework page. Everything works fine except for the following two issues:
    1.) The color for the personalisation link in the masthead is not the color we've defined in the theme editor. Example: http://img214.imageshack.us/img214/9967/image1ub0.gif As cou cann see, the link is displayed in in the default color for links (blue). How can we change the color?
    2.) The color for the commands in the page title bar doensn't match our requirements. How can whe change the color? Example: http://img440.imageshack.us/img440/1060/image2be9.gif
    Thankds in advance
    Best regards
    Thomas

    Sravanth wrote:
    Hi All,
    I'm facing a problem regarding changing colors in a OA Framework Page. We are using Apps R12. with OA Framework component 12.1.1
    There are 2 urgent Issues for me
    1. To change the Color of the Header Component(Presently it is in Light Blue Color) and To change the Image on the top of the Page(The Image which stands as a back ground for Oracle Logo)(Thick Blue in color)
    only the look and feel of the External Site Visitor Page must be changed. All the other pages should be having the default look and feel of oracle
    Can any one suggest me on how to achieve the required output...
    Thanks and Regards,
    S K SravanthHi Sravanth,
    Take a look at Atul's blog entry for this, he has documented it nicely.
    Thanks
    Shailendra

  • Performance Light Framework page and R/3 transactions

    Hello,
    I have a customer running an enterprise portal 6.0 containing basically R/3 transaction iViews.
    Some of the users of this solution are using fairly low bandwidth and are complaining about performance problems.
    My question is whether there is anything to gain from switching to the light framework page, or is the loading of the R/3 transaction the main bottleneck.
    Has anyone made an estimate of the performance gains obtained by using the light framework page over the standard ones?
    I have just found one such estimate on this forum, indicating a size improvement of almost a magnitude of 8 (100K vs 800K) (thread: portal performance optimization over low speed links)

    Here is the text that explains the disappointing restriction in the release of External Facing Portal with KM in NW04s SP5 and NW04 SP14.
    NOTE 709354 relevant snippet below>>>>>>>>>>>>>>>>>
    Release with restrictions
    Knowledge Management in external facing portals
    Knowledge Management is released in a restricted way for scenarios where the external facing portal capabilities of NW'04 SP 14 are used (i.e. reducing the network load by using the 'light framework page' concept of the portal): - KM iViews will work within the light framework page without erros. However, the network load will not be decreased since the navigation within the KM iViews requires the full range of scripts to be downloaded  from the portal. - Browser Back/Forward navigation within KM will not work in all cases - Indexing of KM content by external search engines (Google, etc.) will not work on all content In addition, the general usage of KM in scenarios where untrusted (e.g. with a self-registered user ID) or anonymous users are accessing an external facing portal is recommended in a restricted way only to avoid upload of malicious files or code (e.g. disable file upload or discussion forum entries). This recommendation is true even if the 'light framework page' concept of NW'04 SP14 is NOT used. For more information on how to enable KM (and Collaboration) for anonymous users, please refer to the following notes. SAP NetWeaver '04 SP11 and below: Note 728106. SAP NetWeaver '04 SP12 and higher: Note 837898.
    ( Changed at 23.12.2005 )

  • Displaying pdf from file system in OA framework pages

    Hi,
    If anyone could help me with this I would be very grateful.
    We have a number of pdfs containing sensitive information, held on our Unix file system in directories not publicly available.
    I want to create an OA framework page which takes the name of a pdf as a parameter and displays the content of that pdf on the user's browser. I cannot simply do a redirect because the pdfs are not publicly available.
    I've found some sample java code that allows you to set InputStream and OutputStream and read the content of the file. However, I cannot see how to redirect the output stream to the browser. Of course, this may be entirely the wrong approach.
    Can anyone suggest anything or point me to some documentation that might help?
    Many thanks,
    Mike Thorn.

    Hi Shiv,
    Thanks for responding. I'm not sure whether I've explained my problem properly, so I've included a code snipet below.
    I've got my head around how to stream the contents of a file to an output string but cannot see how to bolt this into the controller region for an OA framework page. In the code below, you'll see I have a dofile which reads from my D: drive and streams to the System.out. I'm calling this from the processRequest for the page controller but do not understand how to get the output stream into the OAHTMLWebBean (my inclusion of Google works just fine).
    All this Java is rather new to me I'm afraid.
    public static void dofile()
    try{
    OutputStream outStream = System.out;
    String fileName= (String)"index.htm";
    String filePath = "D:\\Jdeveloper\\jdevdoc\\";
    File f = new File(filePath, fileName);
    String fileType = fileName.substring(fileName.indexOf(".")+1,fileName.length());
    byte[] buf = new byte[8192];
    FileInputStream inStream = new FileInputStream(f);
    int sizeRead = 0;
    while ((sizeRead = inStream.read(buf, 0, buf.length)) > 0) {
    outStream.write(buf, 0, sizeRead);
    inStream.close();
    outStream.close();
         catch (Exception e) {
              System.err.println(e);
              System.err.println("dofile error");
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    dofile(); //but how do I egt the output to the OAHTMLWebBean?
    // the following works fine to include Google
    OAHTMLWebBean outRegion = (OAHTMLWebBean)createWebBean(pageContext, HTML_WEB_BEAN, null, "IFRAME");
    outRegion.setHTMLAttributeValue("src","http://www.google.co.uk");
    outRegion.setHTMLAttributeValue("width", "100%");
    outRegion.setHTMLAttributeValue("height", "60%");
    outRegion.setHTMLAttributeValue("title","My title");
    outRegion.setHTMLAttributeValue("name", "My name");
    pageContext.getPageLayoutBean().addIndexedChild(outRegion);
    Many thanks again for any help you can offer this Java virgin,
    Mike Thorn

  • Error occurred while trying to access framework page

    Hi All,
    After we applied sps 12 in to our portal we encounter the following error:
    Error occurred while trying to access framework page: "pcd:portal_content/every_user/general/defaultDesktop/frameworkPages/frameworkpage",The object does not exist or you are not authorized to access it.If this problem persists, contact your system administrator.
    We are not able to to login to the portal with the administrator user (he has the full rights)
    it seems the startpage is missing or corrupt , do you know a solution to generate this again.
    we have Portal 7.0 SP12 , i found the following notes but these prvide no solution.
    Note 856865 - Error occurred while trying to access framework page ( EP6).
    Kind regards,
    Mustapha

    Hi,
    if you can't log as administrator, activate the SAP* emergency user, logon with it, and give a defaultDesktop to administrator or all user.
    Guide :
    http://help.sap.com/saphelp_nw70/helpdata/en/3a/4a0640d7b28f5ce10000000a155106/frameset.htm
    Brad

  • Ajax Framework Page - Customized and Modified

    Dear All,
    I am trying to Customize and Modify the default ajax framework page. So with the help of the [SDN Document |http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70bfe58d-1ed9-2d10-42b6-821d62777d6f?QuickLink=index&overridelayout=true&50599009721255] I tried to implement the same.
    We have SAP NW Enterprise Portal 7.3 and NWDS 7.3 SP05.
    I created the portal Application Project and portal component and added all the needed css, script, html and images.
    Below is the code of my portal component:
    package com.sap.itelo.framework.page;
    import com.sapportals.portal.prt.component.*;
    import com.sapportals.portal.prt.resource.IResource;
    public class ITelOFramework extends AbstractPortalComponent
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
             IResource navigationCSS = request.getResource(IResource.CSS, "css/style.css");
             response.include(request, navigationCSS);
             IResource menuCSS = request.getResource(IResource.CSS, "css/menu.css");
             response.include(request, menuCSS);
             IResource navTreeSource =
             request.getResource(IResource.STATIC_PAGE,"html/framework.html");
             response.include(request,navTreeSource);
             IResource navigationJs =
             request.getResource(IResource.SCRIPT,"scripts/navigation.js");
             response.include(request, navigationJs);
    I deployed the application and created Framework Page Iview based on the deployed application. When I previewed the page, I noticed the navigation Script page is not loaded. That means, I didn't get detailed navigation on the framework page.
    Please tell me where I went wrong and how to resolve this error.
    Regards
    Eben Joyson

    Hi Eben
    I am facing the same problem. Did you find a solution for this?
    Thanks and best regards
    Christophe

  • WPC Runtime Error in Customer Framework Page

    Hi again,
    after successful proof of concept of WPC we have integrated some WPC Pages and iViews in our standard roles. Pages are displayed well with default framework page.
    But using customer specific framework (via portal url alias /portal/mySite and corresponding display rules) we get an error displaying wpc content in runtime:
    Cannot render container : com.sap.engine.lib.xml.util.NestedException:
    Could not load class: com.sap.nw.wpc.km.service. editor.xslt.XsltHelper
    RuntimeStandard required for extension library. -> java.lang.ClassNotFoundException:
    com.sap.nw.wpc.km.service. editor.xslt.XsltHelperRuntimeStandard Found in negative cache
    I have checked SAP Note 1133788 (Com.sap.engine.lib.xml.util.NestedException in WPC) which seems to be related, but adjusting of XSLT Helpers for Editor setting does not fix the problem.
    I mentioned that settings for standardruntime entry (com.sap.nw.wpc.km.service.editor.xslt.XsltHelperRuntimeStandard) should match to customer Alias insted of default portal, but changing these setting won't have any visible result.
    If I use default framework page with customer layout wpc runtime will work - so we have a temporary solution, but we want to avoid changing default framework page.
    Any hints or documentation?
    Many thanks in advance

    Hi Thorsten,
    maybe you should have a look at this [one.|https://forums.sdn.sap.com/thread.jspa?threadID=599765&tstart=0]
    I think it's the same thing that was mentioned in the SAP Note you provided. But maybe you extract some additional hints for yourself out of the posts.
    Let me know, if you manage to solve the problem.
    Regards,
    Marcus

  • Regarding the History,Forward and Backward options in the framework page

    Dear Experts,
        We are using EP 6.0.We are facing a problem with the page title bar iview (HIstory,Back and Forward),when we use in the light framework page .Its not working.Will it have any limitations the same is working for the administrator user.Considering the framework page will it have any limitations?
    Need Help........
    Thanks
    Regards,
    Rudradev Devulapalli

    To save space the downward pointing triangle was removed and you now right-click or click-and-hold the back button to get the history list.
    There is an add-on if you prefer the downward-pointing triangle. I haven't tried it myself.
    [https://addons.mozilla.org/en-US/firefox/addon/backforward-dropmarker/ Back/forward dropmarker :: Add-ons for Firefox]

  • Invoking discoverer from OA framework page

    When i try to invoke the disoverer link from the home page via RUNDISCOVERER function, it works. But if we try the some from OA framwork page, it gave error (page cannot be displayed).
    Is there any other function for this ?

    Is this what counts as "support" for the OA framework?
    I haven't been able to get my report to work properly, but at least I get a different error. In my case, the OA framework is truncating part of the parameter list. But since it looks like I may have gotten one step further, maybe what I did will help you:
    1. Create a the pl/sql function per oracle's note (check metalink)
    2. Create a "link" item in the OA Fwk "page" that calls a function.
    3. For the "destination function" property of the "link" I used the name of the function I defined in the Oracle application.
    NOTE, make sure when you save the Discoverer report in the DB, you use the name in File > Manage Workbooks > Properties for the report name. You also need to run the report in viewer to get the "workbook/wbk" number.
    4. Write code in the page controller to add any parameters to your report. Here's a partial example:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    paramStringBuffer.append("parameters=wsk~28*qp_Project_Number_Parameter~");
    OALinkBean linkDJ =
    (OALinkBean)webBean.findIndexedChildRecursive("LinkToDJReport"); //Name of the link on whateverPG.xml
    if (linkDJ != null)
    linkDJ.setInvokeFunctionParams(paramStringBuffer.toString());
    }//if
    Note the parameters for the actual report should be written with "*" for "&" and "~" for equals.
    5. Make sure the discoverer profile options are set up properly. It sounds like you already did that, but I changed ICX: Discoverer Default End User Layer Schema Prefix and ICX: Discoverer Parameters. The parameters I have are: po=10011110101101111111000&act=Apply Parameters&anlsdf=DD-MON-RRRR&pg=1
    Of course this works fine for everywhere OTHER than the OA framework.
    My issue is that from the OA framework page, when it's run from the server the link apparently only sends one parameter as part of the URL. I'm really disappointed to see you don't appear to have gotten any help for the relatively simple problem you're having. Maybe it's not too late for me to consider another product for my project.

  • Error occurred while trying to access framework page - E P 7.31

    Hi ,
    we are logon to the portal getting the below error
    Error occurred while trying to access framework page: "pcd:portal_content/com.sap.pct/every_user/general/defaultAjaxframeworkContent/com.sap.portal.afpDesktop/frameworkPages/com.sap.portal.AFPpage",The object does not exist or you are not authorized to access it.If this problem persists, contact your system administrator.
    user assign to the super admin role and everyone roles,
    and user assign to the AjaxPortalDesktop
    Portal version : EP 7.3 EHP1
    Thanks
    Srinivas

    Hi Tal,
    All user's are getting same issue ,while accessing  ajax portal desktop
    i have assigned read permissions  to the desktop and framework page .still getting the same
    users are able to logon to default framework page only.(classic).
    Regards
    Srinivas

  • OLS and Framework pages

    Hi,
    we're in the process of implementing OLS (Oracle Label Security) in our Financials environment, following the procedures documented in Metalink Note:234599.1 (Enabling Oracle Label Security in Oracle E-Business Suite).
    All is working fine within Core Applications. We have a bespoke procedure, called from FND_INIT_SQL at site level, which sets the appropriate session label based on the user's responsibility, calling lbacsys.SA_SESSION.SET_ACCESS_PROFILE. The procedure also writes to a bespoke logging table so that we can see who is logged in, what their responsibility is, and what label gets set.
    Whenever a user logs in to Core Apps, we can see that their session label is getting set appropriately, and they can only see those records which have the appropriate label setting. So far so good.
    However, when the user switches to a Framework page, such as viewing notifications, although the logfile indicates that the session label is being set correctly, the user is now able to see all records, regardless of label.
    The fact that the user is able to see all records indicates that the user must be logged in as APPS (as they are the only user who can see all records regardless of Responsibility), but the log would indicate that the session label has actually been set but is being ignored.
    Anyone know what can be done to get OLS to work within Framework?
    Thanks,
    Ben
    PS Apologies for cross-posting - have also posted this to the OA Framework discussion forum.

    OK, we worked it out - thanks to all for your suggestions. Quick explanation.
    Problem as we saw it:
    We'd applied an OLS policy to the PO_REQUISITION_HEADERS_ALL table, but we were still able to see the details of these Requisitions through the Framework
    notifications pages.
    The real problem:
    We'd applied the policy to PO_REQUISITION_HEADERS_ALL but not to PO_REQUISITION_LINES_ALL. Within the
    application you can never view a Requisition Line without querying the
    Requisition Header, so (for our testing purposes) we thought this it was enough
    to only add security to the headers table.
    However, the Framework pages are querying the Requisition Lines directly (the Requisition header ID is stored as
    a workflow attribute) so it was effectively bypassing the security on the
    headers table. Adding the policy to the lines table has fixed the table and we
    can now only see those records we expect to see.
    Hope this helps someone else out in the future.
    Ben

Maybe you are looking for

  • Not able to view icons(.ico) in forms 10g

    Friends, I opened Registry.dat of Application Server 10gR2 which is in RHEL AS 4. the path is.... /u01/app/oracle/product/10.1.2/portalhome/forms/java/oracle/forms/registry/Registry.datthe values i entered in the Registry.dat is ..... default.icons.i

  • [svn:osmf:] 12257: Extending trait resolver related unit tests, and fixing found malfunctions.

    Revision: 12257 Revision: 12257 Author:   [email protected] Date:     2009-11-27 13:01:04 -0800 (Fri, 27 Nov 2009) Log Message: Extending trait resolver related unit tests, and fixing found malfunctions. Modified Paths:     osmf/trunk/framework/Media

  • Adobe X Printing Issue

    Morning, After upgrading to Adobe X on all Windows 7 Enterprise systems, we can no longer print PDFs.    The PDFs state they are sent to the printers but nothing ever appears.  We have tried installing new print drivers, disabled advanced features in

  • Rdp 2008r2 with Nvidia

    hi; I am tryin like 4 days or more make it work with nvidia quadro on rdp for my domain users.. i was found some articles on google but none of them make it work. so many group policy stuff about remote desktop services.but i cant make it work. my us

  • Anyone recommend good earphones for iPhone? I've been using the stock only~

    I'm not sure how many of you were re-energized into music again by getting an iPhone, but boy I've gotten the bug bad and have donated quite a bit to the iTunes library getting great songs one tune by one tune. The problem for me: I can't seem to fin