Disableling personalization without WDDISABLEUSERPERSONALIZATION

Hi,
we wanna disable the personalization in our WDs (those with right mouse click). Is there a global parameter to be setted in the portal config? Or do we have to use the parameter WDDISABLEUSERPERSONALIZATION in each WD (that means that we have to change a couple of WDs)?
Greetings,
Steffen

>
Steff wrote:
> Hi,
>
> I tried the appl WD_GLOBAL_SETTING with the result that I still can delete tables and tabstrips etc.. So I guess that Vijay is right and I have to change a couple of WDs.
>
> Regards,
> Steffen
That should not be the case. WD_GLOBAL_SETTING should have the same effect as setting the value at the individual application level.  Are you sure that you can't still delete tables and tabstrips if you set the WDDISABLEUSERPERSONALIZATION at the application level?  Either way you might want to report this behaviour to developement via a service note so that they can look into it.  It doesn't sound consistent.

Similar Messages

  • Java WD personalization without portal

    Hi,
    it is possible to personalize a Java WD application within the portal enviroment, for example via the preview mode of an iView. The resulting personalization data is stored within the PCD. My question is: Is it also possible to personalize a Java WD application which is executed outside a portal enviroment? If it is possible, where the personalization data is stored?
    Thank you very much in advance, Sven

    Without Portal no personalization.
    Armin

  • Page personalization without page title bar

    Hello,
    we have removed our page title bar in order to save space.
    Is there any way to still personalize a page, e.g. through a direct URL to the personalization of a given page, or do I have to enable the page title bar again?

    I imagine it might be possible if you...
    1. Take the relevant code from the Page Title Bar iView (which does not have the source code - I will leave it up to you how you want to "get" the source - not sure of SAP's stance on decompiling).
    2. Then create a java iView with the relevant code in it that will perform the personalize functionality. Add a link in the page to launch the personalize function. This link will launch the "personalize" page/code (you will see this in the JAR). You can heavily leverage the existing code. FYI, the iView utilizes the abstract portal component instead of a JSP page. If you are not used to using these, it may be a little confusing at first.
    3. Add this iView to a page; then save the page as a template. Then use the template for all of your pages.
    It might take a some effort to make it work with the page. I just don't know. In the default way it works, the page title bar iview is outside the page that it relates to. The option I am suggesting, the iview is within the page.
    I haven't done this, but I have created my own page title bar iview so I could add an additional hyperlink in it. When I added it to the framework page, the back and forward links would not enable/work unless I added it above the already-existing page titlebar iView (in the layout), or removed the already-existing iView.  I did not end up using the modified iView, so I never took the time to figure out why.
    Now that I think about this, the above option would probably "push" down your content visually anyway(thus you lose space) unless you move it to Dynamic Navigation instead of the page template, so it may be better just to add back the original iview to the framework page.

  • Personalization Scheduling Engine does not start -- Bug?

    Hi there. I don't know if it's the correct forum to post my question. If I'm wrong I ask you to redirect to
    the correct one.
    I've correctly installed Oracle AS 10g release 1 according to the following topology, on the production
    environment :
    Server 1 --> Here we are three oracle homes : Identity Management , Middle Tier (Portal and Wireless) ,
    Personalization.
    Server 2 --> MetadataRepository
    My problem focuses on Personalization. I advise that in my developing environment I've not got any problem.
    So , I've installed Oracle AS Personalization without wornings. I've created RE,MOR and MTR schemas as the
    procedure dictates. Problem's that Personalization Scheduling Engine does not start. It should start
    automatically but It didn't. So I tried to start it by hand following "Oracle Application Server Hi there.
    I don't know if it's the correct forum to post my question. If I'm wrong I ask you to redirect to the
    correct one.
    I've correctly installed Oracle AS 10g release 1 according to the following topology, on the production
    environment :
    Server 1 --> Here we are three oracle homes : Identity Management , Middle Tier (Portal and Wireless) ,
    Personalization.
    Server 2 --> MetadataRepository
    My problem focuses on Personalization. I advise that in my developing environment I've not got any problem.
    So , I've installed Oracle AS Personalization without wornings. I've created RE,MOR and MTR schemas as the
    procedure dictates. Problem's that Personalization Scheduling Engine does not start. It should start
    automatically but It didn't. So I tried to start it by hand following "Oracle Application Server
    Personalization Administrator's Guide 10g(9.0.4)". Specifically , when I try to start the scheduling engine
    with the command "execute OP_START_ENGINE" in the MOR schema I obtain an error linked to DBMS_JOB.run()
    method. Digging deep into the Oracle alert log file I found this brief linked to the error executin the
    script :
    Thu Apr 14 17:57:28 2005
    Errors in file E:\MetadataRepositoryHome\admin\asdb\udump\ORA01860.TRC:
    ORA-12012: error on auto execute of job 119
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.Exception: Scheduler Workflow Error:
    9756161113494248343 java.lang.NumberFormatException: 9756161113494248343
    at java.lang.Long.parseLong(Long.java)
    at java.lang.Long.parseLong(Long.java)
    at oracle.dmt.op.util.messagelog.MessageLog.getExecutionContextID(MessageLog.java:857)
    at oracle.dmt.op.workflow.SchedulerWorkflowClass.main_method(SchedulerWorkflowClass.java:101)
    at oracle.dmt.op.workflow.SchedulerWorkflowClass.SchedulerWorkflowJava(SchedulerWorkflowClass.java:91)
    ORA-06512: at "MOR_PORTALE.DMT_CLIENT_IDARWIN_WORKFLOW", line 0
    ORA-06512: at line 1
    So as the main error is "NumberFormatException" , I executed reverse engineering decompiling two Oracle
    classes , just to know the origin of the error :
    oracle.dmt.op.util.messagelog.MessageLog and
    oracle.dmt.op.workflow.SchedulerWorkflowClass
    After simple tracing I think I reached the origin and I shocked myself to see it!! The problem starts in the
    main_method of oracle.dmt.op.workflow.SchedulerWorkflowClass, i.e. :
    private void main_method()
    throws Exception
    String event_msg_args[];
    traceMsg += "Start";
    moduleID = "SchedulerWorkflowClass.main_method";
    traceMsg += "-executionContextID";
    executionContextID = MessageLog.getExecutionContextID();
    The problem resides in the getExectiongContextID() method of oracle.dmt.op.util.messagelog.MessageLog class.
    Code of this method is this :
    public static long getExecutionContextID()
    String hostIP = null;
    try
    InetAddress host = InetAddress.getLocalHost();
    hostIP = host.getHostAddress();
    catch(UnknownHostException ex) { }
    StringBuffer buf = new StringBuffer(20);
    if(hostIP != null)
    for(StringTokenizer st = new StringTokenizer(hostIP, "."); st.hasMoreTokens(); buf.append
    (st.nextToken()));
    buf.append((new Date()).getTime());
    String tmpString = buf.toString();
    String idString = tmpString.replace('?', ' ');
    idString = idString.trim();
    int len = idString.length();
    if(len > 19)
    idString = idString.substring(len - 19);
    long id = Long.parseLong(idString);
    return id;
    Simply , code obtains IP address of the Host , concats it with the current time and if the length of the
    result string is longer than 19 it obtains substring of (len -19) length!! I think , Oracle programmer
    thought to prevent NumberFormatException with the control "if(len > 19)
    idString = idString.substring(len - 19);"
    but that's strange , very strange!! In fact , in my case(with my IP Address 160.97.*.*) , method outputs
    NumberFormatExceptio 'couse long "id = Long.parseLong(idString);" is not able to convert the String
    "9756161113494248343" to java.lang.Long!!! 'couse it exceedes maximum value ( 2EXP(63)-1)!! So , I think
    it's bug but I don't know how to solve it!! Problem's in method's semantic. It should control that the
    String it creates is lower that the maximum value allowed for a long , not its length lower or equal 19!!!
    I mean , I cannot modify Oracle Java Class file.
    With kind regards,
    Nicola

    Fix in OracleAS 10.1.2.0.2 if you file a bug referencing bug 4397235 a backport of the fix can be provided on metalink.

  • Image load stuck

    Since upgrading aperture 3.2 to aperture 3.2.1, I've had success. My images load well. So my new problem is that one image sticks on load when I bring it up. I don't believe this is related to any upgrade issue, I think it's a one off. What do you think is the issue with a stuck edited image. Should I discard the image altogether, and consider it a contaminate, or just reset all adjustments? The master is on a Cd so I'm not losing if I re-submit. I'm just baffled at the fact hat this is one image out of many that sticks on load. There is no proccessing wheel when it sticks, just loading.

    Hi all,
    I've experienced the same issue and it disappeared after doing some weird steps.
    First about the problem:
    I have Surface Pro tablet, updated to Windows 8.1 many months ago. However yesterday this issue happened for the first time (not sure what triggered it) and continued today as well, even after restarting:
    - Charms bar > Settings > Personalize. Click on background color or Accent color palette to try to change color: the pane and Start menu behind freezes and doesn't react on anything except for pressing Windows button on tablet, that throws back to
    desktop. But when you return to that menu it appears the color has been changed after all (as much as could have been done in one click before it froze).
    - Can't change lock screen: I didn't move the image selected there and previous images, they are still located at the same folder. But after selecting an image loading wheel spins and image never updates.
    Fix:
    After reading here that this replicates with account picture for some people, I wanted to check this on my tablet as well. My account picture shown the current image and 2 previous images to the right. When clicking first of those, nothing changed. When
    clicking on the second one it shown the image from the first selected as account picture, and vice versa - when clicking on the first again it shown the second pic selected as account picture. After browsing and selecting other image, it didn't update in account
    picture, but after going out from the menu and back again it appeared that the account image updated after all.
    After that all started working normal again - can select account picture, change lock screen and personalize without problems. Weird, but it worked.

  • Disable user settings

    HI
    I want that in my dynpro application at run time user can not change settings for this purpose i have set a personalization  parameter WDDISABLEUSERPERSONALIZATION = X like that. it is working fine in dev and QA but not working in PRD
    Kindly help in this regard
    Ammad

    >
    Ammad Zaman wrote:
    > HI
    >
    > I want that in my dynpro application at run time user can not change settings for this purpose i have set a personalization  parameter WDDISABLEUSERPERSONALIZATION = X like that. it is working fine in dev and QA but not working in PRD
    >
    > Kindly help in this regard
    >
    > Ammad
    Hi
    Most of the time if it is not working then the systems are not in the same support package level.
    are these three systems are in the same support package and also the clients are same in the three systems ?

  • ADVANCED DEVELOPER CONFERENCE LAB NOW AVAILABLE

    The entire Advanced Developer Conference lab, complete with full source, is now available on the DeveloperCenterSamples page.
    The lab is a complete application for a fictional company, Remedy Pharmaceuticals. It includes clear and commented code in Java and .NET for:
    Basic portlet developmentAdaptive portlet development utilizing inter-portlet communication and in-place refreshPlumtree Event Interface (PEI) implementationsPluggable NavigationBranding and personalization without codingAuthentication Web ServicesCrawler Web ServicesProfile Web ServicesSearch Web Servicesand more ...All in the context of a single application.
    ross

    Tony,
    I "think" the easiest way to get PDF output at a cheap price is going to be PL/PDF (http://plpdf.com). It looks like it costs $500, and I don't see any other software requirements, since it works with mod_plsql.
    The coccon and other "stuff" is free, but I don't know how difficult it is to get setup and running. I'm also not sure how much leeway you get in designing your output.
    Since PL/PDF is generated by code you write with PL/SQL packages, I imagine that you can get some pretty customized output that would exactly fit your needs.
    When I first heard Apex 3.0 would allow PDF output, I was hoping that there was some kind of unannounced deal where Oracle had bought the company and was going to include the PL/PDF packages as some of their "standard" packages, like DBMS_OUTPUT.
    At least since they haven't done it yet, there may still be some hope that maybe someday they will, but then I don't see where that would really benefit the BI Publisher market, though I no idea how big that market is. It seems like quite a few Oracle shops aren't budgeted enough to get into that "niche", it's usually hard enough paying for the products already licensed.
    Bill Ferguson

  • Cookies, URL-Rewriting, and Sessions

    Hi All,
    I am aware that this is probably a question that has been asked many times in the past. Nonetheless, I have not been able to fully comprehend the differences. Therefore I would appreciate it, if someone could kindly spend some time explaining the differences between the three and when each would be the most preferred solution. ( cookies, url rewriting and sessions )
    So far what I understand is that, cookies can be used to store small amounts of data not more than 4kb, and that most browsers can not accept more than 20 at a time.... but would it be correct to say that the data is stored within the http headers ?
    URL rewriting, on the other hand is a method which can be used if cookies have been disabled by a browser. The 'session id' is appended to the url, and used to remember the data. ( how ? ). Although, it does mean that the programmer has to be very careful and ensure that rewriting occurs everytime it is passed to the browser, including redirection. ( whatever that means ? )
    Http sessions, seem to be the best solution out of the three ( but if this is the case, why are cookies and rewriting still hanging around today ? And even being taught at universities ? ). Also, they work on top of cookies and if these have been disabled sessions will not work !! ....
    As you can see ( from the above ) I do not have a thorough understanding of the three methods, especially if it comes to specifying the differences between the three.
    I would appreciate an explanation.

    HttpSessions use cookies or url rewritting to pass the session id which the server uses to associate a particular session with a particular request. A well developed web application will be written to use url rewriting when a client has cookies disabled. That being said I yet to see such a web application and personally believe that few people still disable cookies.
    Cookies still have uses.
    Persistant cookies are used to store data that needs to persist between sessions. This data is stored by the browser in a text files and passed to the server in the header. An example of this would be a site that offers personalization would store the user's id so that each time the user accesses the site he would see his personalization without being required to log in. Yahoo is a good example.
    In memory cookies are stored in the browser's memory and is used to store temporary data that goes away when the browser closes. Again this data gets passed to the server in the headers. Temporary cookies can be used to pass data between seperate web applications runing on the same host where storing the data in the session will not because each application has it's own session.

  • Screen lock image

    With Mountain Lion I am trying to place a custom screen lock image. I found a previous post that specified a directory path but even though it said the image transferred successfully It still has that "unfriendly" padlock image. Is there a limit to the pixel dimensions of images that can be used as a screen lock image?

    Hi all,
    I've experienced the same issue and it disappeared after doing some weird steps.
    First about the problem:
    I have Surface Pro tablet, updated to Windows 8.1 many months ago. However yesterday this issue happened for the first time (not sure what triggered it) and continued today as well, even after restarting:
    - Charms bar > Settings > Personalize. Click on background color or Accent color palette to try to change color: the pane and Start menu behind freezes and doesn't react on anything except for pressing Windows button on tablet, that throws back to
    desktop. But when you return to that menu it appears the color has been changed after all (as much as could have been done in one click before it froze).
    - Can't change lock screen: I didn't move the image selected there and previous images, they are still located at the same folder. But after selecting an image loading wheel spins and image never updates.
    Fix:
    After reading here that this replicates with account picture for some people, I wanted to check this on my tablet as well. My account picture shown the current image and 2 previous images to the right. When clicking first of those, nothing changed. When
    clicking on the second one it shown the image from the first selected as account picture, and vice versa - when clicking on the first again it shown the second pic selected as account picture. After browsing and selecting other image, it didn't update in account
    picture, but after going out from the menu and back again it appeared that the account image updated after all.
    After that all started working normal again - can select account picture, change lock screen and personalize without problems. Weird, but it worked.

  • Lock Screen Custom Image Stuck on Load for Windows 8.1

    I recently upgraded to Windows 8.1, but it reset my custom lock screen image.  I tried re-applying it but the lock screen preview in the settings is stuck on a load loop.  Does anyone know why that is and why it won't set my custom image as the
    new lock screen image?

    Hi all,
    I've experienced the same issue and it disappeared after doing some weird steps.
    First about the problem:
    I have Surface Pro tablet, updated to Windows 8.1 many months ago. However yesterday this issue happened for the first time (not sure what triggered it) and continued today as well, even after restarting:
    - Charms bar > Settings > Personalize. Click on background color or Accent color palette to try to change color: the pane and Start menu behind freezes and doesn't react on anything except for pressing Windows button on tablet, that throws back to
    desktop. But when you return to that menu it appears the color has been changed after all (as much as could have been done in one click before it froze).
    - Can't change lock screen: I didn't move the image selected there and previous images, they are still located at the same folder. But after selecting an image loading wheel spins and image never updates.
    Fix:
    After reading here that this replicates with account picture for some people, I wanted to check this on my tablet as well. My account picture shown the current image and 2 previous images to the right. When clicking first of those, nothing changed. When
    clicking on the second one it shown the image from the first selected as account picture, and vice versa - when clicking on the first again it shown the second pic selected as account picture. After browsing and selecting other image, it didn't update in account
    picture, but after going out from the menu and back again it appeared that the account image updated after all.
    After that all started working normal again - can select account picture, change lock screen and personalize without problems. Weird, but it worked.

  • Creation of Business role without allow user the possibility of personaliz.

    Hi
    I'm new in SAP. and I'm in need. Is it possible create Business Role (in CRM) without the possibility (for the user) to personalize the assignment block and the general setting?
    Thanks for your future help!
    Stefano

    Hi,
    this is possible by assigning the Function Profile 'PERSONALIZATION' with value 'ALL_DISABLED' to your business Role in the Business Role Customizing.
    Kind regards,
    Carl

  • Extending controller without personalization

    Can a controller be extended without using personalization to make the substitution? How about using a jpx file?
    The controller I am looking to extend belongs to a table attachment region that Oracle seems to use for multiple pages and applications so there is no page for me to personalize.
    Any ideas?

    Best option will be to go through the Functional Admin resp. There you can find the region based on many criteria and selecting that will bring to the personalization screen.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                               

  • How to add a Picklist/Drop down in a page with values (Without Personaliz)

    hi,
    i am very very new to OAF ....please help me out on the below requirement....
    Please suggest me how to add a pick list/drop down field to a page, with some values. (without personalization)
    And the second one is when ever i'll chose a value from the drop down the page will reload and display a message on the page.(messages are different for the different values)
    Thanks
    Prakash

    Prakash
    As mentioned by Anil you can use the above link for new poplist generation through extension. As far as reloading the page in that case you need to make use of PPR for that item.Do refer dev guide for more details
    You can use below code for creating poplist in processRequest of your extended controller
    OAMessageChoiceBean mcb = (OAMessageChoiceBean) createWebBean(pageContext, MESSAGE_CHOICE_BEAN);
    mcb.setPickListViewUsageName("TestVO");
    mcb.setListValueAttribute("LookupCode");
    mcb.setListDisplayAttribute("Meaning" );
    mcb.setID("test");
    mcib.setFireActionForSubmit ("event1",null,null,false, false);//This is event that cause reload of pageYou can handle the event in pfr method
      if("event1".equals(pageContext.getParameter("event")))
    }Thanks
    AJ

  • Personalize link does not work without proper authorization

    Hello!
    I have an issue in the CRM 7 web ui and the Personalize link in the header.
    We have removed all "unecesary" authorizations and now the users can not get the personalize page. When they click the link they don't get any new page, they get the same page they had before clicking on the link.
    We are also missing the Manage Reports menu entry for the user, the link is enabled in Nav bar profile and visable in SPRO.
    If I give the user SAP_ALL and SAP_NEW, the link works........
    The trace in ST01 doesn't provide any useful info....
    All auth. objects are green and ok
    There is nothing in the logs or any of the trace files.....
    Has anyone encountered this before in CRM 7 or CRM 2007?
    Thanks!
    rollo

    hello!
    sorry, but I can not remember what authorization objects I added to solve the issue
    Do a trace in ST01 and check for objects that seems to be related to the ui
    rollo

  • Execute Web Template without personalization for the current User

    Hi,
    I executed a BI Web Template, on SAP Enterprise Portal, which has been provided as a Portal content on the detailed navigation section.
    Then, I navigate within the template, and I saved a personalized query view (the status of navigation of the report - applied filters, selected characteristics and key figures), through the button "Save Personalization" (standard command "SAVE_PERSONALIZATION")
    Now, each time the same User executes the same BI query from the detailed navigation,
    he get, as result, the personalized views.
    How to reset the Portal Content to the original query which has been built on Query Designer? (meanings, as it was before pressing the "Save Personalization" button)
    Moreover, is there a standard command for WT buttons like "Back to Start" (which not apply on this), to reset the original state of the query.
    Thanks a lot for your help.

    Hi,
    try useing parameter
    &USE_PERSONALIZATION=false
    when calling the WebTemplate
    regards johannes

Maybe you are looking for

  • Hyperion Workspace error ,while using weblogic as application server.

    Hi Experts ! I have Hyperion 9.3.0 environment and I m using web logic 8.1 and facing problem in starting workspace . configuration with weblogic is successful but still error while open workspace : Error 404--Not Found From RFC 2068 Hypertext Transf

  • How to show exact value in ALV output field (including space at the start)

    Hi, This is my Scenerio: In the output the field value (char type) shows "6-10-3", the actual field value has a space before the 6 " 6-10-3". How to incorporate this, any suggestions? Thanks in advance, Dileep.

  • IPod Touch 4th Generation Display issues

    Recently, my son's iPod Touch 4th Gen display has acted up after long periods of inactivity such as overnight.  Symptoms are a very light screen with many horizontal lines.  Turning the device of/off and doing a soft reset does not help.  He has disc

  • Migration of table from sql server to oracle

    Hi, I had to export few tables from SQL Server to Oracle. After the migration, I am checking to see all the tables in Oracle that have been migrated from Sql Server. I am executing select * from tab; and am seeing all the the tables (including those

  • GetURL Parameters

    Looking for getURL syntax /parameters that will let me open/display a specific page of a PDF in a new browser window. Tried this, but it's not working: pdf_btn.onRelease = function() { getURL("pdfs/sample_file.pdf#page=605", "_blank") The pdf file op