Differences between eCommerce and Web Channel

Hi.  I'm really new to SAP.  I'm looking at leveraging some of the built-in e-commerce functionality of SAP.  I've read a few articles on the SAP help site but I can't distinguish the differences between the following 2 solution options:
1) ERP eCommerce
2) CRM Web Channel
From what I've read, both of the above technologies do relatively the same thing.  Can someone let me know if this is true, or if not, where I can find details on when to use one versus the other?
Thanks!
- Dylan

Hi,
please let me try to clarify this.
Both of the solutions are actually based on the same Java web applications. This means both applications share the same core functionality. The main difference between ERP eCommerce and CRM Web Channel is the backend system used for the web shop.
The reason why SAP offers two different backends for the web shop is pretty simple. Each backend is suitable for different requirements. While running the web shop with a CRM backend, some additional features related to the marketing functionality of SAP CRM are available. These addtional features include cross- and upselling, campaign management and advanced catalog management. For customers that don't need these marketing features or don't want to invest in a SAP CRM system, there is the ERP eCommerce solution. While the shop system is the same, some of the additional features offered in the CRM version are missing.
I hope that solves the problem for now. If you have more questions on the difference between the two solutions please let me know.

Similar Messages

  • Difference between parallelism and allocate channel

    Whats the difference between
    Rman> run{
    allocate channel c1 device type disk;
    allocate channel c2 device type disk;
    AND
    RMAN> configure channel device type disk parallelism 2;

    Channel:
    Each channel establishes a connection from the RMAN client to a target or auxiliary database instance by starting a server session on the instance. The server session performs the backup, restore, and recovery.
    PARALLELISM:
    Configures the device types that are eligible for use in jobs that use automatic channels and sets the degree of channel parallelism. The DISK device type is the default.
    The PARALLELISM parameter specifies the number of automatic channels of the specified device type allocated for RMAN jobs. RMAN always allocates the number of channels specified by PARALLELISM, although it may actually use only a subset of these channels.
    By default, PARALLELISM = 1. Specifying CLEAR for a device type resets its settings to the default. For example, you can set PARALLELISM for disk backups to 3. If you configure automatic channels of type disk and tape, and set the default device type as disk, then RMAN allocates three disk channels when you run BACKUP DATABASE at the RMAN prompt.
    To change the parallelism for a device type to n, run a new CONFIGURE DEVICE TYPE ... PARALLELISM n command. For example, you can change configure PARALLELISM to 3 for sbt and then change it to 2 as follows:
    CONFIGURE DEVICE TYPE sbt PARALLELISM 3;
    CONFIGURE DEVICE TYPE sbt PARALLELISM 2;
    Regards
    Asif Kabir

  • Difference between ITS and Web Application Server

    Hi All,
       What is ITS server. Can anyone explain me the difference between ITS and WAS(Web Application Server)
    Thanks
    Harpreet

    Hi Harpreet:
    ITS is basically the tool that allow you to use SAP via http. Theres lots of info about <a href="http://help.sap.com/saphelp_nw04/helpdata/en/0d/654d356560054ce10000009b38f889/frameset.htm">ITS</a> or <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/5f/0ef441ad7bc417e10000000a155106/frameset.htm">WebAS with Integrated ITS</a>
    The ITS is a standalone application connected to R3 via RFC connection, In the SAP WebAS the ITS is integrated to the system.
    Hope this help!
    Juan
    PS: Please reward with points if helpful

  • Difference between ITS and web dynpro abap

    Hi Experts.
    Can any explain me what is the main difference between  EWT/ ITS and web dynpro abap. Basically i am going to developed some existing EWT in webdynpro ABAP , so i want to know what are the advantage of WD ABAP over ITS .
    Thanks in Advance.
    Satya

    Closing thread, thanks for your help.
    Thanks,
    Satya

  • Difference between Client and Web

    hello
    i am newbie to EJB, I have started the online tutorials, on this tutorial nothing has mentioned about the difference between application client and Web application.
    I am sort of confused why do we have to have both of them?
    I know that web application should run from a web browser, but what happens if i ignore the application client?
    I am trying to make a simple application to use ejb which connects to a databse and a web application to show the results. Can i just develope ejb and a set of jsp to interact as web application?
    could someone help me please
    cheers

    The difference is simple:
    A web client is a so called 'thin client' just displaying the information created and processed somewhere else.
    A standalone client is a fat client which uses the ejb only to retrieve data and manages the user interaction by himself.
    So a web application is basicly a fat client wich uses a web browser as a display (web browser is a display) thats why you have to implement a set of jsp and servlets which present the data to the user.
    I you want e.g. a java program to interact with your beans to get data from the database you will have to code an application client. But it doesn seem like this, so your idea is right. Have fun implementing...

  • Difference between EP and Web AS JAVA

    Hi all,
    I am new to EP. I wish to know the clear differences, if any.
    I work in a project where there is an enormously complicated landscape. There is a 'central portal' (EP 7.0); services from backend ABAP systems are accessed. Every ABAP system (ECC, CRM, BI, XI etc.) has a corresponding Java system (Web AS Java's). They seem to be referred to as 'portals' too. I see that EP and the Java systems are same; look and feel wise. I see that we can do user/system/content administration in both of them. 
    What are the fundamental differences, if any? Help!
    Thanks and regards,
    Rosun

    Hi,
    the best person to answer your questions is the person responsible for the landscape at our company. To differentiate between Web AS Java and Portal: The portal is an application that runs on top of Web AS Java. GRC runs also on top of Web AS Java, but it's not the portal. Look at Web AS Java as it is a Java application server like JBoss or glassfish.
    Without knowing the details of your landscape it's hard to give you an answer. In a complex SAP landscape you may have:
    - a ECC system and a portal for ESS/MSS
    - a BI system with a portal for accessing the BI reports by a browser
    - SRM system with a portal that serves as an access point to IACs or POWL
    - CRM is using nowadays BSP (ABAP)
    - a central portal system that unifies the access to the other systems. In this case, we are talking about Federated Portal Network (FPN)
    br,
    Tobias

  • JNDI differences between Tomcat and Web Logic 6.1

    I am looking at two difference piece of code :
    Application developed and deployed under Tomcat ( perfectly working )
    Context initCtx = new InitialContext();
    Context ctx = (Context) initCtx.lookup("java:comp/env");
    // Get a Connection
    DataSource pool = (DataSource) ctx.lookup("jdbc/WebApps");
    // Getting connection
    con = pool.getConnection();
    This is instead an application developed and deployed under Web Logic
    Context ctx = new InitialContext();
    DataSource ds = (DataSource) ctx.lookup("dbase");
    // Connection
    con = ds.getConnection();
    when i deploy the WL application in Tomcat ( as a WAR file ) I got "dbase name not bound in this context", any guess why this is happening even though I already set up the server.xml :
    <Resource auth="Container" name="dbase" type="javax.sql.DataSource"/>
    <ResourceParams name="dbase">
    <parameter>
    Unfortunately I cannot rewrite the WL code so I need to work on Tomcat
    Thanks in advance
    Leonardo

    Thanks for your reply,
    However I think I have not been clear.
    This is the situation. We have Web Logic on production and Tomcat on our Intranet.
    So I am in need of making the WLogic app working under Tomcat "Without touching the code" of the application. The only thing I can modify at this point is the Tomcat installation. If it's possible.
    The only problem I have is with the piece of code of the Data Base Connection. I got "dbase is not bind in this context".
    Leonardo

  • Difference between webpublish and web gui builder

    Have you worked with webpublishing tool in LABVIEW 2013 before? Do you think I can show my front panel which is designed in Labview fully on the web by this method?
    Please make your advice about it. I have studied few articles about web gu builder, webpublishing and webservers but I am still not clear which one can simply satisfy my objective?
    My objective is to display the graphical front panel which is designed in labview .vi exactly on the web. 

    Portal Servers are usually Application servers which host a 
    variety of Applications, Portals as a concept are single Gateway 
    to whole lot of information and applications(could be 
    distributed across systems, generally Web based ones). 
    Eg. BEA Weblogic Portal 
    Content Management systems are applications to Capture, Manage, 
    version, distribute and Store content. Content can be Structured 
    and Unstructured. Generally I have seen when CMS word is used, 
    it means Web Content Management, although this is not a norm 
    across the industry. 
    I am sure you are aware of WCMS and ECMS differences. 
    E.g Interwoven TeamSite, Documentum, OpenCMS etc. 
    CMS facilitates the ready availibility of content to be shown on 
    Portal in large Portals (the concept). This content could be 
    sourced in from various systems and distributed by the CMS. 
    Essentially any CMS deals with Content Creation, Content 
    Management proper, Content Intelligence and Content 
    Distibution. 
    However important thing to note could be the emerging products 
    which are Portals and have a built in CMS tool also, like BEA 
    (Aqualogic in particular). There is another genere of products 
    like Vignette, Broadvision which are Portals and CMS both in one 
    (have CMS products built in but as a seperate component). 

  • Difference between JVM  of web browser and  JVM of webcontainer?

    hi friends , I am babu pursuing mca final year
    i have one doubt that is ........
    What is the difference between JVM of web browser and JVM of web container ?
    plz clarify my doubt

    Who said there's a difference?
    (By "web container" I assume you're talking about a servlet container or JSP container like tomcat.)

  • Differences between Hyperion Workspace, Web Analysis and Financial Reportin

    Hello,
    Can anybody explain me the differences between Hyperion Workspace, Web Analysis and Financial Reporting?
    Thank you

    In real simple terms....
    Financial reporting - Perfect for producing standardised monthly reporting such as P&L, balance sheets etc. Highly formatted, print well in PDF format.
    Web Analysis - Highly graphical, web based analysis tool more suited to dashboards, pinboards etc with slice and dice capability.
    Workspace - Common environment where reporting content in deployed. Users can access web anlysis, fin reports, Interactive reports plus other content through the workspace. It was the start of the 'log on to one place for all reporting' concept instead og logging on to multiple products.
    Hope that helps
    Regards
    CD

  • What is the difference between SWF and F4V in the context of Streaming or progressive Download?

    Hello everybody,
    I am absolutely a beginner in working with Captivate and furthermore my technological know how is not that good.
    So, I have problems to understand if the export formats SWF and F4V are both capable to be published in the Internet as streaming video and as progressive Download? Well so, I do not really understand the difference between streaming and progessive download either?
    Furthermore I was asking myself if this issue depends on how I imported flash videos (there are these two options) in my Captivate project during the production phase?
    I would be very thankful for some helping information!
    Greetings,
    Mareike the beginner

    Welcome to our community
    I'm not certain I fully understand the differences myself, but will toss out what I believe to be true about the formats. Hopefully, if I'm incorrect in my bellief, someone with more definitive knowledge will chime in.
    It was explained to me a couple of years back and is my understanding that "streaming" only applies to a video based format such as F4V, FLV and it doesn't apply to SWF. With SWF, you may specify a preload value. So when the SWF transmits from the web server to the PC, a certain percentage has to be received before play begins. But that's not streaming. It's preloading.
    For streaming to occur, the web server establishes a communication channel between the server and the destination PC. This channel is monitored to see what speed is in use. Only enough information is then transmitted to be comfortable at that speed. If the speed improves during the connection, the server serves data at a faster rate. If the connection degrades, the information transmitted is also scaled back so as to accommodate the lower speed.
    With SWF, after it has all been downloaded, a savvy user is able to poke around in their temporary internet files and save the SWF for play later. With streaming, this isn't possible because as the stream is viewed, it evaporates from memory.
    Seriously hoping others will chime in here to confirm or deny this.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • 1)Now I use Lightrom 5.7 how to upgrade to 6 or CC? 2) What is the difference between 6 and CC vercion? 3) When I used lightromm 3, I could see inEXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is ve

    1)Now I use Lightrom 5.7 how to upgrade to 6 or CC?
    2) What is the difference between 6 and CC version?
    3) When I used lightromm 3, I could see in EXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is very sad  I am stiil waiting and hope that it would be possibble in the new  versions. Or this indication may  possible by setting?

    1)Now I use Lightrom 5.7 how to upgrade to 6 or CC?
    Purchase the standalone upgrade from here: Products
    Download CC version from here: Explore Adobe desktop apps | Adobe Creative Cloud
    2) What is the difference between 6 and CC version?
    See this comparison chart: Compare Lightroom versions | Adobe Photoshop Lightroom CC
    3) When I used lightromm 3, I could see in EXIF the distance in meters till the object I took, in the later virsions that function disappeared, it is very sad  I am stiil waiting and hope that it would be possibble in the new  versions. Or this indication may  possible by setting?
    Rob Cole's ExifMeta plugin displays the Subject Distance field (and much more).  Unfortunately, his Web site appears to be down again.  He used to be very active here, but he hasn't posted in several months.

  • What is the difference between upgradation and migration.

    Hi Guru's
    what is the difference between upgradation and migration.
    actuallly i involved in upgradation project, here my role is
    1. first i check the query's in 3.5 save the query and transport the query. and check the query in bex analyzer also.
    2. go to BI .7  find the query;s ,give the query name and save the query ,
    3. once save the query, again will come to 3.5 open the query , it will not open. this is my job here,
        come to 7.0 check the query in analyzer also.
    i am having littile bit confusion, how it will comes query in 7.0, why are u saving the query's in 3.5 and 7.0
    query's already available in 7.0 why are u doing this work?
    can i know the upgrades those  objects, is it neccessary, if necessary how can i upgrade.
    infoobje , transferrules, transferstructure ,infosoure, datasoure,updaterules, ods, cubes.
    Points will be Assingned ,
    Thanks & Regards
    prabhavathi

    Hi,
    I was talking in a general sense not on a query level.
    If your taling about migration in that level meaning as a part of larger upgradation (in your case 3.x to 7) there may be many places where you need to do this kind of activities.
    Fr eg migration into new data flow, Migration of Web templates from BW 3.x to Netweaver 2004s, etc
    Hope this helps.
    Thanks,
    JituK

  • What is the difference between ERP2004 and SAP 47 Enterprise?

    Currently we have SAP 47 Enterprise with WAS 6.2. I understand ERP2004 is NW and 6.4 sp9. Can any one please let me know the major difference between ERP2004 and SAP 4.7 Enterprise ( more from abap / workflow view)?
    Thanks
    Swamy

    From Abap point of view some of the major add-on in erp2004,netwever :
    1) Development of webdynpro studio for java development for portal and iviews.
    2) Major abap development uses <b>Abap object oriented</b> methodology, rathet hten old conventional Abap,i.e MVC model (Model,View,Controller) where in it uses concept of classes,interfaces,etc.
    3) Advanced BSP tech using MVC model to develop web based modules
    4) It is closesly integrated with web-based CRM and BW/APO

  • What is the Difference Between Adapter and Proxy

    Hi Master,
    I want to know the Difference Between Adapters and Proxies.
    And when we are using proxies and Adapters....
    Regards,
    SReddy

    Adapters are part of the Adapter Framework. Adapters provide the technical connectivity to enable the integration of SAP and non-SAP applications through XI’s Integration Engine.Again, Adapters are used for connectivity from and to external systems with XI that cannot communicate via proxies.Adapters are only required in SAP systems older than 6.20 and external systems.
    Systems based on 6.20or higher can communicate directly with proxies.
    The literal definition of a proxy is an object / process authorized to act for another; an agent or a substitute. In simpler terms, proxies in the XI context are objects used to encapsulate the creation (from a sender system) or parsing of XML (at a receiver system) as well as the communication with the relevant runtime components required to send or receive those messages.
    Proxies are generated from Message Interface in IR.
    The Proxy Runtime controls these objects / processes, and can itself be controlled by the applications it communicates with. The Proxy Runtime currently has the following components available: 1. ABAP Proxy Runtime – Communication using XI or Web Services a. Web Service Runtime 2. Java Proxy Runtime – Communication using XI (J2EE) The objects that the Proxy Runtime then controls are created via Proxy Generation, for both ABAP and Java. In the following sections a ‘client’ proxy is used by an application to send messages outside of the system it resides in (normally to the IS in this context). Conversely, a ‘server’ proxy is used by an application to receive messages from sources outside itself (again, normally the IS in this context).

Maybe you are looking for

  • How do i set up an ipad to become a kiosk in my business for access to my website and e-club sign-up?

    i'm seeking information about how i may set up an ipad as a kiosk in my business for guests to access my website while visiting, as well as to be able to sign up to my e-club.  I need the ipad to be completely locked down to the public with access on

  • Adobe Bridge - Export - Manual Scale - Image Size Option

    I would like to use Adobe Bridge to export a batch of images to a fixed height (e.g. 400px) where the width is dynamic. There are other software programs that would give me this option, but It would be wonderful if this "small feature" could somehow

  • Getting Defunct processes while using Oracle iPlanet Web Server 7.0.9 in Solaris 10

    Hi, I have installed Oracle iPlanet Web Server 7.0.9 in our Solaris 10. \ Successfully Configured iPlanet web server using the manual and the application scripts are working fine with this iPlanet webserver. Even if the application is working fine, t

  • Apps tab in Creative Cloud manager is blank

    I'm trying to download a free trial of After Effects. I have downloaded the Creative Cloud manager for my desktop, but the Apps tab remains blank with a spinning wheel. The other tabs all show their appropriate options, but the Apps tab shows nothing

  • NFL Mobile Error

    My NFL mobile app started to give me the following error last night: "NFL Mobile is an exclusive service for Verizon Wireless customers."                     "UID: XQ6PLL6NLAHQF4LK" Any ideas to fix to issue? I have rebooted the phone, uninstalled/re