How to display related links iview in content area?

Hi,
I have created Related links, but they are opening in a separate windows even though I have set the attribute of the iviews to "open in portal content area".
Please let me know how I can display the iviews of the Related links in the content area.
-Ashwini.

Hello Ashwini,
I don't think you have changed the property at the right place.
Open the iview for which related link is added. Now from the drop down box at the top right select Related Link. The related link editor will open which will show the related link iview. Select the iview and click the EDIT button at the bottom. The related link iview will open. Now Change the "Launch in new WIndow" property.
When you add an iview as reletd link to some other iview, a delta link is created and added to the iview.
This will solve ur problem.
Regards
Deb

Similar Messages

  • Relative links within a content area

    Hi
    Have anyone created a relative link, that is an anchor that
    points to a resource in the same page or content area, that works
    with the Portal Pages?.
    Thanks

    Can't be done. This is an enhancement we're looking at in a
    future release.
    Regards,
    Jerry

  • How to remove bullets and spacing for url links in the Related Links iview?

    I tried to look for a property that I can edit the look-n-feel of the url links in the Related Link iView using "Theme Editor".
    All I need is to remove the bullets and increase some vertical spacing between the links.
    Currently, it looks like this:
    URL iView A
    URL Iview B
    I go through the whole section of Related Links properties, none of them seems to do what I want.
    Here are the list of properties in Related Link section (of Navigation Panel):
    Link Color
    Text Decoration of Link
    Hover Color
    Text Decoration of Hovered Link
    Initially, I thought "Text Decoration of Link" should be the right property I should look at. But there are a drop-down with 5 options: None, Underline, Blinking, Overline and Line-Through, which really can't achieve what I want.
    Thanks for advice.
    Kent
    Post with Diagram Illustration:
    <a href="http://sapnetweaverforum.blogspot.com/2006/11/how-to-remove-bullets-and-spacing-for.html">How to remove bullets and spacing for url links in the Related Links iview?</a>
    Message was edited by: Kent C.

    Hi, Kai.
    I checked the Related iView properties (URL Template), I don't see what layoutset it is really using. I am not sure, is that a layout set apply to the Related Link Iview?
    For the regular KM iView, I will see what Layout Set I want to apply, then I can go and change the properties (of layout coontroller, collection renderer & resource renderer)you mentioned. But for this Related Link iView, I really don't know. I guess it may be in the code itself.
    If there is a layout set for Related Link iView (or the place to apply layout set to it), can you point to me which one is that? (I did a search through the layout set names, I only find the AppQuicklinkExplorer (I used this for Dynamic Nav. Link iView before), if I can aply this layout set to Related Link iView, my problem will be solved.)
    Thanks for help.
    Kent

  • Translation of standard SAP iviews such as the related links iviews

    Hi,
    does anyone know how to translate he default iviews such as the related links, dynamic navigation, drag 'n relate targets? These iviews do not exist in the PCD.  They are available only in the Inner Page on the Default Framework Page as a copy of the com.sap.portal.navigation.targets (Drag 'n Relate) iview.
    But I cannot translate the text "Related Links" using the Content Translation or via the PCD. Where are these translations stored and how do I change them?
    Marcel

    Hello,
    You can connect sap to .net using .net libraries.
    Kind regards
    Ash Thomas
    Sap Consultant
    <a href=http://www.ashpeople.com>Ash People, Sap Consultants & Sap Consultancy</a>
    <a href=http://www.ashpeople.com>www.ashpeople.com</a>

  • How To:  Create a link to gatewayed content (e.g. in email)

    I apologize if this is too basic of a question but I can't find any results after looking for several hours.
    I would like to generate a URL in an email that points to the portal and a specific portlet in the portal. The portlet has limited access rights so the URL should cause the portal to go through the login page and then redirect to the portlet. Can anyone point me to the documentation that describes this or give me an example?
    Thanks in advance!
    Mike

    Using the PTARGS might also solve another difficulty I've encountered passing (dynamic) querystring parms to portlets through the gateway. Your example seems to work great for portlets, but now trying to access a Community page containing a portlet to retain branding elements.
    For portal pages, should the ObjectID be the pageID (i.e PageID=0 for the default page) or is the ObjectID for a community page some other value (where in PlumDB is this stored) ? I changed the ClassIDView to 514 which should indicate a Community Page but it's still not loading my page. Adding to my confusion, the PTCOMMPAGES table stores the PageID as a negative value.
    Here's my example:
    http://portalserver/portal/server.pt/gateway/PTARGS_0_0_0_201_0_514/http%3B/portletserver/ApplicationName/default.aspx?querystring=value
    Any thoughts?
    re: How To: Create a link to gatewayed content (e.g. in email) Posted by Mike Beniston 5/5/05 9:45:40 AM It turned out that I was pretty close.
    If anyone else is interested, here is one way that works.
    The PTARGS are _0_userid(leave at 0)_objectid(of portlet)_communityID(if any)_0_ClassIDView(43 = view for portlet)
    "http://portalserver/portal/server.pt/gateway/PTARGS_0_0_348_208_0_43/http://portletserver/ApplicationName/pagename?querystring arguments.

  • How to make relative links

    Hello.
    I need your help.
    Inside the public_html folder I have two files one index.dir and part1.dir The file (index.dir) I wanted to do html and I do the Regulating through public settings
    My problem is that it will link files? I do not know how to do it and I want your help please.
    How to make relative links?
    Information my project test:
    Script from index to part1
    -- DESCRIPTION --
    on getBehaviorDescription me
      return \
        "GO NEXT BUTTON" & RETURN & RETURN & \
        "Moves the playback head to the next marker when the user clicks on the sprite." & RETURN & RETURN & \
        "PERMITTED MEMBER TYPES:" & RETURN & \
        "Graphic members" & RETURN & RETURN & \
        "PARAMETERS: None"
    end getBehaviorDescription
    on getBehaviorTooltip me
      return \
        "Use with graphic members. " & \
        "Moves the playback head to the next marker on mouseUp."
    end getBehaviorTooltip
    -- HISTORY --
    -- 3 November 1998, written for the D7 Behaviors Palette by James Newton
    --  5 January   2000: updated to D8 <km>
    on mouseUp me
      go frame "test1" of movie "pat1" -- test1 is Maker and the file is part1.dir
    end mouseUp
    on isOKToAttach (me, aSpriteType, aSpriteNum)
      tIsOk = 0
      if aSpriteType = #graphic then
        tIsOK = 1
      end if
      return(tIsOK)
    end on
    script from part1 to index
    -- DESCRIPTION --
    on getBehaviorDescription me
      return \
        "GO PREVIOUS BUTTON" & RETURN & RETURN & \
        "Moves the playback head to the previous marker when the user clicks on the sprite." & RETURN & RETURN & \
        "PERMITTED MEMBER TYPES:" & RETURN & \
        "Graphic members" & RETURN & RETURN & \
        "PARAMETERS: None"
    end getBehaviorDescription
    on getBehaviorTooltip me
      return \
        "Use with graphic members. " & \
        "Moves the playback head to the previous marker on mouseUp."
    end getBehaviorTooltip
    -- HISTORY --
    -- 3 November 1998, written for the D7 Behaviors Palette by James Newton
    --  5 January   2000: updated to D8 <km>
    on mouseUp me
      go frame "Intro" of movie "index" -- Intro is Maker and the file is index.dir
    end mouseUp
    on isOKToAttach (me, aSpriteType, aSpriteNum)
      tIsOk = 0
      if aSpriteType = #graphic then
        tIsOK = 1
      end if
      return(tIsOK)
    end on
    Please help
    Look my page for you to understand my problem www.ionio.gr/~aleksgeor

    It looks like you have taken a behavior from the Library Palette and hard coded it to suit your needs. This was unnecessary. Instead try the following behaviors attached to buttons that take you between movies - assuming they are in the same directory:
    on mouseUp me
      gotoNetMovie("@/part1.dcr#test1")
    end
    on mouseUp me
      gotoNetMovie("@/test.dcr#Intro")
    end
    Also, you should Shockwave-compress your files to DCR (see the Publish Settings) in order to make your movies as small as possible so they download quickly

  • How to display archive link picture in pdf

    Hi, Experts
      I create a pdf form using tcode SFP, and create a graphics element in the form,
    but i don't want to use the MIME object to disaplay,because our pictures are archive link.
    How to display archive link picture in pdf form?
    Thanks you very much!
    Ken.li
    Edited by: Ken.Li on Nov 17, 2009 3:50 AM
    Edited by: Ken.Li on Nov 17, 2009 4:30 AM

    Hello,
    I can recommend you go through the tutorial called How Tou2026 Integrate ADOBE form on WebdynPro for ABAP and Deploy it on portal by Bhawanidutt Dabral. Ignore the fact it uses WD, I have tried the proposed solution how to load in the picture on a simple offline/ print form. Look around for this tutorial.
    It propose to use the FM as follows:
    CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
        EXPORTING
          p_object       = c_graphics
          p_name         = lv_pernr1
          p_id           = c_bmap
          p_btype        = c_bcol
        RECEIVING
          p_bmp          = ls_z_if_test_cv-im_photo
        EXCEPTIONS
          not_found      = 1
          internal_error = 2
          OTHERS         = 3.
    It passes the picture as XSTRING into the form and there you bind this data stream to a Image Field (not an Image!!! check this twice). Don´t forget to check the checbox to include picture data into the form file.
    Hope this helps, Otto

  • How to display all the surveys using content query web part

    Can you please tell me how to display all the surveys using content query web part in more details? I also created a subsite and multiple surveys in that site. Then, I inserted a Content Query Web Part and select the List Type to be "Survey",
    however, it returned nothing. Did I miss anything?

    Hi,
    OOTB Survey List does not contain any
    Content Types and it has the following structure:
    Response entry is represented by
    List Item
    Response entry consist of questions and answers, where Question correspond to
    Field and Answer to Item value respectively.
    For querying Survey List via CQWP  the following properties could be used
    BaseType 
    <Lists BaseType="4">
    ServerTemplate
    <Lists ServerTemplate="102">
    Example
    To retrieve all the responses from Survey lists, specify List Type property as shown on picture
    Reference:
    http://stackoverflow.com/questions/17280778/display-all-surveys-using-content-query-web-part
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How can display the link Personalize

    In the portal I am displaying the links:
    I have the role of admon.
    Help, Logoff in Head Area(MastHead) How can display the link Personalize?
    Regards

    Assign yourself eu_role.
    Thanks
    Prashant

  • Page cannot be displayed message ONLY on the content area of the portal

    Hi All,
    I am using Netweaver Portal 7.0 and the portal works fine if logged in as an end user. But when I'm logged in as Administrator and whenever I try to create a portal object (iview or pages etc), I get a page cannot be displayed message ONLY on the content area of the portal. It is happening quite frequently, any clue what is wrong here?
    Thanks for your help
    -Mike

    Hi
    This could  sometimes happen because of  multiple users working on the same content .
    Edited by: chandana kallu on Mar 11, 2008 1:41 PM

  • How to display a linked multi-page pdf?

    I am a DW newbie building a small website for my book design business. I would like to show book design samples as spreads in a multi-page pdf (set up with page display set to two-up)  linked to thumbnail images on a web page. I have created the links, but the pdf either opens in another window as single page, or (in Firefox) triggers a dialog box which asks to either dowload or open in Acrobat. Is the display of pdfs always dictated by the client browser settings or is there a DW behavior or widget that can accomplish this? Any other ideas on how best to display these samples? DW CS5.5, Mac OS 10.6.8.

    Thanks for your reply. I think I have what I need now: I can export pdfs out of InDesign as spreads, and then the pdf reader in the browser sees that spread in the linked pdf as a single page. Should have thought of that sooner. Would be nice if there was some way to control the display of linked pdfs with code rather than be at the mercy of the client browser.

  • How to display many Links like text with multi lines?

    I need to:
    1)display many links in one container like text
    2)each link have onClick event Handler
    Example:
    Link1 SomeLink2 Link3 \*
    Link4 AnatherLink5            \*
    AndOneMoreLink6              \*
    \* - right border of container
    i'v tried TileGroup, but it has colums.... Group - overlapped links in one place.... and so on.
    Any ideas how to do it?

    I think you overlooked some of the possibilities provided by Apex.
    For instance you can create a simple HTML region where you put the links as you prefer (makes sense if they are a fixed number and you need a special formatting).
    You can also create Lists (see shared components). Lists are specifically meant for links, like Task lists in the Apex Builder itself, but you cannot build them dynamically, so you must know in advance each and every static link.
    Or you can create a report if links come as result of a query which is good for building them dynamically.
    A fourth option is a PL/SQL region outputting HTP calls where you have total control over every aspect.
    Flavio
    http://oraclequirks.blogspot.com

  • Give iView as link in portal content area

    Dear All,
    I have divided my portal content area into 4 section. In one section i got my GP process. I have created the process as iview. I have tried to give this iview link to the end-user to open the process. Is it possible to bring iview inside one section of content area. If any one did this or got knowledge on this, pls through some light on this.
    with Regards,
    Balachander

    Balachander,
    not sure what do you mean by "bring iview inside one section of content area". Are you willing to show only the single iView or you want to show it with some other iViews also? For first case URL to the single iView will work. For the second type of requirement you can add the iViews inside a page and give the Page URL to the users instead of iView URL.
    Regards,
    Shubhadip

  • Unable to click on iView link from within content area

    Hi,
    I have a peculiar problem where I am unable to click on/open up iViews from within the content area in one particular folder of a role. If I expand the tray and click on an iView link, it opens up the said iView. I am able to click on/open up iViews from the content area in other folders in the role.
    Has anyone else experienced the same issue? If yes, any pointers to resolve this would be very helpful.
    Thanks,
    Tahzeeb

    Hi Tahzeeb,
    Are you facing this problem only for a particular folder of a iview or else for the whole??
    If yes, just check the below points
    1. Make sure that you have the correct roles to read Portal content.
    2. Check whether have you made any permission access for the folder you are trying to access.
    3. Try to create a new folder and assign the same iview and check it up once.
    Let us konw further, if you still face any problems.
    BR,
    RAM.

  • How to remove category header link in a content area

    Hi,
    I have a content area with two categories X and Y with some items in each.
    When I add this content area on a page as portlet, the category heading is displayed with a hyperlink to X.
    I do not want that category heading, I should only items in the content area and not the headers atleast remove hyperlinks to the category headings.
    Please help.
    Murthy

    Hi,
    you can't change it in your code. I think the only option is to create a custom skin and then replace the resource bundle. Creating a custom skin for this is more work than the effect may justify. So to hide the string you can use CSS like the following
    .x2z{color:#D2D8B0}
    which turns the font color into the background color
    Frank

Maybe you are looking for