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

Similar Messages

  • When will iPad be compatible with Khmer Unicode?

    I found it very inconvenient that IPad or IPhone cannot be able to read Khmer Unicode.

    Since they have it in 10.7 it should not be too hard to add to iOS.  To make sure they know you want it, go to
    http://www.apple.com/feedback/ipad.html

  • 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.

  • I need to know if ECC ram in a HPZ1 is compatible with Quadro 500M, 1000M, 2000M video cards

    hello,
    i purchased a refurbished hpz1 a year ago, equipped with a Quadro 500M and 16 GB of ECC ram. The cpu is a Xeon e3 1245 v2.
    I have lots of trouble trying to use this workstation with certain graphics programs,  like Sketchup 2013 and 2014, as well as rendering programs.  Anything from program freezing/shutting down shortly after opening to locking up the machine midstream.  Yes,  I have updated video drivers, several times,  but still plagued with the same problem.  Not all the time, but frequently.
    In shopping for upgrades to the 500M card (like 3000M, perhaps) I have come across video card vendors that specifically mention these older Quadro cards are NOT compatible with ECC ram. I have brought this to the attention of the workstation vendor, IT Creations, in California,  and they claim to never hearing of this issue.
    I have spent dozens of futile hours over the past year dealing with system instability,  issues like bootup screens informing me the ram system chip count has (erroneously) changed, requiring immediate shutdown and booting back up to override the message.
    Is it true?  CAN or SHOULD ECC ram be used with earlier Quadro cards using MXM3.0?

    Hi:
    You may also want to post your question on the HP Business Support Forum -- z  Workstations section.
    http://h30499.www3.hp.com/t5/Workstations-z-series​-xw-series/bd-p/bsc-272#.U5cLUOlOW9I

  • 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

  • Which version of Weblogic on Solaris is compatible with Oracle 8.1.7 - Unicode?

    Hi folks,
    We want upgrade WLS 4.5.1 to one of the last version of WLS, but also we are
    planing upgrade Oracle to 8.1.7 version and migrate the character set of the
    database to UTF8 (Unicode),
    so we need to know which versions of WLS are compatible with Oracle 8.1.7
    and Unicode as Character Set.
    Thanks in advance.
    Moises Moreno.

    Hi Moises Moreno
    The latest version of weblogic server is 6.1 with service pack 1. This version
    supports oracle 8.1.7 on major unix platforms viz., solaris(2.6,2.7,2.8),
    hp-unix(11.0,11.0i), linux7.1, Aix4.3.3 and on windows platforms viz.,
    NTwithsp5, 2000.
    BEA jdrivers are having Multibyte character set support (UTF8).
    Note : Weblogic server 5.1 with SP10 also supports oracle 8.1.7.
    FMI : http://www.weblogic.com/platforms/index.html#jdbc
    Thanks & Regards
    BEA Customer Support
    Moises Moreno wrote:
    Hi folks,
    We want upgrade WLS 4.5.1 to one of the last version of WLS, but also we are
    planing upgrade Oracle to 8.1.7 version and migrate the character set of the
    database to UTF8 (Unicode),
    so we need to know which versions of WLS are compatible with Oracle 8.1.7
    and Unicode as Character Set.
    Thanks in advance.
    Moises Moreno.

  • SAP ECC 6.0 EHP4 Compatible with MDSD 3.0?

    Hi Folks,
    Is SAP ECC 6.0 EHP4 compatible with MDSD 3.0? I have read the documentation but its not clear for me if this would be possible.
    It says that MDSD 3.0 is compatible with SAP ECC 6.0 EHP3, but i would like to know if compatible with EHP4.
    Thanks for your help.
    Regards,
    Gilberto Li

    Hi Gilberto,
    yes, this should work fine. We just have one client who did the upgrade and he has not experienced issues up to now - even he is still in testing phase.
    Regards,
    Oliver

  • Is Adobe Interactive Forms compatible with SAP-PM in ECC 6 ??

    Hi experts
    My question : is Adobe Interactive Forms compatible with SAP-PM in ECC 6 ??
    Thanks

    Hello,
    I can recommend you to search sap official documents for the standard-SAP-delivered-Adobe-forms and maybe there are some for the PM module. Would that help? Or you´ve learnt Adobe yourself? Regards, Otto

  • Is Unicode Bangla Fonts and Unicode Bangla Keyboards are compatible with Mac OS 10.4.11?

    Hi,
    Please let me know if those are compatible with my MB.
    I also need to know the process or method of removing or uninstalling the bangla fonts and keyboards from the system. Please guide me.
    I deleted few files in removing the fonts and keyboard layout, but the Unijoy and Rapali layouts remain in the input source. Is that gonna clash if i reinstall the fonts and keyboard layout again.
    After removing the fonts and keyboard layout, I opened the preference pane, then i checked the box from the input menu, then i opened the MS Word to see if the fonts and layouts are removed properly or not, i thought i won't be able to type, but i was wondering that what files i removed.
    Actually I was facing trouble in typing the Conjunct bangla words since the installations, conjunct words not working as per the typing guide says. That's why i tried to remove it and install again. Now i am confused.
    I look forward to your help.
    Following are the system information that i am using now:
    Model Name:          MacBook
      Model Identifier:          MacBook2,1
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache (per processor):          4 MB
      Memory:          1 GB
      Bus Speed:          667 MHz
      Boot ROM Version:          MB21.00A5.B07
      SMC Version:          1.13f3
    Look forward to your reply.
    Message was edited by: OmarSiddique

    Hi Omar,
    I'm not familiar with hose but try thee steps...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Then open Fon't Book & Validate all Fonts & check for duplicates.

  • Is the ram in my Imac Al compatible with my macbook Core Duo???

    Is the ram in my Imac Al compatible with my macbook Core Duo??? The ram in my Imac is 2x 1GB.
    Thanks,
    KANE

    Hi KANE,
    all Intel-Macs, with the exception of the Mac Pro, use the same kind of RAM-Modules .
    Specs are: 200-pin DDR2 SDRAM SO-DIMMs up to 1.25” in height. The SO-DIMMs must be DDR2-667 (PC2-5300) compliant and must be unbuffered, unregistered, 8-byte, nonparity, and non-ECC.
    So feel free to swap.
    Stefan

  • SRM 7.01 with ECC 6.0 EHP 7.0

    Hi Guys,
    Does anyone have an idea on SRM 7.01 compatibility with ECC 6.0 EHP 7.0. Any things needs to be taken care from SRM side after an upgrade to EHP 7 in ECC side.
    Please share your experience.
    Thanks for your reply in advance.

    Hi Imran,
    It is compatible, But still for confirmation please see the product availability matrix.
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/support/pam/pam.html?smpsrv=https%3A%2F%2Fwebsmp203.sap-ag.de#pvnr=01200615320900003495&ts=4&pt=t%7Co
    Best regards,
    Rohit

  • Are 2013 Mac Pro DIMMS compatible with 12-Core Silver Tower?

    I have a Mid 2011 12-Core Silver Tower, and want to upgrade the memory, however, I also expect to upgrade the entire computer in the next year or two, so I'm wondering if I can buy DIMMS compatible with the 2013 model and use them in the Silver Tower?
    Currently, the Silver Tower has 8 slots, 4 of which are occupied with 2GB DDR3 ECC 1066MHz modules. Correlary question is: can I keep these DIMMS in the 4 matching slots, and put the faster 2013 DIMMS in the other four matching slots, or do I have to replace EVERYTHING?
    Thanks in advance!

    The Mac Pro silver tower has unique cooling requirements not present in other computers, including the Mac Pro  6,1 black cylinder. Memories for the silver towers should have Apple-approved extra-large heatsinks.
    I think you should just buy the DIMMs specifically for the model you have, and leave it at that. The 8GB modules will still mix freely with smaller sizes, and are about the same price as two 4GB modules, so they are the best choice.

  • Is PC10600 ram backward compatible with PC8500

    I have a mid-2010 Mac 2.8 Quad core. Can I use PC10600 RAM on it? I know that I will not see a speed improvement using the faster PC 10600. The advantage to me is that I find the PC10600 much more readily available in the shops.
    Message was edited by: EthanEdward

    Specifications:
    DIMMs for Mac Pro (Early 2009 \[and Quad core 2010]) must fit these specifications:
    • PC3-8500,1066 MHz, DDR3 SDRAM UDIMMs
    • Error-correcting code (ECC)
    • 72-bit wide, 240-pin ECC modules
    • 18 memory ICs maximum per UDIMM
    DIMMs for Mac Pro (Mid 2010 \[Hexacore and 8-core Westmere]) must fit these specifications:
    • PC3-10600E,1333 MHz, DDR3 SDRAM UDIMMs
    • Error-correcting code (ECC)
    • 72-bit wide, 240-pin ECC modules
    • 36 memory ICs maximum per UDIMM
    Note: Memory from older Apple computers is not compatible with your computer.
    Those faster memories SHOULD clock down and work in your Mac, but if they do not, you will be stuck with some expensive modules that do not work in your Mac.
    • ASK THE VENDOR to guarantee that the modules they sell will work in your Mac.
    • ASK THE VENDOR to provide a written Lifetime warranty -- if they ever fail, the vendor will replace them, free.
    If they do not know, you need to shop elsewhere. If you are getting anything less, you are being cheated.

  • Is GRC Access Controller 5.3 compatible with NW 7.1

    Hi Gurus,
    I know that pre - requisites for installing GRC Access controller 5.3 is
    NetWeaver 7.0
    Application Server (AS) SP12
    (ECC 6.0, NW04S or 2004S)
    Is that compatible with NW 701 or 710 version also? 
    apriciate if will get any referance link , document for latest compatible NW versions with AC 5.3
    Thanks,
    Rupali B
    Edited by: Rupali B on Jan 25, 2010 7:58 AM

    Hi Rupali,
    For  NW 71 , you need to upgrade with GRC VIRSAHR 530_710 for Access control 5.3.
    Check Note 1270574 - VIRSANH 530_710 Support Packages for 710. This notes is updated regulary. So read the not carefully before taking any action.
    Gurus, Provide more information if you have on this. This will be useful for all...
    Rupali, You can get the latest version and support pack compatibilty on SAP Support Portal..check that as well. for GRC access control 5.3.

  • Mail app deleted and reinstall wont open, says not compatible with OSX

    i accindetally deleted my mail app and emptied the trash, when I tried to reinstall from the startup disk, it installs but wont open, saying that the version of mail is not compatible with the version of OSX (10.5.8)

    The Combo updater of Leopard 10.5.8 can be found here:
    http://support.apple.com/downloads/Mac_OS_X_10_5_8_Combo_Update
    There is no downloadable version of Mail.app - it comes with the operating system i.e. on your install disks.

Maybe you are looking for

  • Disappearing white lines in standard table mode

    I always work in Standard Table Mode -- today I somehow lost the white lines that help me make sense of it. Screenshot: http://www.clicksharpmarketing.com/beta/file_stash/Picture2.png So it is supposed to look like what you see in the screenshot, but

  • How to turn off "determing gapless playback information" feature?

    it continually locks up itunes and forces me to CTRLALTDelete itunes. i notice that this "feature" starts itself again sometime even after i've stopped it. grrr. anyone know how i can disable it?

  • Lion's bugs... Server side...

    ok... 1. Web Server virtual hosting does not work: Is there someone that can translate this? Jul 29 15:56:48 mini com.apple.APNBridge[407]: Opening connection to apn server gateway.push.apple.com for topic com.apple.contact.XServer.4974144a-9285-4e3c

  • CRM debugging

    I'm trying to debug the CRM middleware for BP replication . I can see the outbound queue of the bp in CRM ( transaction smqs ) . But when I click on 'Debug LUW' button ( function module being CRM_UPLOAD_TRIGGER ) I'm expecting that I can start debugg

  • Reqursive Query

    Hi, i wanna to set up the query. Table has two columns [ID] and [ParentID] : ROW1 ID:1 ParentID:0 ROW2 ID:2 ParentID:1 ROW3 ID:3 ParentID:2 ROW4 ID:4 ParentID:3 ROW5 ID:5 ParentID:0 now, i want to get the result which is all of child nodes, depand on