Difference between the queries - help needed.

I have three tables Plan_Zip,Service_Zip,Plan_Info
Plan_Zip is the parent table and referenced by Service_Zip
and Service_Zip is referenced by Plan_Info.
I have this query:
select
     sz.ts_nbr,pz.packages_qty,pz.stops_qty
from
     plan_zip pz, service_zip sz, plan_info pi
where
     pi.plan_run_nbr = sz.plan_run_nbr and
     sz.service_run_nbr = pz.service_run_nbr and     
     pi.day_plan_nbr = 43027 and
     pi.run_type_nbr = 0 and
     sz.ts_nbr = 1 or sz.ts_nbr = 2
When I am running the query I am getting so many rows which are identical,
but when I modified the above query as:
select
     sz.ts_nbr,pz.packages_qty,pz.stops_qty
from
     plan_zip pz, service_zip sz, plan_info pi
where
     pi.plan_run_nbr = sz.plan_run_nbr and
     sz.service_run_nbr = pz.service_run_nbr and     
     pi.day_plan_nbr = 43027 and
     pi.run_type_nbr = 0 and
     (sz.ts_nbr = 1 or sz.ts_nbr = 2)
I am getting the correct results.
Please explain me the difference between the above two queries.
Regards
Raghu

Look at the below example
SQL> create table t
  2  as
  3  select level no, level no1, 0 no2
  4    from dual
  5  connect by level <= 5
  6  /
Table created.
SQL> select * from t
  2  /
        NO        NO1        NO2
         1          1          0
         2          2          0
         3          3          0
         4          4          0
         5          5          0
SQL> select *
  2    from t
  3   where no = 1
  4     and no1 = 1
  5      or no2 = 0
  6  /
        NO        NO1        NO2
         1          1          0
         2          2          0
         3          3          0
         4          4          0
         5          5          0Here what the where condition is telling is no should be 1, no1 should be 1 or no2 is 0. you can read it like this.
if (no = 1 and no1 = 1) or (no2 = 0)
then
     true ;
else
     false;
end if;so what i does is no2 = 0 is satisfied by all the rows and hence all the rows are returned.
Next...
SQL> select *
  2    from t
  3   where no = 1
  4     and (no1 = 1 or no2 = 0)
  5  /
        NO        NO1        NO2
         1          1          0This can be read like this.
if (no = 1) and (no1 = 1 or no2 = 0)
then
     true ;
else
     false;
end if;Here no = 1 is a must satisfy condition. Once that is satisfied then no1 can be 1 or no2 can be 0 which ever is
satisfied consider that. So the first condition no=1 is satisfied by only one record and hence that alone is returned.
Thanks,
Karthick.

Similar Messages

  • I am currently on the Photoshop and lightroom cc bundle, but for my coarse i need InDesign, if i upgrade to full package ($600) do i get that aswell? is it a dramatic difference between the cc and Cs6? would it be better to invest in it, and can i do a pa

    I am currently on the Photoshop and lightroom cc bundle, but for my coarse i need InDesign, if i upgrade to full package ($600) do i get that aswell? is it a dramatic difference between the cc and Cs6? would it be better to invest in it, and can i do a payment plan?

    The complete CC has indesign included in it.
    Regarding your second question: CC is the advanced version of CS6 with advanced & additional features & functions.
    The payment plan for education will suit you the best since you are studying.
    Please refer to Adobe Creative Cloud for students and teachers | Adobe
    Student software discounts, student eligibility | Adobe
    Regards
    Rajshree

  • Hey guys, I was wondering ... is there a big difference between the 16 gig ram and the 8 gig for the retina series?? hardest thing I do on a laptop is play need for speed on 1080p resolution.... thanks

    hey guys I was wondering ... will there be a big difference between the 8 gig and 16 gig versions of the pro retina series??? the hardest thing i do is play need for speed and program using c++...thanks

    That RAM is soldered in. No sockets. No upgrading later.
    Your question is:
    ¿Will I EVER need the 16GB in the time I expect to own this MacBook?
    --NO, save $200 and if you ever run short, sell the machine and buy a different one.
    --ELSE, spend the extra US$200 and don't think about it again.

  • I need to upgrade my OS from Snow Leopard 10.6.8. I can't decide between Lion or Mountain Lion can anyone tell me the difference between the two?

    I need to upgrade my OS from Snow Leopard 10.6.8. I can't decide between Lion or Mountain Lion for my upgrade can anyone tell me the difference between the two?

    Click here for information.
    (125089)

  • Query to find the difference between the last date and the second to the last date

    Hi all,
    Hope all is well.
    I am working on the following problem because I am trying to improve my MS SQL skills. But I am stuck at the moment and I wonder if you could provide some assistance please. Here is the issue:
    Table 1: Dividends
    divId
    ExDate
    RecordDate
    PayDate
    Amount
    Yield
    symId
    1
    2013-02-19
    2013-02-21
    2013-03-14
    0.23
    0.00000
    3930
    2
    2012-11-13
    2012-11-15
    2012-12-13
    0.23
    0.00849
    3930
    3
    2012-08-14
    2012-08-16
    2012-09-13
    0.20
    0.00664
    3930
    4
    2012-05-15
    2012-05-17
    2012-06-14
    0.20
    0.00662
    3930
    5
    2012-02-14
    2012-02-16
    2012-03-08
    0.20
    0.00661
    3930
    6
    2011-11-15
    2011-11-17
    2011-12-08
    0.20
    0.00748
    3930
    7
    2011-08-16
    2011-08-18
    2011-09-08
    0.16
    0.00631
    3930
    8
    2011-05-17
    2011-05-19
    2011-06-09
    0.16
    0.00653
    3930
    9
    2011-02-15
    2011-02-17
    2011-03-10
    0.16
    0.00594
    3930
    10
    2010-11-16
    2010-11-18
    2010-12-09
    0.16
    0.00620
    3930
    11
    2010-08-17
    2010-08-19
    2010-09-09
    0.13
    0.00526
    3930
    12
    2010-05-18
    2010-05-20
    2010-06-10
    0.13
    0.00455
    3930
    13
    2010-02-16
    2010-02-18
    2010-03-11
    0.13
    0.00459
    3930
    Table 2: Tickers
    symId
    Symbol
    Name
    Sector
    Industry
    1
    A
    Agilent Technologies Inc.
    Technology
    Scientific & Technical Instruments
    2
    AA
    Alcoa, Inc.
    Basic Materials
    Aluminum
    3
    AACC
    Asset Acceptance Capital Corp.
    Financial
    Credit Services
    4
    AADR
    WCM/BNY Mellon Focused Growth ADR ETF
    Financial
    Exchange Traded Fund
    5
    AAIT
    iShares MSCI AC Asia Information Tech
    Financial
    Exchange Traded Fund
    6
    AAME
    Atlantic American Corp.
    Financial
    Life Insurance
    7
    AAN
    Aaron's, Inc.
    Services
    Rental & Leasing Services
    8
    AAON
    AAON Inc.
    Industrial Goods
    General Building Materials
    9
    AAP
    Advance Auto Parts Inc.
    Services
    Auto Parts Stores
    10
    AAPL
    Apple Inc.
    Technology
    Personal Computers
    11
    AAT
    American Assets Trust, Inc.
    Financial
    REIT - Office
    12
    AAU
    Almaden Minerals Ltd.
    Basic Materials
    Industrial Metals & Minerals
    I am trying to check the last date (i.e. max date) and also check the penultimate date (i.e. the second to the last date).  And then find the difference between the two (i.e. last date minus penultimate
    date).
    I would like to do that for each of the companies listed in Table 2: Tickers.  I am able to do it for just one company (MSFT) using the queries below:
    SELECT
    [First] = MIN(ExDate),
    [Last] = MAX(ExDate),
    [Diff] = DATEDIFF(DAY, MIN(ExDate), MAX(ExDate))
    FROM (
    SELECT TOP 2 Dividends.ExDate
    FROM Dividends, Tickers
    WHERE Dividends.symId=Tickers.symId
    AND Tickers.Symbol='MSFT'
    ORDER BY ExDate DESC
    ) AS X
    Outputs the following result:
    First
    Last
    Diff
    2012-11-13
    2013-02-19
    98
    But what I would like instead is to be able to output something like this:
    Symbol
    First
    Last
    Diff
    MSFT
    2012-11-13
    2013-02-19
    98
    AAN
    2012-11-13
    2012-12-14
    1
    X
    2012-11-13
    2012-12-14
    1
    Can anyone please let me know what do I need to add on my query in order to achieve the desired output?
    Any help would be greatly appreciated.
    Thanks in advance. 

    Could you try this?
    create table Ticker (SymbolId int identity primary key, Symbol varchar(4))
    insert into Ticker (Symbol) values ('MSFT'), ('ORCL'), ('GOOG')
    create table Dividend (DividendId int identity, SymbolId int constraint FK_Dividend foreign key references Ticker(SymbolId), ExDate datetime, Amount decimal(18,4))
    insert into Dividend (SymbolId, ExDate, Amount) values
    (1, '2012-10-1', 10),
    (1, '2012-10-3', 1),
    (1, '2012-10-7', 7),
    (1, '2012-10-12', 2),
    (1, '2012-10-23', 8),
    (1, '2012-10-30', 5),
    (2, '2012-10-1', 10),
    (2, '2012-10-6', 1),
    (2, '2012-10-29', 7),
    (3, '2012-10-1', 22),
    (3, '2012-10-3', 21),
    (3, '2012-10-7', 3),
    (3, '2012-10-12', 9)
    WITH cte
    AS (SELECT t.Symbol,
    d.ExDate,
    d.Amount,
    ROW_NUMBER()
    OVER (
    partition BY Symbol
    ORDER BY ExDate DESC) AS rownum
    FROM Ticker AS t
    INNER JOIN Dividend AS d
    ON t.SymbolId = d.SymbolId),
    ctedate
    AS (SELECT Symbol,
    [1] AS maxdate,
    [2] AS penultimatedate
    FROM cte
    PIVOT( MIN(ExDate)
    FOR RowNum IN ([1],
    [2]) ) AS pvtquery),
    cteamount
    AS (SELECT Symbol,
    [1] AS maxdateamount,
    [2] AS penultimatedateamount
    FROM cte
    PIVOT( MIN(Amount)
    FOR RowNum IN ([1],
    [2]) ) AS pvtquery)
    SELECT d.Symbol,
    MIN(MaxDate) AS maxdate,
    MIN(penultimatedate) AS penultimatedate,
    DATEDIFF(d, MIN(penultimatedate), MIN(MaxDate)) AS numberofdays,
    MIN(MaxDateAmount) AS maxdateamount,
    MIN(penultimatedateAmount) AS penultimatedateamount,
    MIN(MaxDateAmount) - MIN(penultimatedateAmount) AS delta
    FROM ctedate AS d
    INNER JOIN cteamount AS a
    ON d.Symbol = a.symbol
    GROUP BY d.Symbol
    ORDER BY d.Symbol
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers.
    Thanks!
    Aalam | Blog (http://aalamrangi.wordpress.com)

  • Difference between the design of clusters PCLx and others like RFBLG etc .

    There are a few nagging questions which I was not able to find in the forum hence i have to post a new question.
    I am a little confused about the difference between the different clusters .
    If i start with RFBLG i.e. the cluster for BSEG BSEC etc ,I can see that the tables which are part of this cluster
    can be viewed through different methods like
    1) whr usd list for RFBLG
    2) dd02l table and give the required parameters there
    now when I compare this with another so-called cluster PCL1 if find that PCL1 is not recognized as  a cluster
    and also I am not able to see the same in dd02l table when i give PCL1 and the tabtype as cluster which I was able to see
    for the RFBLG ,there are other tables similar to RFBLG .
    1) SO what is the difference between the RFBLG type of clusters and the PCLx type of cluster
    2) are pclx and rfblg..type of clusters same ?
    3) why does PCL1 shows that it is a transparent table ? where as rfblg shows in a diff way in se11
    4) i know we access data from PCL1 using import and export stmts ,DO OR CAN WE DO THE SAME FOR RFBLG
    5) I found that each and evry cluster table had diff fields ,this was kinda surprising for me as I had been thinking
    that all cluster tables need to follow a certain rule ,SO WHO DECIDES THE FIELDS OF A TABLE CLUSTER ?
    6) PCL1 has the index button enabled ,which again I think is not according to the cluster table rules?how?
    7) I understand that we can save data in form of internal tables in the PCL1 cluster ,can we do the same in RFBLG ?
    8) Can I think on lines that PCL1 and RFBLG type of cluster are two totally different types of data dictionary objects
    and the usage and implementation of both of them is different and that the design and the BASE of both of such objects
    is different .
    I know this is a long list but I am sure that answers to these questions would really require some one who has really really work hard and invested a lot of time in understanding the dictionary system.I am awaiting a few answers ,few hints and a healthy discussion till we get them .
    Thanks ...
    a

    Hello,
    1/
    BSEG is a typical Cluster Table.
    This means that the physical table BSEG does NOT exist in the database, physical data for BSEG is stored in the database (table) cluster RFBLG.
    In ABAP however you can perform selects on BSEG (with all fields from the SAP repository structure, see SE11 on BSEG), during execution the SAP database layer will translate these statements to physical selects in the RFBLG database table, so in ABAP this is transparant.
    More info :
    [http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f083446011d189700000e8322d00/content.htm|http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f083446011d189700000e8322d00/content.htm]
    2/
    PCL1, PCL2, ... are normal SAP transparent tables, however in HR they are often called HR cluster table.
    Transparent tables are SAP objects where there is also a database table with the same name that contains the physical data.
    However the PCL tables are somewhat different from normal transparent tables (data is compressed, external programs can not interpret the data, ...).
    This means that in ABAP you can not use simple SQL statements to access data in PCL tables (because of compressed format).
    In stead statements like EXPORT TO DATABASE and IMPORT FROM DATABASE need to be used.
    More info :
    [http://fuller.mit.edu/hr/cluster_tables.html|http://fuller.mit.edu/hr/cluster_tables.html]
    Wim

  • Difference between the Logical System n Client

    Hi Guys,
      i need a some information plz help me.
    what r the differences between the logical system n the client.
    plz give me the detail explanation
    appreciated with points
    regards
    kk

    Hi there,
    'logical system' is used to identify an individual client in a system, for ALE
    communication between SAP systems. That's why you see a field for 'logical
    system' in the client master data in SCC4 (table T000).
    Client can be defined as commercial, organizational, and technical terms, a self-contained unit in an SAP system with separate master records and its own set of tables.
    Hope it helps
    Cheers
    Deepanshu

  • Differences between the "Adobe Acrobat Versions 7 and 9"

    Dear Adobe Support Team,
    I need to know the differences between the "Adobe Acrobat Versions 7 and 9". I have worked with Acrobat 7 and have used the same script after installing Acrobat 9 for Automation Testing with QTP for validating pdf. The object "AcroExch.AVDoc" is not getting identified as object while working in QTP in the system/machine which has Acrobat 9 installed, whereas it works well in the machine which has Acrobat 7 installed . So it will be better if two things are known as per my understanding, ie.,
    it must have compatibility issue (i need the difference between "Adobe Acrobat versions 7 & 9" to assure this) or
    installation issue( which can be confirmed if the former question is answered).
    So i kindly request you to help me out for this scenario.
    Kind Regards,
    Vikraman.G

    Countless new features were introduced between Acrobat 7 and 9, are you really expecting us to type out a full list from memory?
    If you are having specific issues with the Acrobat SDK, first refer to the Acrobat SDK for the higher version. If there remains an issue I suggest posting about the specific problem in the Acrobat SDK forum, rather than asking for an encylopedia of all possible information...
    Note that Adobe do not support multiple installations of Acrobat on the same machine, so you can expect development issues if you do this.

  • How to find outthe difference between the two serivce patch of Netweaver04s

    Hi,
    We have installed NetWeaver04s with sp13 patch. We want to upgrade this to latest patch avaiable on sap market place. I could see sp22 is the latest patch. I know all the procedure to download the patch. But before downloading I have to find out the difference between the latest patch available i.e. SP22 and the current patch installed i.e. SP13.
    Could anybody guide me how to see the difference between any two patches avaiable on the SAP market place?
    Let me know if you need more information on this.
    --Chandan

    Hi
    For single patch info, if you click the INFO link in window from where you download the patch. You will get the information related to that patch.
    eg
    SAPJEE05_0-10003469.SCA SP05 for SAP J2EE Engine 7.00  0 Info 53976 14.12.2005
    Try out this, can help you (some navigation required)
    http://service.sap.com/sp-stack
    Select your Product:
    Select Source and Target Release and Componenets. Click Next
    Navigate under "Additional Information"
    eg:
    SAP NetWeaver 7.0 (2004s) Support Package Stacks
    can be found on the SAP NetWeaver 7.0 (2004s) Support Package Stacks Info-Pages for each available Support Package Stack
    In the next window; again navigate further: you can find like this
    New functionality available with the relevant SP Stack is described in Section "Release Notes" as part of the SAP Library. Please refer to SAP Help Portal -> SAP NetWeaver 7.0 -> Release Notes. Each scenario folder contains the new functionality available for each SP Stack.
    eg.
    http://help.sap.com/saphelp_nw04s/helpdata/en/5b/8c3842bb58f83ae10000000a1550b0/frameset.htm
    This would give you information of changes in different releases.

  • What are major differences between the T5 and the T5i

    What are the major differences between the T5 and the T5i?

    Hey everyone!
    I just wanted to step in (which is not normal) to say something that most people overlook is that the EOS Rebel T5i has a self-cleaning sensor where the EOS Rebel T5 does NOT; also, the T5i can use an IR Remote (like the RC-6), and the T5 can only use cable releases. These are minor things until you need them! 
    I hope those two little things help!
    Oh, and here is the compare info: CLICK ME

  • Difference between the Installations

    Hi at All ..
    I'm new as an Employee, which should install the BO Integration Kit for Sap.
    Can anybody help me and tell the Difference between the Installations for Desktop / or for Servers ?
    As i can see on the Installation & Configuration Guide on page 10 i can Select the Installation Type as Desktop / or Server.
    As i suppose the Desktop is the Installation for my Desktop Environment. (e.g. for my Workstation. An local Installation)
    But, was does an Server Installation in this Case, means ?
    Thanx's for Help.
    Best Regards
    Beat

    Hello,
    you need the SAP ITK for both.
    Your Server (SAP BusinessObjects Enterprise) needs to connect to the SAP Backend like BW and your Clients where you develop content (Universe Designer, Crystal Reports, etc.) needs to connect to the SAP Backend like BW.
    Thats why you have these two options.
    Regards
    -Seb.

  • What's the difference between the notion of virtual hostname and of host name

              Hi everybody,
              Sorry for this stupid question, but I don't see the real difference between the
              notion of virtual host managed by WLS and the notion of host names managed by
              a DNS. With the admin console of WLS, I can create a virtual host, e.g. www.toto.com
              , and associate it with a WLS cluster for example. But with the DNS, I must also
              bind 'www.toto.com' to the list of WLS servers contained in the cluster above
              in order to be sure that WLS can make load-balancing. (See WLS clusters documentation).
              Can somebody show me an example of the use of virtual hosts and hostnames, which
              can help me to understand the differnece between?
              Thanks for your help
              Vincent
              

              HI
              Basically Name Based Virtual Hosts are helpful to give multiple names to be tied
              to a single IP Address rather than IP Based Virtual Hosting. In your case if your
              virtual host name www.toto.com which basically served by the weblogic cluster
              instances need to be configured by DNS server so that using this technique many
              different hosts can share the same IP address. We need to configure DNS server
              to map each host name to the correct IP address.
              regards
              Sasikanth
              "Vincent Ducret" <[email protected]> wrote:
              >
              >Hi everybody,
              >
              >Sorry for this stupid question, but I don't see the real difference between
              >the
              >notion of virtual host managed by WLS and the notion of host names managed
              >by
              >a DNS. With the admin console of WLS, I can create a virtual host, e.g.
              >www.toto.com
              >, and associate it with a WLS cluster for example. But with the DNS,
              >I must also
              >bind 'www.toto.com' to the list of WLS servers contained in the cluster
              >above
              >in order to be sure that WLS can make load-balancing. (See WLS clusters
              >documentation).
              >
              >Can somebody show me an example of the use of virtual hosts and hostnames,
              >which
              >can help me to understand the differnece between?
              >
              >Thanks for your help
              >Vincent
              

  • Show difference between the years and how much money increased ever year

    Hi everyone
    I need to make the following code show how many years it took for it to reach its required goal.
    show difference between the years and how much money increased ever year. ..
    I am totally confused at the moment... any help would be greatly appreciated...
    declare
    a number(9):=1000;
    b number(9);
    c number(9);
    d number(9);
    begin
    for d in 2012..2099
    loop
    dbms_output.put_line(a||' '||d);
    if a >2000 then
    exit;
    end if;
    a :=a + a*10/100;
    end loop;
    end;
    Result for above query:
    Price Years
    1000 2012
    1100 2013
    1200 2014 etc...
    I need to show the amount of years it took to reach its goal, which was $2000
    and also the change in price, how much it increased every year...
    Thanks
    Umair

    960361 wrote:
    Hi everyone
    I need to make the following code show how many years it took for it to reach its required goal.
    show difference between the years and how much money increased ever year. ..
    I am totally confused at the moment... any help would be greatly appreciated...
    declare
    a number(9):=1000;
    b number(9);
    c number(9);
    d number(9);
    begin
    for d in 2012..2099
    loop
    dbms_output.put_line(a||' '||d);
    if a >2000 then
    exit;
    end if;
    a :=a + a*10/100;
    end loop;
    end;
    Result for above query:
    Price Years
    1000 2012
    1100 2013
    1200 2014 etc...
    I need to show the amount of years it took to reach its goal, which was $2000
    and also the change in price, how much it increased every year...
    Thanks
    UmairHow do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • Can anyone tell me the major differences between the versions

    hi all,
    what is the difference between the versions 4.6c 4.7EE and 5.0.
    Atleast anyone suggest where i can get the difference exactly.
    Thanks,
    Saroja.

    <b>Difference between SAP 4.6b, 4.6c, 4.7e and ECC 5.0 Versions</b>
    If you are an existing user of SAP, you will probably be aware that as from January 2007 all releases below 4.6c will no longer officially be supported by SAP. Maintenance costs for releases 3.1 - 4.6b inclusive will also attract a total charge of 21% during 2005/6.
    So what are your upgrade options?
    You could upgrade to release 4.6c - or the more comprehensive mySAP.com - which are both currently scheduled to be supported by SAP until December 2009. These products have been available since 1999 and already have a broad user base. Bear in mind however that maintenance costs for this release will be 19% during 2007 and 21% during 2008/9.
    If you wish to avoid the expense and disruption of a potential further upgrade in 2006/7, you may want to consider upgrading to release 4.7 (SAP R/3 Enterprise). Whilst this product incorporates relatively new technology, it has the advantage of being supported by SAP until March 2012 and provides new functionality in many areas.
    SAP is encouraging existing users to go beyond the 4.7 (SAP R/3 Enterprise) environment and upgrade to mySAP ERP as a stepping stone to mySAP Business Suite. However, you should note that an upgrade to mySAP ERP requires a change in licensing plan. mySAP ERP licences are role-based, so you need to assess the number of finance, logistics, HR users etc. and pay accordingly. This is a radical change from previous licensing schemes operated by SAP, whereby each seat purchased was accorded full usage of the entire SAP environment (in line with user authorisations).
    No technology upgrade is necessary to move from 4.7 (SAP R/3 Enterprise) to mySAP ERP. You simply add the benefits of mySAP ERP to your installation as you go along. The upgrade from mySAP ERP to mySAP Business Suite is equally straightforward – you just add those mySAP products available in the latter that you require. The alternative strategy would be to remain on 4.7 (SAP R/3 Enterprise) or mySAP ERP and purchase mySAP products available with mySAP Business Suite as add-ons.
    Please see below the current maintenance schedule for SAP products:
    SAP R/3 3.1 - 4.6b
    Maintenance extension until December 2006
    2005/2006: additional fee of 4% (17% plus 4%)
    SAP R/3 4.6c
    Maintenance extension until December 2009
    2007: additional fee of 2% (17% plus 2%)
    2008/2009: additional fee of 4% (17% plus 4%)
    SAP R/3 Enterprise:
    Maintenance extension possible until March 2012, available to all customers
    April 1, 2009 - March 31,2010: additional fee of 2% (17% plus 2%)
    April 1, 2010 - March 31, 2012: additional fee of 4% (17% plus 4%)
    MySAP ERP 2003
    Mainstream maintenance until end of March 2009
    April 1, 2009 - March 31,2010: additional fee of 2% (17% plus 2%)
    April 1, 2010 - March 31, 2012: additional fee of 4% (17% plus 4%)
    MySAP ERP 2004
    Mainstream maintenance until end of March 2010
    April 1, 2010 - March 31, 2011: additional fee of 2% (17 plus 2%)
    April 1, 2012 - March 31, 2014: additional fee of 4% (17 plus 4%)
    All of the above maintenance durations and extensions include all industry add-ons and all legal charges for HR and FI/LO.
    If you are contained in say Financials and HR - then your burden to go to mySAP ERP is smaller - as you go from one system to another system.... on the opposite - if you use R/3 and use customer processes, manufacturing and purchasing processes - and you do not use yet mySAP CRM, mySAP SCM, mySAP SRM... then you not only have to pay more for the license - not only for mySAP ERP - but also for mySAP CRM, mySAP SRM, mySAP SCM... - the mySAP Business Suite may be interesting pricing option then...
    But then to pricing - SAP says they will reduce the credit on your R/3 payments with the change of the calendar year... for some a big motivation to move to mySAP ERP license... but as a Gartner report from today pointed out - not many of these customers really upgrade to mySAP ERP in terms of functionality - but use it more as a license centralization for some instance consolidation - as well as only a technical upgrade. And then there are the many SAP customers who buy mySAP ERP - but stay on R/3 - but get this as they buy the mySAP BW license for all their users with it... and it's cheaper to buy mySAP ERP (as you need it sooner or later anyway) - than buying mySAP BW standalone now - and mySAP ERP in a few years...
    One final argument... remember when mySAP ERP shipped first - March 2003. SAP said they would have the vertical code of R/3 by end of 2003... well they had not - all of it will be out only now in Q2 2006 with mySAP ERP 2005 --- three years later! How did SAP's world class engineering team miss dates so badly? It's tough to move working R/3 code over to the mySAP xxx world with NetWeaver! And no the secret: Is there a difference between you modifying a R/3 system -- and SAP development creating a vertical piece of code? Not really - or better - not at all... so have a very good luck at your modification...
    Finally - there are some tools in the market which have a very good handle on estimating the implementation cost... take a look at them.
    Bottom line: If you are using a lot of R/3 - you have major license cost and a major risk to upgrade... you should even look at alternatives to SAP then - as you spend as much in upgrading than switching... take advantage of some of the attractive commercial offerings from SAP competitors - even if you do this only to negotiate a better price from SAP.
    If you are using a little R/3 only - and that is contained in mySAP ERP... then it comes back to how much license you want to pay now (or later - so it's really a financial consideration) - and your overall risk readiness. If you are happy to pay now and risk averse - you go for mySAP ERP 2004 or 2005... if you are risk sensitive and don't want to pay now and wait for others to be the "guinea pigs" for mySAP ERP 2007 / 2005 etc - then you go to R/3 Enterprise. Easier upgrade, no license cost. Sit on the fence and see what SAP and competitors do to service enable their apps.
    Hope this helps a bit...

  • Difference between the SAP versions

    Dear all,
    Please let me know the difference between 4.6b, 4.7 and ECC5.0 with special reference to the SD module.
    Thanks in advance.

    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 prospective)
    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 please refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    For Functionality Differences please 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 prospective)
    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 please 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
    siva

Maybe you are looking for

  • UWL CATS time approval error "No data exists that needs to be approved"

    Hi all, We approve CATS working time through SAP portal UWL. The user can see the workitem in her UWL inbox, but got an error u201CNo data exists that needs to be approvedu201D when he tried to execute the workitem. But the user is able to execute th

  • Data is repeating in xml publisher report

    Hi, We desinged the orcle xml publisher report. When we are running the report, the address infromation is repeating in every page. We have not mentioned any where the for each logic. Can any one help me on this issue. We designed the report as 'rdf

  • 2nd Monitor Cable

    Looking for a "clean" video cable for adding 2nd monitor to 24" iMac. The back of the computer faces the world. Would like to have short 12-18" monitor cable (dreaming) and not have to use Apples adapter attached to 6' folded up vga video cable. And

  • After recent upgrade, Firefox won't start. Just flickers once when I click on a link or on its icon.

    My version is 32. "Best Solution" says click the upgrade button to get v34. But I can't do that if FF won't open. I have Mac OS 10.9.5

  • Restrict date range to be entered

    G'day I have a table called guest that allows them to be "checked in" in a hotel for example. The table was built as: CREATE TABLE GUEST    (     ROOM_NUMBER VARCHAR2(2),      DATE_ARRIVAL DATE NOT NULL,      DATE_DEPARTURE DATE NOT NULL,      NUM_AD