Client side system requierments for using enterprise portal??

Hi
Does anybody know if there are some official client side system requirements published for using the enterprise portal?
Also, is there any experience on client side requirements for having all features operating at a decent usability?
Regards,
Nana

Hi,
SUS is mostly untouched in SRM7.0 and it is still using BSP application.
Regards,
Ranjan

Similar Messages

  • E-Recruiting questionnaire for users using Enterprise Portal

    Dear All,
    We use Enterprise Portal 6.0 for internal candidates to access e-Recruiting 3.0.
    Users do not need to have password to e-Recruiting as they can access as communication user with SSO.
    However, when recruiter sends a questionnaire to internal candidates, they need to logon with credentials to e-Recruiting, which they don't know.
    Does anybody have any idea on the workaround, or any technical solution to synchronize the credentials between EP and e-Rec?
    Thank you in advance for your advise.
    Best regards,
    Emi

    Hi Bharat,
    Thank you for your information.
    Yes, it is true that we can insert the link to questionnaire, user ID and password in the correspondence.
    However, as far as I know, if you insert a password in the correspondence, it always generates a new password and I don't want this to happen for external candidates who are accessing e-recruiting directly.
    Is there a way just to show the current password, without generating a new one in the correspondence smartform?
    Thank you.

  • Problem in creating client side PDF with image using flex and AlivePD

    I need a favor I am creating client side PDF with image using flex and AlivePDF for a web based application. Images have been generated on that pdf but it is creating problem for large size images as half of the image disappeared from that pdf.I am taking the image inside a canvas . How do i control my images so that they come fit on that pdf file for any image size that i take.
    Thanks in advance
    Atishay

    I am having a similar and more serious problem. It takes a
    long time to execute, but even attaching a small image balloons the
    pdf to 6MB plus. After a few images it gets up to 20MB. These are
    100k jpeg files being attached. The resulting PDF is too large to
    email or process effectively. Does anyone know how to reduce
    size/processing?

  • Which licenses do I need for the Enterprise Portal from Dynamics AX R2 2012

    Dear Community,
    some time ago i heard about the Enterprise Portal, which requires a SharePoint 2013 and a Dynamics AX R2 2012 Server.
    My company has a fully licensed SharePoint 2013 Enterprise Server and enough CALs. We also have a Dynamics AX 2009 Server running. 
    Now to my question: What licenses are needed to get a Enterprise Portal with Dynamics AX 2012?
    Thanks for your responses.
    Sincerely ShareBear9280

    Hi ShareBear,
    According to your description, my understanding is that you want to know which licenses needed for the Enterprise Portal from Dynamics AX 2012 R2.
    There are 4 types of user CALs in Dynamics AX 2012 R2 - Enterprise, Functional, Task, and Self Serve. The number of CALs needed is related to who these users are and what they do.
    More information, please refer to the link:
    http://community.dynamics.com/ax/f/33/t/114710.aspx
    For this issue, I recommend you can post your question to the forum for Microsoft Dynamics AX: 
    http://community.dynamics.com/ax/f/33.aspx .More experts will assist you, then you will get more information relation to Microsoft Dynamics AX.
    Thank you for your understanding and support.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Do we have a list of SAP certified system integrators for HANA Enterprise Cloud

    I am in a sales cycle and SAP services estimated price for implementation is to expensive and we are pitching HEC.  Do we have a list of SAP certified system integrators for HANA Enterprise Cloud for ERP (Finance and Merchandising for Retail)?

    Yeah, not sure why they took it out of the cloud interface.
    But if you go to http://www.businesscatalyst.com/partnerportal and login with your cloud ID you will have access to all your cloud sites and many other features.

  • Use Enterprise portal theme for Web Client

    Hi Experts,
    I am new to this topic.
    I am working in portal project. We have situation that in portal we have excellent theme but in CRM Web client we donu2019t have fantasy theme like portal.
    Is there anyway can I use my portal theme for CRM web client?
    If you guide me how to integrate portal theme into CRM Web UIs, that will be great.
    Thanks.

    Ashok,
    There is no easy way to extend your portal theme to the CRM WebClient. Lot of effort is needed for identifying the portal CSS files and updating CRm WebClient theme CSS files with the portal theme attribute values.
    Thanks,
    Thirumala.

  • STRUTS: client-side validation in jsp using  DynaValidatorForm

    I am supposed to work on struts on as project and it is like learning a crash course and work the next day.
    In Struts 1.1 enviroment, I am using DynaValidatorForm to create a bean form and then perform validation.
    1. I write a DynaValidatorForm definition in struts-config.xml
    2. I write xml for action so that when /getQuotes.do in invoked by a jsp form, the form data is put into the QuoteDetailsBean.
    3. add the plugin script for ValidatorPlugIn
    xml fragment from struts-config:
    //form bean
    <form-beans>
    <form-bean name="QuoteDetailsBean" type="org.apache.struts.validator.DynaValidatorForm">
        <form-property name="forename" type="java.lang.String"/>
       <form-property name="surname" type="java.lang.String"/>
    <form-bean>
    </form-beans>
    <action
            path="/getQuotes"
            type="com.kainos.quickquotes.struts.QQGetQuotesAction"
            validate="true"
            name="QuoteDetailsBean"
            input="/userform1.do"
            parameter="save"
            scope="session">
            <forward name="success" path="/pages/jsp/result.jsp"/>
            <forward name="back" path="/userform1.do"/>
    </action>
    <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
         <set-property
             property="pathnames"
             value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/>
      </plug-in>Now I write a validation code for getQuotes.do. note that I can write the validation code with
    <form name="QuoteDetailsBean"> but this form bean is shared by many jsp, so i am using the name of the action
    (getQuotes) as the name of the form in the validation.xml.
    So far this looks okay, as I am going by some example.
    xml fragment from validation.xml:
    <formset>
              <form name="/getQuotes">
                 <field property="forename" depends="required,minlength">
                    <arg0 key="QuoteDetailsBean.forename" />
                    <arg1 name="minlength" key="${var:minlength}" resource="false"/>
                    <var>
                       <var-name>minlength</var-name>
                       <var-value>2</var-value>
                    </var>
                 </field>
                 <field property="surname" depends="required,minlength">
                <arg0 key="QuoteDetailsBean.surname" />
                <arg1 name="minlength" key="${var:minlength}" resource="false"/>
                <var>
                   <var-name>minlength</var-name>
                   <var-value>2</var-value>
                </var>
                 </field>
    </formset>Now I write the JSP. I use the <html:javascript> tag to allow front-end validation based on the xml in validation.xml.
    The jsp code:
    <%@ taglib uri="/tags/struts-bean" prefix="bean" %>
    <%@ taglib uri="/tags/struts-html" prefix="html" %>
    <%@ taglib uri="/tags/struts-logic" prefix="logic" %>
    <html:html locale="true">
    <head>
    <title><bean:message key="welcome.title"/></title>
    <html:base/>
    <html:javascript formName="/getQuotes"
                method="validateForm"
                dynamicJavascript="true"
                staticJavascript="false"
                cdata="false" />
    </head>
    <body bgcolor="#FFCC9F">
    <html:errors />
    <html:form action="getQuotes.do" onsubmit="return validateForm(this);" >
    Forename:</td> <td>���<html:text property="forename"/></td></tr>
    <tr> <td>Surname:</td> <td>���<html:text property="surname"/></td></tr>
    <html:submit value="Quotes" /></td></tr>
    </html:form>
    </body>
    </html:html>Does this looks okay. I wrote so far based on some tutorials n help online.
    Now when I open the JSP and then do a submit, there is no validation (I tried by submitting with empty forename and surname. I mean i could invoke the action class and the invoke class
    redirects(forwards) to the appropriate path. so the code works fine except validation is not done
    Q1. So what should i do more to get client-side validation?
    What actually happens in client-side validation? does a pop up alert appears?
    nothing happens so far in my case.
    Q2. What should I do more for server side validation. Since the form is incomplete, what happens?
    I thought the same form returns and the error messages are printed in the jsp page since i have the <html:errors />
    tag just below the <body> tag.
    The action class is pretty simple so far:
    public class QQGetQuotesAction extends Action {
        public QQGetQuotesAction(){
    public ActionForward execute(ActionMapping mapping,
                 ActionForm form,
                 HttpServletRequest request,
                 HttpServletResponse response)
        throws Exception {
            DynaValidatorForm dynaform = (DynaValidatorForm)form;
            System.out.println("forename:"+dynaform.get("forename");
            System.out.println("surname:"+dynaform.get("surname");
            return forward=mapping.findForward("back");
    }Please help me out. I think I am missing something which i need to do
    thanks
    Tanveer

    I think the validations are to be declared on the form
    name and not the action path.
    Your formName is QuoteDetailsBean but your are using
    the action path(/getQuotes) both in the validation
    rules and the jsp tags. Use the formName on both the
    places.
    Also your html:javascript tag will not generate the
    static javascript to validate the fields. For this you
    will have to add code like below.
    <html:javascript dynamicJavascript="false"
    staticJavascript="true"/>
    Other options is to set the attribute
    staticJavascript="true" in your html:javascript tag.
    Hope it helps.hi
    staticJavascript="true" did the trick. :)
    I think the validations are to be declared on the form name and not the action path.It is not necessary. You can declare the validation on the action class. This is essential if a form bean is shared by several JSPs having its own action class. This is as per as I read in a tutorial and it works.

  • Connect of 2 SAP BW systems to  one SAP Enterprise Portal

    Hi!
    I have 2 SAP BW systems that should be integrated into SAP Enterprise Portal.
    I currently have already one SAP system entry "SAP_BW" within SAP EP.
    Questions
    Is it possible to define second entry for second SAP BW system in order to use 2 SAP BW systems with one SAP EP in parallel?
    Where can I find appropriate documentation?
    Thank you very much!
    regards

    Hi,
    We have a pilot portal with BW DEV, QAS and PRD connected to it.  So it is possible.
    It may be more appropriate to post this in the portal forum to get expert advice.
    Mathew.

  • Unable to see Dashboard over the internet Using Enterprise Portal

    Dear All,
    I have one issue here which is bit technical,
    I have made an Xcelsius Dashboard (Connection Type: Excel XML Maps (BW Queries)) and uploaded SWF file on to KM Repository in Portal. I have created Document iview and a role to published the dashboard on Enterprise Portal.
    Now when i am trying to access that Dashboard from Portal within local network it works fine but when i try opening the same Dashboard over the internet from home it gives an error.
    ERROR DETAILS:
    To access external data, add a cross-domain policy file to the external data web server.
    For more information, on the Adobe website, see the article u201CCross-domain Policy File Specificationu201D.
    If the problem persists, contact the file creator or your system administrator.
    Error: Error #2048
    Connection Type: Excel XML Maps
    File URL: https://www.portal.com/irj/go/km/docs/documents/dashboards/dashboard1.swf
    External Data URL: http://bwserver.domain.com:8000/sap/bc/bsp/sap/zbo_data/Data.xml?infocube=ZFIGL_FM&query=ZFIGL_FM_Q0003_BO&VAR_NAME_1=0P_FYRA&VAR_VALUE_EXT_1=2009
    I have added crossdomain into WebAppl Srvr of BW Server .. Created BSP Application ---> Imported crossdomain file ---> set BSP App in Default Service.
    Please provide possible solutions

    We have the same problem.
    The Solution 1.
    http://wiki.sdn.sap.com/wiki/display/EmTech/Addcrossdomain.xmlontherootofSAPWebapplication+server
    and 2.
    http://www.asabau.com/2009/04/crossdomain-policy-file-in-sap-web-application-server/
    does not work.
    How you have fix it?
    regards
    Chris

  • System requirements for BO Enterprise XI 3.0 with 3 cloned webi services

    Helllo,
    I'm wondering what the system requirements would be for a server to host a BO Enterprise system (XI 3.0) if it is connected to a SAP BW system.
    The system should be able to cope with around 150 to 200 calls/requests maximum at a time.
    The users log in into SAP and launches a request via an SAP screen with behind that an URL request that is constructed based on a guest account (max 200 requests at the time) for BO. Because it is always the same account (Guest) that is used over and over again I'm wondering what kind of additional requirements the system should support.
    We did some stresstesting with 120 simultaneous users. Even with 3 cloned web intelligence processing servers it blocked several times.
    For the moment it is running on following hardware specifications:
    HRBOXI (Dell PowerEdge 2950 (Servicetag: GMZ834J))
    Memory: 8 memory slots available on motherboard of which 2 are used (each is  2GB) Total available memory at this moment is 4GB.
    CPU: 2 x Intel Xeon E5420 (quad core). There are 2 CPU sockets on the motherboard that are in use.
    Disks:  2 x 146GB (15K) SAS
    On that there is a 32bit operating system in use. We would like to start with upgrading that to 64 bit OS.
    Can someone tell me if this machine is suitable for production purposes for BO Enterprise linked to an SAP BW on mainly HR-data? I mean by that does this machine has enough processors to be able to cope with 3 cloned webintelligence services at a time. And also enough RAM memory?
    Many thanks Thierry Renaer

    not of use anymore

  • Client side validation in struts using validation framework

    Hi ,
    am new to struts.....
    I want to validate a simple login page using struts validation framework...
    For that i created,
    login.jsp ( contains html:errors and html:javascript and onsubmit)
    LoginForm extends ValidatorForm
    LoginAction
    resource bundles
    validation.xml ( required, minlength and maxlength rules for both fields)
    struts-config.xml ( configured action mapping and form beans)
    whats my problem is....
    i will get error messages through server side validation...
    i cant able to get the error messages using javascript i.e alert messages.
    i seen the page resource in that all javascript functins are inserted.
    on seeing the javascript error console... it shows
    formName has no properties...............
    exactly at this line
    oRequired = eval('new ' + formName.value + '_required()'); //function validateRequired(form)

    Thanks for your valuable reply.....
    Ya of course what you said was correct....
    I got error messages while submitting the form without any value....
    error messages are displayed using the <html:errors/> tag (server side validation ).
    But it fails to show the alert messages for those errors ( client side validation).
    i inserted the <html:javascript formName="form bean name" /> tag in the bottom of my login jsp.....
    on seeing the error console, it shows formName has no properties.
    Could anybody help me to sort out this problem........

  • Custom Client-Side Video Codec for Standard Linux Flash Player

    I'm new to Flash development, so please excuse my naivete. I'd like to have the standard Linux Adobe Flash player use an experimental client-side H.264 codec I am working on when playing FLV media (even if embedded within an SWF file) instead of the standard one bundled with the player. Is there any way to accomplish that?
    Thanks,
    Brian McGann

    The problem, at least in my case, was QtCurve's opacity. If I have opacity set to less than 100%, flash would not display for sites like Youtube and Vimeo, but worked elsewhere.
    The solution for me was to go into qtcurve's settings, and put npviewer.bin in the application exceptions section for window and menu opacity. Doing that, I was able to keep my transparent menus, and also use flash everywhere.
    You can find out what the application name is by launching your browser of choice in a terminal with qtcurve debug turned on, like so:
    QTCURVE_DEBUG=1 firefox
    If you watch through the lines that start with "QtCurve" you'll see "Application name". Look for the one that shows up when you try to load a video. In my case it was npviewer.bin. In yours, it might be nspluginviewer or something else. If you add an exception for that specific application, you'll fix your problem without having to compromise on your theme.

  • Oracle settings for Netweaver Enterprise Portal

    Dear all,
    I would like to know the Database settings (Oracle) for Enterprise Portal? if any documents, suggestions, SAP Notes would do.
    This is for our Netweaver Enterprise Production Portal.
    Thanks in advance.
    Regards,
    Mohankumar.G

    Hello Mohankumar,
    check sapnote #830576 (Parameter recommendations for Oracle 10g).
    It doesn't matter, if you have an portal (java) or abap system .. the database parameter settings are the same.
    Regards
    Stefan

  • Client-side transient model for storing temporary data

    We've been using the ODataModel in our UI5 application for retrieving data from Gateway and now we have a requirement to store temporary (session based) client-side data.  Ideally it would be stored in such a way that it can be shared across views and controllers and can be bound from UI components via property bindings.  The data in most cases will be OData entities.  As an example a user would view a list of PO's (from the ODataModel) in the first view, then select a subset of POs and move onto the next view to "work" on those POs.  We'd want to store this subset of POs in a client model so the second view can bind to the model and display them.
    My first thought is to create another model separate from our ODataModel in which we could add transient client-side data (OData entities and custom data) and make it available to all views and controllers in the app.  I realize we could probably also just store such data in global JS variables, however a client-side model seems like a cleaner approach to me.
    I'd appreciate any suggestions on how this can be achieved.

    Hi Derek,
    why don't you just use sap.ui.core.Core.setModel? You can store multiple models and access them in your entire SAPUI5 app.
    Except for SAPUI5-apps, these requirements are often realized with HTML5 Web Storage JavaScript API. As you can see in the following blog post, you can easily store even complex entities and access your items in the entire web-application: Client-side Session Management.
    I can't recommend the approach with global variables. A lot of developers had negative experiences with this design pattern. At least, use namespacing techniques to store your functions and variables in one central scope. I've written a simple example on jsFiddle to show you this. As you can see, you could also handle your transient model as an additional variable of your own namespace.
    Regards Michael

  • Configure client side security polise for RMI

    Hi all!
    How to configure client side security if I want to use applet and RMI on the single
    computer.
    I was editing . java.policy file:
    grant {
    // added to allow RMI/JMS
    permission java.io.SerializablePermission "enableSubstitution";
    permission java.lang.RuntimePermission "setContextClassLoader";
    But I have MarshalException if I want to make a call from one
    Java VM to another.
    Regards,
    Pavel.

    Which version WLS are you using? In the latest versions of WLS 6.0 you need
    not give these extra permissions for the applets.This is taken care in the
    server itself. You can contact support for the patch.
    ..maruthi
    "Pavel" <[email protected]> wrote in message
    news:3bc7d744$[email protected]..
    >
    Hi all!
    How to configure client side security if I want to use applet and RMI onthe single
    computer.
    I was editing . java.policy file:
    grant {
    // added to allow RMI/JMS
    permission java.io.SerializablePermission "enableSubstitution";
    permission java.lang.RuntimePermission "setContextClassLoader";
    But I have MarshalException if I want to make a call from one
    Java VM to another.
    Regards,
    Pavel.

Maybe you are looking for

  • Z87-G65 power issue with usb(port reset failed)

    All, I'm having an issue with my motherboard and wanted to see if anyone had suggestions.  In windows 8.1 if I have my webcam or external hard drive plugged in USB.  I get this error the the USB device is not recognized and the port reset failed(code

  • PO text not updated on SRM portal

    Hi Friends, We have upgraded SRM 4.0 (SRM server 5 SP04) to SRM 5.0 (SRM server 5.5 SP03) in MM-SUS scenario using XI 3.0. In a standard functionality text at header and item level of PO is visible on the portal. However currently we are not able to

  • Calendar Sync Question

    Nice forum, I have a question re calendard. in my 9000 I have a work account using BES and one more e-mail work acount using BIS (since they are pop3). When I shcedule an appointment from outlook and choose to send the invitation the pop3 account the

  • Slowness after installing 8.0.3 hp1

    A couple weeks ago we were doing our server upgrades and went to GroupWise 8.0.3 hp1. Servers are all SLES 10 SP4 with EXT3 file system. I've got a total of 4 POs - all are different servers and are only running eDirectory and POA. Prior to the upgra

  • Action list not found error when trying to install Flash 11. I have IE8 and windows 32 bit. What can

    action list not found error when trying to install Flash 11. I have IE8 and windows 32 bit. What can I do? Thanks