Versions difference in ecc 6.0

Hello experts,
    What are the major and minor difference between the 4.6c and ECC 6.0
Please tell me the diffences
Thanks
Raghava

There are so many differences between the version in different objects
I will explain in two or more objects the difference
1 in the customer master in 4.6 version there is no partner function tab in the customer in xd01 t-code
and also there is no CIN tab in that version
but it is there in the 4.7 EE version
This is the major change from the 4.6cc to 4.7EE
2. in 4.7EE there is some settings that are related for CIN
which cannot be done in 4.7EE that means they need some patches for doing the configuration setting for the CIN
But we can do the same in the 6.0 version
These are the some of the settings that are differed in the two versions and in that two objects
http://service.sap.com/erp
http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
For Functionality Differences pls refer to the below site -
http://solutionbrowser.erp.sap.fmpmedia.com/
For Functionality Differences pls refer to the below site -
http://solutionbrowser.erp.sap.fmpmedia.com/
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
Re: Difference Between SAP Version ECC 4.6, 4.7, SAP 5.0, 6.0 with SA
Re: SAP version differences 4.5b, 4.6c and ECC6.0
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
Please visit the following links:
http://service.sap.com/erp
http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
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.6 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.
rewards if it helps

Similar Messages

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

  • ECC version differences

    Hi,
           Can anyone tell the difference between ECC 4.6H,4.7,5.0,6.0 versions with respect to mm,sd modules..
    Thanks in advance
    Eliaz

    Dear Syed,
    Check the release Notes for SAP MM & SD Module for ECC 5.0
    http://help.sap.com/saphelperp2004/helpdata/en/1f/00d340fa1a732ae10000000a155106/Chap_13_MM.pdf_
    http://help.sap.com/saphelperp2004/helpdata/en/14/00d340fa1a732ae10000000a155106/Chap_12_SD.pdf_
    Check the release Notes for SAP MM & SD Module for ECC 6.0
    http://help.sap.com/saphelperp2005/helpdata/en/43/4d209cde9657bfe10000000a155369/Chap%2013%20MM%20Materials%20Management.pdf_
    http://help.sap.com/saphelperp2005/helpdata/en/43/4d2091de9657bfe10000000a155369/Chap%2012%20SD%20Sales%20and%20Distribution.pdf_
    Also check this Soltuion browser to understand more
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Regards
    Mangalraj.S

  • Version differences were generated in structure KOMP.

    Our company is going to upgrade ECC 6.0 version.
    So I tried to test in 6.0 test system.
    When I executed in SPDD T-CODE, I compared with prior 4.7 version
    system.
    I found that KOMP strucure is differ from 4.7 system version.
    So errr is generated because version was not same.
    I wish to adjust difference with 4.7 system version .
    Answer me how version differences were not generated.

    Hey,
    I think it was added in 4.6B version.You can do one thing.
    Go to SE11>KOMP table->system->status>Component version->one search icon is there,click that.
    There you can find out whatever modifications are done with the table.
    Shout me again if any other clarification is required.
    And also don't forget to reward points
    Thanks.

  • 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 4.7, 5, 6.0

    Can anybody provide some useful links highlighting the differences between ECC 4.7,5 and 6.0 versions?
    Thanks in advance.
    Pinkey

    Hi,
    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
    Hope this helps.
    Thanks,
    Viswanath

  • Key Differences in ECC 6.0 and 4.6C with respect to SAP SD Module

    Dear All,
    I would like to know the know the Key Differences in ECC 6.0 and 4.6C with respect to SAP SD Module. I have already gone throught the release notes and
    upgrade erp in service.sap.com. I have also checked solution browser.
    Its Urgent.
    Regards,
    Rakesh

    Hi Rakesh,
    Some of the differences are:
    1. Document Flow
    In ECC 6.0, The flow of sales documents is seen much better and improved as compared to 4.6C. Once You look at the screen, You will clearly figure out the difference.
    2. Sales Order Look and Feel
    There are more tabs in ECC 6.0  for Item Level Details.
    The Sales Doc. appears as supremely perfect.
    3. ECC 6.0 is built on NetWeaver Technology  (that possess SOA i.e. service oriented architecture) , Hence more reliable and Improved as compared to previous one.
    Hope this will help you. Reward if found useful
    Regards,
    Gaurav Raghav

  • 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 in ECC & SWI1 ?

    hi
    Whats the main Difference between ECC 6.0 and  SWI1 in SAP 4.6C  ?

    Hi Sumit
    Take a Look On this Wiki Link
    this Link Will help in Solving difference between ECC & SWI1
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=60575
    Regards
    Saurabh Goel

  • Linux version for SAP ECC 6.0

    Dear all,
    Please help me in finding the suitable Linux version for SAP ECC 6.0 version.
    Thanks & Regards
    Tavargeri Ganesh

    SAP on Linux
    --> Supported platforms
    Markus

  • Java, Jardiff Version Difference

    HI,
    we are using JAva Web Start to launch our application. in our application, we also have used version based implementarion. it is working fine & only JArdiff is getting returned.
    However, there are some of our JARs which get automatically updated. If somebody from the front end generates the property file, JAR gets updated with required changes in version & jnlp change also. Generation of property files is a frequent thing. So if anybody for long time does not log in, the version of propery JAR on his machine will be much older than the latest version.
    whenever such problem occurs, sometimes JArDiff doesn't wrk properly. It gives the message " missing signed entries" On checking for signing files, we found those files are intact & also get downloaded on client machine But after that JWS stalls giving above message. This problem occurs if the version difference is too much else it does not happen.
    Also, server log shows that JARDiff is returned perfectly. I'm not getting why exactly the problem exixts & why it occurs only at few client machines. Can anybody throw light on this? pls..

    Can you tell us what versions of Java Web Strat and Java are you running ?
    /Dietz

  • How to create caracter set on version 5.0 ECC

    I have difficulty (only on version 5.0 and 4.7) to create caracter set with reference(or create it anyhow).
    On version 4.6 there is no problem (I can do that like described in course BC305).
    Transaction "spad"->Full administation-> character set->change-> character
    set-> character set->create using template(or just create)
    How could I do that in version 5.0 ECC?
    I have intention to modify char set afterwards as some character are printed incorrecty on a printer device (Digital LG14)after upgrade.
    This device is defined on unix acess type "L" with a custom made device type using a custom made character set
    9452.
    Otherwise(on other printers) I have no problem with characters using acess type "S" with a device type "I2SWIN"(using character set 1406).
    Do you have any idea(tomorrow I will visit customer facing this problem first time). I plan to try the custom made device type with character set 1406.
    Do you have any idea if I do not succeed?

    Hi Tina,
    See
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/d9/4a963651ea11d189570000e829fbbd/frameset.htm">Maintaining Character Sets</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/d9/4a967751ea11d189570000e829fbbd/frameset.htm">Defining Character Sets</a>
    Hope this help!
    Juan
    Please reward with points if helpful

  • Sharing my script to show version difference of installed packages

    Hi all.
    Sometimes I don't want to just pacman -Syu. There are many packages that are big but introduce only minor bugfixes (usually libreoffice packages* are the culprits), so I don't want to have to install those.
    This is something I cooked up a while ago to show version difference of currently installed packages with the latest packages in repository.
    It's in python3, and uses python-termcolor.
    It outputs something like this:
    acl : 2.2.52-1 --> 2.2.52-2
    archlinux-keyring : 20130926-1 --> 20131027-1
    bison : 3.0-1 --> 3.0.1-1
    cracklib : 2.9.0-1 --> 2.9.0-2
    Here is the script:
    #!/usr/bin/python3
    from subprocess import check_output
    from termcolor import colored
    pacman_out=check_output(["pacman","-Sl"], universal_newlines=True).split("\n")
    outlist = []
    len_pkgname = 0
    len_majver = 0
    len_newver = 0
    len_oldver = 0
    for pkgs in pacman_out:
    if not "[installed" in pkgs:
    continue
    if "[installed]" in pkgs:
    continue
    pkg_split = pkgs.split(" ")
    newver = pkg_split[2]
    oldver = pkg_split[4].rstrip("]")
    for i in range(min(len(newver),len(oldver))):
    if newver[i] != oldver[i]:
    break
    pkgname = pkg_split[1]
    majver = newver[:i]
    oldver = oldver[i:]
    newver = newver[i:]
    outlist.append((pkgname, majver, newver, oldver))
    len_pkgname = max(len_pkgname, len(pkgname))
    len_majver = max(len_majver, len(majver))
    len_newver = max(len_newver, len(newver))
    len_oldver = max(len_oldver, len(oldver))
    for (pkgname, majver, newver, oldver) in outlist:
    print("{}: {}{} --> {}{}".format(
    pkgname.ljust(len_pkgname),
    colored(majver.rjust(len_majver),"cyan"),
    colored(oldver.ljust(len_oldver),"cyan",attrs=["bold"]),
    colored(majver.rjust(len_majver),"magenta"),
    colored(newver.ljust(len_newver),"magenta",attrs=["bold"])))
    I hope pkgbrowser will include something like this in the future.
    P/S: * these packages will break anyway in the event the dependencies has had some ABI changes.
    EDIT: swapped new and old version columns. Thanks, karol!
    Last edited by syockit (2013-12-04 17:55:42)

    syockit wrote:I hope pkgbrowser will include something like this in the future.
    Why not suggest adding this feature?
    Currently it shows only the version that is going to be installed https://bbs.archlinux.org/viewtopic.php … 3#p1316573
    I've mated pacman's checkupdates with my old script https://bbs.archlinux.org/viewtopic.php … 80#p829780
    $ diff -Naur /usr/bin/checkupdates ch
    --- /usr/bin/checkupdates 2013-10-21 14:04:37.000000000 +0000
    +++ ch 2013-12-04 18:46:52.792101792 +0000
    @@ -37,7 +37,11 @@
    mkdir -p "$CHECKUPDATES_DB"
    ln -s "${DBPath}/local" "$CHECKUPDATES_DB" &> /dev/null
    fakeroot pacman -Sy --dbpath "$CHECKUPDATES_DB" --logfile /dev/null &> /dev/null
    -pacman -Qqu --dbpath "$CHECKUPDATES_DB" 2> /dev/null
    +
    +conf=${TMPDIR:-/tmp}/checkup-db-${USER}/pacman.conf
    +grep -v "^Ignore" /etc/pacman.conf > $conf
    +
    +/usr/bin/paste -d " " <(/usr/bin/printf "%-20.20s %-12s => \n" $(/usr/bin/pacman -Qu)) <(/usr/bin/pacman -Sdp --config $conf --print-format "%v" $(/usr/bin/pacman -Qqu --dbpath "$CHECKUPDATES_DB" 2> /dev/null))
    exit 0
    $ ./ch
    libpipeline 1.2.4-1 => 1.2.5-1
    No colors though.
    Last edited by karol (2013-12-04 18:55:03)

  • Difference Between ECCS and BCS

    Hello Everyone
    Can any one explain briefly the difference between ECCS and BCS.
    Your response will be highly appreciated.
    Regards.
    DC

    Quick answer: EC-CS is on the R/3 platform, while BCS is on the BI platform.
    This topic has been discused numerous times - please search the forum for more details if required.

Maybe you are looking for

  • BI content Tab missing

    Hi all,      The BI content tab in RSA1 is missingin our system. What is the cause for this and what is the solution for the getting the tab. Thanks in advance

  • How to delete soamanager's log data?

    I know the log data and traces saved in table SRT_MONLOG_DATA2 and SRT_MONI_PAYLTRC, But I don't know whick standard functin or TCdoe can delete the log data and traces, if anyone knows,show me please.

  • Can I get html tag info through actionscript?

    Hi, I want to know if there is any way to get the html tag info through actionscript when the swf file is played in a web browser? for example, if the html snippet is: <embed name="xx" id="99" type="application/x-shockwave-flash" src="my.swf" /> can

  • Apps for printer

    Are there fees for this apps? How do I know what they are, if so? PhotoSmart AIO Premium Fax c410a This question was solved. View Solution.

  • Component inspection status for query

    dear experts, is there a way i can indicate in my query that for a certain production order's components, the inspection status of each component, whether it has a UD, whether its inspection date has been exceeded? what field and table can i see this