Where to place crossdomain.xml in SAP ECC IDES?

Hi,
I have a flex application which uses webservices generated in SAP IDES system. This flex app is stored in portal server. Since the physical servers are involved, I get a security error message, which says, "Security error accessing url". I browsed through the net and found that, we have to place a crossdomain.xml file in the web root folder of the server from where we are fetching the data. In my case, it would be SAP IDES system.
I wanted to know where do I place this xml file in IDES? What would be it's location and how can I generate a URL to access this xml file?
Please let me know about this, if anyone has done this before.
Appreciate your help.
Thank you,
Warm regards,
Deepak

Hi Durairaj,
As mentioned in that thread, I created a BSP application in the server and loaded crossdomain.xml. It was accessible from the browser too.
This is the xml code which is there in crossdomain:
<?xml version="1.0" ?>
<cross-domain-policy>
  <allow-access-from domain="*" />
  <site-control permitted-cross-domain-policies="all" />
  <allow-http-request-headers-from domain="*" headers="*" />
  </cross-domain-policy>
But this did not solve my purpose
I have my flex application in a server, servera.abc.com and I am using the webservices of another server, serverb.abc.com
I uploaded the crossdomain.xml in serverb.abc.com, in the following path through a BSP application:
http://serverb.abc.com:8000/sap/bc/bsp/sap/zroot/crossdomain.xml
But I still get the 'security accessing url' message in flex. It doesn't load the wsdl.
I'm also using this piece of code in initialize event of the application in flex:
                       private function initSecurity():void{
                    Security.allowDomain("*");
                    Security.loadPolicyFile("http://serverb.abc.com:8000/sap/bc/bsp/sap/zroot/crossdomain.xml");
                    Alert.show("crossdomain xml loaded....");
Where am I going wrong here?

Similar Messages

  • Where to place crossdomain.xml

    Hi experts,
    I am trying to connect from a flex application to a webservice on the Web AS. If I deploy local or run the application on the same domain as the webservice everything works fine, but not on another domain, so I think it could be fixed with the crossdomain.xml file on the Web AS. But where should I place this file if my wsdl for the webservice is located at http://<server>:<port>/sap/bc/soap/wsdl11?services=<servicename>??
    Thanks a lot,
    Manfred

    For issues regarding crossdomain.xml be sure to understand the concepts behind it.
    http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html
    Also check http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security.html for changes in latest Flash Player versions.
    You can check if your problems really are caused by crossdomain.xml by using the debug version of the latest Flash Player. This is also described in the above document on [page 5|http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_05.html].
    Kind regards,
    Roland

  • Where to put crossdomain.xml on my laptop?

    Hi everyone,
    My flex 3 site works on my desktop. But it does not work on
    my laptop. I learn that I need to put the crossdomain.xml file on
    my laptop. But where ? I put it in C:\ It still does not work. Can
    someone please
    tell me where should I put the crossdomain.xml file on my
    laptop ?
    Thanks,
    May

    Hmm, that does not sound right.
    the crossdomain file needs to go wherever the root domain of
    the url to the webservice resolves.
    For example, if the webservice url is:
    http://www.myServer.com/MyWebService?wsdl
    and MyWebservice is in:
    c:\intepub\wwwroot\MyWebService
    then the crossdomain file should go in wwwroot.
    Tracy

  • Security Error in accessing Web service from Flex.Where to put crossdomain.xml in axis container?

    Hi guys.
    Typically webservices are invoked across domains. Flash has defined certain policies which prevent crossdomain access. The only way to bypass this security feature is to put a crossdomain.xml file within the server root of the webservice provider i.e. in our case at http://abc.com. A sample example of crossdomain.xml is as below:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
         <site-control permitted-cross-domain-policies="all" />
         <allow-access-from domain="*" secure="false"/>
         <allow-http-request-headers-from domain="*" headers="*" secure="false" />
    </cross-domain-policy>
    If the crossdomain.xml is not added the developer will get “Security Error accessing URL” type of messages.
    The above mentioned information should be enough for you to get your flex based WebService client up and running.
    We are using axis2 to build webservices. We deployed the webservices under axis2 container under repository/srvices folder . But in Flex when we try to call the webservices we were getting the exception saying security error in accessing url. The solution is we need to put the crossdomain.xml o that it is loaded at runtime and allow us to access. In tomcat if we put the file under ROOT directory we could accss the file and we were able to access the webservices deployed under Tomcat. But I googled for Axis2 container and couldnt find any solution.
    Please post the reply if anyone knows the solution to it.
    Thanks
    Raja

    Hi. So, I did take a quick look at the Axis2 standalone server and didn't see any way to server up a file such as crossdomain.xml. It seems like it might be a useful enhancement to have the ability to serve up files even if this functionality was very simple/limited and nothing like a full blown http server.
    I'd log an enhancement request against axis2 if this is something you'd like to have.
    http://issues.apache.org/jira/browse/AXIS2
    -Alex

  • Download and install SAP ECC IDES Version

    Hi,
    I want to practice with SAP at customizing and programming level, so I want to install SAP in my computer.
    How could I get the installation CDs of an ECC IDES Version?
    Thanks.

    This error may occur if you have a broken download. Please try to re-download and install the trial.

  • Where to place an xml file that is read by  java class file  dir structure

    Hello all,
    I have an xml file that I am using in lieu of a database to track conference rooms . This is a small file. I need to read this file from my java class file which is used by a jsp. Currently I have an absolute path C://logger/conference.xml. All works fine but I need to deploy to a different machine soon and so I need to place this file somewhere in the project directory structure (created by netbeans) so that it will be included in the war file and can be read by the java class file.
    Also what would be the relative path to this suggested directory.
    TIA!!!

    public class DOMconference {
        /** Creates a new instance of DOMconference */
        public DOMconference() { }
        //private final static String XML_FILE_NAME = "/opt/conference.xml";//set the output file and location
        public String XML_FILE_NAME = "";
        private final static String FIRST_CONF_ID = "8200";//set the initial conference number
        static Document document;
        public void getFilePath(String path)
            XML_FILE_NAME = path.replaceAll("\\\\","/");
            System.out.println("XML==============="+XML_FILE_NAME);
        File file = new File(XML_FILE_NAME);
        *generic method that returns a Document object
       public Document getDocument() throws SAXException, ParserConfigurationException,
               IOException
           DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
           factory.setIgnoringComments(true);
           factory.setCoalescing(true);
           factory.setNamespaceAware(false);
           factory.setValidating(false);
           DocumentBuilder builder = factory.newDocumentBuilder();
           document = builder.parse(file);   //HERE IS WHERE THE ERROR POINT S TO
           return document;
       }Here is the complete error:
    INFO: Server startup in 1282 ms
    XML===============C:/Documents and Settings/gforte/agi/build/web/WEB-INF/conference.xml
    [Fatal Error] bin:1:1: Content is not allowed in prolog.
    org.xml.sax.SAXParseException: Content is not allowed in prolog.
    at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:264)
    at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:292)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:172)
    at agi.DOMconference.getDocument(DOMconference.java:91)
    at agi.DOMconference.getLdapConferences(DOMconference.java:466)
    at agi.Ldap.getConferences(Ldap.java:243)
    at org.apache.jsp.test_jsp._jspService(test_jsp.java:111)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:362)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)
    [Fatal Error] bin:1:1: Content is not allowed in prolog.
    NotifyUtil::java.net.SocketException: Software caused connection abort: recv failed
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
    at java.io.BufferedInputStream.read1(BufferedInputStream.java:256)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:313)
    at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:606)
    at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:554)
    at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:571)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:936)
    at org.netbeans.modules.web.monitor.server.NotifyUtil$RecordSender.run(NotifyUtil.java:248)
    So if I change my code to this (note that all I change is how the constant XML_FILE_NAME is set and I copy and paste the path that is derived from getFilePath after the String.replaceAll call.):
    public class DOMconference {
        /** Creates a new instance of DOMconference */
        public DOMconference() { }
        private final static String XML_FILE_NAME = "C:/Documents and Settings/gforte/agi/build/web/WEB-INF/conference.xml";//set the output file and location
        //public String XML_FILE_NAME = "";
        private final static String FIRST_CONF_ID = "8200";//set the initial conference number
        static Document document;
        public void getFilePath(String path)
            //XML_FILE_NAME = path;//.replaceAll("\\\\","/");
            System.out.println("XML==============="+XML_FILE_NAME);
        File file = new File(XML_FILE_NAME);
        *generic method that returns a Document object
       public Document getDocument() throws SAXException, ParserConfigurationException,
               IOException
           DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
           factory.setIgnoringComments(true);
           factory.setCoalescing(true);
           factory.setNamespaceAware(false);
           factory.setValidating(false);
           DocumentBuilder builder = factory.newDocumentBuilder();
           document = builder.parse(file);
           return document;
       }All is fine..
    Just in case, here is my xml file contents copy and paste from notepad.
    <?xml version="1.0"?><conf_rooms><conf_room><conf_id>8200</conf_id><conf_name>Conference room 1</conf_name></conf_room><conf_room><conf_id>8201</conf_id><conf_name>Conference Room 2</conf_name></conf_room><conf_room><conf_id>8202</conf_id><conf_name>dufus</conf_name></conf_room></conf_rooms>Thanks for hanging in there with me on this.
    Graham

  • Send / Receive Idoc(XML) in SAP ECC 5.0

    Hi Experts,
    We are using SAP standard idocs to exchanges master data and Sales data between SAP and non SAP system. currently all the idocs are generated and posted as flat file structure.
    There is possiblity to use idoc(XML) and HTTP service instead of standard process without XI?
    All info related with this is welcome. is it possible? how?
    all suggestion n helpful ans will be rewards with points.
    regards: gaurave.

    Hi Gaurave,
    I have comae accross this type of issue once and hope the below link will give you an idea.
    http://msdn2.microsoft.com/en-us/library/cc185479.aspx
    thanks,
    KIRAN

  • Difference between SAP ECC IDES 6.0 and SAP NetWeaver?

    Hello everyone!
    I am a bit confused since I am also new to SAP world, so I would to ask you, we have a SAP IDES ECC 6.0 in our server here to our company, I was trying to see a little of SAPUI5 and in a tutorial a guy was using SAP NetWeaver Visual Composer.
    1- But, what's the difference between the SAP IDES ECC 6.0 and SAP NetWeaver?
    2- What are the other parts I am missing? Are there any other IDES or such a thing around those terms?
    3- How can I get installed SAP NetWeaver?
    4- I have also got some info about SAP ERP, SAP CRM, SAP MM, SAP BW.. And those?
    5- What are they in term of software/patch/ide/plugin/addon... ?
    Please, I really need an overview in order to make all the things clear in my mind,
    Thank you!
    Denis

    Hi Denis,
    SAP is a big umbrella where lot of products are developed and made to use in various industry solution like Engineering, Chemical, Retail, Oil & Gas. I used the term Solution to relate SAP application to these solutions.
    SAP NW is comprised of following components SAP_BASIS, SAP_ABA, PI_BASIS and SAP_BW. In totality we refer this as NW stack.
    SAP application will have underlying database like Oracle, DB2, MSSQL or MaxDB where actual business data is stored.
    Please check link Products | SAP to have more insight of SAP products ,services and offerings.
    Hope this helps.
    Regards,
    Deepak Kori

  • SAP ECC IDES EHP4 Installation Error

    Dear Friends,
    I am installing SAP IDES EHP4 on Windows 2003 64 bit Server and Oracle 10g(10.2.0.4).
    The installation is in phase IMPORT-ABAP, it is giving the error as below.
    java version "1.4.2_17"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_17-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 1.4.2_17-b06, mixed mode)
    Loading of 'REPOSRC' import package: ERROR
    Loading of 'PCL2' import package: ERROR
    Loading of 'DOKCLU' import package: ERROR
    Loading of 'SAPAPPL2_2' import package: ERROR
    Loading of 'PCL4' import package: ERROR
    Loading of 'VRSMODISRC' import package: ERROR
    Loading of 'SAPSSEXC_2' import package: ERROR
    Loading of 'AGR_HIERT' import package: ERROR
    Loading of 'REPOTEXT' import package: ERROR
    Loading of 'SOC3' import package: ERROR
    Loading of 'SAPAPPL1_10' import package: ERROR
    Loading of 'SAPAPPL1_7' import package: ERROR
    Loading of 'RSMPTEXTS' import package: ERROR
    Loading of 'DD04T' import package: ERROR
    Loading of 'SAPCLUST' import package: ERROR
    Loading of 'SAPSDIC_1' import package: ERROR
    Loading of 'T100' import package: ERROR
    Loading of 'SAPAPPL2_3' import package: ERROR
    Loading of 'RFBLG' import package: ERROR
    Loading of 'SAPNTAB' import package: ERROR
    Loading of 'SAPSLEXC' import package: ERROR
    Loading of 'VRSX' import package: ERROR
    Loading of 'SAPAPPL0_2' import package: ERROR
    Loading of 'SAPAPPL1_2' import package: ERROR
    Loading of 'SAPSSEXC_3' import package: ERROR
    Loading of 'SAPSSRC' import package: ERROR
    Loading of 'SAPAPPL1_8' import package: ERROR
    Loading of 'E071K' import package: ERROR
    Loading of 'SAPAPPL0_3' import package: ERROR
    Loading of 'SAPAPPL1_4' import package: ERROR
    Loading of 'SAPAPPL1_5' import package: ERROR
    Loading of 'SAPAPPL0_6' import package: ERROR
    Loading of 'SAPAPPL2_6' import package: ERROR
    Loading of 'D021T' import package: ERROR
    Loading of 'SEOCOMPODF' import package: ERROR
    Loading of 'SAPAPPL0_8' import package: ERROR
    Loading of 'STERM_TEXT' import package: ERROR
    Loading of 'DD03L' import package: ERROR
    Loading of 'ARFCSDATA' import package: ERROR
    Loading of 'SAPSDIC_2' import package: ERROR
    Loading of 'SAPAPPL1_12' import package: ERROR
    Loading of 'SAPAPPL2_7' import package: ERROR
    Loading of 'SAPSSEXC_1' import package: ERROR
    Loading of 'SAPAPPL2_8' import package: ERROR
    Loading of 'SAPAPPL0_4' import package: ERROR
    Loading of 'SOTR_TEXT' import package: ERROR
    Loading of 'SAPAPPL2_9' import package: ERROR
    Loading of 'SAPAPPL1_1' import package: ERROR
    Loading of 'SAPAPPL1_3' import package: ERROR
    Loading of 'FUNCT' import package: ERROR
    Loading of 'ATAB' import package: ERROR
    Loading of 'DD02T' import package: ERROR
    Loading of 'SAPAPPL2_1' import package: ERROR
    Loading of 'E071' import package: ERROR
    Loading of 'SAPAPPL2_5' import package: ERROR
    Loading of 'SAPAPPL1_11' import package: ERROR
    Loading of 'SAPAPPL0_1' import package: ERROR
    Loading of 'INDTEXT' import package: ERROR
    Loading of 'SEOSUBCOTX' import package: ERROR
    Loading of 'SAPAPPL2_4' import package: ERROR
    Loading of 'SAPAPPL0_9' import package: ERROR
    Loading of 'SAPAPPL1_9' import package: ERROR
    Loading of 'SAPAPPL0_5' import package: ERROR
    Loading of 'OCSCMPLOBJ' import package: ERROR
    Loading of 'GLFUNCA' import package: ERROR
    Loading of 'SAPAPPL1_6' import package: ERROR
    Loading of 'SAPAPPL0_7' import package: ERROR
    Loading of 'USRBF2' import package: ERROR
    Loading of 'DDFTX' import package: ERROR
    Loading of 'SAPSSEXC_4' import package: ERROR
    Loading of 'PPOIX' import package: ERROR
    Loading of 'SCPRSVALS' import package: ERROR
    Loading of 'SCPRSVALL' import package: ERROR
    Loading of 'SEOCOMPOTX' import package: ERROR
    Loading of 'DD07T' import package: ERROR
    Loading of 'TRDIRT' import package: ERROR
    Loading of 'SEOSUBCODF' import package: ERROR
    Loading of 'TMENU01T' import package: ERROR
    Loading of 'WBCROSSGT' import package: ERROR
    Loading of 'TODIR' import package: ERROR
    Loading of 'FUPARAREF' import package: ERROR
    Loading of 'FAGLFLEXA' import package: ERROR
    Loading of 'SCPRVALS' import package: ERROR
    Loading of 'DOKHL' import package: ERROR
    Loading of 'TADIR' import package: ERROR
    Loading of 'DOKIL' import package: ERROR
    Loading of 'DSYS_PHFILE_ECD2' import package: ERROR
    Regards
    Ganesh Datt Tiwari

    Hi friends,
    now the error is comming as below.
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (DB) ERROR: DDL statement failed
    (DROP VIEW "/ISDFPS/V_BI_TGT")
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE VIEW "/ISDFPS/V_BI_TGT" ( "OTYPE" , "TASK" , "LANGU" , "SHORT" , "STEXT"  ) AS SELECT T0001."OTYPE", T0001."OBJID", T0001."LANGU", T0001."SHORT", T0001."STEXT" FROM "HRS1000" T0001 WHERE ( T0001."OTYPE" = 'TS' OR T0001."OTYPE" = 'WS' OR T0001."OTYPE" = 'TG' ))
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    (DB) INFO: disconnected from DB
    D:\usr\sap\IDS\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error(s)
    D:\usr\sap\IDS\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20111116181302
    regards
    Ganesh Datt Tiwari

  • Crossdomain.xml windows xp location?

    im in progress making a simple desktop app where im going to play radio streaming on it.
    im streaming the radio using FLV Player in my Windows XP SP2 PC.
    For the app, im using a swf player from Fun SoundPlayer Maker.
    The problem is, when im pressing the PLAY button, flash will popup stating about security settings.
    I've search around, and it was about Crossdomain.xml, but i dont know where to put the file in my Windows XP Sp2 PC.
    Can somebody tell me where sholud i put it and how to make my SWF collect data from it?
    Its really frustrating....

    Theoretically if you want to control subdirectories - you need to place crossdomain.xml into the topmost directory you want to protect. In your case it may be:
    www.mysite.com/content/website1/crossdomain.xml
    With that said, Flash will strill attempt to load xml from the root - you need to load policy explicitly:
    Security.loadPolicy("www.mysite.com/content/website1/crossdomain.xml");

  • SAP Personas using SSO to connect SAP ECC

    Hi,
    We configured SAP Screen Personas test landscape.
    When I launch the mainapp page, the system is prompting for user credentials.
    Then I get "System Selection" screen where the system I have configured  (SAP ECC).
    When I click on system backend, an new popup ask for user and password (SAP ECC credentials).
    We are trying to understand if it is possible configure SSO to access ECC backend.
    So, the ECC backend credentials will not be required anymore.
    I am not sure if it is possible this configuration.
    According SAP note 1684886 - License conditions of SNC Client Encryption, I think this scenario requires additional license.
    Any help to resolve this is highly appreciated.
    Best Regards,
    Leonardo.

    The project requirement is avoid the user can log in with SAPGUI and run the standard transaction.
    So, the user can log in only with SAP personas user/password and run the transaction on backend with a modified screen with the restrictions of authorization roles.
    Regards,

  • Question: crossdomain.xml without web server

    Hi, Flex Gurus,
    In case where I want to use Flex to communicate with a
    non-web server machine, e.g. mysql, where should the
    crossdomain.xml reside on the non-web server machine?
    thanks,
    sw

    Well at that point you would put it where ever Flex can load
    the file locally and do Security.loadPolicyFile("url"). However if
    you are going to be using a socket for the connection I'm pretty
    sure crossdomain.xml isn't what you're looking for, with the recent
    security changes to the Flash Player I think you are looking more
    for a Socket Policy File. You can read up on what I'm talking about
    here at the following link.
    Policy
    File

  • SAP ECC (Netweaver) - Microsoft Exchange

    Hi everybody!
    Does someones knows where I can fin documentation about SAP ECC integration with Microsoft Exchange?
    Thanks,
    Wadih Saad

    Hi Wadih,
    you can search in the help.sap.com.
    below are the links which you can refer
    http://help.sap.com/saphelp_nw70/helpdata/en/44/20a7b2610f0889e10000000a422035/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/7a/ec015c8446d447a83776d40f31c84f/frameset.htm
    you can u refer to this pdf also
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a46c209d-0601-0010-2089-f0c967d1199a
    hope this helps.
    pls reward points if helpful
    regards,
    mrudula

  • License Key Request from SOLMAN VS SMP for SAP ECC 6.0 EPH4 IDES install

    Hi, SDN fellows.
    I have some doubt on the right way/options to request License Key for SAP ECC 6.0 EPH4 IDES.
    Previously, I read that the only way to get license key is to generate it through SAP Solution Manager. If this is the only way, we will have to install Solution Manager just to generate the license  key (we are currently don't have SolMan running in our landscape).
    I also read that I can request license key through http://service.sap.com/licensekey. I checked the link and see that we have the 10 digits installation number for Product: SAP ERP.. Currently there is no system defined for this installation number.
    I went through the first two screens, seems like they have options for SAP ERP 6 --> IDES.
    If I can get a license key from http://service.sap.com/licensekey, do I still need to install Sol. Man. to generate the license key?
    What are the difference the license key generated from Sol. Man. VS the one we request from SMP?
    Thanks,
    KC

    Hi, Vishnu.
    So, now I understand I need two keys: Solution Key and also License key.
    I should obtain Solman key before I start installation , as the SAPinst will ask to enter Solman key before it can proceed to install SAP ECC IDES.
    You said I can obtain Solman key through OSS note. I went in to SMP just now. Navigated to Help& Support --> Report a Product Error --> New Problem Solving Request.
    I selected Customer Number, Product, Instillation # , and enter  * for  System ID. The search result returned no system found. The problem here is we don't really have any system ID defined for SAP ERP IDES since we haven't start installing the system.
    Is that true that I will only see the System ID in OSS Message interface when I submit the System ID for the license key?
    I thought this is a post-installation step to apply for a license key. If I can to do it before the installation, how can I get the 11 character hardware key before installation (assuming I cannot run the SLICENSE TCode and saplikey u2013get command)?
    OR how can I create OSS message to request SolMan key when I don't have a system ID (that already registered for license key) in SMP?
    OR I should just go ahead to install Solution Manager to generate Solman key (during pre-installation), and request for license key in SMP in post-installation?
    Thanks for advise,
    KC

  • XML File-- XI-- SAP ECC Scenario

    Hi guys,
    We have the following scenario in XI XML File>XI>SAP ECC, and we need to call a BAPI at R/3 side. Which do you think is the best way to implement this, either calling the BAPI directly from XI or using an Inbound Server Proxy ?
    Thank you.

    Hi,
        Addition to the above ensure that the BAPI Commit is called ....
    or expose the BAPI as the RFC so that the commit and rollback operations can take place in the RFC itself...
    Keep the above options during the design..n implementation...
    Recommended is RFC call rather than proxy when standards are available n  volume of the data is less..
    HTH
    Rajesh

Maybe you are looking for

  • Unique ID Attribute

    I've include the a unique ID attribute: (Name: element_ID Unique ID Required Control flags: Read-only) and updated an xml instance. How do I get Frame to auto populate the attribute with a unique ID?

  • Launching a Discoverer report from jsp page

    Hi I have a discoverer workbook created using BI Discoverer (for relational). I want to accept some parameters for this workbook from a jsp page, which will also have a "View report" button. This button when pressed should open up the Discoverer work

  • I am trying to find the downloadable update to ps cs6 for inkling

    I have a new inkling and am told that i need the ps cs6 update to use the manager in inkling.  Can someone direct me to the link?

  • FND_SUBMIT.SET_PRINT_OPTIONS is not working

    Hello colleagues, I am trying to submit a report from a plsql package. That I can do successfully with no issues. Now when I try to print the output using FND_SUBMIT.SET_PRINT_OPTIONS nothing happens. Nothing gets printed, and when I View Details of

  • Tried to update to 13, now nothing works

    I was running Flash Player 11, everything ran fine, logged on to HBO Go and was told I needed to update to 13. So I did, and flash ran but dragged a lot. I tried to do a clean install and revert to previous versions (I tried 10 and 11) in IE, Firefox