How to implement iview by EP6 or Netweaver???

Hello,
I am new to SAP, so please forgive me for the stupid question...
Does iview be implemented by EP6 or Netweaver???
Any step-by-step documents or tutorials for me to study????
Thanks in advance & Best Regards
Tony

Hi,
Do you mean you want to create your own iview?
If yes, you create an Portal Application using NetWeaver Developer Studio or Eclipse(provided you have imported the PDK). Create a PAR(Portal Archive) file out of it.
Then create an iview using that PAR file and you can then use it in your portal.
You can also look into iviewstudio.com to know more about how to create iviews.
Does that answer your question?
Mark it closed if that helps you to solve your problem.

Similar Messages

  • How to implement iview for gui of windows ?

    Hi all.
    We are implementing the single sign on, integrate with EP with SAP R/3.
    We create ivew for gui of windows.
    When we sign in the EP, we click on the iview, inside iview, there is a window gui of sap gui.
    Now we meet with the error ' Issuer of SSO ticket is not authorized.
    We want to how to implement it using ticket authoration method. Whats the detailed steps ?
    Thanks a lot, its very urgent.

    Basically you need to logon as Administrator
    Go to ->System Administration -> System Configuration -> Keystore Administration -> Download veryfy.der
    then
    Check backend parameters...
    login/accept_sso2_ticket = 1
    login/create_sso2_ticket = 2
    Logon to Backend, go to transaccion strustsso2 and add the certificate (veryfy.der)
    At the portal, go to ->System Administration -> System Configuration -> System Lanscape -> go to the system and make sure that Logon Method is SAPLOGONTICKET
    That should be pretty much it...
    Hope this help!
    Juan Reyes

  • Webinar: How to implement secure scenarios with SAP NW PI 7.1

    SAP Intelligence Platform & NetWeaver RIG APJ Expert Call
    Dear valued SAP Experts,
    Next SAP Intelligence Platform & NetWeaver RIG Expert Call Session will take place on Tuesday, August 18.
    The SAP Intelligence Platform & NetWeaver RIG Expert Call Sessions are designed to support consultants, partners and customers  during their implementation projects. The sessions cover all different aspects of SAP NetWeaver and are aimed at
    thus provide knowledge which is not available via standard training courses. The session duration is typically 60min and includes questions and answers.
    Tuesday, August 18, 2009:
    How to implement secure scenarios with SAP NetWeaver Process Integration 7.1
    Time: 2.00 - 3.00 p.m. Singapore Time (UTC +8)
    This event will feature Makoto Sugishita with the SAP Intelligence Platform & NetWeaver Regional Implementation Group.
    Makoto provides the following abstract:
    In this session you will learn more about the core security concepts that are provided with the service-oriented architecture (SOA)
    management capabilities in SAP NetWeaver Process Integration (SAP NetWeaver PI). This session will cover main use cases and
    supported scenarios of secure SAP NetWeaver PI deployments. 
    SAP Connect Link: https://sap.emea.pgiconnect.com/I016095
    (no passcode needed)
    Dial in:
    For dial in details please register here http://www.surveymonkey.com/s.aspx?sm=EFeuZl9PxrwKOW5i5W556g_3d_3d
    Kind regards,
    Sarma Sishta
    SAP Intelligence Platform & NetWeaver RIG APJ

    hi,
    I'm making this a sticky thread till August 18 so it will have better visibility
    Regards,
    Michal Krawczyk

  • How to Upload/Migrate EP5 Roles To EP6 of Netweaver Componet

    I want to migrate my EP5 Application into EP6 of Netweaver Componet, Can any one guide me How To Migrater/Upload Roles in EP6 of Netweaver. First of All I want to Know How To Take the Roles Content whcich is in EP5 and in whcih format how to take. I really dont know where my roles are saved in EP5 and how to take those roles and upload in EP6 of Netweaver
    Thanks and Regards
    Prasad.Y

    Hi Prasad,
    <u>In ep5</u>:
    1. go to Portal Administration* -> Export
    2. select a role
    3. choose an export destination on the server (default is under EP5Data/.../Data/Export).
    4. press Export
    <u>In the server of the ep5 system</u>:
    1. put all the generated files in a folder, and zip it.
    <u>In ep6</u>:
    1. go to System Administration -> Transport -> Import
    2. choose "client"
    3. upload the zip you create and Press Import
    4. look under Migrated Content in the portal content for the result.
    Whereever that doesn't work, the way is to recreate the iView in ep6 (your developments from par, built-in iViews like KM navigation etc. from templates), and recreate the entire role/workset/page hierarchy.
    Hope that helps,
    Yoav.
    free translate from hebrew...

  • How to Create Pages in EP6 after Creating iView

    Dear All,
    I have created a iViews in EP6 based on available par files can any one tell me how to cretae the pages for that iview so that when user logs in he can click on page link and see iView in Ep6
    Thanks and Regards
    Prasad.Y

    Hi Prasad,
    To get more info on this question and your other questions, see this documentation on help.sap.com:
    http://help.sap.com/saphelp_nw04/helpdata/en/a9/76bd3b57743b09e10000000a11402f/frameset.htm
    In the navigation panel on the left choose Administration Guide > Content Administration. You will find topics on Pages, roles, worksets, etc.
    Hope this helps.
    John

  • How to implement a help feature in iView Tray

    How to implement a help feature in an iView Tray?

    Hi Gregor,
    Could the answer be connected to the class com.sapportals.portal.prt.component.SystemModes ?
    I can't really see how this class is called, but it gives the error message you are talking about
    The method doHelp for SP2 Patch3 is provided below
    public void doHelp(IPortalComponentRequest aRequest, IPortalComponentResponse aResponse)
            IPortalComponentContext context = aRequest.getComponentContext(IPOMConstants.DEFAULT_MODE);
            IPortalComponentProfile profile = context.getProfile();
            String helpName = profile.getProperty("com.sap.portal.iview.HelpName");
            if(helpName == null)
                helpName = profile.getProperty("HelpName");
            String helpURL = profile.getProperty("com.sap.portal.iview.HelpURL");
            String isolationMode = profile.getProperty("com.sap.portal.reserved.iview.IsolationMode");
            if(context != null)
                if(helpName != null)
                    String componentName = context.getComponentName();
                    Locale locale = aRequest.getLocale();
                    String language = locale.getLanguage();
                    String helpPath = "help/" + language + "/" + helpName;
                    IResource resource = aRequest.getResource(componentName, "page", helpPath);
                    if(resource.isAvailable())
                        aResponse.addResource(resource);
                    else
                        aResponse.write("<b>Sorry, no help available.</b>");
                } else
                if(helpURL != null && helpURL.length() > 0)
                    if(helpURL.startsWith("http://"))
                        if(isolationMode != null && isolationMode.equals("URL"))
                            HtmlIFrame frame = new HtmlIFrame();
                            frame.setStyle("width:100%; height: 100%;");
                            frame.setSrc(helpURL);
                            aResponse.write(frame.toString());
                    } else
                        String componentName = null;
                        if(helpURL.charAt(0) != '/')
                            componentName = context.getComponentName();
                        } else
                            int componentNameIndexEnd = helpURL.indexOf('/', 1);
                            componentName = helpURL.substring(1, componentNameIndexEnd);
                            helpURL = helpURL.substring(componentNameIndexEnd);
                        IResource resource = aRequest.getResource(componentName, "page", helpURL);
                        if(resource.isAvailable())
                            aResponse.addResource(resource);
                        else
                            aResponse.write("<b>Sorry, no help available.</b>");
                } else
                    aResponse.write("<b>Sorry, no help available.</b>");
    The doOnNodeReady method is also rather interesting. Perhaps another way to solve it?
    protected void doOnNodeReady(IPortalComponentRequest request, IEvent event)
            NodeMode nodeMode = request.getNode().getNodeMode();
            if(nodeMode == NodeMode.HELP_MODE)
                IPortalComponentContext context = request.getComponentContext(IPOMConstants.DEFAULT_MODE);
                IPortalComponentProfile profile = context.getProfile();
                String helpName = profile.getProperty("com.sap.portal.iview.HelpName");
                if(helpName == null)
                    helpName = profile.getProperty("HelpName");
                String helpURL = profile.getProperty("com.sap.portal.iview.HelpURL");
                String isolationMode = profile.getProperty("com.sap.portal.reserved.iview.IsolationMode");
                if(context != null && helpName == null && helpURL != null && helpURL.length() > 0 && (isolationMode != null && !isolationMode.equals("URL") || isolationMode == null) && helpURL.startsWith("http://"))
                    request.redirect(helpURL);

  • How to view the History of a Crystal Reports iView in EP6?

    How to view the History of a Crystal Reports iView in EP6?
    Our Crystal reports are viewed via Crystal Enterprise and are both BW and non-BW Crystal reports.
    I have looked at the three supplied iViews from Business Objects (alert, folder and thumbnail) but I have only been able to access the last instance or run on demand a CR.
    Our users would prefer to see a listing of the past runs of the report and choose which report to view.  What parameters need set in the EP6 iView to see the history of a report?

    Hi Heather,
    it is correct that there is no sample iView that shows the History of Crystal Reports that are stored in Crystal Enterprise but there a sample codes on our web site and there are sample codes as part of the SDK documentation that show how to call the history and you should be able to take the code and create your own Java or ASP iView based on that.
    the link to our developer library :
    http://www.businessobjects.com/products/dev_zone/default.asp?intcmp=products12
    hope this helps
    Ingo

  • How to Upload/Migrate EP5 Users To EP6 of Netweaver Componet

    I want to migrate my EP5 Application into EP6 of Netweaver Componet, Can any one guide me How To Migrater/Upload Users in EP6 of Netweaver. First of All I want to Know How To Take the Users Content whcich is in EP5 and in whcih format how to take. I really dont know where my Users are saved in EP5 and how to take those Users and upload in EP6 of Netweaver
    Thanks and Regards
    Prasad.Y

    OSS 827768 Comparison between Migration and Transport
    732458 Migration Enterprise Portal 6.0 SP2 to NW '04 - Central Note
    732461 Central Note - Migration of EP & KM from 5.0 to NW '04 
    Look under /instguidesNW04 -> Documentation -> How-To guides for the current docs on EP5 and EP6 migration.
    Also, NW04 is able to take in users through a plain text upload file.
    Nick

  • BI 2004s web template as an iView in EP6 SP16 Portal

    We are currently using SAP EP 6.0 SP16 as an Enterprise Corporate Portal.  We also have a separate NetWeaver BI 2004s (different SAP NetWeaver BI 2004s Java/Portal runtime) and would like to run the new BI 2004s web template as an iView in the SAP EP 6.0 portal SP16.  Can someone example in detail how this can be done?
    Thanks,
    Gary

    Michael,
    I'm a little confused.  The changes you mention below do I make them on the EP6 SP16 portal or SAP NetWeaver 2004s BI portal?  Note if I suppose to make these changes on EP6 SP16 portal via SAP BW Report iView template well there is no property called ‘Version property’.  To be clear I want to run some BI 2004s BI reports in existing EP6 SP16 portal.  I did read some documentation saying this can be done via URL iView and was able to execute BI report via right clicking on iView and select ‘Preview’.  But when I add the URL iView to EP6 portal role and execute within portal desktop the BI report never loads just continuously showing the refresh (loading) image.  Any ideas and appreciate your help.
    Thanks,
    Gary

  • How to implement Self Registration in EP 7.0

    Hello All,
    I am working in Enterprise Portal 7.0.
    I wanted to customize self registraion page in my portal in SAP Netweaver 7.0.
    Please tell me how to implement self registration in Portal 7.0.
    Thankx.

    Hi,
    I am able to run that component, but its giving another error such as:
    Java iView Runtime
    Version : 7.00.200702010738
    An exception occured while processing your request.
    com.sapportals.portal.prt.dispatcher.DispatcherException: Could not find connection portla
    com.sapportals.portal.prt.dispatcher.DispatcherException: Could not find connection portla
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:528)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         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:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         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:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    If this situation persists, please contact your system administrator. 
    Please let me know your comment about this Error.
    Thank you so much in Advance.
    Thanks,
    Pallavi

  • 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

  • How to implement the Internationaliztion in VC

    Hi All,
    How to implement the Internationalization in VC. Based on the Portal user Lanugauge attribute. how to implement .? Is it possible to implement the Internationalization , changing the  displaying label data and Title names in VC application.
    Regards
    Vijay

    Hi Vijay,
    I think this help-entry should answer all your questions:
    Preparing iViews for Portal Translation:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ae/48e7428d877276e10000000a1550b0/frameset.htm
    If you have further questions, don't hesitate to ask!
    Regards,
    Christian
    don't forget the points

  • How to Implement a Single Folder - Multiple Authors Scenario für NW 7.3?

    Hello,
    is a version "How to Implement a Single Folder - Multiple Authors Scenario" for NetWeaver 7.3 planned?
    Best regards,
    Arnold Gallemann

    Hi Detlev,
    thanks a lot for sharing your work!
    Due to the reason we need a different configuration in KM, I changed e.g. some values in the .cc.xml and .co.xml files. I rebuild the project and checked the created EAR file. I noticed that the ConfigArchive file in EAR file still has the old values. It seems that SAP NetWeaver Developer Studio 7.3 is not recognizing in a portal application project the configuration of the src.config folder anymore. To test this, I removed the initial provided ConfigArchive in the folder dist\PORTAL-INF\config\ from your project. I rebuild it and the ConfigArchive in the EAR file wasnu2019t included.
    I found in the documentation (http://help.sap.com/saphelp_nw73/helpdata/de/42/60aec0032c1422e10000000a114cbd/frameset.htm) the SAP Note 1572813, which would describe how to use KMC wizards in SAP NetWeaver Developer Studio 7.3. But the article is currently not released to public.
    In addition I have discovered, that it is possible to include the src.config folder in the build process if the project is set up as a development component (see for details bullet point Optionally of http://help.sap.com/saphelp_nw73/helpdata/de/42/60aec0032c1422e10000000a114cbd/frameset.htm). This works. But later on I am facing another problem: I am missing the entry KMC-CM to add it as a dependency for the development component.
    Best regards
    Mario

  • How  to implement "my appraisals" service in ESS ?

    hi,
    i am configuring ESS in EP 6.0. My back end system is MySAP ERP. i wanted to implement "My Appraisals" service in ESS but i dont see any iview for it . Can anyone tell me how to implement it in ESS?
    regards,
    aditi

    Hi Aditi
    if u dont' found ZEMPLOYEE_CAREER_MBO  (customer specific)
    crate ur own by following
    spro ->IMG ->cross-application components ->Homepage Framework-> resources ->define resources ->define resources (add entry)
    click on new entry
    specifi the following
    resource key -
    >ZEMPLOYEE_CAREER_MBO
    description -
    >Appraisals In Process
    object name----->hap_document/documents_todo.htm
    url of pcd page-->pcd:portal_content/com.sap.pct/every_user/com.sap.pct.ess.employee/com.sap.pct.ess.roles/com.sap.pct.ess.employee_self_service/com.sap.pct.ess.employee_self_service/com.sap.pct.ess.area_career_job/com.sap.pct.ess.bsp_career_job
    save ur entry. release the request.
    now create the service.
    spro ->IMG ->cross-application components ->Homepage Framework-> services->define services->define services(add entry)
    click on new entry specifie following
    service key -->EMPLOYEE_CAREER_APPRAISALS
    service link text-->Appraisals
    service type--->service build with BSP
    link resource--->ZEMPLOYEE_CAREER_MBO
    save ur entry.
    now click on assign services to subarea->Assign Services to Subareas (Find Entries)
    create new entry.
    subarea key---->EMPLOYEE_CAREER_SUBAPPRAISALS
    service key short---->EMPLOYEE_CAREER_APPRAISALS
    position--->1
    if u have any query revert back
    regards,
    kaushal

  • How to implement third party MSN Messenger chat in KM

    Hi Gurus,
          how to implement a third party MSN chat in KM portal.
    i got a par file to implement it, which is -
    "com.sap.netweaver.coll.demo.sdn_cs_messenger.par"
    but it is not working properly in my portal.
    please help me to solve this.
    Thanks in advance
    Vipin

    Hi Koti Reddy,
    Thanks for the reply.
    i have already completed all the steps in this link.
    one difference in this link is deploying the par file.
    i have not used any project names for this. i directly deployed par in portal using System administration->support
    Link command for Send Instant Message (clpMessengerChat)
    was avilable in the list after deployment and i have added it to clpGroup.
    When i changed the position type property of  clpMessengerChat one window is flashing for a second.
    How to solve this pblm
    Vipin

Maybe you are looking for

  • Select from table where field contains the first 3 character

    The value of the field contains leading zeros like 0000000123, 0000001123, 0000011123. Now we need to check the table for entries that contains the first three characters excluding the zeros. If we are looking for '123' then we should be retrieving 0

  • How to disable display from constantly lighting on its own

    BB Curve 85 30 with Boost. My battery is really getting drained by something that keeps lighting the display. I believe its the email, as I  disabled fb and I don't use im,  and only use sms with family. Here's what I would like to know. 1. I don't w

  • Producer/Consumer(Events)

    I am trying to practice using Producer/Consumer(Events) design pattern.  In the attached VI I'm trying to control 3 LED's using front panel controls.  I'm not sure how to extend the time that the LEDs remain lit.  My first guess would be to continue

  • What is cost of a particular item?

    I can see the cost of the particular item in the 'Item Cost History' form of Oracle Apps for a specified date. If i wanted to see the same in back end table, what table should i refer? MTL_CST_ACTUAL_COST_DETAILS, MTL_CST_TXN_COST_DETAILS & CST_LAYER

  • Communication between midlets

    i want two midlets communicating with each other - actually what i want is a cellphone sending a query to a server which sends some results back. right now i am doing on the emulator - what i want is one emulator senda a message to another emulator a