Whats the difference between these products ?

Hi,
can somebody tell me what's the difference between these products ?
Support Portal - Installations and Upgrades - Entry by Application Group - AP BusinessObjects portfolio:
-SBOP EDGE BI
-SBOP EDGE DATA INTEGRATOR (formerly Edge Professional)
   -SBOP EDGE BI WITH DI
-SBOP EDGE DATA MANAGEMENT (formerly Edge Premium)
   -SBOP EDGE BI WITH DM
   -SBOP DATA CLEAN. PACKAGE EDGE
-SBOP ENTERPRISE
Is the DATA INTEGRATOR  and/or DATA MANAGEMENT  inculded in SBOP ENTERPRISE ?
Thank You
Martin Sautter

Hi,
Normally, BOE / BI installers don't include any of those other EIM components. However, they are bundled in the 'edge' offering, which is licensed differently for smaller enterprises.
For all DI, DS, DQM topics,  which fall under EIM family, please open a thread over here: http://scn.sap.com/community/enterprise-information-management
Regards,
H

Similar Messages

  • Whats the difference between these versions of photoshop?

    First of all to make things clear I want to mention this first that I lives in Pakistan and Adobe doesn't support my region so in order to buy the Adobe Photoshop CC I have to contact the authorized resellers, after contacting them and asking for a invoice proposal for Adobe Photoshop CC, they send me several invoice proposals (per user team liscense). But I just got in a trouble as these proposals are offering Photoshop CC different versions so its like kinda making me double mind, i am just confused which to buy as prices are differ too and kinda noticeable. As for making my intentions clear I also wanna mention that I am looking for Single App Liscense i mean i just wanna buy Photoshop CC thats it. But for sure its not gonna be that photography version nor student one. Also i wanna know that whats the difference between these two versions and also tell me the pros and cons.
    So please help me choose which one is better for me as I am really confused with it.
    Here are the links
    Note: You will have to translate these pages into english
    Link one:
    [65224660BA01A12] ราคาพิเศษ จำหน่าย Photoshop CC ALL Multiple Platforms Multi Asian Languages Licensing Subscription Mo…
    Link two:
    [65226001BA01A12] ราคาพิเศษ จำหน่าย Photoshop CC ALL Multiple Platforms Multi Asian Languages Licensing Subscription Mo…
    I've attached screenshots too

    The features in both of the Photoshop CC are identical, there is a difference in price because, the higher priced is the original Photoshop price, the less priced is the promotional priced Photoshop CC eligible only if you have CS3 or later version of Adobe creative suite product.
    Hope this answers your question.
    Regards
    Rajshree

  • Whats the difference between these two queries ? - for tuning purpose

    Whats the difference between these two queries ?
    I have huge amount of data for each table. its takeing such a long time (>5-6hrs).
    here whice one is fast / do we have any other option there apart from listed here....
    QUERY 1: 
      SELECT  --<< USING INDEX >>
          field1, field2, field3, sum( case when field4 in (1,2) then 1 when field4 in (3,4) then -1 else 0 end)
        FROM
          tab1 inner join tab2 on condition1 inner join tab3 on condition2 inner join tab4 on conditon3
        WHERE
         condition4..10 and
        GROUP BY
          field1, field2,field3
        HAVING
          sum( case when field4 in (1,2) then 1 when field4 in (3,4) then -1 else 0 end) <> 0;
    QUERY 2:
       SELECT  --<< USING INDEX >>
          field1, field2, field3, sum( decode(field4, 1, 1, 2, 1, 3, -1, 4, -1 ,0))
        FROM
          tab1, tab2, tab3, tab4
        WHERE
         condition1 and
         condition2 and
         condition3 and
         condition4..10
        GROUP BY
          field1, field2,field3
        HAVING
          sum( decode(field4, 1, 1, 2, 1, 3, -1, 4, -1 ,0)) <> 0;
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    My feeling here is that simply changing join syntax and case vs decode issues is not going to give any significant improvement in performance, and as Tubby points out, there is not a lot to go on. I think you are going to have to investigate things along the line of parallel query and index vs full table scans as well any number of performance tuning methods before you will see any significant gains. I would start with the Performance Manual as a start and then follow that up with the hard yards of query plans and stats.
    Alternatively, you could just set the gofast parameter to TRUE and everything will be all right.
    Andre

  • What the difference between these functions

    hi all
    please I'd Like to know what the differnces between these function
    1-sql_code
    2-dbms_sql_code
    3-sqlcode
    thanks in advance

    Did you search in the documentation ?
    http://www.oracle.com/webapps/online-help/forms/10g/state?oldNavSetId=_&oldNavId=2&navId=2&vtTopicFile=&navSetId=_&value=1&sPhrase=&action=search&locale=&searchType=simple&phrase=sqlcode&event=update&source=
    http://www.oracle.com/webapps/online-help/forms/10g/state?navSetId=_&navId=3&vtTopicFile=f1_help/builtd_f/dbmserco.html&vtTopicId=
    Francois

  • Whats the difference between these two iphone 5 model "md635ll vs md639ll"?

    i know theres alot of versions of iphone out there. I currently live in california, whats the difference between md635ll vs md639ll models?
    I currently have the md639ll one.

    My feeling here is that simply changing join syntax and case vs decode issues is not going to give any significant improvement in performance, and as Tubby points out, there is not a lot to go on. I think you are going to have to investigate things along the line of parallel query and index vs full table scans as well any number of performance tuning methods before you will see any significant gains. I would start with the Performance Manual as a start and then follow that up with the hard yards of query plans and stats.
    Alternatively, you could just set the gofast parameter to TRUE and everything will be all right.
    Andre

  • What are the difference between these products?

    Hi,
    I don`t see the difference between Sun JAva system Directory Proxy Server and
    Sun java System Directory Server?

    Both the Sun Java System Directory Proxy Server and the Sun Java System Directory Server are LDAP servers.
    The Sun Java System Directory Proxy Server strictly acts as a proxy for LDAP requests - it stores no LDAP data of its own. This product needs a LDAP server with data storage to forward LDAP requests to.
    The Sun Java System Directory Server has a backend database for storing LDAP data.

  • Whats the difference between these types of classes?

    What's the difference between using a "private inner class", an "anonymous inner class", and a "class that implements on itself" to create a GUI?
    Also, what's the difference between regular classes, abstract classes, and interfaces?
    I ask because I'm an excellent coder, but have trouble understanding the terminology behind the code and also explaining the code.

    hi,
    First of all your questions are beyond the scope of this forum ...
    They are much general about the java syntax of oop.
    So read tutorials about the java programming language.
    http://en.wikipedia.org/wiki/Java_syntax
    Olek

  • Whats the difference between these two Sony's

    so ivwe narrowed my next laptop to.....the Sony  VPCCW21FX  and  VPCCW23fx.  My question is, after looking at the specs of both it seems the only difference s that one (21) has a blu ray and the other doesnt.  Is that the only difference?well besides one being cheaper? 
    thanKs!
    Scott

    Yeah besides the color options, the addition of the Blu-ray drive is the only thing going to seperate these 2 laptops.
    .-**Click the star under my name if this information helped! TY!**-.
    .-**Click the Solved button if this answered your question!**-.

  • Whats the difference between these 2 hd's

    Western Digital Caviar SE16 WD5000AAKS 500GB 7200 RPM SATA 3.0Gb/s Hard Drive - OEM
    and
    Western Digital Caviar SE16 WD5000KSRTL 500GB 7200 RPM SATA 3.0Gb/s Hard Drive - Retail
    besides $150

    No, not really. All that's required is a bare drive. Bolt it to one of the drive sleds and slip it in. All you need do after that is prep the drive:
    Extended Hard Drive Preparation
    1. Open Disk Utility in the Utilities folder
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area. If it does not say "Verified" then the drive is failing or has failed and will need replacing. Otherwise, click on the Partition tab in the DU main window.
    3. Set the number of partitions from the dropdown menu (use 1 partition unless you wish to make more.) Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the volume(s) mount on the Desktop.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data (single pass) and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process will take 30 minutes to an hour or more depending upon the drive size.
    Repeat Steps 4 and 5 for each volume (partition) you created (if more than one.)

  • What the difference between Canvas,View and Form

    hi
    What the difference between canvas and view and form
    why asking becoz i find form builder reference
    built in like FIND_CANVAS
    FIND_VIEW
    FIND_FORM
    What the difference between these 3
    thanks in advance
    prasanth a.s.

    Asuri - with all these questions you are posting it looks like you are sitting and exam or an interview. The best advice I can give you is the skill of being able to research answers yourself.
    I would encourage you to get familiar with the online help and the various documents on OTN - this will give you knowledge; not just answers.
    Regards
    Grant Ronald
    Forms Product Management

  • What is the difference between these setter methods

    What is the difference between these two setter methods??
    <jsp:useBean id="checking" scope="session" class="bank.Checking" />
    <jsp:setProperty name="checking" property="balance" value="0.0" /> and
    <jsp:useBean id="checking" scope="session" class="bank.Checking" >
    <jsp:setProperty name="checking" property="balance" value="0.0" />
    </jsp:useBean>

    Homework question?
    The answer is on this page (Step 5)
    http://java.sun.com/products/jsp/syntax/1.2/syntaxref1217.html#8865

  • What is the difference between these two reports MC.1 and MB5L

    Hi
    what is the difference between these two reports MC.1 and MB5L?
    what is the Purpose of each report?
    Material ledger is activated for this plant, we found some amount difference between these two reports, my client accounting department used to compare these two reports while year end/month end closing
    Thanks
    Raju

    MC.1 will give you the report for plant analysis as per plant .
    MB5L report will give you list of stock value as per G/L account wise.

  • What is the difference between these two sticks of RAM?

    I am upgrading my Macbook 2.2 GHz Intel Core 2 duo from 2GB of ram to 4GB
    What is the difference between these two kits?
    4GB Kit (2 x 2GB) 200 Pin DDR2-667 PC2-5300 256x64 CL5 1.8V SODIMM ($102.00)
    4GB Kit (2 x 2GB) eRam 200 Pin DDR2-667 PC2-5300 CL5 1.8V SODIMM ($88.00)

    Probably nothing of any consequence. Some places can just negotiate better deals with suppliers. Or one of a million other factors that can affect price is in play here.
    When buying RAM, I generally find it's better to pay a little extra to get a brand that's known for quality. I usually stick to Crucial myself. If you look around, you can probably find some real steals out there, but I don't know... With stories of people who literally go dumpster diving, salvaging stuff that was slated for disposal, then turning around and selling it... I prefer not to take chances. If you are, by all means, go for the cheaper one.

  • What is the difference between these two portalapps folders on the Server?

    Hello,
    On the Server there are two portalapps folder:
    1. Under: C:\usr\sap\JXX\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\portalapps
    2. Under: C:\usr\sap\JXX\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps
    Can someone please explain me what is the difference between these two portalapps folders and under which case will I turn to which folder?

    Hi Roy,
    The one at this location
    Under: C:\usr\sap\JXX\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\portalapps
    has all the files from the WEB-INF folder i.e. these are the non-web resources and cannot be accessed via HTTP(S) examples would be imgaes, CSS etc that you want only your application to access
    those under
    Under: C:\usr\sap\JXX\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps
    they have all the .JAR files, portalapp.xml, config properties etc. these are web resources and can be accessed via HTTP(S)
    Hope this is of help.
    Akhilesh

  • What is the difference between these two commands?

    What is the difference between these two commands?
    DROP TABLESPACE users INCLUDING CONTENTS;
    DROP TABLESPACE users INCLUDING CONTENTS AND DATAFILES;
    --------No.202

    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_9004.htm#i2133717

Maybe you are looking for

  • Sharepoint 2013 site having NTML Crawl issue while crawling Sharepoint 2010 sites having FBA authentication

    Hi, We have Sharepoint 2013 search center site which is claim based with NTLM authentication set. we have Sharepoint 2010 farm also running which are FBA authenticated. While crawling Sharepoint 2010 sites having FBA authentication from SP 2013 searc

  • Opening Camera Raw - Windows XP

    Sorry if this seems a bit too obvious a question! I installed CS2 about 18 months ago, and never needed to use Camera Raw until now. I spent ages trying to find it on my computer, looking through photoshop, Bridge, Windows Explorer but just couldnt f

  • My ipod safari can't open links or press buttons.

    Like for instance,I tried to press one of the episodes from http://www.justanimedubbed.tv/watch/adventure-time/ and it won't let me.When I press it,it doesn't do anything...And even if I type the specific URL for the episode,it won't let me watch the

  • Issue in Updating Content Item . . .

    Hi, When i'm trying to update the content item, i'm getting following error. Unable to execute service UPDATE_DOCINFO_BYFORM and function populateMissingDocumentValues. (System Error: The service method 'populateMissingDocumentValues' is not defined.

  • How to find a user definded function in XI mappings

    Hi, I am sure that I wrote a special function some time ago and I have used this function in a mapping. But I cant remember in which mapping. I remember the name of the function. Is there a possibility to see all my user defined functions. Or can I s