Integrating two iviews in a single page in Portal

Hello all:
I am trying to integrate two iviews into a single page, in portal, but i am able to see one iview running fine and for other iview it says serivce not found.
But when i preview the iviews seperately they work fine.
please suggest me if i am missing something.
Thanks,
Ratna.

hi,
In second view properties, please select ENTRY POINT as Yes, then let me know
Regards
Srinivas

Similar Messages

  • What's a good app to use to put two photos on a single page like Windows Paint?

    I have a OSX Lion with an iPhoto app. I would like to put two photos on a single page like Windows Paint. What's a good app for this? Is there a Windows Paint app for Mac or something similar?

    You can print two photos on a single page with iPhoto, you can put two photos on a single page with Pages, Word or any word processor. Or are you trying to edit two photos together?
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate. You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • 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>

  • Many iViews in a single page

    Hi all,
    I am using DynPage for my development.
    I have 6 iViews in a page.1 iView will be in left side,and the other iViews are in right side(same position).
    based on the user click the link from left iView,I have to make visible the other iViews in right side.
    See my code..
      public void doProcessBeforeOutput() throws PageException {
          Form form = (Form)this.getForm();
           Link link1 = new Link("outfrontnow");
           link1.setTarget("_self");
           link1.addText("Link to OutFrontNow RSS");
           link1.setOnClientClick("doRelativeNavigate()");
           form.addRawText("<SCRIPT language ='JavaScript'>"
                   +"function doRelativeNavigate(){"
                   +"EPCM.doRelativeNavigate( \"ROLES://portal_content/RSS_BP/com.wipro.Rssuser/com.wipro.RSS/OutFront\");"
                   +"}"
                   +"</SCRIPT>"
              form.addComponent(link1);
    The other iView is opening in a new page in portal.
    But as I said I want to open the other iView in right side of the same page.
    How do I achieve this?
    Could anyone please help me.
    Thankx in advance.
    Regards,
    Swapna

    HI Swapna
    You can choose a Page layout, say with two columns. Add all your iViews to this page.
    You can then edit the <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/85/09e13dc2fd605ae10000000a11405a/frameset.htm">page layout</a> where you can drag and drop the iViews into the desired containers.
    Check out the that link and do revert back.
    Best Regards
    Priya

  • Scroll two-up documents as single page

    I have Adobe Acrobat 8.1 running in Windows 7 and I would like all of my documents to open as two-up page view but I need them to scroll as single page.  Is there any way to make this a default setting?I dislike viewing a single page at a time just so I can scroll one page at a time.  I want to see two pages while scrolling at the one page setting so that when I scroll I would go from pages 1-2 to pages 3-4, if that's understandable.
    Any help is greatly appreciated.

    Off hand I dont know the answer to your question. But since no one answered your question, here are my 2 cents worth:
    I suggest all your JSP pages have one and only one form tag. Re write your JSP page. Make sure all your variables your submitting have unique names. (no duplicate names). As far as I know, having multiple forms on a JSP page is not normallly done and makes it difficult to alter by another programmer after you leave the company.

  • Adding WebDynpro and VC iviews to one single page

    Hi All
    I want to integrate Visual Composer iviews and WebDynpro iviews into single page.SO I do it??
    Please suggest me right way.

    Hi,
    When you deploy a VC model it automatically creates an iView for you.
    After you deploy a Web Dynpro application you can create a Web Dynpro iView using the iView template wizard. See <a href="http://help.sap.com/saphelp_nw70/helpdata/en/91/0d653f0c9fa075e10000000a114084/frameset.htm">here</a> for detailed process.
    Once created both iViews you can simply delta-link them to a page you create. See <a href="http://help.sap.com/saphelp_nw70/helpdata/en/db/b8df3d48b05d5ae10000000a11405a/frameset.htm">here</a> how to create a portal page.
    Hope it helps,
    Roy

  • Can two people update a single Pages document at the same time like with Google docs?

    Is it possible for two different users to concurrently update an iWork document (pages/numbers/presentation) that resides on the iCloud?

    That I don't know swithout testing.
    My suspicion is that both users probably can open the same document but there will be conflicts when saving. Last one in gets to overwrite the others work.
    There is nothing in place that I know of that arbitrates access.
    Peter

  • Struts : Validating two forms in a single page , on a single submit

    In my JSP page, i have two forms, with modifiable feilds. I'm using submit button of the 2nd form to submit both forms (ie. <form action="someAction2.do" onsubmit="return firstForm.submit();"> )
    Two forms have different actions which is specified in structs-config.xml. Validation(server-side) is done using validation.xml file.On success/failure, both these actions are mapped to the same (input) JSP page.
    Problem is that, validation errors in second form only is displayed. This is because, as soon as 1st form returns validation errors, the second form gets submitted. How can i specify that 2nd form should be submitted only if the 1st form doesnot return any validation errors. I know its possible using javascript at client side, but i want this validation on server-side.
    Can any one please help me out. Thanks

    Off hand I dont know the answer to your question. But since no one answered your question, here are my 2 cents worth:
    I suggest all your JSP pages have one and only one form tag. Re write your JSP page. Make sure all your variables your submitting have unique names. (no duplicate names). As far as I know, having multiple forms on a JSP page is not normallly done and makes it difficult to alter by another programmer after you leave the company.

  • How to update when i have two updateable report on single page

    Hi,
    I've two updateable report created using pl/sql procedure. I really don't know how to update both reports at the same time. I report contains only one row and second one contains multiple rows.
    For the second one, i use
    FOR i IN 1..HTMLDB_APPLICATION.G_F01.COUNT
    LOOP
    UPDATE table
    SET col3=HTMLDB_APPLICATION.G_F03(i),
    col4=HTMLDB_APPLICATION.G_F04(i)
    WHERE col1=HTMLDB_APPLICATION.G_F01(i) and
    col2=HTMLDB_APPLICATION.G_F02(i);
    end loop;
    how to update the 1st report. Please help me

    when you use the htmldb_item api to render form elements to your pages, those values end up in the htmldb_application.g_fNN arrays. i'm not sure how you defined your first report region, but you seem to be populating the g_f01 through g_f04 arrays with your second. if that's the case, try populating g_f05 with your first region. a query region like...
    select htmldb_item.text(5,ename) from emp
    ...would do it. you should then be able to access those submitted values in the htmldb_application.g_f05 array.
    hope this helps,
    raj

  • Recordset paging with two db in a single page

    I have two table to be show in a page, I can create a
    recordset paging for a table(A), but when i try create another
    recordset paging for other table(B) it changes all my other
    behaviors for my table(A). so is there any help for this?

    Create the rs for table A on one page, then create the rs for
    table B on another page, then go to the code for table B and copy
    it from the second page and paste it into the first page with table
    A.
    Have you got a connection string for both db's? If you have
    two db's, then you should have two connection strings at the top of
    the page after the first line of code.
    I have a site with three db's on a couple of pages!
    Mat

  • Two TableViews in a single page

    Hi all,
           I need to display two tableviews one beside the other.I am able to display one below the other but not side by side.Are there any settings to be done in this regard?.
    Regards,
    Chandana.

    use this
    <table border="0" width="100%" id="table1" height="100%" style="border-collapse: collapse">
         <tr>
              <td width="50%">htmlb:tableview id = "TV1 ....</td>
              <td width="50%">htmlb:tableview id = "TV2 ....</td>
         </tr>
    </table>
    instead of plain table tag you can also use htmlb:gridlayout
    Raja

  • R3 Transactions in a single page of portal

    The requirement is, there are n number of transactions in WAM system (R/3 system). We have to display all the transactions based on the authorization levels of the user logged in, to the page which is loaded when the WAM tab is clicked. And when the user clicks on a particular transaction code, it should take them to the respective screen using webgui. The authorization for transaction codes should be done at WAM end only.
    Pls let me know if anybody has an idea to implement this.

    Hi,
    There are two part of this problem
    1) To create an iview(Iview1) which will display all transaction which a user have authorization in your backend system. Also entries of this list must be available as a url, so that when user selects them it taken them to detail page.
    2) On click user should be taken to respective transaction. This can be achieved if we define a transaction based iview(Iview2), but where transaction code can be passed as a parameter.
    In that case, whenever user will select an entry from list(in Iview1) of transactions, then value of selected entry can be passed to Iview2 to host required page.
    <b>Disclaimer:</b> I have not tried this solution, this is just a suggestion.. But i think this should help you in this case.

  • 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

  • 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

  • Multiple pay slips in a single page

    Dear Experts,
    We have a requirement to print two payslips in a single A4 paper, This because the payslip which is being printed takes only a half of the A4 paper, The client doesn't what to waste the paper because the number of employees is huge.
    So they want two payslips in a single page.
    Can u please let me know how to achieve this.
    Thanks In Advance..
    Reena......

    Hi,
    Check for the code for Printing Lables so the same process can help you ....
    Regards,
    Vijaya Lakshmi.T

Maybe you are looking for

  • Problems creating Materialized View

    Hello, i have Problems with the creation of a materialized view with the following sql-statement:      SELECT Tag_ID, ROWNUM AS RowNr      FROM L_tag      ORDER BY tag_id ASC in the table L_tag is only one column (tag_id) that contains all dates (189

  • Influence the RRI

    Hello together, i've defined 2 queries in 2 different webtemplates. In Webtemplate A the user can select a year and the query A uses the year as a variable. THe Query shows data for the selected year and the previous year. Now i've defined a RRI from

  • RAW in Photoshop Elements 11

    I like to make photos in RAW but Photoshop lements 11 does not take it from my Canon 700D. What can  do

  • Unable to read big files into string object & java.lang.OutOfMemory Problem

    Hi All, I have an application that uses applet and servlet communication. On the client side I am reading an large xml file of 12MB size (using JFileChooser) and converting the file to an string object using below code. But I am getting java.lang.Out

  • Trouble downloading photos from card reader-OS9.1 G4 Cube

    Trying to download photos shot with Casio EXP600 onto Toshiba SD 512MB Card, inserted into Thunderbolt SD/MS card reader plugged into USB port on computer. Camera "Photo Loader" software downloaded OK onto computer. Get error message when try to down