Interaction between two iViews on one page

Hi Everybody!
I have have one question and if you think I am blind, then I apologize for this.
I have two iViews on a page. The First (iView 1) is showing a Link List from KM
and the second (iView 2) is showing the content of an external link.
I would like to implement the following logic:
When the user clicks on a Link in iView 1, the content should appear in iView 2.
Can this be done with standard iView parameters or do I need to implement it on my own?
Thanks a lot and kind regards
Ingo

hi
KM navigation has a core par file in USR(installation) directory com.sap.km.navigation use it in IDE eclipse or nwds and alter the code using epcf  and rename it as your class  and redeploy it  and make it as a template.
you can use this way otherwise please do see the proerties of KM navigation iview  which may suggest the way out.hope this helps you .while using the code you have to implement epcm.donavigate and paa parameters to other iview.please don,t forget to give points
with regards
subrato kundu

Similar Messages

  • URGENT:Eventing between two iviews in one page

    Hi all,
    I have developed a model in visual composer which contains
    two iviews in a single page .The first iview contains the input fields and the data service.The second iview contains the output form.I should get the output in the second iview when i click a button or a field in the table.I am unable to pass the data from one iview to another iview during thios process.And also help me in navigating between two different pages and data transfer between them.Please help me regarding this issue either by sending any documents or by giving useful suggestions,
    Points will be rewarded for helpful answer.

    Hi,
    see the modeler's  Guide
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe]
    For differenr layers creation
    Help .sap.com link  [http://help.sap.com/saphelp_nw04s/helpdata/en/ca/fbdb4269b2f340e10000000a1550b0/frameset.htm]
    Regards,
    Govindu

  • How to restrict the filters' interaction between two (or more) dashboard pages?

    Hello,
    I work in OBIEE 10.1.3. and I don't have a lot of experiense with this product.
    I have a problem with report filters’ interaction between dashboard pages. I have created two pages in one dashboard and I navigate from page 1 to page 2. Reports from page 2 have more restrictive data filters (for example, Fiscal Month = Current Month & Fiscal Year = Current Year) than reports from page 1 (Fiscal Month <= Current Month & Fiscal Year = Current Year). If I start from the page 1 and then navigate to the page 2 by clicking on the column that is used for navigation all reports on both pages work fine. However, when I return to page 1 (by clicking on the page name) the data in the reports there is skewed, displaying only the data for Fiscal Month = Current Month. I checked the reports filters and they all get reset from (Fiscal Month <= Current Month) to (Fiscal Month = Current Month). I tried to resolve this by canging filters back to what they were, saving the report, and starting over, but it does not help.
    If anyone knows the solution for my problem, please respond to my post.
    Thank you,

    You can use this workaround:
    Page1: Fiscal Month : CASE WHEN 1=1 THEN 'Fiscal Month' END
    Make this field as 'is prompted' for all the reports in page1.
    For Page2:
    Fiscal Month : CASE WHEN 2=2 THEN 'Fiscal Month' END
    Make this field as 'is prompted' for all the reports in page2.
    This way OBIEE will treat them as two separate fields and the filters will not be messed up.

  • Reduce the size between two Iviews in Layout Page

    Hi All,
    I want to reduce the gap between the two iviews in the layout page of my portal.
    For this i have downloaded com.sap.portal.layouts.framework.par
    and i got two .js files
    1) WAandNavPanel.js
    2) light_navpanel.js
    So now in which file i have to change the size.
    Awaiting Replies.
    Thanks & Regards,
    Dhruv Shah

    better to keep backup of those two files before modifying.
    see modificationusing first jsp file in which u mentioned.
    How to change navigation panel default (initial) width?
    Remove/hide expand/collapse icons
    Points are welcome if it is helpful
    Koti Reddy

  • How can I interact between two different frames in the same indesign template as well as from one template to another.

    I am looking for the best way (or any way) to interact between two different frames in the same indesign template as well as from one template to another. It's for a DPS app which needs to carry some button initiated data from one page to another and then present it in a table.

    There is no simple way to do it, as itunes wont let you use it on another computer without wiping the contents first.
    However if you really want to transfer songs to another computer then you could try this;
    * make sure that your ipod is accessible as a disk drive (ipod options)
    * when you plug your ipod into the computer you want to transfer to make sure you select "no" or "cancel" when it asks to wipe the contents. Leave the ipod connected and quit from itunes.
    * go to "my computer" and access the ipod directly. You probably have to select "view hidden files" from windows. You will see a lot of folders with odd names like ZX838aff with similar named files inside.
    * copy these files to a folder on your computers hardrive. Now remove the ipod and start itunes.
    * import the files from the folder you made in the last step.
    * Now your music is on itunes, but with unrecogisable names.
    This is the only way I have found to do it, but there may be another way, say with an application to do the hard work for you.
    Generic homebuild PC Windows XP
    Generic homebuild PC   Windows XP  

  • Communicate between two iviews

    Hi everyone, if i create two iviews. And i want to pass a variable from one iview to the other one by triggling an event .
    What technology can help me do that?  Thx~~

    Hi Louis,
        Communication between two iviews is accomplished by EPCF concept.
      Refer to this forum thread where Prakash Singh has clearly explained about the same
    Communicate between two iviews
    Hope this helps.
    Regards,
    Joshua Kiran

  • How to transfer parameters between two iViews?

    Hi all,
    I have two WebDynpro based iViews (StartView and SecondView). when I press the button in the StartView, the EP will navigate to the SecondView. During this process, I want send a parameter value from the StartView to the Second View. In the StartView, I use the follow method to navigator:
    WDPortalNavigation.navigateAbsolute(
                  "ROLES:portal_content/com.sap.itsamtest/com.sap.secondpage",
                     WDPortalNavigationMode.SHOW_INPLACE,
                     (String) null,
                     (String) null,
                     WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
                     (String) null,
                     (String) null,
                     "value=From Start Page");
    In the SecondView, I use the WDWebContextAdapter to get parameter's value.
    String Name = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("value");
    It works fine. But I found there is a warning message:
    The method getRequestParameter(String) from the type IWDWebContextAdapter is deprecated     
    So is there any other good mechanism to implement the data transfer between two iViews.
    Thanks and Best regards
    Deyang

    Hi,
      Try the following:
    <b>Subscribing to a Portal Event:</b>
    http://help.sap.com/saphelp_nw04/helpdata/en/0c/8eee31e383cd408bcb07e80b887463/frameset.htm
    <b>Code Example for Programming Portal Eventing:</b>
    http://help.sap.com/saphelp_nw04/helpdata/en/0c/8eee31e383cd408bcb07e80b887463/frameset.htm
    <b>Regards,
    Sai Krishna.
    PS: Plz do assign points if it helps. ;-)</b>

  • In my class i am suppose to do a before and after shot, how do i have two photos on one page

    before and after shots..how do i put two photos on one page?? please help

    Good day!
    As Photoshop is not a page layout application but primarily image editing software the concept of "page" has limited relevance.
    Anyway, you could increase the canvas (Image > Canvas Size) and place the other image (File > Place …) or drag and drop it.
    Or create a new image and place both images. Whether doing so as Embedded or Linked Smart Objects makes more sense depends on your workflow, I guess.
    File > Automate > Contact Sheet II would be another option.
    Regards,
    Pfaffenbichler

  • How to include iview from one page to another using FPM

    Dear experts
    using ECC6 NetWeaver 7
    I have followed this WIKI guide step by step.
    How to include iview from one page to another using FPM?
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=118423928
    On step 4 I couldnu2019t create an Iview based on view u201Cpersonal datau201D u2013 it was not possible.
    The view wasnu2019t there (in comprehend to the  WIKI)
    What could be the reason?
    I have full authorization on the portal.
    Thank in advance for your help.

    Please check this.
    Re: Organizational History iView
    /thread/370447 [original link is broken]
    Regards,
    Sandip

  • I have two textframes on one page. But when iterating using everyitem() it picks second prior to first?

    Hi Expert's
    I have two textframes on one page. But when iterating using everyitem() it picks second prior to first?
    var ObjDoc = app.activeDocument;
    var LstPara = ObjDoc.pages.everyItem().textFrames.everyItem().paragraphs.everyItem().getElements();
    for(var c1=0;c1<LstPara.length;c1++)
         var par = LstPara[c1];
         $.writeln(par.contents.toString());
    is there any specific reason for that? Please explain

    To solve your issue, try the below code:
    var ObjDoc = app.activeDocument;
    var LstTxtFrame = ObjDoc.pages.everyItem().textFrames.everyItem().getElements();
    for(var c1=LstTxtFrame.length-1;c1>=0;c1--)
        var LstPara = LstTxtFrame[c1].paragraphs.everyItem().getElements();
        for(var c2=0;c2<LstPara.length;c2++)
            var par = LstPara[c2];
            $.writeln(par.contents.toString());
    I have two textframes on one page. But when iterating using everyitem() it picks second prior to first?
    is there any specific reason for that? Please explain
    InDesign text frames will work in LIFO (Last in first out) method, i.e., the last created text frame will be treated as a first frame in for loop, hence try the above code.
    Vandy

  • BSP(htmlb) - spinning wheel interact between two views,

    hi all,
    if i click button in first view it will opens second view . The second view contains some more data's so it takes too much time to dispaly datas, in mean time i want to give spinning wheel or some process bar in between two views, how can i give,
    Thanks & Regards
    Bala.E

    Hi Bala
    We can achive this by 2 ways.
    One way you can check the standard example "HTMLB_samples".
    In the example HTMLB_samples i can explain what is happeing taking the example of page
    a) breadcrumb.htm and
    b) breadcrumbSample.htm.
    Here when we click the link in the left(Samplelist.htm) page, the page Defaultright.htm will be rendered.
    The defaultright.htm is calling breadcrumb.htm and load.htm.
    The breadcrumb.htm in turn is calling the page breadcrumpSample.htm(Before it is calling the load.htm page is shown in mean time). For this to happen below code is kept in breadcrumb.htm page.
    <htmlb:form method = "post"
    action = "breadcrumbSample.htm"
    target = "coding" >
    This is how the loading icon is comming.
    Other Way of doing is.
    From the first page navigate it to a intermediate page which has the loading icon. From this intermediate page you can navigate it to the Second page which you want it.
    Thanks
    Vijay.M

  • How Can i communicate between two iviews?

    Hi all,
       I am having two iviews.I want to conect those two in two pages.How can i do this?Can any one help me out from this?
    regards
    Sudeep.

    Hi ,
    Try this
    WDPortalNavigation.navigateAbsolute("ROLES:"+iview,WDPortalNavigationMode.SHOW_INPLACE,(String) null, (String) null, WDPortalNavigationHistoryMode.NO_DUPLICATIONS,(String) null,(String) null,"Param=Paramvalue");
    "ROLES:"+iview=Iview Path
    "Param=Paramvalue"=Parameter and its value
    Youcan receive the value as
    String parmvalue=WDWebContextAdapter.getWebContextAdapter().getRequestParameter("Param");
    Kind Regards
    Mukesh

  • How to center object between two guides (or one guide and edge of artboard)

    Simple question: how can I center an object between two guides or between a guide and the edge of the artboard?

    Chris,
    You may (Smart Guides are your friends):
    1) Create a rectangle between the two Guides or between the Guide and the Artboard edge, by ClickDragging with the Rectangle Tool from (the desired spot) on one to (the desired spot) on the other (Smart Guides say path/path or path/page when you are there);
    2) Select both the rectangle from 1) and the object, then Click the rectangle again, then use the relevant options in the Align palette.
    That should move your object to the centre in the direction(s) you choose.

  • How i can configure the time of response between two APs if one of they "fail" for the reconnection for customers?

    Hi
    I whis to know how i can configure the WLC (2500) for reduce the time of responce between Two Lightweight APs (1040 and 1602) if one of they are disconnected for any reason (energy, malfunction, etc.) for the reconnection of the clients.
    I realized the next test: I have 2 APs connected, connect my laptop to the AP 1602 and start to making a TFTP transfer between my laptop and a server, then disconnect the AP 1602 and showing the laptop, the laptop makes the change to AP 1040, but the connection to the service, the TFTP transfer is cut because it takes about 30 seconds to resume the connection with the network
    How i can reduce this time, because my clients want their connection is not lost when passing a situation similar, i look in the pages of cisco but did not find any information pudisese help me, any help is welcome.
    thank you very much in advance
    Jonathan

    Not much you can do as its up to the client card to know it has no network connectivity and then to try to associate and obtain a DHCP address again. This is client dependent.
    Sent from Cisco Technical Support iPhone App

  • How to print two sides with one page?

    I have a PDF that is one page long and I'd like to print the same thing twice (front and back) on one page. Can I do that?
    I've tried printing two copies with the printer set to double-sided, but it just printed two sheets with one side on each sheet.

    Well sure; Go back to the authoring application that created the documents and do a 2-UP page. Make the existingg page large enough to accomodate the extra content. Is that what you're asking or do you really mean print to a printer with a back up ? In that case just flip the page over and print page 2 on the other side.
    Or are we missing something ?

Maybe you are looking for

  • Typing on PDF Files

    I have downloaded a few PDF files from some university sites. They have the usual items like "Name," "Address," etc. but I do not know how to use Acrobat or Adobe Reader to type into the blank. May someone help me on this problem? Thanks in advance.

  • Auto charge fee can it be reversed??

    I was just autocharged because my $10 credit was running low. I had changed my settings to prevent this from happening but clearly there was an error...is there a way to reverse this fee?? I'm studying abroad and have a week left so there's absolutel

  • Multi paper format support

    Hello Gurus I need to create adobe forms that should support North-America letter format as well as Europeen A4 format. Letter format is 8.5 inches X 11 Inches (215.9 mm X 279.4 mm) A4 format is 8.26 inhes X 11.69 Inches (210 mm X 297 m) 1. Is it pos

  • Kindle app keeps crashing

    Kindle app keeps crashing!!! Help!

  • Sql Error: ORA-00600: internal error code, arguments: [ttcgcshnd-1],

    I am getting the error above when I try to do an sqlexec statement against Oracle. I have weblogic 6.1 service pack 1 and i have Oracle 9.i. I have a connection pool defined as: Name: oracleOne URL: jdbc:oracle:thin:@WLo1.vtmednet.org:1521:wlo1 Drive