How to customizing standard portal pages ?......

Dear All,
I'm developing a content management application on Oracle9iAS Portal on which the user is allowed to add a new content on portal page. But when the user creates a new page, a standard portal navigation bar is displayed from which the user is allowed to browse the Navigator and Builder pages of the portal which he should not do it. So, i would like to ask how to disable such portal links which appears when the user create a new page like (Navigator, Builder, Home). I need to know if it's possible or not ???
THIS REQUEST IS URGENT

Just change the privileges on the Navigator and Builder pages. The links will not be displayed to users who don't have view privilege on those pages.
Regards,
Jerry
PortalPM

Similar Messages

  • Is it possible to customizing standard portal pages......

    Dear All,
    I'm developing a content management application on Oracle9iAS Portal on which the user is allowed to add a new content on portal page. But when the user creates a new page, a standard portal navigation bar is displayed from which the user is allowed to browse the Navigator and Builder pages of the portal which he should not do it. So, i would like to ask how to disable such portal links which appears when the user create a new page like (Navigator, Builder, Home). I need to know if it's possible or not ???
    THIS REQUEST IS URGENT

    Hi, why don't you just make a navigation banner (bar) with the buttons they should be able to reach? Page group properties is where you decide the default navigation banner. So make a new banner for your users and set it as the default one.
    Kristin

  • Can I use a standard Portal page as Single Sign-On page?

    Hi all
    IHAC that would like to be able to maintain the login page. I have told them that it might be difficult as the login page is a jsp file and not a standard portal page. So now I'm wondering if it would be possible to create a standard portal page with a standard login portlet and use this as a login page. I have tried creating a page and updated WWSSO_LS_CONFIGURATION_INFO$ but no luck :-(
    Environment: OracleAS 10g R2 (10.1.2.0.2)
    Thanks in advance
    Claus

    Yes. that makes sense :-)
    I'm afraid that you will be unable to replace the current SSO JSP page with a portal page. The SSO JSP not only draws the login screen, it also generates the site2pstoretoken for you. This is necessary for the login process to complete.
    What about having a public page with a page link to a customized portal page with login portlet to replace the SSO page?

  • How to get the Portal Page name from PLSQL?

    Can anyone tell me how to get the portal page name from my dynamic page using plsql?
    Apparently you can get the page id and work it out from there, but my calls to get the page id are not returning any values anyway.
    My code for attempting to get the page id is below.
    <oracle>
    declare
    v_pageid varchar2(30);
    begin
    v_pageid := wwpro_api_parameters.get_value('_pageid', '/pls/portal30');
    htp.print('Page is '|| v_pageid);
    end;
    </oracle>
    Ideally I'd actually just like to get the page name. Is there a straightforward way to do this?
    Thanks in advance!
    Sarah

    Few clarifications -
    1. wwpro_api_parameters cannot be used to get default portal
    page parameters such as '_pageid', '_dad', '_schema' etc.,
    2. Page information can be obtained through any components which
    are available in that particular page. For example, in case of
    dynamic page, we need to publish it as a portlet and add it to the
    page. This process creates necessary packages in the DB, but we
    will not have access to the portlet methods.
    So, I would prefer creating a simple DB provider & portlet and access
    page title from its show method as follows -
    //Declare local variable l_page_id, l_page_title as varchar2
    select page_id into l_page_id from wwpob_portlet_instance$ where
    portlet_id = p_portlet_record.portlet_id and
    provider_id = p_portlet_record.provider_id;
    select name into l_page_title from wwpob_page$ where id=l_page_id;
    More information on DB provider can be found at
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/articles/understanding.database.providers.html
    Secondly, usage of wwpro_api_parameters.get_value method is
    incorrect. This method expects two arguments -
    <ul>
    <li><b>p_name : </b> The name of the parameter to be returned.</li>
    <li><b>p_reference_path : </b> An unique identifier for a portlet instance on the current page.</li>
    </ul>
    p_reference_path would be something like 99_SNOOP_PORTLET_76535103 and not some type of path as its name suggests.
    The following code fragment fetches all parameters available
    for a portlet.
    Note : Copy this code into 'show' method of your portlet.
    //Declare l_names, l_values as owa.vc_arr
    * Retreive all of the names of parameters for this portlet
    l_names := wwpro_api_parameters.get_names(
    p_reference_path=>p_portlet_record.reference_path);
    * Retreive all of the values of parameters for this portlet
    l_values := wwpro_api_parameters.get_values(p_names=>l_names,
    p_reference_path=>p_portlet_record.reference_path);
    //Loop through these arrays to get parameter information
    htp.p('<center><table BORDER COLS=2 WIDTH="90%" >');
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.tableData(wwui_api_portlet.portlet_heading('Name',1));
    htp.tableData(wwui_api_portlet.portlet_heading('Value',1));
    htp.tableRowClose;
    if l_names.count = 0 then
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.p('<td COLSPAN="2">'
    ||wwui_api_portlet.portlet_text(
    'No portlet parameters were passed on the URL.',1)
    ||'</td>');
    htp.tableRowClose;
    else
    for i in 1..l_names.count loop
    htp.p('<tr ALIGN=LEFT VALIGN=TOP>');
    htp.tableData(l_names(i));
    htp.tableData(l_values(i));
    htp.tableRowClose;
    end loop;
    end if;
    htp.p('</table></center>');
    Hope it helps...
    -aMJAD.

  • How to edit a standard Portal page in NWDS

    I'm looking for a guide explaining how to pull a standard Portal Web Dynpro in to Netweaver Developer Studio, make changes to it, and deploy the changed copy to the Portal.
    I have experience with the Portal and with adding ABAP Web Dynpros to it, but I'm new to NWDS and Java Web Dynpros.
    I've searched online extensively but haven't  been able to find a guide explaining how to access the standard Portal Java content.

    Hope you mean to edit WebDynpro java application in NWDS. In this case, You need NWDS (on your desktop) and NWDI (to be configured on java server) to modify any standard WebDynpro java application.
    Read the below help to understand better:
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/68d64260752a78e10000000a155106/frameset.htm

  • How to open NEW PORTAL PAGE from current portal page ?

    I'm very confuse with my problem.
    I have 2 portal page.
    portal page I has 2 portlet : portlet A & portlet C.
    portal page II has 2 portlet : portlet B & portlet C.
    Now my customer want : start with portal page I, when i submit portlet A, program will open portal page II.
    I don't know the way to call new portal page from current portal page. Help me, please.
    Thanks.
    Edited by: young_hero on Oct 30, 2008 1:12 AM

    Could you please help me how to call a .html page
    from a Pl/Sql procedure or trigger ?
    Thanks & Regards
    Kalyani KothaKalyani,
    Could you explain a little more exactly what you're trying to acheive? I'm not quite sure what it is you're asking for. Are you asking: "how would you/can you open a browser and direct it to a URL with PL/SQL?"
    Earl

  • How to ship predefined portal pages?

    Hello
    We have a portal application that ships 20+ portlets. For other portal servers/JSR 168 containers we are able to ship predefined portal pages with sensible settings, so that a customer sees what portlets we have and how they can interact and such.
    Is there a way to create a config file that tells the sun portal to setup a number of channels/portlets and then create tabs/portal pages that contain these portlets?

    Just change the privileges on the Navigator and Builder pages. The links will not be displayed to users who don't have view privilege on those pages.
    Regards,
    Jerry
    PortalPM

  • How to change standard start page of AS Java

    Dear experts,
    could you please tell me - is it possible to change the start page of the SAP J2EE server (which is shown when you go to the http://<server name>:50+<system number>*100  page -
    SAP Help Portal, System information, User Management etc.)?
    Is it possible to change it to the customer page?
    I thought it is connected with HTTP provider service, but the root directory pointed where
    doesn't exists in the server (.../j2ee/docs),
    so I don't understand, from what source the standard page is retrieved and shown to the user.
    Thanks a lot!
    Andrey.

    Hello Ventsi,
    thanks a lot for clearing of the situation.
    In fact we have a question - how to show the static web page which is stored on the J2EE server instead of the standard index.html. It is not an application, but simple html page.
    In HTTP provider help we can see the following lines -
    Root Directory
    The root directory for this host. The installation program does not create the main directory for the HTTP files automatically. It must be created additionally, or the path must be redirected to an existing directory. 
    Value  ../../docs
    Start Page
    This page is displayed when the browser establishes a connection with the host. The server searches the root directory for a file that appears in the Welcome Files list. The first match found is returned to the client browser.
    So does it mean that we have to create docs directory manually and put our file into this directory? 
    Or it is the wrong approach?
    Thanks!
    Regards,
    Andrey.

  • How to customized standard report ????? hurry waiting

    Dear all abapers ,
         I am having a problem , that i want to add a two fields into standard report
    how can i do this..........................
    please reply fast if possible , if valuable
    rewards with points

    hi
    go through this material
    http://www.sapdev.co.uk/enhance/enhancehome.htm
    http://www.****************/Tips/ExitsBADIs/ExitsMain.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975e643b111d1896f0000e8322d00/frameset.htm
    http://wiki.ittoolbox.com/index.php/Implement_a_screen_exit_to_a_standard_SAP_transaction#Pre-Requisites
    check this one
    <b>http://sap.ittoolbox.com/groups/technical-functional/sap-dev/screen-exit-on-mm01-mm02-mm03-322717</b>
    i think it will useful for u.
    Thanks,
    Usha
    Message was edited by:
            Usha Rani R

  • How to create a portal page on your macbook acting as an access point

    This is a higher level question.
    I want to use my Mac as an access point. When devices connect to the Mac and open up their browsers I want to route them to a specific page.
    Any ideas?
    Thanks

    In Portal User Menu is displayed based on the roles assigned to a user.
    In a nutsheel if you want a user to see some menu in portal. The following needs to be done.
    1. Create iViews/Pages/Worksets as required
    2. Create Role and set entry point to true (There are other ways which you will learn later).   Create as many roles as you want.
    3. Assign the iViews/Pages/Worksets to the roles as needed.
    4. Assign the roles to users or user groups
    Steps 1,2,3 will be performed using content adminstration tab.
    Step 4 will be perfomed using Super administration tab.
    Now when users login to portal the menu will be based on roles (first level tab will be role names). Second and third level menus depend on the iView/pages/worksets assigned to the roles.
    Hope this solves your problem.
    Thanks and Regards,
    Prasanna Krishnamurthy

  • How to modify a standard OAF page in version R12

    Dear all,
    I have a requirement to modify a standard OAF page(can't implement by personalization),and my EBS version is R12,but i have not the source java code of the page,I try to decomplie the class file by a sofeware named 'YingSoft' , as the r12's jdk is 1.6,will have some errors.
    So,anybody know how to accomplish or have other decompile software?
    thanks,
    Ming Tao.

    Hi Ming,
    I use Java Decompiler (JD) in it works fine for me. Also, I guess you know it already, but just in case, there is a detailed explanation on how to extend standard OAF pages in the OA Framework Developer's guide and how to deploy the changes.
    Regards.

  • Creation of a portal page using XML web form

    Hi Experts,
    I want to know how to make a portal page using XML web forms... Please tell me the steps involved in doing the aforesaid.
    Thanks in advance...

    Hi
    You compose page using WPC(Web page Composer), this is a bussiness package, which you need to deploy it on portal server then will get a WPC role which you can assign the user and then user can start composing the using follwoing PDF
    To compose it chect this pdf
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2041eb17-6001-2b10-b08d-b95ce55fa9b7?overridelayout=true
    Thanks

  • Set Portal Page URL in Web Dynpro IFrame

    Hi All,
    I've a Web Dynpro application that runs in the portal.
    The application creates iframes dynamically.
    I want to set in the iframes portal pages.
    In order to get the page's url, I go to content admin, navigate to the page and then press the 'preview' button then I copy the url from the browser's address bar.
    I copy the url from the '/irj....' to the src property of the IFrame UI element.
    So the source property looks something like this:
    /irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.mycomp.Omri!2fcom.mycomp.TestPage
    When I run the project I get:
    <i>Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Access denied (Object: portal_content/.../...).
    Exception id: 06:01_17/10/06_0015_4401150
    See the details for the exception ID in the log file</i>
    The page's permissions are set to everyone so I don't know why do I get this error.
    So, how do I set portal page url in Web Dynpro IFrame?
    p.s
    I tried to use NavigatinTarget in the URL and it works. The problem is that the TLN is included. I want to display only the page.
    Thanks,
    Omri

    Hi Valery,
    I have only one domain...
    I searched SDN and I found this post:
    /message/1259616#1259616 [original link is broken]
    Daniel Wroblewski from SAP says:
    <i>This, naturally, sounds like a permission issue. Two steps:
    You must give the Everyone group end-user permission to the iView. This will eliminate the error and cause a login screen to display.
    If you want to eliminate the login screen, you must set the iView property Authentication Scheme to anonymous.</i>
    I will try it tomorrow in the Office.
    Omri

  • Portal Page Design

    How do I create portal page with frames? That is like in HTML design a static frame or banner is on the left of the screen containing links, each link loads another web deployed application in the main frame.

    Can't you equate what you do with frames with setting up the regions of a portal page? We have similar layouts and we just use a combination of regions and tabbed pages to do this. Hope this helps

  • Bookmarking Portal pages

    Hi,
    How can we bookmark portal papges?? I have a requirement where we have to provide a URL and when clicked that should open a Portal page.
    How to do this?
    Thanks

    Hi Santosh,
    If you need to tell the users how to bookmark a Portal page, here is what they need to do:
    Click on the Options menu button on the top right of the page and click on Add to Browser Favorites
    Read more about it here:
    http://help.sap.com/saphelp_nw04/helpdata/en/84/a30a48887d4cb690b4f1754f651ba1/frameset.htm
    If you want to create a hyperlink to a page you have two options:
    1-Use NavigationTarget:
    Example:
    http://myportal.wdf.sap.com:8100/irj/index.htm?
    <b>NavigationTarget</b>=ROLES%3A//portal_content/MyRole/MyRole/MyTest/MyIView
    2-Use EPCM.doNavigate():
    Example:
    <A HREF="myLink" onclick="return <b>EPCM.doNavigate</b>('target')">
    This is HTML Link</A>
    where target is the PCD path of the Portal object as in:
    <A HREF="myLink" onclick="return EPCM.doNavigate    ('ROLES://portal_content/folder1/role1/workset1/iView111')">This is an HTML Link</A>
    Read more about it here:
    http://help.sap.com/saphelp_nw04/helpdata/en/18/3fb84033a8b533e10000000a155106/frameset.htm
    <b>Note:</b> The user will need to be logged into the Portal for these to work.

Maybe you are looking for

  • How do i send a gift card to more than one person

    HOW DO I SEND MORE THAN ONE GIFT CARD AT A TIME PLZ HELP IM DYING

  • How to send a dynamic Parameters to an Applet

    Hi, I want to know how can I send parameters dynamically to an applet. I have a senaria like this, <applet code="com.test.thinclient.ThinClientApplet" codebase="http://localhost:8090/bluenote/" width="260" height="400" archive="webcaller-01.01.01.00.

  • Bundling msgs using single interface( BPM )

    Hi BPM experts,      i am doing the fallowing scenario http://help.sap.com/saphelp_nw04/helpdata/en/08/16163ff8519a06e10000000a114084/content.htm ( payload dependent) Let us assume we have abstract files ( FileReq_abs and FileRes_abs) so in the conta

  • I would like to bcc my email accounts separately - can this be done?

    I have 2 email accounts set up on both ipad and iphone.  I have created bcc for all outgoing emails from both accounts but the bcc goes through to the first account even though I sent it from the 2nd account. Can this be changed? Many thanks

  • Size, resoultion, creating larger graphic

    Hi. I posted a msg about this a little while ago about a much larger graphic that I am going to ask about now, but if I design a 30x36 poster, am i able to create this at 1/3rd the size at 300dpi & have the printer output it at 300%? I am wondering i