Generation of Iview via Hyperlink on same page

I have a field in an iview as a hyperlink and I want the corresponding details Iview to be displayed on the same page when hyperlink is clicked.
Please guide me How can I go about it......:)

Hi neha
You could use Java script code in your java file to open the link in the same window.
saurav

Similar Messages

  • Display an iview in the same page.

    Hi Experts,
    I need to integrate webdynpro application which is a tree application
    when i integrate that application  if i click on that some search button it should navigate to other iview but the present application should be in the same page and the new application should be opened... how can we make it....
    plz help me in this ,.........
    waiting for u r responses...
    Regards,
    Shilpa

    Shilpa,
    If it is the 1st one (pop Up) then you can use Koti's threads.
    also check this library files to do this, if it is a external window I think this suits your requirement very well
    http://help.sap.com/saphelp_nw2004s/helpdata/en/fd/024640c0e56913e10000000a1550b0/content.htm
    Open view in external window..
    Open views in non-modal external windows - the patch version
    PraDeep
    Edited by: pradeep bondla on Jul 18, 2008 7:14 AM

  • Opening another iview from an iview in the same page ....

    Hello ....
    I need to open another iview from an existing one in the same page without overwriting the other existing iviews on the page. I am using EPCM.doNavigate() as given below
    EPCM.doNavigate('ROLES://portal_content/com.hersheys.Hershey_Content/com.hersheys.Human_Resources/com.hersheys.hr.sap_mss_iviews/EmployeeExit?SCENARIO_PARAMS=PERNR='+person,0);
    The iview does open in the same page, however i lose the other iviews on the top and bottom of the page ....
    Any pointers??
    Thanks,
    Devina

    Hi Devina,
    Try using IUrlGeneratorService to generate the URL to the required iView, instead of EPCM.doNavigate().
    doNavigate sometimes refreshes the whole page while loading the required iView.
    cheers
    Kiran

  • How do i send hyperlink to a text box within the same page

    how do i send hyperlink to a text box within the same page on iweb

    It's called an anchor. It's often discussed in this forum.
    2 days ago : anchor
    Here's a search of the past year : anchors

  • Hyperlinks to locations on same page

    I'm creating an alumni website and want to put a list of alums at the top of a page followed on the same page by a photo and current bio of each alum (about 130 alums total, length of bio varies from short to lengthy). I want to link the name in the alum list to the appropriate bio so you don't have to scroll down the page to find it.
    1. I can't find a way to create this type of hyperlink using iWeb. Can I do it? If not, do I need to create a separate page for each bio and then link to the new page? Are there any other options?
    2. If it's possible to link to a specific position on the same page, will that many bios fit on one page? If I can't link to the same page, can I have an iWeb website with that many pages?
    Powerbook G4   Mac OS X (10.4.8)   iWeb 1.1.2

    1. I can't find a way to create this type of
    hyperlink using iWeb. Can I do it? If not, do I need
    to create a separate page for each bio and then link
    to the new page? Are there any other options?
    What you are asking for is referred to as "anchors" in HTML-speak...and no, it is not possible to do this within iWeb. But I think varkgirl has posted a post-publishing method of jury-rigging this functionality into the HTML...
    http://web.mac.com/varkgirl/iWeb/Anchors
    2. If it's possible to link to a specific position on
    the same page, will that many bios fit on one page?
    If I can't link to the same page, can I have an iWeb
    website with that many pages?
    I'm not sure about the hard limit on page lengths in iWeb. You'll have to try it and let us know!
    But sure, you could have 130 pages in iWeb. I have heard of people with many, many more pages than that.

  • Two iviews in the same page

    hi
    i have created two iviews in the same page based on the two jspdynpage components.
    i am displaying a tableview on the ist view..on on cell click i hav to pass an the value in the cell(of ist view) to the second view...
    how do i call the second view with passing this argument...
    please tell the code to proceed .
    looking forward for ur response.
    thanks
    bidyut dutta

    Try this code and let me know the results.
    EPCF1.java(producer of event)
    ===============================
    package com.epcf;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent ;
    public class EPCF1 extends PageProcessorComponent {
    public DynPage getPage(){
    return new EPCF1DynPage();
    public static class EPCF1DynPage extends JSPDynPage{
    public void doInitialization(){
    public void doProcessAfterInput() throws PageException {
    public void doProcessBeforeOutput() throws PageException {
    this.setJspName("EPCFProducer.jsp");
    EPCF2.java(consumer of the event)
    ===================================
    package com.epcf;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent ;
    public class EPCF2 extends PageProcessorComponent {
    public DynPage getPage(){
    return new EPCF2DynPage();
    public static class EPCF2DynPage extends JSPDynPage{
    public void doInitialization(){
    public void doProcessAfterInput() throws PageException {
    public void doProcessBeforeOutput() throws PageException {
    this.setJspName("EPCFConsumer.jsp");
    EPCFProducer.jsp
    ================
    <%@ taglib uri = "tagLib" prefix = "hbj" %>
    <hbj:content id="myContext" >
    <hbj:page title="PageTitle">
    <script>
    function buttonClick()
    var name = 'hi';
    alert('hi');
    EPCM.raiseEvent("urn:com.epcf.EPCFProducer", "clickEvent", name);
    alert('hi');
    </script>
    <hbj:form id="myFormId" >
    <hbj:button
    id="myButton"
    text="click"
    width="125px"
    tooltip="click here"
    onClientClick="JavaScript:buttonClick();"
    />
    </hbj:form>
    </hbj:page>
    </hbj:content>
    EPCFConsumer.jsp
    =================
    <%@ taglib uri = "tagLib" prefix = "hbj" %>
    <hbj:content id="myContext" >
    <hbj:page title="PageTitle">
    <script>
    function eventHandler(event)
    myFormId.data.value=event.dataObject;
    EPCM.subscribeEvent("urn:com.epcf.EPCFProducer", "clickEvent", eventHandler);
    </script>
    <form id="myFormId" >
    The string passed is:
    <input type="text" value="" name="data"/>
    </form>
    </hbj:page>
    </hbj:content>
    portalapp.xml
    ================
    <?xml version="1.0" encoding="utf-8"?>
    <application>
    <application-config>
    <property name="SharingReference" value="com.sap.portal.htmlb"/>
    </application-config>
    <components>
    <component name="EPCF1">
    <component-config>
    <property name="ClassName" value="com.epcf.EPCF1"/>
    </component-config>
    <component-profile>
    <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
    </component-profile>
    </component>
    <component name="EPCF2">
    <component-config>
    <property name="ClassName" value="com.epcf.EPCF2"/>
    </component-config>
    <component-profile>
    <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
    </component-profile>
    </component>
    </components>
    <services/>
    </application>

  • Hyperlinks directed to different section of same page?

    Is this possible in iWeb? What I want is to have a menu bar at the top of one of my pages that links to different sections of the same page since its a really long page. Any help would be greatly appreciated!

    There is a way using HTML snippets. See Peter Berglund's post in this thread: http://discussions.apple.com/message.jspa?messageID=9044022#9044022 and then go to his blog for more info.
    I've used it in the Contents page for my demo sites. The links in green are to "anchors" on the pages indicated.
    The hyperlink would be http://web.me.com/MMeAccount_Name/Site_Name/PageName#widgetX with X being the number of the widget just above the area you want to direct to. You'll have to publish the page and the change the X until you get the location you want (particularly if you have more than one widget on a page). The widgets are numbered in the order they were created.
    OT

  • If I am viewing a page with the words date or match, the words are hyperlinks to a dating website. This is not so if I view the same pages in IE and has not been picked up by Norton, Spybot or malware bytes etc. Is this a Firefox bug?

    If I am viewing a page with the words date or match, the words are hyperlinks to a dating website. This is not so if I view the same pages in IE and has not been picked up by Norton, Spybot or malware bytes etc. Is this a Firefox bug?

    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    * "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How to assign a iview to more than one page at a same time

    Hi Experts,
    I have created 40 pages. I have to assign ivews to these pages. One of the iviews is common to all the pages. Going to each page and assigning the iview to that page will take alot of time. Is there a way in which i can add an iview to more than one page at the same time?
    Thanks in advance,
    Prisford Pereira.

    Hi
    You can do that using XML Content and Actions.
    You can write XML in specified format and upload it to portal, that will automatically create the content for you in PCD. You can create iviews, pages, assign iviews to pages etc.
    More details are available at the how to guide.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/207a2141-c870-2910-e080-90c920b24f47|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/207a2141-c870-2910-e080-90c920b24f47]
    Hope this helps.
    Best regards,
    Ritesh Chopra

  • Connect two reports via hyperlink but restric the pages

    how do I restrick the pages on my hyperlink.
    for example, if I have smith john on Report 1 and I want to connect Report 1 to Report 2 via Hyperlink. How do I pull only Smith John on next page.
    How should make my hyperlink dynamic that it to pull Smith John on next page? I do not want to hardcode Smith John in my hperlink.
    Any suggestion would be appreciated. thanks
    st

    Hi Sunil,
    I think we need more details about the problem.
    Are you using enterprise or developing application?
    What is the version of Crystal reports you are using?
    There are some documents available to explain how to pass parameters using Open Document and URL reporting and below is an example:
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0ed62e1-c33e-2b10-bc84-ba872502a5ce]

  • Wix Hyperlinks Won't Open in 'Same Page' - iWeb 09

    I recently built a flash intro for my personal website (www.justinmiller.info) using Wix. It's basically some photos of me that you can hover over; the photo expands and you can click on it to be directed to one of the pages on my site.
    I have embedded the code in iWeb, published the site, and the rollover effects work fine. The issue is that when I set the "go to URL" of each picture (in Wix) to open up in the same window, the links do not work. I've tried with both Safari and Firefox. If I set the links to open in NEW windows they will work, but this is hardly convenient for someone browsing my website. This one has me stumped.
    My question, therefore, is why won't the links from my Wix widget open in the same window. Does anyone have any advice / tips on how I can make this work?
    I should also mention that when I test my widget in Wix' "preview" pane, my links work as they are supposed to (either in same page or new page, as I have them set). It's only when I embed my widget in iWeb that they cease to open in the same page.
    Cheers,
    Justin

    Hi Guys. Thanks so much for replying.
    Cedric - I'm in 08. I posted in the 06 forum first by mistake. And I basically don't know "how" I built the site. I just kind of poked around like I usually do, trial by many errors.
    Roddy - I've had the folder and index on my desktop. I hadn't previously uploaded the index and just did so but nothing's changed. My host company doesn't have an actual control panel. I have a feeling it's not a great one. At least for a beginner. Is there anything on their site I should be looking for?
    Cyclo - I hadn't nothiced the Hear button working correctly, since I haven't actually been working there yet! You're right it works. I guess I do have to rebuild the text buttons as you say. I guess this is the down fall of not knowing HTML.
    I really appreciate all the input folks.
    Dave

  • How to change one iView to another in portal page by clicking the third one

    Hi all!
    I have created four iViews: two speedometers with web application designer and two iViews with visual composer. I added the speedometers and a visual composer iView #1 to a portal page (default view). The requirement is that by clicking the speedometer #2, the visual composer iView #2 would replace visual composer iView #1 on the portal page. If the user then would select the speedometer #1 again by clicking it, visual composer iView #2 would replace #1 again and so on.
    I have read article http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50b65a5d-f397-2910-a78a-f5544f21c33b?QuickLink=index&overridelayout=true, but it is more about filtering VC iView values with BI web items. I don't need to filter anything, just to change one iView to another in a portal view by clicking a third one.
    I have thought of placing two VC iView to a same portal page area and defining one of the to be visible and another hidden (by clicking speedometers these properties would change), but I haven't found the way how that could be done in portal. Is there a way to define some OnClick-method to change visibility parameters or url-address of another iView?
    One solution might be¨on the other hand to transfer any value to VC by clicking a speedometer and to change the visibility of the VC iViews according to that value (the speedometer #1 should in that case transfer other value to VC than speedometer #2). I don't know if that is possible with speedometers - you can't reference any characteristics or variables with it.
    If you have an idea, what would be the best way to accomplish this requirement, I would be very glad to hear about it! We are in VC 7.0.
    Points garanteed!
    Regards
    Sari

    Hi,
    In the portal, create a page and place the iView having the three input fields on top. Place the second iView below. Keep differing the second iView for every page. In this way you can make the iView with 3 input fields only in the desired pages. You can use EPCF to invoke / navigate to another iView.
    Regards
    Srinivasan T

  • How control multiple users to access same page?

    Hi,
    I am working on a public page where the data pull from
    database base on different UUID. Where this page doesn't required
    login account. It differential by UUID where it send via email.
    What I affaird in the email that contain UUID that might
    forward to multiple users for filling in a long forms with same
    UUID.
    (This form it could be share same department but different
    sections).
    How can I lock this page or only allow accessing by a user
    until been submitted?

    Qoop wrote:
    I tested but it cannot be lock - i open the dept_id:HR in my pc
    and I open same dept_id:HR in other pc which able to view same
    page.
    BKBK wrote:
    That is a paradox. If entry to the page cannot be locked then
    the form should not appear on at least one of the PCs. Could we see
    your code.
    Qoop later wrote:
    anyway, here is the code (simplify version)...:
    <cfquery of DEPT info base on the #URL.UUID#>
    <cfif DEPT recordcount EQ 0>
    Missing dept info <cflocation to xxx.cfm>
    <cfelse>
    <cfif SUBMIT EQ 1>
    TQ for submitting...
    <cfelse>
    code start here...
    <form action= next_page_action.cfm>
    </cfif>
    </cfif>
    I have tested my suggestion. It works.
    I can see where your code is leading to. However, it does not
    follow the line I suggested on 08/08/2007. Its logic is essentially
    different from mine. In my code, the condition for displaying the
    form is in a lock. In your code, the form is displayed
    unconditionally.

  • Multiple details table on the same page

    Newbi to APEX. Can I have muliple details table for update/insert in tabular format on the same page with the same master? Thanks!

    In the meantime, I can answer to your questions:
    · Why does JHeadstart not make use of the UIX-Struts integration (see Chapter 15 of the UIX developer’s Guide)?This has been done to allow the same page to be run both with Struts and MVC Framework, without needing to change the page. Using the UIX-Struts integration would have made the pages 'controller aware'.
    · How do you specify which columns/attributes in a Table Layout are sortable?As far as generation is concerned, you can only specify the whole table to be sortable. In case of UIX you can post-gen modify the <sortableHeader> tag of each column separately. In case of JSP you can remove the <a href> tag for each column that you do not want to sort on.
    Jan Kettenis
    JHeadstart Team

  • Using multiple refinement web parts on the same page but have them hidden until needed

    I have a search results page that has several different Core Results web parts on it (each is connected to a different result source). all hidden by tabs using the HillbillyTabs interface
    http://www.sharepointhillbilly.com/Lists/Posts/Post.aspx?ID=42
    unfortunately you cant share a refinement web part across multiple results web parts. So I am left trying to figure out how to hide several refinement web parts and only show the active refinement webpart when the result source tab is selected.
    The template im using is an OOTB standard search results template with the refinement panel on the left navigation zone and the core results web parts configured in the main content zone.
    Scenario:
    Search text box passes query to multiple results web parts on a page. Only one results web part is displayed at a time (active tab). The refiner for the active tab shows and displays its refiners in the navigation panel.
    There are multiple refinement web parts in the navigation panel associated with each core results web part in the main content zone. These refiner web parts are configured with custom refiners.
    the results page displays just one results web part at a time via tabbed interface.
    I am trying to figure out how to make the refiner web parts show and hide depending on which tab is selected.
    Any help pointing to someone thats already attempted this would be appreciated! 
    Eric

    Hi,
    For your issue, you can consider using SharePoint Search Navigation which can achieve a similar feature but not on the same page.
    Search Navigation allows users to move quickly between search experiences listed in the Navigation. Navigation is displayed in the Quick Launch control on search pages, and can also be shown as a drop-down menu from the search box.
    For more information, you can refer to the blog:
    http://blogs.technet.com/b/tothesharepoint/archive/2013/11/13/how-to-add-a-customized-search-vertical-to-your-search-results-page-in-sharepoint-2013.aspx
    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]

Maybe you are looking for

  • ODI : how to raise cross reference error before loading into Essbase?

    Hi John .. if you read my post, I want to say that you impress me! really, thank for your blog. Today, my problem is : - I received a bad quality data file from ERP extract - I have cross reference table (Source ==> Target) - >> How to raise the erro

  • Viewing files through SAP viewer only

    Hi, When i create a DIR and attch a PDF file in it, and when i open this file, its get opened in PDF viewer. I want that the file should only be opened in SAP viewer and not in application on PC. How can i achieve this? Regards, Kalpesh

  • Image Gallery picture orientation

    Is there a way to have a gallery where all of the pictures are rotated 90°?   I have pictures that are taller than they are wide, so I would like them to be display sideways.

  • Some Devices cannot connect to internet

    Hey all, just started having this problem about 2-3 weeks ago. Some devices including My pc, 2 laptops, and 2 roku devices are able to connect to the internet just fine (all via wireless). Internet is noticeably slower however, and my pc which also h

  • Excess network traffic - what's causing it?

    I recently purchased a Mac Mini Server and today I reinstalled my server software to try to fix some permission problems. Anyway, I must have turned something on or off incorrectly because my network traffic suddenly started going through the roof fo