Web Page Composer - Displaying & Editing pages gives a runtime error

Hi,
After installing the WPC and placing the initial permission as described in <a href="http://http://help.sap.com/saphelp_nw2004s/helpdata/en/45/f91dd13c7a04aae10000000a114a6b/content.htm">defining permission in the portal content studio</a> end users (with the wpc_editor_role) can nicely create webpages, hence are not allowed to edit these pages (runtime error appears). This though they have onwership rights on the webpage... (The everyone group has "Full control" with end user permission )
By giving them administrator rights the issue is solved and the wpc functions beautifully, but after publishing the page, and taking away the administrator rights they are not allowed to see the page (white screen).
Does anyone have a suggestion to solve this issue...?
thx in advance,
Andre

Issue solved!
As expected the issue was located in the permission settings.
Perhaps helpfull for you also,I resetted all permission and followed the following steps:
1. Are permissions for the PCD entry point set properly?
That is (if you use the recommendation for placing the iViews in a folder in PCD and provide entry point to it) in corresponding PCD folder, give e.g. read ermission to the 'everyone' group.
Activate the End User indicator.
http://help.sap.com/saphelp_nw70/helpdata/en/06/4776399abf4b73945acb8fb4f41473/frameset.htm
2. Are the general permission for WPC set correctly in Portal Content Studio?
http://help.sap.com/saphelp_nw70/helpdata/en/45/f91dd13c7a04aae10000000a114a6b/frameset.htm
3. Are the Initial Permissions for folders set correctly http://help.sap.com/saphelp_nw70/helpdata/en/a6/78aa5c2ab64c1d83db59a25793e9eb/frameset.htm
regards,
Andre

Similar Messages

  • Overview page toggle Display -Edit - Display

    Hi Experts,
    I have a overview page and search page in my component, I select a record from search and navigate to overview page.
    The problem is , I have to get overview page in display or edit mode on the basis of button selected in search page, and there will be a button in overview page which will togle from display mode to edit mode.
    I am getting overview page in edi tmode by default.
    Could you please help me out to toggle the overiew page from Display- edit - Display.
    Thanks in advance
    Madhu Omer

    I am able to make my view by default in display mode by writing code in html page of view:
    <chtmlb:config xml  = "<%= controller->configuration_descr->get_config_data( ) %>"
                   mode = "RUNTIME"
                   displayMode = "<%= controller->view_group_context->is_view_in_display_mode( controller ) %>" />
    and in set_view_group_context method of main window:
    method SET_VIEW_GROUP_CONTEXT.
      IF iv_first_time EQ abap_true AND
           me->view_group_context IS NOT BOUND.
        IF iv_parent_context IS INITIAL.
          CREATE OBJECT me->view_group_context
            TYPE cl_bsp_wd_view_group_context.
        ELSE.
          me->view_group_context = iv_parent_context.
        ENDIF.
      ENDIF.
    endmethod.
    To edit your view , write below code on your edit button:
      DATA: lr_cn  TYPE REF TO cl_bsp_wd_context_node,
            lr_ent TYPE REF TO cl_crm_bol_entity,
            lr_vgc type ref to if_bsp_wd_view_group_context.
    Get current AdminH-Entity
      lr_cn = me->get_context_node( gc_clnobj ).
      check lr_cn is bound.
      lr_ent ?= lr_cn->collection_wrapper->get_current( ).
      CHECK lr_ent IS BOUND.
      IF lr_ent->is_locked( ) = abap_true.
        me->view_group_context->set_all_editable( ).
        lr_vgc ?= view_group_context->get_dependant_vg_context( ).
        lr_vgc->set_all_editable( ).
      ELSE.
        lr_ent->lock( ).
        IF lr_ent->is_locked( ) = abap_true.
          me->view_group_context->set_all_editable( ).
          lr_vgc ?= view_group_context->get_dependant_vg_context( ).
          lr_vgc->set_all_editable( ).
        ENDIF.
      ENDIF.
    Edited by: Madhu Omer on Apr 3, 2011 12:00 PM

  • Interaction Record cannot be displayed, instead it gives an exception error

    Hi Folks,
    In the Web IC, when I click on "Interaction Record" in the Navigation bar, the page is not displayed, instead it gives an exception error:
    Component ICCMP_BT_INR cannot be displayed
    An exception has occurred Exception Class  CX_BOL_EXCEPTION - Access Previously Deleted Entity 
    Method:  CL_CRM_BOL_CORE=>GET_TRANSACTION 
    Source Text Row:  10
    Can someone tell me where to correct this situation.
    Thanks,
    John

    Hi,
    please check this setting:
    SPRO->IMG->Customer Relationship Management->Transactions->Basic Settings->Define Transaction Type
    Define 0010 as default for IR.
    Denis

  • I got an error while updating itunes, it won't run apple mobile device and gives a runtime error, can anyone help ?

    I have Windows Vista Premium (64) installed on my pc, never had this kind of problem before. I mostly use this computer only for itunes...
    I tried to re-install itunes without success, now it gives a runtime error visual c++ runtime library , says to re-install itunes with error 7 (windows error 1114)
    Please help me! thanks !

    I had the same problem. Use the uninstall feature to delete all of the Apple related programs that came with the recent download. There should be 3. Check the dates they were installed to be sure.
    DO NOT DELETE any folders manually unless you want to lose playlists, etc.
    Reboot your computer then reinstall. It worked like a charm for me!

  • WPC pages gives portal runtime error

    hi Experts,
    i am trying to make a WPC page  but while i am in edit page and i click on page layout or publish or finish i am getting portal runtime error in the pop up window.
    i am having WPC_Editor role.
    please suggest what can be the problem here.
    regards
    SS

    Hi SS,
    Please ensure that you have followed all the steps mentioned in this thread.
    GMT wrong in activity report
    Note 1128018 - Portal Runtime Error appears in Web Page Composer pages
    Lastly, you can try refreshing the page and figure out if it works.
    Cheers!
    Sandeep Tudumu

  • Dropdown List in Second Page Not Displaying First Page's Selection

    Hi,
    I have two pages. The first displays an employee hierarchy. So the first page displays several employee ids. When you click Edit, the second page only displays the emp_id because of this code in my dropdown list.
    e.emp_id=:P2_X_EMPDROPDOWN;
    The other dropdown lists do not get populated with the previous page selection. So my questions is how do I get the dropdown lists in page 2 to display the previous page's selection. So the focus of each of the dropdown lists should highlight the previous page's selection.
    Thanks in advance.

    If I understand your problem right, this can be the solution:
    In the list of values definition of the seccond selectlist, you set this:
    select e.LST_NM||' '|| e.frst_nm d, e.emp_id r
    from
    emp_table ethen your default value must be the Id selected on the first page. You can do this as follows:
    Default Value Type is set to PL/SQL Function Body
    Default value is
    return :P1_X_EMPDROPDOWN;

  • Published page different from edit page

    I have been using this program for a while and it has
    happened many times.. i have tried many ways and usually i have to
    just give in to a webpage that is not as aligned as i would like.
    When i finish doing changes on the editing page everything looks
    great. Aligned and in order. I click publish and then the page that
    pops up for my finished product is off... photos that are supposed
    to be centered are back to left alignment... some of the boxes end
    up looking much larger than they were before.?????
    What can i do... is there a update i need.. can someone help
    me with this prob.
    thanx
    D

    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Blank page after clicking Edit Page

    Have just created a new Contribute connection to a new
    website, without any problem. The webpage appears in the Contribute
    window, but when I click 'edit page', the window goes blank. Does
    anyone have any idea what this could be causing this?
    Thanks.

    Hi CoopCookie,
    You have a couple of errors in your table structure (f.i. an
    extra td tag in the class="dataTable" table and the main table is
    closed twice from what I could see quickly). I mean there are tags
    in the wrong places in your table structure. When you correct this
    your page should display fine fine, even in Contribute. Browsers
    are more forgiving to errors then Contribute, so that's why the
    page probably looks fine on the internet.

  • ADF 10.1.2 - a view page follows by edit page and create page

    Hi,
    I am trying to maintain a simple ADF application written by other people who left the organization.
    The structure of the application is that a view page listing the records of a table has edit and create buttons. Both edit and create functionality are currently implemented using an identical set of uix, UIModel and action.java files.
    I want to use different sets of uix, UIModel and action.java for edit and create functionality such that edit and create forms can have different features. I changed structs-config.xml to add a new page for the create form and created forward links to go from the view page to the create page and backward. I created a set of uix, UNModel and action.java files for the create form. When I debug the application, the edit functionality remains the same. I can go from the view page to the create page. But when I click cancel, I get:
    Warning: No Method onRollback and no actionBinding Rollback found
    Also, the create form also picks up some of the fields of the current record (similar to edit) but none of the choice lists work.
    The following extracts from struts-config.xml demonstrate a strange behavoir.
    <action path="/unitsEdit" className="oracle.adf.controller.struts.actions.DataActionMapping" type="view.UnitsEditAction" name="DataForm" parameter="/unitsEdit.uix" unknown="false">
    <set-property property="modelReference" value="unitsEditUIModel"/>
    <forward name="unitsViewLink" path="/unitsView.do"/>
    </action>
    <action path="/unitsCreate" className="oracle.adf.controller.struts.actions.DataActionMapping" type="view.UnitsCreateAction" name="DataForm" parameter="/unitsCreate.uix" unknown="false">
    <set-property property="modelReference" value="unitsCreateUIModel"/>
    <forward name="unitsViewLink" path="/unitsView.do"/> <!-- I manually added this line. But it disappears if I click the backward link in the Page Flow Diagram -->
    </action>
    My questions are:
    1 Does ADF 10.1.2 support multiple local child pages as described above?
    2 If it does, what's wrong with my implementation.
    Thanks in advance,
    Regards,
    Michael

    Hi,
    Actually, this is only a very small extract of an existent large application. We currently do not have resource to upgrade it to 10.3, let alone 11g.
    Please help.
    Regards,
    Michael

  • Two iView(out of three) give Portal runtime error when refresh MSS-UWL Page

    Hi All,
    i am getting the Portal runtime exception in the MSS->Work Overview ->2nd and 3rd iView on this page.
    First iView is the UWL-Task 2)Attendance Overview and 3) Work Orders
    When i refresh this page "refresh" from pae level refresh. i am getting the below error on 2nd and 3rd iView. Last 2 iView is not displaying.
    Portal Runtime Error
    An exception occurred while processing your request
    Exception id: 02:02_12/01/09_0039_38688450
    See the details for the exception ID in the log file.
    i have tryed to search the log also in the default trace but can not find any log with this exception ID.
    Please suggest me on this ?
    thanks in advance!
    Narpal S Sihag

    Hello,
    I have also a problem like this (error 09_0006_808022650)
    Can you describe your scenario ?
    My scenario is
    - Portal MDM connection OK and working tasks in MDM
    - new UWL System (connector type : MdmUwlConnector)
    - new config file (XML)
    - dedicated Role and dedicated iView (copy of standard UWL iView)
    - clearing cache
    Test : No working Tasks in UWL
    - restarting portail application com.sap.netweaver.bc.uwl
    Test : No working Tasks in UWL
    - running wizard (System Admin, system config, UWL customize IView)
    - new field "TEST" to iView
    - portail create the com.sap.pct.erp.mss.001
    Test : No working Tasks in UWL
    Test : standard UWL crashes with error 09_0006_808022650
    After what, we try roolback, removing XML config, connection, dedicated iView, ...
    Still crashing with error 09_0006_808022650
    Now our developpemnt system don't work for UWL ... (using UWL with ECC connection and was OK for ECC)
    Questions : is your scenario similar to this one ? Is anyone can help us ?
    My best thanks
    Vincent

  • Elements 7 reverts back to 'full' edit page, from 'quick' edit page

    Hello, first post here.  When I have 7 on the 'quick' edit page, and open a photo on my windows page using 'open with', it now reverts back the 'full' edit page.  Very frustrating. My Elements 4 doesn't do that. my Elements 7 didn't used to do it.  I recently did the Camera Raw 5-6 update, and that's when it started.
    How do I go back the making edit page stay where I want it to?
    Thank you.

    If I understand correctly, this is what's happening with you:
    You have the Elements 7 Editor open. It's in the Quick Edit mode.
    You have a picture in Windows Explorer, and you are right-clicking on it, selecting Open With, and then picking the Photoshop Elements Editor to open it with.
    When the image opens in Elements Editor, it switches to Full Edit mode.
    Is that correct?
    If so, I cannot reproduce the problem. I tried with Camera Raw version 4.5, and with 5.6, and didn't have any issues. I was trying with JPEG and raw file formats, and there was no change.
    Try manually resetting the preferences, and see if perhaps that helps. To do so, rename or move one of the following folders:
    Windows XP:
    C:\Documents and Settings\<YOUR USER NAME>\Application Data\Adobe\Photoshop Elements\7.0
    Vista:
    C:\Users\<YOUR USER NAME>\AppData\Roaming\Adobe\Photoshop Elements\7.0
    Then open the Editor, which will re-create the preferences files, and see if that helps.
    If that doesn't help, please provide additional information about your computer's configuration as well as a detailed list of the exact steps you are taking when this problem occurs.

  • Web-Disk on OSX 10.9 Give me this error: "Finder got an error: Network file permission error."

    Previously I was using OSX 10.8 and Web Disk was working great.
    Since I upgraded to OSX 10.9 Web Disk Dont Attach to my compputer and give me this ERROR:
    FInder got an error: Network file permission error.
    When I got this ERROR first time I searched GOOGLE and found this link: http://cammodude.blogspot.no/
    And I did:
    To force all connections to be SMB1:
    Open A terminal window
    paste in the following line followed by the return key(should be all on one line): 
    echo "[default]" >> ~/Library/Preferences/nsmb.conf; echo "smb_neg=smb1_only" >> ~/Library/Preferences/nsmb.conf
    What the command does:
    Creates a file called nsmb.conf  in your  home directory at the path ~/Library/Preferences/nsmb.conf.
    Adds directives to force SMB connections to use the SMB1 protocol.  This is slower but stable.
    Then I could use Web Disk on OSX 10.9 after executing this command in Terminal.
    But now I restarted my Macbook and now Im NOT able to connect to Web Disk and get the same ERROR.
    FInder got an error: Network file permission error
    After trying 100 times it attaches 1 time but then show this ERROR:
    Can't get <<class cdis>> "my.server.com/2078" of application "Finder".
    If this happen then I can see the files in Finder and see the Contents and Size of files but if I open a PHP file in BBEdit then it shows BLANK.. But actually it is NOT blank.
    Now Im stuck How can I solve this? All help is highly appericated..
    Thank you so much...

    Hi,
    Make sure to chmod the app, something like this :
    chmod -Rf 777  secure_site_WebDisk.app
    (in my case the CPanel provided the app for my OSx version.)

  • Tab page not display in page

    Hi all
    I have created a tab page that link to a page. However, when I go to that page, the tab is not shown. I notice that the shared component->tabs for the page doesnt have anything.
    Any idea? Thanks!
    Regards
    Aaron

    Aaron,
    Make sure that in the Page Properties, the Standard Tab Set property is set to the tab set you created. If the tab set is not set at the page, level, it won't display.
    Hope this helps
    Doug Gault
    www.sumneva.com

  • Mobile app based on web service data control and VO with VC runtime error

    Hi,
    Jdev 11.1.2.3.0 + mobile extension.
    Windows 7, 64 bit.
    Reproduceable with Android emulator but not on iOS and iOS emulator.
    I can not test on real Android device because we do not have it in our office.
    So I don't know wether this issue is related to android emulator only or to android in general.
    Also not reproduceable by Oracle support.
    I have a VO "Employees" with a VC "department_id = :departmentIdVariable" and exposed the find method for this VO via service interface in AM.
    (see demo video from https://blogs.oracle.com/shay/entry/developing_with_oracle_adf_mobile?utm_source=dlvr.it&utm_medium=facebook).
    In a ADF mobile app I create a parameter form and amx:listView like demoed in the mentioned video.
    Whenever I test this app on android emulator I get the error below.
    Exact the same page used in a second feature works fine.
    I found out that the problem only occures on the first attept (this means when I open the page on the second feature first then this will fail and the subsequent call of the first page will be successfull).
    The problem does not occure when the web service data control does not contain a method based on VC with bind variable.
    [SEVERE - oracle.adfmf.framework - AmxBindingContext - loadDataControlById] Unable to load Data Control testDataControl due to following error: ERROR [oracle.adfmf.framework.exception.AdfException] - Unable to load definition for testDataControl.Types.findEmployeesView1DepartmentIdCriteria.findCriteria.childFindCriteria.findAttribute.
    ERROR [oracle.adfmf.framework.exception.AdfException] - Unable to load definition for testDataControl.Types.findEmployeesView1DepartmentIdCriteria.findCriteria.childFindCriteria.findAttribute
    at oracle.adfmf.metadata.bean.transform.TransformCacheProvider.fetch(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
    at oracle.adfmf.cache.SimpleCache.get(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;(Compiled Method)(Unknown Source)
    at oracle.adfmf.metadata.cache.MetaDataCache.getByLocation(Ljava/lang/String;)Loracle/adfmf/util/XmlAnyDefinition;(Unknown Source)
    at oracle.adfmf.metadata.cache.MetaDataFrameworkManager.getJavaBeanDefinitionByName(Ljava/lang/String;)Loracle/adfmf/metadata/bean/JavaBeanDefinition;(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.<init>(Ljava/lang/String;Ljava/lang/String;Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.VirtualJavaBeanObject.registerAccessorAttribute()V(Unknown Source)
    at oracle.adfmf.dc.JavaBeanObject.registerJavaBean(Loracle/adfmf/metadata/bean/JavaBeanDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.ws.WebServiceObject.registerBean(Loracle/adfmf/metadata/dcx/AdapterDataControlDefinition;Loracle/adfmf/metadata/dcx/soap/SoapDefinitionDefinition;)V(Unknown Source)
    at oracle.adfinternal.model.adapter.webservice.WSDefinition.loadDataControlDefinition(Loracle/adfmf/metadata/dcx/AdapterDataControlDefinition;)V(Unknown Source)
    at oracle.adfmf.dc.GenericJavaBeanDataControlAdapter.loadDataControl(Ljava/lang/String;)V(Unknown Source)
    at oracle.adfmf.dc.ws.WebServiceDataControlAdapter.setDataProvider(Ljava/lang/Object;)V(Unknown Source)
    at oracle.adf.model.adapter.DataControlFactoryImpl.createDataControl(Loracle/adfmf/bindings/dbf/AmxBindingContext;Loracle/adfmf/util/XmlAnyDefinition;Ljava/util/Map;)Loracle/adfmf/bindings/DataControl;(Unknown Source)
    Does anyone has seen the above error ?
    I have recreated the model and mobile app more than 20 times, re-installed Jdev, re-created Jdev settings (integrated WLS & Co), ran the web services on a different machine.
    On my site this problem is 100% reproduceable with android emulator.
    regards
    Peter

    Hi, Peter, this could be an issue with proxy server setting. Are you behind a firewall when you test this?
    iOS simulator would use Mac's proxy setting. Android Emulator has its own proxy setup - it's a bit complicated to get to and varies based on the Android emulator you are using. For 4.1 emulator (you should always use 4.x or above emulators), you would need to go into the emulator itself, and go to settings - Wireless & Networks - click More... - Mobile Networks - Access Point Names. You should see an Access point used by the emulator to simulate network connection. Mine says "T-Mobile US". You click on it, and then you can select the proxy attribute and set it according to your office's settings.
    Hope that resolves the issue.
    Thanks,
    Joe Huang

  • When I try to edit I get a Runtime Error. When I click Okay  lose Elements. Any ideas. Should I uninstall/install. Can  I uninstall/ install?

    I have tried System Restore. Does no good. Can I uninstall/re-install?

    This is a Microsoft problem. Contact them for assistance: http://support.microsoft.com/kb/295539
    mitch86 wrote:
    ... However, for work, I still have to use Microsoft.
    Are you certain about that? There are many alternatives to Office today. Consider
    LibreOffice (donation-supported)
    NeoOffice ($10 but older version is free)
    OpenOffice (completely free)
    In addition to the above I also recommend Apple's Pages ($19.99). All of these options allow you to open, edit, and save Word-formatted documents and spreadsheets. I use OpenOffice and Pages and have been completely Microsoft - free for over a year now. Life is better without Microsoft.

Maybe you are looking for