Difference between ECC 6.0 and earlier versions

Hi,
one of the difference between ECC 6.0 and earlier versions is that instead 'WS_UPLOAD'  and 'WS_DOWNLOAD' in ECC we should use 'GUI_UPLOAD' and 'GUI_DOWNLOAD'  respectively.
(of course SPDD and SPRO tcodes is known by everone i suppose)
Similarly can u all put down some differences here, atleast one entry by each, I think we can make a good docu. I have searched the net for the differences but could not get much, so by each of us contributing one each, it would become good docu..for all of us.
Thanx in advance

Unicode Errors Encountered and their Solutions
E1. In u201CTEXT MODEu201D the u201CENCODINGu201D addition must be specified.
     Error:
     OPEN DATASET FILE FOR OUTPUT IN TEXT MODE.
     Solution:
     OPEN DATASET FILE FOR OUTPUT IN LEGACY TEXT MODE.
E2. In Unicode, DESCRIBE DISTANCE can only be used with the IN BYTE MODE  or  IN
      CHARACTER MODE  addition.
     Error:
     DESCRIBE DISTANCE  BETWEEN T_KOMK AND T_KOMK-HIEBO01 INTO BPOS.
     Solution:
DESCRIBE DISTANCE  BETWEEN T_KOMK AND T_KOMK-HIENR01 INTO BPOS
IN CHARACTER MODE.
E3. u201CUSR02-UFLAGu201D must be a byte-type field (Typ X or XSTRING )
     Error:
     IF USR02-UFLAG O YULOCK.
     Solution:  Since the data type of USR02-UFLAG is type INT and is compared with data type
                X u2013 Hence the error. So we  define a new variable ZULOCK and assign the
                value of USR02-UFLAG to ZULOCK.
              New variable             
              DATA: ZULOCK(1) TYPE X.   "APBRP00
              Assign value               
                            ZULOCK = USR02-UFLAG.
        Compare -
               IF ZULOCK = YULOCK.   u201Creplace IF USR02-UFLAG O YULOCK.
E4.  HT cannot be converted to a Character type field
Error :
WRITE ht TO t_data+10(2).
Solution : Since the data type of ht is a type u2018Xu2019 and the data is been transfer to
         t_data which has a data type u2018Cu2019. value of one data type cannot be copy to
         another data type where one of them is type string .Hence the error occur,
         so the data type of ht is been change to Type u2018Cu2019
     OR
           A Tab ( value 09 ) is introduced as part of the row. The value 09 is not converted in Unicode environment. Instead we need to use class
     Error:
          DATA: BEGIN OF ht,
               x(1) TYPE x VALUE '09',
          END OF ht.
     Solution:
              Define Class after the Tables definition.
                   CLASS cl_abap_char_utilities DEFINITION LOAD.
              Data Defination :  Comment internal table HT and define a variable HT type C.
       *   Insert + APRIA00 05/02/2007 Unicode project
       *   DATA: BEGIN OF ht,
     *         x(1) TYPE x VALUE '09'
       *   END OF ht.
     *   Insert - APRIA00 05/02/2007 Unicode project
       DATA HT type C.
       Before using HT assign Horizontal tab.
                 Ht = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.  
E5.  In Unicode programs the u201C#u201D cannot appear in names, as it is does here in the name    u201C#LINESu201D
     Error :
     #LINES                 TYPE I,
     Solution : Since the # is used in the start of name, it is not allowed. We need to
              remove it. 
     Solution for the above
     V_LINES                 TYPE I,
E6. In u201CTEXT MODEu201D the u201CENCODINGu201D addition must be specified as well as the addition was required FOR OUTPUT,FOR INPUT, FOR APPENDING OR FOR UPDATE was expected.
     Error:
     OPEN DATASET PATH_NAME IN TEXT MODE.
     Solution:
     Download =     OPEN DATASET PATH_NAME FOR OUTPUT IN LEGACY TEXT MODE.
     Upload        =  OPEN DATASET AUSZUG-FILE IN TEXT MODE FOR INPUT ENCODING DEFAULT.
E7. u201CTABu201D must be a character-type data object( data type C,N, D, T or String). Field string)    
     Error:
            data: begin of tab,                   "Excel Parameter Split at TAB
        t type x value '09',          "Tabulator
       end of tab.
            concatenate 'Material' 'Package Status'
                into z_download-line separated by tab.
            ( In the above command  the two field are to be separated with a horizontal Tab. The earlier      way of assigning the tab value u201809u2019 will not work in Unicode environment.
     Solution:
     Define a  class just after the Table defination.
          CLASS cl_abap_char_utilities DEFINITION LOAD.
            Define  variable Tab as shown below :
          Data : TAB           TYPE C.
     Before the concatenate statement assign the value of Tab using pre-defined attributes.
          TAB = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
E8. Upload/Ws_Upload and Download/Ws_Download are obsolete, since they are not Unicode-
      enabled; use the class cl_gui_frontend_services     
     Error-1:  Function WS_DOWNLOAD is obsolete in Unicode environment.
            call function 'WS_DOWNLOAD'
                 exporting
                      filename = zfilename
                 tables
                      data_tab = z_download.
     Solutions-1: Instead of WS_DOWNLOAD use  GUI_DOWNLOAD.
CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
*   BIN_FILESIZE                  =
    FILENAME                      = zfilename
  TABLES
    DATA_TAB                      = z_download.
E9.  The "/" character is reserved for identification of namespaces. It must be entered twice.
        The name  of a namespace must be at least 3 characters long.
     Error :      
                 U/N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
     Solution :
     * Special character can not be used to define a data variable
     *      U/N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
              U_N(3)        TYPE C,  "U/N    --> ERSETZT DURCH SPACE
     * Insert - APSUS02 07/02/2007 Unicode Project
E10.  "LP_TAB" and "CS_TAB" are not mutually convertible. In Unicode programs,
         "LP_TAB" must have the same structure layout as "CS_TAB", independent of the length
         of a Unicode character.
     Error : This error is encountered when data from one internal table is copied to another
                         internal table which different structure. In this case its LP_TAB & CS_TAB.
                 LP_TAB[] = CS_TAB[].
     Solution :
          * Replace + APSUS02 07/02/2007  Unicode Project
*   LP_TAB[] = CS_TAB[].
              move-corresponding CS_TAB to LP_TAB.
          * Replace + APSUS02 07/02/2007  Unicode Project
E11.  Could not specify the access range automatically. This means that you need a RANGE
          addition.          
     Error :  Range need to be specified as an addition to the command.
            DO 4 TIMES VARYING HELP_CHAR FROM ABCD(1) NEXT ABCD+1(1).
           Solution : 
            DO 4 TIMES VARYING HELP_CHAR FROM ABCD(1) NEXT ABCD+1(1)
          * Insert + APSUS02 07/02/2007  Unicode Project.
                                                      RANGE ABCD+0(4).
* Insert - APSUS02 07/02/2007  Unicode Project.
E12 .  Processing Terminated Error code: Error in opening /
                                          Path not found when downloading to Unix directory.
     Error : PARAMETER: outfile(92) DEFAULT
              '/CP/interface/NPP/data/MX/cbslaprcpts'
                    LOWER CASE,
               kmxmstrd AS CHECKBOX.
            This error is encountered when the path is missing. The above path is related to CCP.
     Solution:  For testing purpose comment the original path and replace it with
                                 /CP/interface/CCD/Unicode_test/ 
E13.    Upload/Ws_Upload and Download/Ws_Download are obsolete, since they are not                                                                       Unicode- enabled; use the class cl_gui_frontend_services
     Error: Function WS_UPLOAD is obsolete in Unicode environment. (During UCCHECK)
               Call function 'WS_UPLOAD'
       Exporting
            Filename                = zfilename
            Filetype                = u2018DATu2019
       Tables
            data_tab                = z_upload
       Exceptions
            Conversion_error        = 1
            file_open_error         = 2
            file_read_error         = 3
            invalid_table_width     = 4
            invalid_type            = 5
            no_batch                = 6
            unknown_error           = 7
            gui_refuse_filetransfer = 8
            others                  = 9.
     Solution: Instead of WS_UPLOAD use TEXT_CONVERT_XLS_TO_SAP. Do not use temporary file put the file name as it is.
1) First define a type pool and a variable of type truxs_t_text_data.
TYPE-POOLS: truxs.
DATA: it_raw TYPE truxs_t_text_data.
     2) Use this it_raw in the function module in parameter i_tab_raw_data. Put file name and the internal table in the function module.
CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
    EXPORTING
*     I_FIELD_SEPERATOR        =
*      i_line_header            =  ' '
      i_tab_raw_data           =  it_raw       " WORK TABLE
      i_filename               =  zfilename
    TABLES
      i_tab_converted_data     = z_upload[]    "ACTUAL DATA
   EXCEPTIONS
      conversion_failed        = 1
      OTHERS                   = 2.
     Comment u201Ci_line headeru201D. It takes the first/ header line of the file which is to be uploaded.
Put  square brackets after internal table as shown above.
E14.    CURSORHOLD may not be converted into a number.
     Error:  GET CURSOR LINE CURSORHOLD VALUE CURSOR_HOLD.
     Solution: In the declaration part of CURSORHOLD, one field is of u2018Pu2019 type and one field is of u2018Iu2019 type, which is not allowed in Unicode environment.So change the the type of it to NUMC.  

Similar Messages

  • Difference between ecc 4.0 and 6.0

    Hello,
    Please can someone tell me wht is the difference between ecc 4.0 and 6.0 in relation with BW.Like how will BW be affected with the change.
    the other ques is that can we work on ECC 4.0 with BI7 ot BI7 will only work on ecc 6.0. Please can someone explain me tht.
    thanks

    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    After opening the site, please select the Source Release Version which is 4.0 b Then Select the Target Release Version which is "mySAP ERP 2005" or ECC 6.0
    Select the Solution Area like Financials, Human Capital Management, Sales....
    Select module like MM, PP, SD, QM.....
    Click on Search
    Then it displays the Release Version and the Delta Functionality. which can be downloaded to a word document if required.
    and also check the release notes of ECC 6.0 in service.sap.com.
    Hope this helps you.

  • Difference between Ecc 5.0 and Ecc 6.0 SAP note number

    Hello Friends,
    Is any one knows difference between Ecc 5.0 and Ecc 6.0 version released SAP notes for FICO module.
    Thanks in advance for your help
    Thanks,
    Ratnam

    Hi,
    Check these
    Technical difference between 4.7 and ECC 5.0
    difference between sapr/3 4.7 and sapr/3 ecc 5.0
    Differences b/n 4.6c,4.7 and ECC 5.0
    Regards
    vijay

  • Difference between ECC 5.0 and SAP 4.7

    Hi,
    Can anyone please explain the difference between ECC 5.0 and SAP 4.7 from ABAP point of view? What is the full form of ECC?
    Best wishes,
    Atanu

    Hi,
    Check these
    Technical difference between 4.7 and ECC 5.0
    difference between sapr/3 4.7 and sapr/3 ecc 5.0
    Differences b/n 4.6c,4.7 and ECC 5.0
    Regards
    vijay

  • Difference between ECC 5.0 and ECC 6.0

    Hi all,
    What are the generic differences between ECC 5.0 and ECC 6.0.
    If usefull i will assign the points
    thanks in advance
    venu

    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://service.sap.com/releasenotes
    http://service.sap.com/upgrade

  • Difference between ecc 5.0 and 4.7 or earlier in MM

    Hello masters,
                would you briefly explain the diffrence between ecc 5.0 and 4.7. as per MM module is concerened ,any document or link given will be appriciated .
    Thanks in Advance,
    Suresh.

    Please check these links...
    Upgrading notes 4.7 Vs ECC6
    Solution Browser would give the differences (Features):
    http://solutionbrowser.erp.sap.fmpmedia.com/ Give source and target versions.
    Release Info:
    ECC 6.0:
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    ECC 5.0:
    http://help.sap.com/saphelp_erp2004/helpdata/en/c6/feda40ebccb533e10000000a155106/frameset.htm
    You can find the difference in release notes of each SAP version.
    Here are the links.
    http://help.sap.com/saphelp_47x200/helpdata/en/fc/e3003deddfae4de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_scm50/helpdata/en/28/b34c40cc538437e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    Thanks
    Senthil

  • Difference between BI 7.0 and Prior versions

    hi all,
    can any one please tell me the diff between BI and BW .please send any docs or PDF'S on that if possible.and what are the new features available in BI 7.0 .please send the docs or pdf's to [email protected] help will be greatly appreciated
    Thanks in advance,
    ashok

    Hi Ashok,
    I am listing some of the imp differences between BW 3.5 and BW 7.0 below:
    1. Data Modeling Flow:
    a.     Create Data source
    b.     Create Info source
    c.     Create Transformations b/w data source and info source (earlier it was transfer rules)
    d.     Create Info Package
    e.     Create Info Provider (info cube or Data Store Object instead of ODS)
    f.     Create Transfer rules b/w info source and data targets (instead of Update rules)
    g.     Create DTP (data transfer process). To pull the data from Info package (i.e. from PSA) to Info Provider.
    2. For Delta option in customized cube there is one new feature called – “Filter no new records” which is present in DTP’s of Data Store Object.
    3. In Info sets now you can include Info cubes as well.
    4. The Remodeling transaction helps you add new key figure and characteristics and handles historical data as well without much hassle. This is only for info cube.
    5. The BI accelerator (for now only for info cubes) helps in reducing query run time by almost a factor of 10 - 100. This BI accl is a separate box and would cost more. Vendors for these would be HP or IBM.
    6. The monitoring has been improved with a new portal based cockpit. Which means you would need to have an EP guy in your project for implementing the portal!
    7. Search functionality has improved!! You can search any object. Not like 3.5
    8. Transformations are in and routines are passed ! Yes, you can always revert to the old transactions too.
    9. Data Transfer Process are in.  It is used to pull the data from Info package (i.e. from PSA) to Info Provider.
    Try the links given below for further details:
    Check this.
    Frequently Asked Questions  in SAP NW 7.0 - Enterprise Data Warehousing, Reporting, Query & Analysis and Business Planning [original link is broken]
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/93eaff2d-0a01-0010-d7b4-84ac0438dacc [original link is broken]
    You could get some SAP Documents here.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5ee3725b-0401-0010-e381-ac323362ce91
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5c46376d-0601-0010-83bf-c4f5f140e3d6
    These two PDF files has all almost all info about BI2004s.
    Go through this Link for BI 7.0 Documents.
    https://websmp101.sap-ag.de/bi
    and Click on BI Standard Presentations link.
    Here You can download BI 7 Documents
    Refer these documents. You will get a clear idea.
    New Features in BI:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/910aa7a7-0b01-0010-97a5-f28be23697d3
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4487dd91-0b01-0010-eba1-bcd6419
    /people/michael.eacrett/blog/2006/06/07/whats-new-in-sap-netweaver-702004s--an-introduction-to-the-functionality-deltas-and-major-changes
    BI 7.0 reporting features
    http://searchsap.techtarget.com/cgi-bin/rd.pl/ftID-1121728-ctID-1064004?//expert/KnowledgebaseAnswer/0,289625,sid21_gci1064004,00.html
    http://help.sap.com/saphelp_nw04s/helpdata/en/9d/24ff4009b8f223e10000000a155106/content.htm
    BI 7.0 Documents:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/e1/8e51341a06084de10000009b38f83b/frameset.htm
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/9280fb2d-0a01-0010-0f80-f33ab5c1606d [original link is broken]
    Check this for what's new in NW2004s BI:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a4/1be541f321c717e10000000a155106/content.htm
    Diff b/w BI 7.0 Vs 3.5
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm
    I hope this wil give you some idea about BI 7.0
    Thanks,
    Ashu Gupta.

  • Difference between ECC 5.0 and R/3 4.7

    Hi all,
    Can anyone help me in finding difference between ECC5.0 and 4.7 versions?
    Regards,
    Murali.

    Hello Murali,
    Version comparision link is available in the first thread of this forum.
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Also, here is some more info
    http://help.sap.com/saphelp_erp2004/helpdata/en/1f/00d340fa1a732ae10000000a155106/Chap_13_MM.pdf
    Complete release note.
    http://help.sap.com/saphelp_erp2004/helpdata/en/c6/feda40ebccb533e10000000a155106/frameset.htm
    Hope this helps.
    Regards
    Arif Mansuri

  • Difference between FCE 3.5 and previous version

    I was considering upgrading to FCE 3.5 from FCE 3.1. I don't have an Intel-mac and was wondering if there was much of a change in features between the new and previous version that warrants the purchase.
    As best I can tell, the difference seems to be more LiveType fonts/templates. But are there new features in FCE 3.5, beyond that? Marketing docs and chats with Genius Bar folks isn't clearing it up. For instance, the box says RT rendering but didn't the past version FCE HD 3 have that?
    I'm defiitely biased to buy, but don't want to buy a version because it's just univeral, when i'm not running a non-Intel mac. Is there a grid somewhere that charts the differences between the two version.

    Tom, could you clarify something about the new RT playback?
    With 3.0 you have to stop and change the picture quality from one of three presets - High, Medium and Low. (On the Low setting more effects can be played back instantly).
    Does the Dynamic RT just automatically jump around these three settings (choosing the best one) or is there an infinitely variable transition between the High and Low settings?
    Furthermore, can it choose a setting lower than the Low one (in 3.0) in order to show more effects instantaneously?
    In short, if I updated, would I be able to get more effects playing back than I can on my present equipment when it is in the Low setting? Or does Dynamic RT just switch automatically through the same 3 settings but give no extra playback performance?
    Ian.
    PS. Sorry for being so long-winded!

  • The are any difference between the late 2008 and early 2009 15' MacBook Pro

    Hello,
    This is my first post here so I salute you all. I would like to know if there is any difference between the 15 inch MacBook Pro produced at the end of 2008 and the one produced AFTER iLife 09 has been launched (at the beginning of 2009). I see that the declarations of conformity are a little bit different: http://images.apple.com/euro/compliance/pdf/M98EMC_IntE_EuroDoC.pdf vs http://images.apple.com/euro/compliance/pdf/M98AIntE_EuroDoC.pdf (see the Emissions and wireless radio equipment sections). I don't know if those declarations are relevant and if the fact that they complies with different standards and/or directives means that the hardware is different... What do you think?
    Just a little note: I am NOT talking about the late 2009 17' version. I'm referring only at the 15' versions produced before and after the launch of iLife09
    Message was edited by: vamist

    Hi, I think I know why Apple is able to offer 8gb ram support on the revised 2.66 MBP and not on the 2.53 or 2.4 MBP.
    Take a look at this:
    15'' 2.4-2,53 NVDA Chipset
    http://s1.guide-images.ifixit.com/igi/oEmmaxSOKDDvZfZh.large
    17'' NVDA Chipset
    http://s1.guide-images.ifixit.com/igi/SSLSgODWYbiIuTLL.large
    There are TWO different revisions. The first is B2 and the latter is B3.
    I think that the former does not support 8GB of RAM and the latter does. That explains why the 17'' has support and now the NEWs 15'' also have, Apple gave the 15'' not only a speed bump but also the newer revision of the chipset!

  • Difference between mastered for iTunes and previous versions?

    Is there a noticeable difference between Mastered for iTunes albums and any previous versions? I purchased Bon Jovi's "Have A Nice Day (Special Edition)", and now it has been replaced with a Mastered for iTunes version. Is there any value or noticeable difference if I were to purchase the new version?

    One of the inexpensive compilation downloads I purchased on iTunes was terrible, I'd much rather listen to the original mix of " I had too much to dream last night" than the remaster, which destroyed the song completely.
    Well, there is really no way to improve on the sound of The Electric Prunes coming over an AM transistor radio!
    I guess I'm suspicious of iTunes files in general. I am a dying breed, using separate amps and pre-amps and real speakers as well as Ultimate Ear earbuds and a great car system. The cuts that are engineered for iTunes are mixed for lo-fidelity appliances and just don't sound that good.
    There are online download stores that cater to a more audiophile crowd.  Check out HD Tracks.

  • Any difference between pre-installed apps and previous versions?

    I just bought a MacBook Air. I immediately transfered everything from my Time Capsule backup of my 2008 MacBook. The software on the MacBook was completely up to date via the App Store or Software Update. It didn't occur to me to consider that the new Air came with software pre-installed until just now.
    Now I'm wondering if I overwrote anything important or if the Time Capsule/Time Machine restore takes into account anything that was pre-installed or if all the software was the same already and it doesn't matter. Normally, I could just use the included restore disks that come with the computer to answer this question myself but with the new Airs, there are no disks.
    So I don't really understand how something like a new MacBook Air works. If I wiped the disk and used Lion Recovery would I get everything back that was on the original installation? This seems logical but I don't know if it is true. Anyone know the details about how this works?
    Thanks.

    Just to double check.  Go into the Purchased tab of the App store.  You should see the apps are "installed".  If they have a button that says "install", I'd do that.
    Setup assistant knows not to copy over newer software,

  • Differences between 3.5 and earlier versions

    Hi Experts,
    What are the major differences between BW 3.5 and earlier versions like 3.1c and 3.0b.
    PLZ educate me on this,
    thanks in advance.
    regards,

    Hi Vamshi,
    pls Check these Links for information:
    http://help.sap.com/saphelp_nw04/helpdata/en/44/b21f98be886a45a4bb7e123e86e4c2/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a6c3b990-0201-0010-14b8-b3cce168c1c5
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    BW 3.1 Vs 3.5
    difference b/w BW 3.1 and BW 3.5
    http://help.sap.com/saphelp_nw04/helpdata/en/B2/E50138FEDE083DE10000009B38F8CF/frameset.htm
    New Features In BW 3.5:
    1. Information Broadcasting via Business Explorer (BEx) Broadcaster
    2. Universal Data Integration
    3. Embedded BI: Integration into SAP NetWeaver™
    4. BI Platform Enhancements
    5. Planning and Simulation (BW-BPS)
    also check by this navigation.
    RSA1-->Menu --> Help --> Release Notes --> Select Entire list --> Select BW and display.
    ***pls assign points if info is useful**
    Regards
    CSM Reddy

  • Difference between ECC 6.0 & SAP 4.7

    Hi
    Can anybody help in explaining the difference between ECC 6.0 and SAP 4.7. I wanted the detailed difference between these two.
    You can reach me at [email protected]
    Thanks & Regards
    Nisad

    Hi,
    Did you search using Solution Browser. This will display the delta functionality. Access is at -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Cheers !

  • Difference between sap 4.7EE and ECC 6.0 version

    Hi
    can any one help me out '' difference between sap 4.7EE and ECC 6.0 version''
    i want to prepare ppt on this topic.

    Hi,
    Hi,
    Refer this link for ECC 5.0 & 6.0:
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    A similar post
    /message/1783778#1783778 [original link is broken]
    You can go through the Release Notes for each of the versions after 4.6B (4.6C, 4.7 , ECC 5.0 & ECC 6.0)
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/688055b88f297ee10000000a422035/content.htm
    For 4.7 SAP R/3 http://help.sap.com/saphelp_47x200/helpdata/en/12/9d78d6d8f74043a32e82be87e433b7/content.htm
    Release Notes on SAP Web Application Server 6.30
    http://help.sap.com/saphelp_47x200/helpdata/en/2b/64fc3e9d3b6927e10000000a114084/content.htm
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Hope this helps.
    Regards
    Sudheer

Maybe you are looking for

  • Husband and I would like to trade iPods, is this possible?

    My husband bought me an 80G iPod in Feb. I bought him a 30G one last week, thinking we didn't need 2 80's in the house, and I'm cheap. But, he's on the road all the time, and has more music than I do, and probably HE should be the one with the 80, an

  • How to run Java 3D Applet without install java3d

    I've written a java3d applet, and it runs correctly in browser on my computer. Now I want it can be run on other computers which havent' Java3d installed. If the program runs as application, then we can use jnlp and web-start to solve this problem. B

  • Preview with light or shade editing function is not working (black or white picture)

    Hello! I have a problem with the preview function in iphoto (version 9.4.2 on a white macbook, mid 2007, os x lion, latest version, 4 GB RAM, 500 GB HDD). Whenever I use the light or shade editing function, the picture in the preview is getting compl

  • Which XML parser is used by JWSDP?

    Hi, SOAP messages are xml messages. I know that the SOAP messages are processed before invoking the web service. what parser is used to process the SOAP message at the service side. Is it a DOM parser or a SAX parser?? Can i make the server use anoth

  • PSE 9 Install problems with XP

    Greetings from France. I have tried to replace PSE 7 with the latest version 9 but after multiple attempts cannot properly install the programme. My system is more than adequate. I am virus free have defragged etc. Each time I try to install the prog