SAP Adaptive Server Enterprise vs SQL Server

Hi all,
I'm looking a technical document that compare SAP Adaptive Server Enterprise with SQL Server, anyone have information about this?
thanks in advance

Not a technical response but one more of keeping your sanity.
Basically:
On Windows: use SQL Server *unless* you have an application or a specific requirement to use another DBMS.  SQL Server can't be beat on windows for integration with the os and Active Directory.
On Unix/Linux:  use whatever you want that meets the needs of the project.  Of course, we're partial to the Sybase products (ASE, IQ, SQL Anywhere, etc)
On mainframe: use DB2 for zOS
jason

Similar Messages

  • Considering upgrading from CF8 up to CF11... notice in the CF11 support matrix that Sybase Adaptive Server Enterprise 15.0, 15.5  is not supported.  While we primarily connect to Oracle DB, we do need to connect to Sybase DBs periodically. Is the plan to

    Considering upgrading from CF8 up to CF11... notice in the CF11 support matrix that Sybase Adaptive Server Enterprise 15.0, 15.5  is not supported.  While we primarily connect to Oracle DB, we do need to connect to Sybase DBs periodically.
    Is the plan for CF11 to support Sybase again in the near future?

    Did you ever get a response? I'm merely trying to connect to a Sybase database - and it gives me a java.sql.SQLException:null  error - with no other information.
    I'm running the server on Ubuntu 14.x, 64bit.
    Thanks.

  • Migration from Crystal Enterprise 10 to SAP Crystal Server 2011

    Hi all,
    We are currently using Crystal Enterprise 10 to schedule and view our reports and the designer is Crystal Reports 10 .
    we are planning to migrate to SAP Crystal Server 2011 with Crystal Reports 2011 as the designer.Can we do this migration directly or do we need to do the migration to an intermediate version before going to SAP Crystal Server 2011.
    Regards,
    Sreekanth S S

    1. So in this case, I need to migrate from Crystal Enterprise 10 to Crystal Reports Server XI R2/Crystal Reports Server 2008 or more using import wizard Then I will need to migrate from Crystal Reports Server XI R2/Crystal Reports Server 2008 to SAP Crystal Server 2011 using Upgrade Manager tool. Is my inference correct?
    That is correct. For XI R2, it would be XI R2 SP2 minimum. And you need to have a live installation of XI R2 SP2 as SAP does not have it in archieve download area.
    2.What is the potential risk if we try to migrate from Crystal Enterprise 10 to SAP Crystal Server 2011 using upgrade manager tool?
    I am not sure if that will work with success, If the reports migrated from CE10 do not work in CRS2011, it would be unsupported. You can however try it anyways.
    3.Can we open the reports developed using Crystal Reports 10 designer in Crystal Reports 2011 designer? .This is for another requirement of us where we have to just migrate the reports alone .
    Yes you can do that. Try opening and running them in CR2011, they should work but some of them can also result in some errors here and their, this is more specific to report design and what kind of grouping\ filtering\formulas you use.

  • SAP BW INSTALL ON MS SQL SERVER 2000

    Hi
    I tried to install SAP BW IDES with MS SQL Server 2000 but unfortunately it was unsuccessful. An error occurred at the last operation progress.
    Here is the error :
    " Unable to add acount SAPMssXPUser to group Administrators. The specified account name is already a member of the local group. "
    The process of installation is stopped at : " Changing account...Server\SAPMssXPUser"
    So would you be so kind to give me some help about this. Thank you in advance.
    Best Regards.

    Hi Markus
    And thanks to your answer, it helped me to succeed in this first step but unfortunately 1 minute later during the install process I have a new error telling me :
    MDB-05042 Error while executing script "CREATE DATABASE BW3 ON PRIMARY ( name = 'BW3DATA1' , filename = ' C:\BW3DATA1\BW3DATA1.mdf ', size = 11000 FILEGROWTH = 60 )....... idem for BWDATA2 ......... idem for BWDATA3   MODIFY FILE encountered operating system error 112 while attempting to expand the physical file. CREATE DATABASE failed. Some file names listed could not be create.
    Could you help me to solve this error . Thank you in advance.

  • Migrating SAP products from a non-SQL Server platform to a SQL Server 2005

    Hi,
    I have another question too.
    Can someone pls provide me the Considerations for Migrating SAP products from a non-SQL Server platform to a SQL Server 2005 platform?
    More specifically from Oracle to SQL 2005.
    Regards
    Abhi

    Hello
    You need to perform an OSDB migration.
    This will involve exporting your SAP system into a DB neutral format and then reloading this into an SQL 2005 SAP system.
    Please review http://service.sap.com/osdbmigration
    I recommend you review the homo/heterogeneous system copy guide for your SAP release.
    Thanks
    N.P.C

  • Issues with creating and sending BOM XML IDOC to SAP using 2010 WCF-SAP Adapter (without using Biztalk Server)

      I'm trying to replace an existing Biztalk 2006 Send BOM IDOC process, and completely remove Biztalk server from the equation.   The existing Bizatalk 2006 server receives an input BOM (Bill of Materials) flat file, and using a Biztalk Map (BM08),
    and Orchestration, generates an Idoc and sends it to SAP.
      In my replacement C# program, I'm using the 2010 WCF-SAP Adapter, and am trying to generate the BOMMAT03 XML IDOC it to SAP.  
      I generated the BOMMAT03 schema from SAP using the Add Adapter Service in VS 2010.  I was able to generate a BM08 XSLT from the existing BMO8 map in the current Biztalk 2006 process.  I am able to run a XSLT transform on the input BOM flat
    file, and generate an XML file from that.  
      However, I've run into a few issues.   First of which, is that the XML file that is generated from the XSLT transform is NOT the same schema as the BOMMAT03 schema expects.  It's somewhat similar, but different enough that I have to manually
    translate between the two in my code.  I've verified that both the original Bitztalk 2006 process and my replacement program use BOMMAT V3 from SAP.  Question--Is Biztalk 2006 server doing some other magic to turn that transormed XML into the BOMMAT03
    schema?    
     I ended writing code which translates the transformed XML into the BOMMAT03 schema (which is a strong typed XML IDOC at this point).
      However, when I try to send the BOMMAT03 XML IDOC, I get an exception "Object reference not set to an instance of an object."
                   idocClient.Send(idocData, ref sadapterTxGuid);
    idocData is of type BOMMAT03, and I've verified that the various fields are populated.  
      Any help is appreciated. 

    Well, putting in a MSDN subscription support ticket for Biztalk server actually helped with the issue.  They didn't find, or fix the issue directly.  But one of the examples (https://randypaulo.wordpress.com/tag/idoc/) they sent over, jogged my
    memory, and I realized in the code snippet below, I had accidentally deleted the 1st line.  Such a simple mistake, yet was easy to overlook.  The URL example is almost EXACTLY like my code, but without the transform and translation code to convert
    from input XML file to IDOC XML.  If someone is interested in that, let me know.    
    //Forgot the 1st line.  
    idocClient = new IdocBOMMAT03SIEIS_WED_BOMMAT03V3R700Client(binding, endpointAddress);
     idocClient.Send(idocData, ref sadapterTxGuid);
    For anyone else interested in knowing, you CAN send a strongly typed IDOC to SAP using C#.NET and the WCF SAP 2010 Adapter, using the IDOC Binding Client class you generated using the Add Adapter Service Reference in VS2010.  
    The one difference, which no one, not even the tech support from MS could tell me, was why the XSLT which I generated from the original map, did not transform the input BOM XML into the BOMMAT03 XML.  Instead, it transformed it into an intermediate
    XML, which resembled the BOMMAT03 IDOC XML, but still needed to be translated to the BOMMAT03 IDOC format.  
    The tech support person swore up and down that it should.  But I believe that something happens in Biztalk server, after the Mapping occurs, maybe in the Pipeline, which converts that
    intermediate XML into the final BOMMAT03 IDOC XML format.
    I do think that the examples are severely lacking in showing how to send a strong typed IDOC using C# and the WCF-SAP Adapter.  Even worse, the examples are completely lacking in how to actually generate a weakly typed IDOC.  They show how to send
    that weakly typed IDOC, but show me, or give me a class to be able to generate it.
    I realize that this is not quite the "recommended way" to do it, but in reality, not everyone wants or even needs a full Biztalk installation.   For some simple stuff like this, a C#.NET program and WCF-SAP adapter do the trick.  

  • BO 4.0: Database error:Unable to connect to SAP BW server Incomplete logon

    Hello Experts,
    I have enabled a 'SSO to database' between SAP BW and Business objects by referencing to the documents related to below link.
    http://wiki.sdn.sap.com/wiki/display/BOBJ/HowtosetupSSOagainstSAPBWinSBOBI4.0forLDAPusers
    I have created a universe connection with option 'use single sign on when refreshing reports at view time' and have created a universe on top of my BEx query by log-in to the universe designer tools using my LDAP account.
    Now when I run the report with either SAP account or LDAP - I am able to run a adhoc webi report on this universe and get data either through the webi rich client or via BO 4.0 Info-view/Launch Pad.
    But the issue is that when other users are trying to run webi queries on this universe either through Info-view/launch pad or rich client by log-in via LDAP Authentication - they get the below error: I have given SAP_ALL to this user for time being and also have done the necessary configuration for 'simple user format' in CMC so these user has 1 account with 3 alias definitions: Enterprise, SAP, R/3.
    Database error: Unable to connect to SAP BW server Incomplete logon data -
    If the user logs on into the BO 4.0 Info-view/launch pad or webi rich client using his SAP authentication than he is able to run and retrieve data.
    I also get a dump in the SAP BW system - I analyzed the dump in SAP BW using st22 tcode and it gives the error short text as - Incomplete logon data and run-time error - CALL_FUNCTION_SIGNON_INCOMPL
    Desired outcome:
    I want the users to log-in to webi rich client or BO 4.0 Launch pad/Info-view using their 'LDAP' authentication and run reports against the universe on SAP BW/BEx query without any errors or additional username/password requirements.
    Can someone please tell me if I am missing any steps/configuration and guide me to achieve the above mentioned desired result ?
    Any help in this matter would be greatly appreciated.
    Thanks & regards,
    CD.

    Whether your problem is solved?
    We have the same problem in BO Mobile.
    Two users from one BW-role, BO-groups; one user report is executed, another user - error incomplete logon data. In Web Intelligence both users reports succeeds.

  • Error while starting SAP Application Server

    Hello everyone,
    This morning, i tried to start the SAP application Server, and i have this message error, some sentances are in frensh , i translate it in english with this sign --> before.
    ===================================================
    ============== Starting System NSP ================
    ===================================================
    =============== Starting database instance ...
    Le nom de service n'est pas valide.
    -->The service name is invalid.
    Vous obtiendrez une aide supplémentaire en entrant NET HELPMSG 2185.
    -->More help is available by typing NET HELPMSG 2185.
    The MaxDB Database Starter, Version 7.7.04.23
    Copyright 2000-2008 by SAP AG
    ERR
    -24988,ERR_SQL: SQL error
    -104,DBM command impossible at this time
    20013,Admin command cannot enter critical state 'Backup'
    Error: Error while calling dbmcli
    "D:sapdbprogramspgmdbmcli"  -d NSP -u , db_online
    ============== Start database failed !
    Can somone, explain me, please, the origin of this problem and may be a solution to solve it.
    Thank you and have a nice day.
    Best regards.
    Amine

    Seem that is a problem in starting DB instance phase, specificly for DBMS instance (you need to check detailed DB starting log in run directory).
    For Run Directory, check this link:
    http://www.sapdb.org/7.4/htmhelp/ff/2d823b572b844ee10000000a11402f/frameset.htm
    For DB Log Files:
    http://www.sapdb.org/7.4/htmhelp/9c/2d04073493af41844be62f15d252f3/content.htm
    Is a Local SAP System?

  • SAP Content Server Configuration (CSADMIN) error in connection

    Dear Colleagues
    I have installed SAP Content Server 6.40 on Windows 2008 R2 server (64 bit) using IIS 7.5 with MaxDB 7.8.02, Installation completed successfully.
    URL testing Information on both Content Server and an Instance which we need to connect to it.
    http://cs460:1090/ContentServer/ContentServer.dll?serverInfo
    serverType="SAP HTTP Content Server";serverVendorId="Copyright SAP AG, All rights reserved 1998, 2001  ";serverVersion="6400";serverPatch="9";serverBuild="201";pVersion="0046";serverStatus=
    "running";serverStatusDescription="";serverDate="2014-05-11";serverTime="02:03:08";startUpDate="2014-05-11";startUpTime="02:03:08";lastAccessDate="2014-05-11";lastAccessTime="02:03:08";
    However, when I try to create repository with CSADMIN tcode, I am getting error ''HTTP error: 500 (Internal Server Error)'.
    database host is up or down and the web server up
    My settings are as follows
    1- On Content server I give full permission to content Rep directory
    2- On IIS I have allowed Unspecified ISAPI& CGI & modules.
    3-odbcreg as the following:-
    C:\sapdb\SDB\db\pgm>odbcreg -g
    List of installed drivers
    1.      SQL Server;     %WINDIR%\system32\SQLSRV32.dll
    2.      SAP MaxDB SDB (Unicode);        C:\sapdb\SDB\db\pgm\sdbodbcw.dll
    3.      SAP MaxDB SDB;  C:\sapdb\SDB\db\pgm\sdbodbc.dll
          C:\sapdb\SDB\db\pgm>odbcreg MaxDB -i -p c:\sapdb\SDB\db\pgm -d sdbodbcw.dll
    ODBC Driver for 'MaxDB' has been successfully registered.
         C:\sapdb\SDB\db\pgm>odbcreg MaxDB -i -p c:\sapdb\SDB\db\pgm -d sdbodbc.dll
    ODBC Driver for 'MaxDB' has been successfully registered.
    4- under settings tab for the repository I set the parameter (driver = MaxDB) as per SAP note 977091
    Please suggest, how to resolve this issue.
    Thanks

    HI Hany Zahran,
    Hope that your issue resolved? if so please close this thread with updated answer and make sure mark assumed answered (see top of the screen).
    All the best my dear fnd.
    Regards,
    chandu.

  • Publish Dataset and history in sap lumira server

    Hi Experts
    I'm trying to publish a dataset and story from the sap Lumira desktop to Lumira  server.
    Tools used
    SAP HANA DATABASE REV.80 INSTANCIA EN WINDOWS AZURE
    SAP LUMIRA DESTOP V1.18
    SAP LUMIRA SERVER V1.18
    The process I followed is as follows:
    1. Create Users:
    CONFIG: Assign the role sap.bi.admin :: BI_CONFIGURATOR. Some other role or privilege required?
    TECNICO: Assign the role sap.bi.common :: BI_TECH_USER. Some other role or privilege required?
    ANALISTA: Assign the role sap.bi.common :: BI_DATA_ANALYST. This user is the one that has the role to publish in Lumira sap server. Some other role or privilege required?
    2. Entry to http: // <HOSTNAME> 80 <INSTANCE> / sap / hana / xs / FormLogin /
    I sign in with  the password created in hana studio  for each user and then make the change the password of each user CONFIG - TECNICO – ANALISTA
    3. Entry to http://<HOSTNAME>:80<INSTANCE>/sap/bi/launchpad/fiori
    I sign in with the  user CONFIG and in the catalag administration of sap Lumira server income in the field Enter technical  user TECNICO, so I confirm the sql connection.
    4. Entry to http: // <HOSTNAME> 80 <INSTANCE> / sap / hana / xs / admin
    I sign in with the user CONFIG sap.bi.launchpad.logic.v2 following path of the package and confirm that the sql connection is for the user TECNICO
    5. Entry to Sap lumira Desktop, sign in with the user ANALISTA to access the dataset, I create visualization and history, the last step is to publish the dataset and story in SAP Lumira server, for this I sign in with the user ANALISTA but when I clic on the button PUBLISH IN SAP LUMIRA SERVER is show me this error:
    Error - The dataset could not be published to SAP Lumira Server because publishing to the SAP HANA layer failed.  Reason is ''. (HDB 11009)
    I searched many blogs of sap and tested with the following options but None of the above helped me to solve the problem.
    http://scn.sap.com/community/lumira/blog/2014/06/10/how-to-install-sap-lumira-server
    http://scn.sap.com/community/lumira/blog/2014/06/21/sap-lumira-server-on-hana--part-2
    http://scn.sap.com/thread/3532168
    http://www.saptechies.com/access-privileges-required-sap-lumira-from-sap-hana/
    http://scn.sap.com/thread/3523762
    http://scn.sap.com/community/lumira/blog/2014/06/16/sap-lumira-server-sap-fiori-launchpad-integration
    http://www.saptechies.com/security-settings-run-lumira-hana-online-shl-views/
    http://scn.sap.com/community/lumira/blog/2014/06/16/sap-lumira-server-post-install-configuration
    6. Another issue is when I access to Lumira server  http: // <HOSTNAME> 80 <INSTANCE> / sap / bi / launchpad / and I sign in with the user ANALISTA, I find a number of the dataset in lumira server but when I run  any for create a compose can not access   hana dataset.
    Shows me the following error
    Please help me with this issues
    Thanks

    Hi John,
    I also forwarded the incident to SAP and as suggested by SAP, after assigning sap.hana.xs.lm.roles::Administrator  my issue was resolved.
    Regards,
    Abhijit

  • Error in installing SAP IDES server

    ERROR 2009-11-26 15:57:10
    CJS-00095  Error return code.<br>DIAGNOSIS: Return code 1 of executable D:\oracle\product\10.2.0\db_3/bin/lsnrctl indicates an error.<br>SOLUTION: See log file lsnrctl.log for details.
    ERROR 2009-11-26 15:57:10
    CJS-00095  Error return code.<br>DIAGNOSIS: Return code 1 of executable D:\oracle\product\10.2.0\db_3/bin/lsnrctl indicates an error.<br>SOLUTION: See log file lsnrctl.log for details.
    ERROR 2009-11-26 15:57:10
    FCO-00011  The step StartListener with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_CreateDB|ind|ind|ind|ind|0|0|NW_OraDBCheck|ind|ind|ind|ind|0|0|NW_OraDBMain|ind|ind|ind|ind|0|0|NW_OraDBStd|ind|ind|ind|ind|3|0|NW_OraClient|ind|ind|ind|ind|3|0|NW_OraNetworkSrv|ind|ind|ind|ind|1|0|StartListener was executed with status ERROR .
    Dear  All,
    I got these error during the installation of SAP IDES server now how to rectify it so plz if anybody could help me out.
    With regards
    Vishal Chaturvedi

    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 26-NOV-2009 15:57:05
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Starting tnslsnr: please wait...
    TNSLSNR for 64-bit Windows: Version 10.2.0.1.0 - Production
    System parameter file is D:\oracle\product\10.2.0\db_1\network\admin\listener.ora
    Log messages written to D:\oracle\product\10.2.0\db_1\network\log\listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\EXTPROC1ipc)))
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=erp-srv)(PORT=1521)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
      TNS-00515: Connect failed because target host or object does not exist
       64-bit Windows Error: 1004: Unknown error
    Listener failed to start. See the error message(s) above...
    Dear all.
    This is the message from lsnrctl.log so how to start the listener...............plz help me out
    With regards
    Vishal Chaturvedi

  • SHarepoint as SAP Content Server Configuration

    Actually this message is for Espen Leknes because I have read something from him i another message but if you guys know about this, all will be wellcome !!!!!!!
    This is Andrea, Basis COnsultant. I am writing to you because I was reading lot of messages in SAP SDN regarding DMS and SAP Content Server.
    I saw you have participated in lot of messages. I am specially interested in one of them which is about Sharepoint.
    The customer I am working in would like to use Sharepoint as global Content Server and I would like to configure Sharepoint as SAP Content Server in order to save documents and attach them to sap objects (scanned invoices, manuals, cad drawings, etc)
    I know it is not possible since Sharepoint is not SAP certified and http inteface from SAP (archivelink) does not work with this product.
    I have read about Inet.DM and thinks like this.
    I read you have configured SHarepoint as WebDav. In some post you have written:
    Hi guys,
    There is a third way, where you end up using Sharepoint as your content server
    1. COnfigure a content server to use file storage
    2. COnfigure the file area for webdav
    3. The webdav is the sharepoint webdav
    Voila, you are using sharepoint as your content server.
    Why the heck you would do that is beyond me, but it works.
    Ok, the question is:
    I am using ECC60 and I dont have file storage option.
    Is is possible to explain this again or sent me screenshots os OAC0 ?? It would be very useful.
    Thanks so much in advance for this.
    Andrea

    Hi Andrea,
    I could find few of the links . Hope these are useful.
    Duet Enterprise is an SDK for integration between SAP and SharePoint
    http://sharepoint.microsoft.com/en-us/product/related-technologies/pages/duet-enterprise-for-sap-and-sharepoint.aspx
    configuration
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/805b67bd-7e93-2e10-99b7-ebe8f3d359d3?QuickLink=index&overridelayout=true
    Regards,
    Deepak Kori

  • BW Publishing using SAP message server

    SAP authentication is configured using a message server on a logon group. The authentication works fine for the logon process; however, there is an issue publishing documents using BW publishing feature. During the publishing process the follow error is displayed "An error occurred while saving and/or publishing. The return code 99 was from the server. Error while communicating with Crystal Enterprise; check SAP Gateway."
    In addition, the BW publishing service is working fine by connecting to an application server instead of a message server.
    Has anyone used the message server/logon group in the BW publishing process successfully?

    Initially, in the entitlement systems tab of the SAP authentication in the CMC, a message server and logon group were used for setting up the SAP authentication, but not the application server and system number.
    The BW Publication configuration was exactly configured as per the process described in your book.
    Yes, we could save reports.
    Yes, we could import roles
    Yes, necessary rights were assigned
    In the BW source parameters, in the parameter, Application server, the message server name (FQDN) was entered and other parameters were LOGON group and system number.
    The environment is a Linux Red Hat 5, Production cluster with 3 BOE servers, SAP message server port is set to3600, SAP gateway port is 3300and connectivity from BOE server verified on both 3600 and 3300 ports.
    SAP server was able to connect with BOBJ server on the SSH port 22

  • SAP B2B server - test connection problem

    Hi Team,
    We have business connector 4.6 sap BC server. We have created adapter connection in sapbc server to establish a connection to SAP ECC system but when we perform test connection in sapbc server it is throwing out error as"  Name or password is incorrect (repeat logon)" though we mentioned the right password and logon credentials.
    Created listener for sap adapter in BC server and maintained program id and other configuration details. Created TCP/IP RFC connection from SAP using register program id "SAPBC and it is working fine.
    communication from SAP to BC is working fine however we could receive error when we tried to test the connection from BC to SAP ECC.
    Below are the BC Error trace for reference.
    **** ERROR file opened at 20140702 192722 India Standard , SAP-REL 620,0,72 RFC-VER 3 480692 MT-SL
    T:162 ======> Name or password is incorrect (repeat logon)
    T:162 <* RfcReceive [5] : returns 3:RFC_SYS_EXCEPTION
    T:162 ======> Name or password is incorrect (repeat logon)
    T:162 <* RfcReceive [6] : returns 3:RFC_SYS_EXCEPTION
    T:162 ======> Name or password is incorrect (repeat logon)
    T:162 <* RfcReceive [7] : returns 3:RFC_SYS_EXCEPTION
    T:162 ======> Name or password is incorrect (repeat logon)
    T:162 <* RfcReceive [8] : returns 3:RFC_SYS_EXCEPTION
    >TS> Wed Jul 02 19:55:59 2014
    T:190 ======> Name or password is incorrect (repeat logon)
    T:190 <* RfcReceive [9] : returns 3:RFC_SYS_EXCEPTION
    T:190 ======> Password logon no longer possible - too many failed attempts
    T:190 <* RfcReceive [10] : returns 3:RFC_SYS_EXCEPTION
    T:190 ======> Password logon no longer possible - too many failed attempts
    T:190 <* RfcReceive [11] : returns 3:RFC_SYS_EXCEPTION
    T:190 ======> Password logon no longer possible - too many failed attempts
    T:190 <* RfcReceive [12] : returns 3:RFC_SYS_EXCEPTION
    Below are the system details:-
    SAPBC – B2B web method integration server version 4.6 on windows NT system
    SAP ECC Details - ECC 6.0, Oracle 10.2, HP Unix 11.31 (Unicode)
    Please share if you have any clues on this.
    Regards,
    Ajay Asawa

    Hi Deepak,
    I have attache here the screenshot in first two part. Please check attachment
    and also attach the error message
    There is any change we have done recently in both system. B2B connected to our ECC production system
    Regards,
    Ajay Asawa

  • RAR: Configuration parameter "Report directory on the SAP ERP Server"

    Hi,
    Under a scenario with a standalone SAP GRC AC 5.3 installation and connected with several R/3 system through JCO destinations.
    Which SAP ERP Server Directory do we have to specify?
    Many thanks in advance. Best regards,
      Imanol

    Sunny,
    I did not mean the Spool File Directory.
    I mean the parameter "SAP Server Application Location". The parameter above FTP Location.
    Under the configuration guide it is said for this parameter that:
    "The report directory on the SAP Enterprise Resource Planning (ERP) application servers. This is the temporary storage location for security reports generated by background jobs. Virtual directories delivered in the ERP system, such as DIR_HOME and DIR_TMP, are supported. These directories are viewed with SAP ERP transaction, AL11. The same directory name is used for all SAP back-end systems."
    Thanks in advance. Best regards,
      Imanol

Maybe you are looking for