Compatible versions with ECC 6.0

Hi,
We are planning the upgrade of our SAP installations:
- R3 4.6C, 4.7 --> ECC 6.0
- BW 3.1, 3.5 --> BI 7.0 (NW2004s)
- SRM 2.0 --> SRM 5.0
- CRM 4.0 --> CRM 5.0
Of course we can't do all the upgrades at the same time, so, in order to decide in which order we make the upgrades, we must be sure that the new versions will be compatible with the old ones.
In the quicklink "service.sap.com/r3-plug-in", menu option "SAP R/3 plugin --> Integration of SAP R/3 / Enterprise, ERP and SAP Components" there are some tables where we can analyze the compatibility between all the BW, SRM and CRM versions and R3 versions prior to ECC 6.0 (4.6C, 4.7, ECC 5.0), according to the plug-in version. From 2005 there seems to be a strategy change in the integration interfaces:
"SAP ECC 6.0 and subsequent releases will automatically contain all integration interfaces that so far have been contained in the SAP R/3 Plug-In and that ensured the technical integration with other SAP Components."
As I understand, ECC 6.0 will automatically contain all the integration interfaces and there will be no more R/3 Plug-In versions. How can I check the compatibility between ECC 6.0 and the other BW, SRM and CRM versions? In the quicklink there are integration matrix available for R3 Enterprise and ECC 5.0 but there is no information for ECC 6.0. Are the versions compatible with ECC 5.0 too compatible with ECC 6.0? As ECC 6.0 seems to "automatically contain all integration interfaces that so far have been contained in the SAP R/3 Plug-In", does it mean that the integration matrix available for ECC 5.0 is too valid for ECC 6.0?
We have found a specific note (931020 "SRM connection to an ERP 2005 (ECC 600) backend") for the integration between ECC 6.0 and SRM but we didn't find any note regarding BW or CRM.
How can we check wich versions (BW, SRM, CRM) are compatible with ECC 6.0? Can we use the integration matrix available for ECC 5.0 in the quicklink "service.sap.com/r3-plug-in", are there specific notes like the one available form SRM (931020)?
We need to be sure as soon as possible that after the upgrade of our R3 4.6C and 4.7 versions to ECC 6.0 they will be compatible with our actual BW (3.1, 3.5), SRM (2.0) and CRM (4.0) versions.
Thanks in advance!!

to followed unicode rules.
ABAP Development under Unicode
Prior to Unicode the length of a character was exactly one byte, allowing implicit typecasts or memory-layout oriented programming. With Unicode this situation has changed: One character is no longer one byte, so that additional specifications have to be added to define the unit of measure for implicit or explicit references to (the length of) characters.
Character-like data in ABAP are always represented with the UTF-16 - standard (also used in Java or other development tools like Microsoft's Visual Basic); but this format is not related to the encoding of the underlying database. 
A Unicode-enabled ABAP program (UP) is a program in which all Unicode checks are effective. Such a program returns the same results in a non-Unicode system (NUS) as in a Unicode system (US). In order to perform the relevant syntax checks, you must activate the Unicode flag in the screens of the program and class attributes.
In a US, you can only execute programs for which the Unicode flag is set. In future, the Unicode flag must be set for all SAP programs to enable them to run on a US. If the Unicode flag is set for a program, the syntax is checked and the program executed according to the rules described in this document, regardless of whether the system is a US or a NUS. From now on, the Unicode flag must be set for all new programs and classes that are created.
If the Unicode flag is not set, a program can only be executed in an NUS. The syntactical and semantic changes described below do not apply to such programs. However, you can use all language extensions that have been introduced in the process of the conversion to Unicode.
As a result of the modifications and restrictions associated with the Unicode flag, programs are executed in both Unicode and non-Unicode systems with the same semantics to a large degree. In rare cases, however, differences may occur. Programs that are designed to run on both systems therefore need to be tested on both platforms.
Other Changes 
1.     Bit Statements
2.     Adding Field Sequences
3.     Loops with VARY and VARYING
4.     Creating Subroutines
5.     Saving Programs
6.     Assigning Types for GET/SET PARAMETER
7.     Unreachable Statements
8.     Function Modules with Incorrect Parameter Names
1. Bit Statements
Previously, the system checked for the bit statements SET BIT i OF f [TO g] and GET BIT i OF f [INTO g]whether the field f is character-type; X fields, X strings, and flat structures are usually regarded as character-type. For Unicode programs this is no longer useful, because the types X and XSTRING no longer count as character-type and the bit by bit access to character-type fields or structures is no longer platform-independent. Therefore, with these operations in Unicode programs, the field f must be type X or XSTRING.
For the bit mask operations f O x, f Z x, and f M x you could previously use all number-type and hence all character-type types for the left operand f. In Unicode programs, the f operand must now be type X or XSTRING.
2. Adding Field Sequences
When adding field sequences, restrictions apply to the following statements in Unicode:
ADD n1 THEN n2 UNTIL nz [ ACCORDING TO sel ] GIVING m ...
ADD n1 THEN n2 UNTIL nz TO m [ RANGE str ].
1.     The operands n1, n2, and nz must be type-compatible with one another.
2.     The distance between nz and n1 must be an integral multiple of the distance between n2 and n1.
3.     A syntax or runtime error occurs if the fields n1, n2, and nz are not in a structure. This structure must be recognizable statically or its valid area must be marked explicitly using the RANGE addition.
4.     At runtime, the system ensures that the RANGE area is not left.
ADD n1 FROM i1 GIVING m [ RANGE str ].
1.     Field n1 must be within the structure. The structure must be explicitly defined using the RANGE addition if it is not recognizable statically.
2.     For this variant, the system also checks at runtime whether n1 and the addressed values are within the structure.
3. Loops
Loops with the VARY or VARYING addition are also problematic in Unicode, since a type-a access to memory contents cannot be ensured and memory can be overwritten inadvertently.
DO ... VARYING f FROM f1 NEXT f2.
For this statement, the fields f, f1, and f2 must be type-compatible with each other. To prevent memory contents being overwritten, a RANGE for valid accesses is introduced implicitly or explicitly for the following statements:
DO ... TIMES VARYING f FROM f1 NEXT f2 [ RANGE f3 ].
WHILE ... VARY f FROM f1 NEXT f2       [ RANGE f3 ].
A syntax or runtime error is caused if f1 or f2 are not included in f3. If the RANGE addition is missing, it is defined implicitly from FROM f1 NEXT f2 as follows:
1.     If both f1 and f2 are statically recognizable components of the same structure, the valid RANGE area is defined from the smallest structure that comprises f1 and f2.
2.     A syntax error is triggered if it is recognizable statically that f1 and f2 are not part of the same structure.
3.     A valid area must be defined explicitly using the RANGE addition if the connection between f1 and f2 is not recognizable statically.
If you specify a deep structure as the RANGE addition, the system checks for every loop pass that there are no field references, object references, tables, or strings in the area read.
4. Creating Subroutines
When automatically generating subroutines using the statement GENERATE SUBROUTINE POOL itab NAME name, the generated program inherits the content of the Unicode flag of the generating program.
5. Saving Programs
When automatically generating programs using the statement INSERT REPORT prog FROM itab, default values are set for the TRDIR entry as before. Amongst other things, this statement has the new addition UNICODE ENABLING uc, with which the Unicode flag of the inserted report receives the value of uc. If this addition is missing, the following applies:
1.     A Unicode program creates a Unicode program.
2.     A non-Unicode program in turn creates a non-Unicode program.
3.     A non-Unicode program becomes a Unicode program if it is overwritten by a Unicode program.
4.     A Unicode program remains a Unicode program if it is overwritten by a non-Unicode program.
6. Assigning Types for GET/SET PARAMETER
For the statements GET PARAMETER ID pid FIELD f and GET PARAMETER ID pid FIELD f, f must be character-type. You can use the EXPORT and IMPORT statements for storing non-character-type fields and structures.
7. Unreachable Statements
In Unicode programs, unreachable statements cause a syntax error. In non-Unicode programs, there was previously only a syntax warning.
8. Function Modules with Incorrect Parameter Names
In Unicode programs, calling a function module, whose parameter names are specified statically as a literal or constant, causes an exception that can be handled if an incorrect parameter name was specified. This only applies to function modules that are not called via Remote Function Call. In non-Unicode programs, an incorrect name was previously ignored.

Similar Messages

  • Compatible version with eclipse3.2wtp

    hello....i want to make a web application in eclipse using struts, tomcat as web serverand mySql as DB...can anybody please tell me the version wich will be compatible with each other...
    i am using eclipse3.2wtp
    so others version will be???
    struts version =?
    tomcat version =?
    mySql version =?
    thnx

    hello....i want to make a web application in eclipse
    using struts, tomcat as web serverand mySql as
    DB...can anybody please tell me the version wich will
    be compatible with each other...
    i am using eclipse3.2wtp
    so others version will be???
    struts version =?
    tomcat version =?
    mySql version =?
    thnxwell i have experienced that if i'm using jdk1.5 to compile the whole application and then run it on tomcat 4.1 on a windows platform then there's a problem...i forgot the error but there is some while u want to run the application in tomcat 4.1...
    so you can always go for
    jdk 1.5
    jakarta struts 2.0.1
    tomcat 5.5
    mysql 5.2
    wht i mentioned here are all stable versions..

  • IPod 4,1 will not update to iOS 7. I updated my iMac to 10.9.1 (maverick). Latest Numbers version on iMac is not compatible with Numbers on iPod. Ideas? Can I go back a version with Numbers?

    iPod 4,1 will not update to iOS 7. I updated my iMac to 10.9.1 (maverick). Latest Numbers version on iMac is not compatible with Numbers on iPod. Ideas? Can I go back a version with Numbers? I downloaded old version of Numbers 2.0.1 from DVD but with both versions the 2.0.1 will not open.  So both versions are present but only the new version functions. I tried to drag the new version to the trash but the old version still runs error message and will not open. I did not try to restart with the new version in the trash.

    Maybe. See:
    Reverting to previous version of Numbers

  • Error Message: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. The request failed with HTTP status 404: Not Found.

    I have a web page that contains a ReportViewer control.  I am trying to display a report, which is an .rdl file located on the SSRS server, in this ReportViewer control.  I have set the ReportPath and ReportServerUrl correctly.  I am
    getting an error message.
    Am I suppose to use an .rdlc file rather than a .rdl file?  Does the web server configuration need to use a certain account?
     I am getting the following error message:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    The request failed with HTTP status 404: Not Found.

    Hi bucaroov,
    The error "The request failed with HTTP status 404: Not Found." means the ReportServerURL configured in the ReportViewer control is invalid.
    Please follow these steps to solve the issue:
    Logon the Report Server machine.
    Open the Reporting Services Configuration Manager.
    Copy the Report Server URL from 'Web Services URL'.
    Logon the application server(in this case, it is the server that host the web page), check if we can use the URL we got from step 3 to access the Report Server. If so, please replace the ReportServerURL in the ReportViewer control with this URL. If it is
    not available, could you please post the error message.
    Additionaly, we don't need to provide the extension for a server report. The ReportPath should be like: /<reports folder>/<report name>
    For more information, please see:
    Walkthrough: Using the ReportViewer Control in Remote Mode:
    http://msdn.microsoft.com/en-us/library/ms251669(VS.80).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • ITS version compatabiity with ECC 6.0

    Hi Experts,
    I have to install ITS (server components) at one of my client side to some transaction on web, earlier they were using R/3 4.6 and they switched to ECC 6.0
    Please tel me which ITS version is comatable with ECC 6.0
    I installed server components (ITS) from R/3 4.7 cd pack but i was unable to publich internet services from se80, (published successfully message  on status bar but no service in the c:\program files\SAP\ITS\6.20\service folder)
    Then I tried to install ITS from ECC 6.0 cd pack but i was unable to install it. the setup.bat file ask for sapinst.exe file but its not in the CD(i also checked in another ECC6.0 pack )
    I dont no which one is compatable with ECC6.0, i have to generate web services for some customised transactions, can anyone tel me how to solve this pproblem of installation or if any other way to generate web services please tel me the procedure...
    Regards
    Manish

    Instead of PZM3, use the Homepage Framework to launch your ESS offering (HF is configured in the IMG and tied to the XSS Java components that will need to be installed as well). You can run ESS standalone in this manner although SAP frowns on it (hey, they want to sale the portal! haha).

  • [svn:fx-trunk] 11926: Fix 3. 0 compatiblity-version bug with generated styles.

    Revision: 11926
    Revision: 11926
    Author:   [email protected]
    Date:     2009-11-18 04:46:03 -0800 (Wed, 18 Nov 2009)
    Log Message:
    Fix 3.0 compatiblity-version bug with generated styles.
    src/java/flex2/compiler/common/CompilerConfiguration.java
       Turn ?\226?\128?\147isloate-styles off in 3.0 compatibility mode. This flag also turns on the hidden option ?\226?\128?\147allow-duplicate-default-style-declarations which is what fixes the bug.
    src/java/flex2/compiler/css/StyleDef.vm
       Changed a tab to spaces.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-24259
    Reviewer: Peter
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24259
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/CompilerConfiguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleDef.vm

    FYI - This regression has been filed here: http://bugs.adobe.com/jira/browse/SDK-31989

  • Version 2.0 is not a compatible version error with synch manager

    i've build a synch plugin and i put the dll files in the plug in directory.
    when im running the synch plugin and im looking through the logs i get the following error "Version 2.0 is not a compatible version."
    i think the problem could happen because im using visual studio and i think it compiles standard with framework 2.0 and im guessing synch manager need framework 1.1. but im not sure?
    can anyone help me with this problem??
    kind regards,
    C. Oude Luttikhuis

    yes that error message is actually coming from the .Net Framework you can find more on it <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=521514&SiteID=1">here</a>
    For a netpoint 5.9 plugin it would need to be compiled in .Net 1.1, if you only have MS Visual Studio 2005 you might want to look into MSBee which will allow you to compile to 1.1 (but requires a higher developer knowledge) or i know that <a href="http://www.icsharpcode.net/OpenSource/SD/Default.aspx">SharpDevelop</a> is a free IDE that will compile to 1.1 code.

  • BW 3.5 Compatible with ECC 6 unicode???

    Hi BW Experts !!
    I want to know - if BW 3.5 compatible with ECC 6 unicode???
    I would greatly appreciate if someone can provide me SAP guidelines confirming this compatibility. I already searched on SAP service marketplace but could not find clear mention of this confirmation.I believe that some people must be using BW 3.5 with ECC 6.0.
    Regards
    Pradip
    (points will be assigned to helpful answers)

    check the doc below for the confirmation:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5411d290-0201-0010-b49b-a6145fb16d15
    SAP Business Intelligence
    Unicode-compliant SAP BW

  • Reg Compatible Java Version with SAP EP7 SP20

    hi
    can anyone please let me the compatible java version with SAP EP7 SP20
    thanks in advance

    I am able to solve this problem
    Browser Version
    INTERNET EXPLORER 8.0  WIN VISTA 32-BIT                                   
    INTERNET EXPLORER 8.0  WIN VISTA 64-BIT                                       
    INTERNET EXPLORER 8.0  WIN XP 2002 HOME 32-BIT                   
    INTERNET EXPLORER 8.0  WIN XP 2002 PROF. 32-BIT                  
    FIREFOX 3.0  WIN VISTA 32-BIT  Released                                          
    FIREFOX 3.0  WIN VISTA 64-BIT  Released   
    FIREFOX 3.0  WIN XP 2002 HOME 32-BIT  Released 
    FIREFOX 3.0  WIN XP 2002 PROF. 32-BIT  Released 
    Adobe Flash Version
    Flash Player Version       10.+  (depends on the type and version of the browser we are using)
    Java Version
    JDK 1.4.2_11

  • I have an ipad 2 with ios 6 and i want to download ibooks using the itunes on my laptop .but the ibooks is compatible with ios 7 or later.i need ibooks urgently and how do i download the compatible version

    i have an ipad 2 with ios 6 and i want to download ibooks using the itunes on my laptop .but the ibooks is compatible with ios 7 or later.i need ibooks urgently and how do i download the compatible version in my windows laptop.

    Download the iBooks app to iTunes on your computer. Once it's downloaded, go to the Purchased section in the App Store on the iPad, select iBooks and you should be prompted to download a compatible version.

  • Ariba 8.1 connector with ECC 6.0

    Hi ,
    Is Ariba 8.1 connector compatible with ECC 6.0?
    If not what could be a probable solution?
    Thanks
    Amit

    Hi,
    latest ITS standalone version was 6.20.
    But this can not be used with systems based on 7.0 kernel. Here you should use the integrated ITS.
    You can also have look at Notes 905135 and 197746.
    Regards
    Guido

  • 10.6.8 Java not working. "No compatible version of Java 1.5  is available"

    Hey Guys
    Firstly I would like to thank you for clicking this question and would ask you please if you have a solution to my problem answer whatever you can.  Anyway lets get on with it.
    Recently I have been having a problem on my macbook.  I am running 10.6.8 as said in title.  Previously i was having an inactive plugin error going on and the software update said there were no newer versions available.  However when looking for a solution for this by clearing my java cache ect. i somehow ended up with this problem.  Whenever I try to run a java based application such as minecraft it says "Cannot launch "Minecraft" No compatible version of Java 1.5+ is avaiable." Also when from this menu i try to open Java Preferences it says "You can't use this version of the application Java Preferences with this version of Mac Os X.  You have Mac OS X 10.6.8. The application requires Mac OS X 10.7 or later." I did not download java 1.7 or a different version of Java Preferences outside of the software update.  If you have any idea of what's going on please help me out.  I am struggling to get on with work and games without java even working. 
    Thanks for your help
    Will

    Are you up to date with the updates?
    Update for Snow Leopard users:
    Apple issued update 12 for Java for OS 10.6:
    http://support.apple.com/kb/DL1573
    Note:  On systems that have not already installed Java for Mac OS X 10.6 update 9 or later, this update will configure web browsers to not automatically run Java applets. Java applets may be re-enabled by clicking the region labeled "Inactive plug-in" on a web page. If no applets have been run for an extended period of time, the Java web plug-in will deactivate.
    If, after installing Java for OS X 2013-002 and the latest version of Java 7 from Oracle, you want to disable Java 7 and re-enable the Apple-provided Java SE 6 web plug-in and Web Start functionality, follow these steps:
    http://support.apple.com/kb/HT5559?viewlocale=en_US
    Further update:
    Apple issued this Java related security update No. 13 on February 19:
    http://support.apple.com/kb/HT5666
    and Update No. 14 on March 4:  http://support.apple.com/kb/DL1573
    http://support.apple.com/kb/HT5677
    The standard recommendation is for users to turn off Java except when they have to use it on known and trusted websites (like their bank). Javascript, which is unrelated despite the name, can be left on.

  • I have an Ipod touch updated to last available ios 4.2.1. How can I get the last compatible versions of the apps?

    I have an Ipod touch updated to last available ios 4.2.1.
    How can I get the last compatible versions of the apps?
    In the appstore there are only the lat app versions, most of them are incompatible with my device.
    I know that previous versions of these apps were compatible with my ipod.
    Can all download them someway?
    thanks

    The problem is: I never had the compatible versions. But I want them, I'd buy them if I could.
    So I'm stuck with my Ipod, which can't be upgraded anymore to higher IOS versions, and with the appstore, that does not offer older versions; versions that have existed and still exist, perhaps in the recycle bin of some users, or somewhere in the appstore servers.
    I know, its a policy, just to sell more devices. Will not work with me. I'm not buying more Ipods

  • When there will be a new boot camp version with Windows 8.1 support? I a floor of year can't already update Windows 8 on the iMac! ! !

    When there will be a new boot camp version with Windows 8.1 support? I a floor of year can't already update Windows 8 on the iMac! ! !

    Welcome to Apple Support Communities
    Boot Camp Support Software 5.0.5033 supports Windows 8.1 and can be used with that version. The Mid 2011 iMac is compatible with Windows 8, so you should not have any problem by installing Windows 8.
    Follow Apple's steps > http://manuals.info.apple.com/MANUALS/1000/MA1636/en_US/boot_camp_install-setup_ 10.8.pdf

  • SAP SRM 7.0 with ECC EHP 4 components to execute scenario

    Hi All,
    I am new to SAP SRM 7.0.Could you please let me know that what are all the components needs to be in place to execute the technical scenarios and business scenarios.I had an hands on experience on SAP SRM 5.0 with ECC 6.0 backend.
    Some where i read that there are lot of configuration  changes when we integrate SRM 7 with ECC EHP 4.Do we need to have PI 7  for executing Centralized contract and plan driven procurement scenario?Please guide me to have some exposure towards higher version.Thank you in advance.
    Best Regards,
    praveen

    Hello,
    You can refer the INSTALLATION AND UPGRADE INFORMATION , Master guides etc maintained at the below mentioned location which will answer all your query's here.
    Goto URL http://service.sap.com/srm-inst and then navigate to SAP SRM --> SAP SRM Server 7.0 .
    Best Regards,
    Rahul

Maybe you are looking for

  • Error trying to drag/drop import .mov FCP movie to DVD Studio Pro...?

    I exported a video from FCP 7 as a .mov with chapter markers to use in DVD studio pro and it gives me this error: Help =[ Process:     DVD Studio Pro [1263] Path:        /Applications/DVD Studio Pro.app/Contents/MacOS/DVD Studio Pro Identifier:  com.

  • Is it possible to create a smaller version of a photobook that's already created?

    I've created a photo book that contains about 150 images. While I'm happy with it, I think it's too expensive for most of my family and friends to want to purchase a copy. Can I create a Save As version from my existing book to make a new book with f

  • JTree bug ??

    Hi all, I'm coding with the Swing API and I just got this strange bug. Let me try to picture the problem. I have the following JTree made of a root that is empty. To this root, I add a new entry: - Root + New Entry Adding is done with the insertNodeI

  • How to connect wifi in c3-01

    i had brought c3-01 i connected to my home router its coming as connection  successful later when go for browsing its loading and later coming as link is not available pls help me friends what should i do for this?

  • Textslices over slices

    Hi, I've made a websitedesign in fireworks. Right now the design is ready, but something is messing up a part of my design as I export it to dreamweaver. The menubar on top is made of a rounded rectangle with shadow. I sliced this rectangle and shado