Customize "Personalize Page" possible?

Hi all,
I have a tricky requirement.
Is it possible to alter the end-user's Personalize Page window to have it appear and function more user-friendly and more user-intuitive?
Right now the page is just an excerpt from the Content Administrator's admin screen, which works if you're an administrator used to the portal, but for end users the page might look a bit overwhelming.
Therefore I would like to have it appear more or less like Google IG, Microsoft Live, or Microsoft Web Parts.
So users just can select multiple iViews at once, or simply drag-drop iViews to the right-pane without the need for the <i>rightclick -> select 'Add iView to Page'</i> sequence.
Basically it's not the right pane I want to change, but have the left pane Content Browser changed by something more intuitive.
Any help would be greatly appreciated!
Thanks in advance,
Robin van het Hof

Hi,
NOTE: The following is not a public API.
To add an iView to a page, the content catalog throws the following event:
EPCM.raiseEvent( "urn:com.sapportals.appdesigner:tab1", "addToPage", “/pcd/iViews/myIview" );
Note, that generally, the page editor sends EPCM events to the content catalog to tell it what right-click menus to display. It sends out events like this:
EPCM.raiseEvent( "urn:com.sapportals.appdesigner:contentCatalog", "addContentCatalogEvent", “tab1;Assign to page;addToPage;iVu" );
The parameter has 4 components:
String to be attached to urn:com.sapportals.appdesigner: to create a unique namespace
String to display to user
Event name, to through back to the page editor
Type of objects on which to display this right-click menu (I dont know what the valid values are)
Remember, these are not public events, just a description of what the appdesigner does.
Hope this helps.
Daniel

Similar Messages

  • Customize "Personalize Page"

    Hi All,
    I need to customize 'Personalize page'  to have it appear user friendly. Is it possible to achive by customizing existing par file for page.If it is possible, which par file I need to customize. Please give me some idea on this.
    Thanks & Regards,
    Venkatesh R

    Hi Shah,
    I read the document given by you. Here my requirement is different. I need to customize "Personalize page". Right now, Personalize page has some admin page look and feel.  but for end users it might be difficult to handle.
    For that purpose  I would like  to change this page more or less like iGoogle.So users just can select multiple iViews at once, or simply drag-drop iViews to the right-pane without the need for the rightclick -> select 'Add iView to Page' sequence.
    For achive this functionality I want to change left pane (content browser) something more intractive. I will be happy to give more information regarding this if you need.
    Any help would be greatly appriciated.
    Thanks,
    Venkatesh R

  • Personalize Page Customization

    Hello,
    I am trying to have a personalize page for end users to where user could hide,show portlets and add portlets from a repository, Of course we do not wants to use the default personalize option available in Oracle Portal.
    Could someone kindly help me how can I achieve this? Any API's or samples or documentation on this? I know Oracle Portal already bundled with this feature, but our organization would like to build this to get better look and feel and user friendliness.
    I appreciate any help.
    Thanks in advance.

    Thanks Mick for the replies.
    I am in the process of doing this using AJAX and PLSQL
    I would like to know whether to query and display the portlets from a page group?
    Right now I am querying portal.wwpro_all_providers object which shows the providers.
    Is there any table or view I can query to get the portlet list?
    (Query Object for Displaying Portlets)
    Thanks again.
    Message was edited by:
    pp

  • Customize FBA page using SharePoint Designer (possible?)

    Hello everyone, I've been searching everywhere and can't seem to find a solution :(
    I'm trying to customize this page
    And just add a text on it. Is there a way to do it in SP Designer ? All I've been getting on searches is do in in VS. 
    Thanks in advance
    AJ MCTS: SP 2010 Configuration MCSA: Windows 7 If you find this post useful kindly please mark it as an answer :) TY

    You don't actually customize this page, instead you create a new one and deploy it as a SharePoint Solution. This is why Visual Studio is required.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Configure Personalize Page

    Hi I'm trying to customize the personalize page, so that a preview image can show when you click on the iViews in the personalize page. 
    Also, is it possible to have the user configure iView tray names at runtime?
    Thanks
    Greg

    Not without replacing the existing personalize logic with your own version...

  • Using Java 5, how to develop customizable web-pages  like iGoogle ?

    Is it possible to develop customizable web-pages like iGoogle does, using Java 5 ( simply using JSPs, servlets, JSFs, AJAX etc. and without using portals) ?
    A simple example explaining how to provide 3-4 header graphics options ( like igoogle does) will be helpful. (iGoogle seems to create a cookie, which appears to be used to render the selected header-graphics).
    TIA
    Edited by: DevelopingJava2005 on Jul 7, 2008 9:36 AM

    Without using portals?
    Google uses RSS feeds to compile their mashups on iGoogle. The positioning of those boxes are managed with AJAX and upon placement are saved into a session so they stay there for each visit after.
    Please be a little more clear as to what you are looking for. Yes, it is possible to develop web pages using the technologies you specified to simulate something like iGoogle, so give us some more details on what exactly you're looking for.
    Code wouldn't hurt either.

  • How to customize JSP page in iSupport

    Hi,
    I have worked on OA framework. But I have got a requirement to customize iSupport page in oracle apps. There is a Next button on page, I want to call one DB function by passing 2 parameters to this function. Get the result from that function and show the error message to user based in result of function.
    This page is JSP page. I got the JSP page name from URL in browser. I view the source of that page and found following statement..
    onclick="javascript:document.identifyproblem.JTFValidateFlag.value='Yes';*next*('identifyproblem', 'NEXTFROMIP'); return false " type="button">Next</button><img src="/OA_HTML/cabo/images/swan/t.gif" width="10" height="10"></td></tr></table>
    "next" function is available in one .js file which is imported in above file.
    function next(form, opcode)
    if (opcode =='NEXTFROMCI' || opcode =='NEXTFROMIP') {
    if (!checkContactPoint(form)) return;
    if (checkRequiredField(form)) {
    document.forms[form].IBU_CF_SR_OPCODE.value=opcode;
    document.forms[form].submit();
    else {
    return;
    If I want to change the functionality can I add my code in above "next" function?
    Or I will have to change something in controller file of that page??

    Hi Paraq,
    if you want to extend a seeded Oracle E-Business suite page you should use the personalization framework combined with a custom controller. Personalisations are done via the ebusiness suite user interface and involve no coding and allow you to intergate custom components into the app.
    Controller extensions are not recomended in E-Business suite however they are commonly implemented. You can personalise the page/region/table controller etc... to call your custom controller when they are invoked. See the OAF Personalization/Development guide for details on how to do this.
    One problem you will have here is that if you want to modify an existing controller you will need the source code which would probably mean getting an Oracle consultant or you could decompile the class files, failing that if you can bypass the existing controller by personalizing a different aspect of the page i.e. a region or table that doesnt already have a controller then you might get away with it.
    Keith

  • Diasable the personalize page,prefernce,Home,Logout links in the page

    Hi all,
    I want to disable the global links(personalize page,preferences,Home,Logout links) in my custom page and i want add a new link/item to that global link section on the top right corner of the page, is it possible if such please explain how t do this.

    Hi,
    Try the below code Do certain modification by refering Developer Guide. Due to the time constraint i am unable to test it.
    String OkUrl=APPS_HTML_DIRECTORY + "OA.jsp?OAFunc=ICX_LOGOUT;
    OALinkBean returnLink =  (OALinkBean)createWebBean(pageContext, OAWebBeanConstants.LINK_BEAN, null, "returnLink");
    returnLink.setDestination(OkUrl);
    {code}
    Regards,
    Gyan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • User Personalization page in Portal

    Hi ,
    Can anyone let me know what is the need of keeping the
    field of 'Security Policy' in the user personalization page.
    What is the relevance of this field.
    Best Regards
    Sid

    Hi Sid,
    the security policy can be used to seperate different user types...
    You have the standard user which can be used to work with the portal normally.
    With the technical user it is only possible to make connection to the portal via connectors, you can't work with the portal UI then...
    Inside of the personalization the filed is shown as the screen is the same WebDynpro element as the one you use to change the user - but with write rights for the end user on certain fields only.
    Hth,
    Michael

  • How to customize error page

    Hi,
    Reports 10g.
    I use a validation trigger for a parameter. When it returns FALSE, I have an error page with REP-546: Invalid parameter input.
    Is it possible to customize this page ? Change the text for example ?
    Thank you

    Hi,
    Customization of error messages is not supported.
    Navneet.

  • How to Customize sysadmin page logo in OIM 11gR2

    Hi,
    How to Customize sysadmin page logo in OIM 11gR2, i have customized identity page logo successfully.
    can anyone help me.
    Thanks and Regards,

    Hi,
    i have changed identity page logo by using customize option, But in sysadmin page there no such option, is it possible to change image same as identity console.

  • Customize error-pages in portal

    Hello!
    How to customize error-pages (e.g. error 500, 404, 403...) in an application
    running within the portal (e.g. BEx Web Analyzer) ?
    Via the visual administrator it is possible to customize error-pages for
    a single applications (=> Server => Services => Web Container => choose an
    application => Btn. View => Tab. Pages => Tab. Error Pages)
    - but how to costomize all error-pages for all applications running within the portal ?
    Greetings
    Frank Ruggaber

    Hi madhvika,
    One way you can modify the standard error msgs is using Custom Error msgs which you can define in the web.xml deployment descriptor of your application.
    (/usr/sap/J2E/JC00/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-infweb.xml):
    Check [custom error pages|http://help.sap.com/saphelp_nw04/helpdata/en/9a/e74d426332bd30e10000000a155106/frameset.htm
    you can use the first method - Error msgs mapped to error codes.You can create your own static html and write your own customised error msg in that instead of the usual 404 error : Resource not found.
    I think the standard error msgs are not stored in portal...not sure though.I think they are defined in the J2EE engine as parameters.Have to chek on that once.
    Or probably if u have KM installed then these error msgs can be directed to a file stored in KM and the respective msg can be displayed.....again storing as static html.
    Reward points if useful.
    Cheers,
    Abhishek
    P.S: How are you?

  • Customize search page results

    Hi,
    how i can customize the search page results??
    or how i would develop my own search page results?
    regards,
    Edgar

    In 3.0.9 it is now possible to customize search page, this was not possible in previous versions.
    - Just go to the administrative page in portal (portal30).
    - And select the Search Result Page from the page portlet (click on edit).
    Note:
    - Do not delete this page at all, because in some cases you still get rerouted to this page (although you have set the search settings).
    null

  • EBS  'personalize page'

    After logging in EBS, there is a link called  'personalize page' at the right top
    is there a way to disable this to all users in R12.1.3?

    There's a profile option that controls this. You can disable this at the Site level, and perhaps enable it at the user level just for a few users:
    Personalize Self-Service Defn: This system profile option controls access to the Personalization Framework. This profile option enables or disables the global Personalize URL link that appears on each self-service web application page for Admin-level customizations. If this profile option is set to Yes for the user or responsibility, the Personalization Framework can be accessed.
    Dula

  • Creating a new item in application Personalize Page

    Hi all,
    I've created a new item from the application's personalize page. There are a few questions I want to ask about this new item I've created.
    1. I know that the page has different regions as there is more than one controller class for that page(visually). If I use oapagecontext.getParameter("Item ID"), will that give me the item's value even if it is in a different controller?
    2. When I create a new item using the application's personalize page, does it automatically update the relevant xml in $FND_TOP/mds repository? Or does it only update it during run time?
    Cheers

    Hi there,
    it still seems unable to do what i want. The code I'm using right now is this
    I've created a new MessageTextInput item from the application and gave it the ID of xxActiveTo. I also made the view attribute of "ActiveTo" and attribute set of /oracle/apps/jtf/resource/attributesets/JtfRsResourceExtns/EndDateActive.
    **code **
    String temp = oapagecontext.getParameter("xxActiveTo");
    if (temp != "22-Aug-2006")
    setforwardurl (xxxxxx);
    When i see the field I enter 22-Aug-2006 and then press the button. However, it always forwards to the url as in setforwardurl.
    I know I'm getting the wrong value but I don't exactly know why
    Please help

Maybe you are looking for

  • I have tried all of the above solutions and I am still getting repeated crashes or messages interrupting anything I am trying to do

    At first the messages and crashes were only happening if I tried to play a game (Farmville) on Facebook. Then after a week I started getting the crashes and messages on Facebook. Now I get interrupted and crashes and messages on my Hotmail, Facebook

  • Where can I send an email concerning Adobe Reader XI Pro

    Hello, I downloaded Reader XiI Pro for the trial period.  I used it and was very, very impressed with you developing program of that caliber.  I was extremly impressed with the depth and detail of all of the options available.  Just to let all of you

  • Foreign currency valuation (F.05)

    Hi, When i am valuating open items of vendors thru f.05 what has happened is : 1.) First time it passes the entry for the difference in the currencies. 2.) Second time it passes  the entry for the net difference i.e new diifference -old    difference

  • Solved :How to do this Query ??

    Hello Everyone, I have a table structure like this.... Courses -- which contain the list of courses...with course_id being primary key Tasks -- which contains the list of courses...with task_id being the primary key Course History -- contains list of

  • Progressive download of SWF file - possible?

    With FLV files, it is possible to have progressive downloads. In other words, while a part of the video is playing, the rest of it is downloading. I want to have SWF files that contain frame based animations. Does Flash work the same way for SWF file