Create iviews inside a worset

Hi experts,
                   I need to create a single logon for four web applications...First i have created a separate folder inside the portal content and inside tht i have created a page and workset...
Plz anyone help how to put these four web pages in a single page

Open the page object. If you just need to show the four iVIews one by one inside the page then just right click on the iViews and select Add iView to Page as Delta Link' you are done. If you need to show them side by side then in your page you have to have a layout like two columns equal width. Then again add your iVIews in the page and then from page layout radio button selection drag and drop the iVIews in desired order.
Regards,
Shubhadip

Similar Messages

  • WDRuntimeException error creating iViews pages

    Hi All
    I´m not sure if this message I can put here but ...
    When I´m trying to create iviews on Portal 7.0, I´m having this error message (also occurs when choose User Administration inside portal):
    500 Internal Server Error
    Web Dynpro Container/SAP J2EE Engine/6.40
    Failed to process request. Please contact your system administrator.
    Error Summary
    While processing the current request, an exception occured which could
    not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and
    correct the cause of the problem, please contact your
    system administrator. To facilitate analysis of the problem, keep a
    copy of this error page. Hint: Most browsers allow to
    select all content, copy it and then paste it into an empty document
    (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed
    to create deployable object 'sap.com/pb' since it is
    not a Web Dynpro object.
    at
    com.sap.tc.webdynpro.serverimpl.core.deployment.AbstractDeployableObject.
    (DeployableObject.java:56)
    at
    com.sap.tc.webdynpro.serverimpl.wdc.deployment.DeployableObjectFactory.getDeployableObject(DeployableObjectFactory.java:95)
    at
    com.sap.tc.webdynpro.services.sal.deployment.core.DeployableObjectInternal.getDeployableObjectInternal(DeployableObjectIntern
    al.java:34)
    at
    com.sap.tc.webdynpro.clientserver.session.RequestManager.getApplicationDeployableObjectPart(RequestManager.java:380)
    ... 21 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    Server
    Web Dynpro Runtime Vendor: SAP, build ID: 7.0008.20060517125535.0000
    (release=645_VAL_REL,
    buildtime=2006-05-29:19:11:56[UTC], changelist=403424, host=pwdfm101),
    build date: Thu Jul 20 17:37:17 PMDT 2006
    J2EE Engine 7.00 patchlevel
    Java VM Classic VM, version:1.4.2, vendor: IBM Corporation
    Operating system AIX, version: 5.3, architecture: ppc64
    Session & Other
    Session Locale pt_BR
    Time of Failure Tue Aug 08 10:36:54 PMDT 2006 (Java Time:
    1155040614828)
    Web Dynpro Code Generation Infos
    Does somebody see something like this error????
    Thanks a lot !!!
    Daniela Godoi

    Thanks Steelman! I appreciate you.
    Yes, i have created the System object. (BD1CLNT100)
    But when i was following the steps you gave to me in creating the Crystal Enterprise Report :> Folder= (Crystal Report) ->iView->Crystal Enterprise Report> ( iView Name => “rptTest”/ iView ID => “rptTest” )Standard Crystal Enterprise Report-->
    It is asking for the system, which i selected the system object i created (BD1CLNT100), then it is asking for (Crystal Enterprise Report ID, Application Parameters) and the (Viewer Application Page) is set to default "viewreport.csp"
    What should is the (Crystal Enterprise Report ID, Application Parameters) and should i leave (Viewer Application Page) set to default "viewreport.csp"?
    Thanks,
    Haffiz

  • Cannot create iView from PAR file

    I am trying to create an iView from PAR file. But when I select the option,
    "Portal component - create an iView from a portal component contained in a deployed portal archive (PAR) file"
    and click next, I get the following error.
    Error______________________________________
    Step 1:  Portal Archive Selection
    No templates to display. You are not assigned to any existing templates.
    I have portal_configurator and developer roles assignmed to myself. Which other role do I need? I cannot get admin role.
    Note: Other users with admin roles can create iViews.

    Hi
    What is your portal version details ?
    In EP 7.0 you do not have the option -- New From PAR.
    So to create IView from Par, you should select the option New --> IView and then there will be an option to select par file.
    Otherwise
    1.Check if your par file is deployed on server.
    2. Check the portalapp.xml, if you have configured your components properly.
    Cheers
    Chinmaya
    reward for helpful answers

  • Is there any way to create table inside cell in sapui5??

    Hello experts,
    How do we create table inside cell in ui5??
    something like this::
    Market Activities
    Other Activities
    Header 1
    Header 2
    Header 1
    Header 2
    Header 3
    Header 1
    Header 2
    Header 3
    Then how do we go about binding??
    Thank you,
    Best Regards
    Chetna

    This code is actually for simple table which i have created:
    var dvrData = [
                                   {DealerNo:"",checkedOrd:{checked:false,enabled:false},checkedOrd1:{checked:false,enabled:false},checkedColl:  {checked:false,enabled:false},checkedPromos:{checked :false,enabled:false},
    var newDvrTable = new sap.ui.table.Table({
                         id:"newDvrTableId",
                         visibleRowCount: 1,
                        selectionMode: sap.ui.table.SelectionMode.Single
    //following field comes unser first column (with blank label)
    newDvrTable.addColumn(new sap.ui.table.Column({
    label: new sap.ui.commons.Label({text: " Dealer Code", wrapping : true}),
                         template: new NewTextField({
                               id:"dlrNum",
                               value: "{DealerNo}" ,
    // following columns come under "MARKET ACTIVITIES"
      newDvrTable.addColumn(new sap.ui.table.Column({
                         name : "SHOP ACTIVITY",
                         label: new sap.ui.commons.Label({id:"shopId",text: "SHOP",
                               wrapping : true}),
                               template: new sap.ui.commons.CheckBox("chkShop",{
                                      enabled: "{checkedOrd/enabled}",
                                      checked:"{checkedOrd/checked}",
    newDvrTable.addColumn(new sap.ui.table.Column({
                         name : "Order Related ACTIVITY",
                         label: new sap.ui.commons.Label({id:"shopId",text: "ORDER",
                               wrapping : true}),
                               template: new sap.ui.commons.CheckBox("chkShop",{
                                      enabled: "{checkedOrd1/enabled}",
                                      checked:"{checkedOrd1/checked}",
    //Following two columns must come under Other Activities Column
    newDvrTable.addColumn(new sap.ui.table.Column({
                         name : "CHEQUE COLLECTION",
                         label: new sap.ui.commons.Label({id:"shopId",text: "COLLECTION",
                               wrapping : true}),
                               template: new sap.ui.commons.CheckBox("chkShop",{
                                         enabled: "{checkedColl/enabled}",
                                           checked:"{checkedColl/checked}",
    newDvrTable.addColumn(new sap.ui.table.Column({
                         name : "SCHEME UPDATE",
                         label: new sap.ui.commons.Label({id:"shopId",text: "SCHEME UPDATE",
                               wrapping : true}),
                               template: new sap.ui.commons.CheckBox("chkShop",{
    enabled: "{checkedPromos/enabled}",
                                      checked:"{checkedPromos/checked}",
      var oModel = new sap.ui.model.json.JSONModel();
                  oModel.setData(dvrData);
    var newdata = oModel.getData();
    sap.ui.getCore().setModel(oModel,"newDvr");
                  newDvrTable.setModel(oModel);
                  newDvrTable.bindRows("/");
    Thank you,
    Best Regards,
    Chetna

  • Error While Creating Iview?

    Hi Everyone,
    I Got the error while creating iview in the portal.
    Just i went Portal COntent->Folder->New->Iview
    500   Internal Server Error
      SAP NetWeaver Application Server 7.00/Java AS 7.00 
    Failed to process request. Please contact your system administrator.
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    The initial exception that caused the request to fail, was:
       java.lang.NoClassDefFoundError
         at com.sap.security.core.server.csi.URLChecker._isValid(URLChecker.java:289)
         at com.sap.security.core.server.csi.URLChecker.isValidURL(URLChecker.java:1202)
         at com.sap.tc.webdynpro.serverimpl.core.url.AbstractURLGenerator.checkURL(AbstractURLGenerator.java:697)
         at com.sap.tc.webdynpro.serverimpl.core.url.AbstractURLGenerator.applyWSRPTemplate(AbstractURLGenerator.java:1235)
         at com.sap.tc.webdynpro.serverimpl.core.url.AbstractURLGenerator.computeWebResourcePath(AbstractURLGenerator.java:945)
         at com.sap.tc.webdynpro.serverimpl.core.url.AbstractURLGenerator.computeWebResourceURL(AbstractURLGenerator.java:1078)
         at com.sap.tc.webdynpro.serverimpl.core.url.AbstractURLGenerator.getWebResourceURL(AbstractURLGenerator.java:223)
         at com.sap.tc.webdynpro.services.sal.url.api.WDURLGenerator.getWebResourceURL(WDURLGenerator.java:377)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:407)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Thanks
    Subbarao

    Hi Subbarao,
    Is this a new installation. Check whether all post installation tasks (like patch upgrade) are completed.
    Also try restarting the server.
    Regards.
    Santhosh

  • Error while creating zone inside Solaris 11.2 beta ldom

    hi
    i have installed solaris 11.2 in ldom (sparc ovm 3.1 )
    and i try to create zone inside guest domain , it always give this error
    Error occurred during execution of 'generated-transfer-3442-1' checkpoint.
            Failed Checkpoints:
            Checkpoint execution error:
                    Error refreshing publishers, 0/1 catalogs successfully updated:
                    Framework error: code: 28 reason: Operation too slow. Less than 1024 bytes/sec transfered the last 30 seconds
                    URL: 'http://pkg.oracle.com/solaris/beta/solaris/catalog/1/catalog.summary.C' (happened 4 times)
    Installation: Failed.  See install log at /system/volatile/install.3442/install_log
    ERROR: auto-install failed.

    You might want to tune PKG_CLIENT_LOWSPEED_TIMEOUT before running "zoneadm install"
    For example:
    # export PKG_CLIENT_LOWSPEED_TIMEOUT=300

  • IVew Error:Create IVIEW in a Portal  for a SAP BW Query

    Hi,
    My requirment is to publish a BW Query to Portal.
    When i tried to create a iver for a particular BW query in portal.....it is pulling every thing.
    When i click to execute a query for which i created iview...a new window pops up and and displays queries according to roles
    Please update me whats happening
    Background:
    BW Version : 7.0
    Currently we are accessing a BW Reports/Queries using BEX WEB Analyzer.
    We are using a Standard Web Templete in WAD.
    When we create a New Query in BW Query designer and publish it a role folder(BW)-PFCG.
    When i execute BEX WEB Analyzer through Explorer i can access query from the folder in the role to which i published.
    I don't need to add each query to web templete when i publish the query to a pole folder in PFCG when i run the BEX WEB Analyzer the query will be in that role automaticall.
    Now i am planning to publish queries in Portal
    I created a role in Portal>Created a work set>assigned the workset to the role
    I am trying to create a iview
    Create a new iview> templete>Query string details
    i assigned this iview to the role
    When i try to access the query from the role i created. intsed of opening the query for which i created iview ...it is opening all the queries that i can access form BEX WEB Analyzer...
    Please update whats happening
    Please let me know if you need firther information
    Thanks

    Hi
    Thanks for the updare...the document (pdf) is not able open...file damegaed...
    PLease aupdate me
    When i created a iview for a single BW query why i can able to see all the queries in the BEX WEB Analyzer
    Thansk

  • Creating iViews Programatically

    Hi all,
    I have got a requirement to create iviews programatically.
    The detailed requirement is :
    Intially an excel file which is placed in clients pc will have all the information related to the kind of iViews required, like the name, properties, PCD , of which type etc., Now from portal we need to have the facility to access this excel file and read the information mentioned and create appropriate iViews.
    If anyone has already implemented such a kind of requirement or has got any bit of idea on the same can pls share.
    Thanks In Advance,
    Vipin.

    Hi Vipin,
    You could instead create an excel sheet with macros which use the data in the excel sheet to create an XML file and then upload that file into the portal to create PCD Content.
    Refer to this document, it talks about "How to Automate Content Creation via XML (XML Content and Actions) (NW 7.0)"
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/207a2141-c870-2910-e080-90c920b24f47
    Thanks,
    GLM

  • Creating iViews

    Hi Guys,
    Does anyone have any info on creating iviews?  I have installed Enterprise Portal version 7 and would like to start creating iviews and create new tab button activity on the portal home page.
    my e-mail address is [email protected]
    Thanks
    Depesh

    Hi DV
    Lot of information available on SDN
    Re: Web cockpits and IVIEWS
    https://www.sdn.sap.com/content_documents/How%20to%20Evolve%20from%20SAP%20BW%20to%20a%20Full-Blown%20SAP%20NetWeaver%20Implementation.pdf
    https://websmp109.sap-ag.de/~sapdownload/011000358700002860012003E/HowToCreateInfoCockpit.zip
    How to publish iviews on EP:-
    Re: How to Publish Iviews to EP
    Regards
    Pradip

  • Creating iViews Dynamically

    Dear All,
    Is it possible to create different kinds of iViews dynamically like <b>URL iViews, XML iView</b>s etc?
    I know that we can create iViews based on existing
    PCD object or application.
    Please let me know.
    Kind regards,
    Sreejesh.

    Hi Sreejesh
    check out the links below:
    http://help.sap.com/saphelp_nw04/helpdata/en/0c/1c4af4da4043bbaf0effd45b93f6d8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/f5/eb51730e6a11d7b84900047582c9f7/content.htm
    Regards
    Yoga

  • Has anybody created Iview from "Webdynpro Java" component in CE7.1 ?

    Hi All,
           Has anyone created Iview from Webdynpro Java component in CE7.1.
    Because the wizard that appears for creation of Iview has only "Webdynpro ABAP"
    component.There is no option to create iview from "Webdynpro Java" component.
               Althought in portal content--->Template folder i can see there is also
    another template for "SAP Webdynpro iview" which i think is for the Java scenario.
    But issue is, its not coming in the wizard.Can anyone tell me how to make it appear in the wizard ? It will be of great help to me.
    Thanks and Regards
    Ashis

    Hi Ashis,
    your deployed webdynpros are published under "web dynpro applications". just copy the webdynpro from there and paste it into the portal content section.
    http://help.sap.com/saphelp_nwce10/helpdata/en/ce/e0d6f54ae641fc9566501cffaa8c6c/frameset.htm
    Hope that helps you.
    Best wishes, Jens

  • How to create iView for WDPApplication deployed in another server instance?

    hi experts,
    I am in the Enterprise Portal (Server01), need to create iViews for deployed WDP applications (Server02).
    When creating a new iViews, i can only get WDP applications deployed in Server01 as in [this screen|http://img98.imageshack.us/img98/6361/newiview.png].
    My question is, is it possible for me to create iViews in Server01 for WDP applications deployed in Server02? How??
    Thanks in advance.
    Regards,
    kityein

    Hi,
    You can either go with an [url|http://help.sap.com/saphelp_nw70/helpdata/en/4c/eee2bedf3b4082b14a933e5ee63472/frameset.htm] iView or might want to check with [federating|http://help.sap.com/saphelp_nw70/helpdata/en/67/7e70424edcc553e10000000a1550b0/frameset.htm] your portals.
    Kind Regards,
    Mrityunjay.

  • CREATE OBJECT inside INITIALIZATION event in ABAP

    Hi everyone,
    I have one question, can we create object inside INITIALIZATION event. Why, I am asking this question is, because most of the time I have seen people to create object inside start-of-selection. Please give your thought on this.
    The code I have just coded below is also right or wrong?
    CLASS lcl_build_data DEFINITION.
       PUBLIC SECTION.
         METHODS : constructor,
                            get_all_files,
                             validate_site.
    *-- Private Section declaration
       PRIVATE SECTION.
             METHODS : clear_and_refresh,
                                display_output.
    ENDCLASS.                 
    *** class declaration,  create instance for the class
    DATA: gv_data     TYPE REF TO lcl_build_data.
    INITIALIZATION.
    *** Create class object. Constructor method will be called to Refresh
    *** and Clear all internal tables and Work areas
       CREATE OBJECT gv_data.
    *                    AT SELECTION-SCREEN             *
    AT SELECTION-SCREEN ON s_vkbur.
    *** Sales Office validation
       CALL METHOD gv_data->validate_site.
    *                START-OF-SELECTION                    *
    START-OF-SELECTION.
    *** Get the list of all files from unix dir.
       CALL METHOD gv_data->get_all_files.

    Since you are using the same object for your Selection screen related events, AT SELECTION-SCREEN, you would have to instantiate the object in the INITIALIZATION event. If your object usage is just for the data - In case you use the MVC design pattern, you should push back the object creation in START-OF-SELECTION.
    Regards,
    Naimesh Patel

  • Problem in creating iViews.

    Hi,
       In Enterprise Portal Page I am not able to create iview. Previously it worked fine, if I right clicked folder under portal content it would show following options like New,New from PAR,open,refresh, change id, delete , copy and cut but now its shows following options like open,open in new window, Save target , Print target, cut ,copy , shortcut and properties.
    Can anyone tell what can be the problem?
    Thanks in advance.
    Suresh

    thanks a lot dudes
    I am using IE 6.0 new version
    I Uninstalled and reinstalled the IE Even i am facing same error. In bottom of IE message is like icon followed by  "done but with errors on page" if i double clicked that pop up box showing Error
    1.object expected in  
    URL:http://iscsapapp4w:50000/irj/portal
    URL:http://iscsapapp4w:50000/irj/servlet/prt/prtroot/pcd
    2._htmlbMessageBar is undefined
    Anyone help me out what settings i have to do in my IE.
    thanks in advance
    Regards
    Suresh

  • Adding Custom Attributes in Search/Create iView

    Hi,
      I am able to create "Customized Information" in Search/Create user iView which is under User Administration Role. For example "CustomerCode" attribute I created in Search/Create iView. Also able to retrieve the "CustomerCode" value in the iViews.
      But the iView which I am using must have Role "super_admin_role", which is not the requirement.
      Can someone tell me how I can use the iView without having "super_admin_role" Role.
    Regards
    Deep Nain Kundra
    Message was edited by: Deep Nain Kundra

    Hi,
       You can go: Content Administration-Portal Content-Portal Content folder-choose your iview-by mean context menu-choose permission and add your role.
       Also, you could System Administration-Permission.
    Patricio.

Maybe you are looking for

  • Can Photoshop Elements handle very large files?

    I have some very large image files (up to 20,000 x 30,000 pixels).  Microsoft paint can not open them because of resource limitations. I don't want to do anything real fancy.  Maybe extend a square matrix with white pixels or overwrite sections with

  • Upgrading to Solaris 10/08 Error: The disc you inserted is not a Solaris CD

    I am trying to upgrade an e450 to Solaris 10/08 from 8/07. I boot from CD 1 and run through all the pre-install questions. The system gets to the point where it asks me if I want to do a standard install or whatever the other option is. I choose stan

  • Apache webser configuration??

    Hi, I am having problems with my Apache webserver configuration, I think de Jserv configuration. http://localhost/ is working fine, I get an nice page of the webserver that says that it's working. but... I've added some aliases, but when I want to go

  • Can't import photos to library, don't even have photos folder.

    I even have tried going to "file," and creating a new library folder, but it won't even let me import them. How do i get a photo folder in my library???

  • Best format for emailing short videos

    I want to email short edited videos of the kiddo to family and friends but I want it to be the best quality possible to send in email format. I'm in the process of testing different formats to export to but thought I'd ask for tips. Also, should I no