Link to other portal page

Hi experts,
I would like to link from a portal page to another portal page. E.g. in Role A there is an iView with a link "xyz". If somebody clicks on he gets to another portal page from Role B (in the same or another window).
Any ideas how to manage this?
Thx for time and effort!
Sandra

Sandra,
check these links you may get some idea
http://help.sap.com/saphelp_nw04/helpdata/en/f0/eca04267deb211e10000000a155106/frameset.htm
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/314ae7a5-0c01-0010-c198-9c7c5e8cee46
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6112ecb7-0a01-0010-ef90-941c70c9e401
Thanks
Bala Duvvuri

Similar Messages

  • Why editing iview id break the delta link in the portal page?

    For some reason, everytime I edit the iview id, the delta link in the page will be broken.
    After I changed the iview id, the iview id that I added as delta link in portal page remain same, and seems like become a separate copy , rather than the original delta link.
    This frustracted me as I have to remove the old iview , and add the new edited iview into the page again.
    Why is this happen? (I am very sure I didn't accidentally add the iview as copy, instead of delta link)
    By the way, I am in NW04s SP9.
    Thanks for help.
    Kent

    Hi Kent,
    > (I am very sure I didn't accidentally
    > add the iview as copy, instead of delta link)
    The wording "I am very sure" points to the fact that you didn't really check and re-try it?!
    I just checked it on NW04 / SPS18 (which corresponds to SP09 on NW2004s) - and it works like a charme. The delta-link on the test page points to the new ID (as the ID-Change-Wizard announces it).
    As I have no 2004s installation at hand, I would suggest really to re-check if you are really talking of a delta-link. If it really doesn't work on SP09 while it works on SP18 in parallel, you would have to open an OSS message. Anyhow, this really should behave analogously...
    Hope it helps
    Detlev

  • Create a photo page and have the photo's link to other internal pages

    really basic quesiton, sorry but I can't do this for some reason. I created a photo page that is going to be a menu page to link to some internal pages. for some reason the Enable as a Hyperlink is greyed out and I can't click on it to make the image a hyperlink.
    Any help or suggestions?
    Thanks

    What you need to do is place a shape over the top of the image, then using Inspector, Graphic Tab give it an Opacity of 1% then you can make the shape a hyperlink.
    The imageholders on the photo page cannot be used as hyperlinks.
    Alos you must giv ethe shape an opacity of at least 1%, if you try 0% it will not work.
    Will
    1GHz G4, 15" PowerBook, Airport Network, 1G iPod Mini   Mac OS X (10.4.6)   www.willg4pb.com for iWeb tips

  • Creating Links for other Web pages within Flash C23

    Hello Everyone,
    First of all, I'm sure you're tired of answering the
    questions regarding "Links". Although, I'm having a very
    difficult time with this issue. I just purchased Flash C23,
    taken all the tutorials from www.lynda.com, but
    I do not find answers for linking one web page to another
    within Flash C23. I have read all the answers
    on this forum and still can not get my buttons to link up to
    my other web pages.
    I have figured out how to create the buttons, although, I'm
    not doing something right when I try to link up my web
    pages. You have to realize I'm coming from Adobe Golive (no
    need for codes or scripts). I do not want to stop
    using Flash... Can someone help?
    Thank you so much, it's appreciated.

    replace 'siteName' with whatever you use to target your site
    in a browser. 'FranchelleDesigns' is what you named your page in
    GoLive.
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.siteName.com/FranchelleDesigns.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);
    EX: my website is
    http://www.damonedwards.net
    lets say I create some HTML page that I want to link to, and I save
    it as, ContactMe.html... this is what I would use in flash to link
    to it
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.damonedwards.net/ContactMe.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);

  • Linking a tab to another portal page

    Hi,
    Several users have wondered if it's possible to link to another portal page by clicking on the tab. So for example, when the user clicks the tab name they will be linked to a specified portal page and not have to click a link from under the tab? Is this possible?
    Thanks

    yes it is, just add an html portlet under the tab with some javscript that redirects to the page you want (document.location.href=http://.....)

  • Copy a file from server to the client - URLConnection to a Portal page

    Hello:
    I have an application running on the client side. When the app startup it must open a file which is at the server side, to be more specific, the file is at KM content of the portal.
    I try to read it with URLConnection to copy the file from the server to the client, the app will do it, but "Server returned HTTP response code: 401 for URL:"
    If you copy&paste the url's file directly on the browser (http://host:port/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/ImagenesIM/file.txt) a login popup (look and feel windows) is display. After entering the user and psw the file is open without problem.
    Any idea what can I use or how do it ?.
    I think that probably I have to move the app to a was directory instead of portal directory.
    The app is execute via *.jnlp with a link at a portal page.
    Thanks a lot for your time.

    Javier,
    401 means authentication error, i.e. your application is not authenticated to KM.
    What you can do? Actually, it depends. Check current cookies in your application, probably there are SSO coockie or J2EE authentication cookie. You may try to set this cookies in URLConnection (via addHeader). Otherwise you have to supply authentication creadentials to URLConnection (also via addHeader, most probably, via Basic HTTP authentication scheme).
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • Small pop up window inside a portal page

    My portal page has one html portlet. I need to have a small pop-up window on this page which contains periodically changing messages(message is retrieved from a table in the database). The popup window should appear if the message inside the popup message has changed, otherwise it should not appear.
    this is my code below:
    declare
    cursor cur_popup is
    SELECT POPUP_MSG_READ_FLG
    FROM app_users
    WHERE PORTAL_USER_ID = portal30.wwctx_api.get_user();
    BEGIN
    open cur_popup;
    fetch cur_popup into msg_read;
    close cur_popup;
    IF msg_read = 'N' THEN
    url := PORTAL30.wwv_user_utilities.get_url('CAPS.LINK_POPUP');-- links to a portal page with popup
    portal30.wwv_redirect.url(p_url => url);
    ELSE
    url := PORTAL30.wwv_user_utilities.get_url('CAPS.LINK_without_popup');--links to a duplicate portal page without popup
    portal30.wwv_redirect.url(p_url => url);
    END IF;
    END;
    I don't want to maintain duplicate portal pages -one with onLoad=window.open('popup') and the other page without the pop up.
    Pls. suggest an alternate method. How can I pass parameters to the portal page and retrieve it in my portlet's javascript? Please let me know as I need it urgently.

    Hi Lavanya. I have implemented the same.
    Within my oracle tags, I'm using htp.print to produce the javascript for opening the window if it has not yet been viewed. It gets a bit confusing to produce one language syntax with another, but seems to work fine - you're kind of saved by pl/sql's single quote syntax vs. javascript double quotes!
    Some improvements I'd like to make are for cases where the browser has cached the content (which tells the browser to open a popup window) and to produce a receipt when the user clicks "OK" in the popup, rather than when the page is delivered.
    Let me know how it goes. Sounds like a common need - maybe we should get together and publish a new portal component! :^) Thanks, Luke.
    My portal page is not generated from within my pl/sql. My code just calls the link which,in turn calls the portal page. The portal page contains a html portlet, and the popup window is opened from <body onLoad = window.open(.....)>
    so, i cannot use htp.p here.
    Pls. help!!

  • HOw to open a link in a new page ?

    The current functionality is for the link to open in the same window. I create a menu using the wizard and created links to PSP. Clicking on the links replace my portal page and does what PSP is supposed to do. I want to launch a new window for the PSP to run it. Using portal menus.
    Is that possible ?

    Introduce a "target=blank" into the HTML code!

  • How to run .EXE files from Linux Portal page?

    We have an IIS web server that runs a Photoshow_player.exe slide show program. I'm not sure if this can run from Linux Portal, but we are trying.
    The link in an IIS web page looks like this:
    <a> href="file:///\\mulsrv22\share\PCS\PhotoshowPlayer.exe" title="clean slate">clean slate</a>
    Portal is installed and running from two Linux servers. If I create a link using the above syntax, I get "can not display page" browser errors.
    I copied the entire PCS directory from the Windoz box to a Portal web_dav folder, but running the .EXE link from that Portal page gives errors indicating that the /PDS/data/.XML and /PCS/data/.jpg files can not be found.
    Any ideas on how I can run this slide show from Linux Portal?
    Thanks.
    --Don                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    if you just need to run a slideshow in you portal, why don't you use a javascript slide show ?
    Just "googleize" and you'll find tons of javascripts taht can do that.
    for example : http://www.barelyfitz.com/projects/slideshow/

  • Email a file from portal page

    Hi,
    Can anyone advise how I could email a document (pdf) from the application server to a portal user. This would ideally be a link on a portal page that would email the docuement.
    Thanks in Advance,
    Brandon

    hi brandon,
    this functionality is not there out of the box. one idea i have is to attach a procedure to your item type that passes the item ID to the procedure. you can then look up the item in the content management views wwsbr_all_items. then look it up in the documents table and use a database function (i think there is one to mail) to mail the item.
    i am not aware of any easy way.
    hope this helps.
    regards,
    christian

  • Public content on secure portal page?

    We have placed public PDF files (read only for public) into a common "documents" portal page, ie. portal/mul/documents. Links on various portal pages reference the docs in this documents page, ie portal/mul/documents/my_august_05.pdf
    A user can modify the URL down to where they can display the "documents" page itself, and a listing of all files on that "documents" page.
    How can we let public view the content of files stored in the "documents" page, but prohibit the public from viewing the listing of the contents of "documents" page itself?
    Thx.

    I don't know if this is exactly the solution you are looking for but I've done something similar in the past where the page and tabbed region where items were published were granted access to group A but some of the items on that page were granted item-level access to both group A and group B. On a totally separate page, a custom search portlet was published that searched the entire page group. Group B could then see the links to the items that they had access to eventhough they could not actually go to the page and tab those items were published on. Does that make sense?

  • Customize Portal Page

    If I add a column to a page, then the two columns are even. How can I customize the left column to be only one half of the right column?

    Each "column" on a portal page is basically a page region. What you'll need to do is to edit the properties of each page region.
    To edit region properties, simply do the following:
    1) click on the "customize page" (or for Portal 3.0.9, "edit page") link for your portal page.
    2)When the page layout appears, click on the little "pencil" icon within each columnar page region, and a popup window will appear.
    3) In the popup window, change the percentage of table width to say "25"% for the narrow column. Save your changes.
    4) For the wider columnar region, change the percentage to 75%, for example.
    Be aware that due to the nature of HTML and HTML tables, these properties will work best when you have images and content that are small enough to resize down to your narrowest column width.
    Hope this helps.
    Best Regards,
    Harry

  • Using query strings in links mysite.verizon web pages

    Has anyone had trouble using query strings in links to other web pages your personal web pages?  I have a link to another web page where I pass an ID using query string but when I click on the link I get a 404 error even though the web page exists (the link appears fine).

    Hello jillibee,
    Maybe this link will provide some assistance for you. http://forums.verizon.com/t5/FiOS-Internet/Personal-Website-Access/m-p/277209/highlight/true#M19266
    Thanks,
    Shamika_Vz
    Verizon Support
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.

  • How do I create a link to a different page in my portal website

    This is probably a no brainer for someone. I've got Oracle Portal 10.1.4, and I'm writing a portlet. I want to create a link in that portal to another page in the portal. How should I do that in Java? Currently when I put in the link to the other page it just loads in the current portlet cell.
    Thanks mucho!
    ft

    >Would the following be a part of it:
    >
    >Outer join
    Probably not. When updating/inserting/deleting from 2 tables you perform each seperately. Table updates may join two or more tables to resolve the correct row(s) but you still only update one table at a time. Procedurally you would create a transaction, update the first table, update the second table and then commit the transaction.
    EDIT: Well I take back my last comment. I see that MySQL does seem to support multiple table updates. I don't use MySQL so I can't really help you on that but the MySQL manual gives pretty clear syntax.

  • How can I link to a jsp page from another jsp page within websphere portal?

    Afternoon all,
    I have a websphere portlet which displays a jsp page. I want to put a hyperlink on the jsp page which when clicked will open another jsp page.
    Does anyone know how to do this?
    Thanks,
    Alex

    The anchor tag is the correct one for generating clickable links.
    <jsp:forward> is for transferring control at the server end. Its when you decide to change which page you want to show the user. ie check user is logged in. If not then forward them to login page, else display current page.
    I tried that. It does open the jsp page
    but the place and page links in the portal theme get screwed up.Whats mucked up about them? Do they point where they shouldn't?
    You might try using a <base> tag to set where relative links are resolved from.
    Cheers,
    evnafets

Maybe you are looking for

  • IPhone 4 stuck in recovery mode, wont restore - Error (9)

    Hey all, At my wits end here, my phone froze on the train home tonight, rebooted it, and it came up with the connect to iTunes icon. Looks like its in recovery mode and I cant get it out. Ive tried getting into DFU mode, different USB ports, differen

  • 10.5.3--Sleep/Standby issue?

    With 10.5.2, when leaving work I would simply drag the mouse to the hot spot to launch my screensaver. My MacBook Pro 17" is set to BETTER PERFORMANCE; it never sleeps, only the display goes to sleep after 15 minutes. I have never had luck with Mac +

  • How can I get iTunes tutorial to stop popping up?

    Hi all, I updated to iTunes 11. Now, whenever I open iTunes, the tutorial window pops up. I can close it, but there's no option to check off to never show it again. Does anyone know how to disable it?

  • Can't delete package or  user

    hi everybody i just can't delete an existing package or user when i do this i got that : Une erreur s'est produite lors de l'opération demandée : ORA-04045: erreurs lors de la recompilation/revalidation de MDSYS.SDO_DROP_USER_BEFORE ORA-01031: privil

  • Timesheet Clarity

    I was working with a client recently and we were exploring the potential of time sheets. The interplay of various associated permissions took a little bit of explaining and I just want to make sure I am correct on my interpretation of things. Having