BPM in NW CE compared with PI ccBPM

I am trying to understand the relative positioning of the new BPM tool in NetWeaver 7.1 CE with the existing ccBPM tool in PI.
If one uses the new BPM tool 'Process Composer' to model business processes (and assign relevant Enterprise Services etc), does this effectively replace the need for any modelling in ccBPM? Or will ccBPM still be needed? If so, can anyone give an example showing how the two tools would be used in a complementary fashion?
Thanks, Bob Austin, Atos Origin.

Bob,
ccBPM seems to be mainly oriented towards message processing. There is a a human interaction element for user decisions but the majority of the step types are related to things useful when processing messages (e.g;. for sevice orchestration.)
BPM in CE is more human oriented - besides user decision steps you can present forms and other UI elements. These steps will usually appear in an agents inbox and you can have full deadline monitoring and escalation.
They can be used together: One of the step types in CE BPM is to call a service, and this service could well be modelled on PI using ccBPM.
What does everyone else think?

Similar Messages

  • BPM in NW CE compared with Workflow

    Hello,
    I have aquestion regarding the positioning of BPM as a process modelling tool.
    At the moment it seems only to work with webdynpro Java screens in the 711 EHP1 download. I read on sdn the VC is also supported, and that WD ABAP is to be supported in future.
    Does this mean that it is only usable for new processes where we are prepared to develop a new UI from scratch?
    OR
    Could I use it with CRM linking into Web IC screens and processes?
    How about ERP transactions?
    Could I even link to existing ess/mss screens that are already delivered by SAP as WD Java? (I am wondering if these components have public interfaces at all)
    Thnaks for reading this far - I am just trying to cut through the marketing speak to understand how we could use this on a project.

    I found some more information here:
    Workflow in SAP NetWeaver
    I still look forward to more insight as to when to choose BPM and workflow!

  • SAP XI comparative with Cordys & TIBCO

    Hi gurus,
    Can anybody help me to find how SAP XI is better than Cordys or TIBCO .i.e. comparision between (SAP PI,Cordys,TIBCO)
    regards,

    HI
    Sap XI:
           XI is well suited for connecting SAP systems with each other and with non-SAP. SAP XI provides an integrated workflow engine that allows defining adapters to non-XML protocols and mappings to convert data content from source to target format.
    XI comes handy particularly incase of SAP - Non SAP interfaces where you can import standard integration content. Also XI has got sophisticated open standard adapter framework which is very easy to implement and custom logic can be implemented using Adapter module programming.
    Advantages
    u2022Monitoring is better than any other middleware product. It offers exhaustive monitoring features like message, performance, component monitoring etc, all of which can be used to track and rectify the errors. It follows a hub and spoke model.
    u2022When you need to integrate with an SAP system XI has an advantage in supporting various SAP components and so on.
    u2022Process functionalities inside XI to modify content in the communication channel on own defined rules for business purposes.
    u2022Mappings and adapters are good as comparable with any other middleware product.
    u2022Synchronous & Asynchronous communication is possible.
      Dis-Advantages
    u2022Web methods are particularly good if u have B2B kind of communication with their Trading Partners product.
    u2022XI is lacking full-fledged Message Queue compared to other established Middleware products.
    u2022It lacks in ability to process huge messages but SAP is working on that.
    u2022It does not have a messaging layer exposed by APIs like IBM MQ-Series.
    u2022It is not comparable to Tibco in terms of speed.
    u2022SAP relies on other vendors except for a few adapters.
    TIBCO:     
           TIBCO is described as having the most advanced BPM features overall, spanning both integration-centric and human-centric features due to the company's aggressive strategy to sustain competitive advantage by adding leading-edge features, whether via internal development or strategic acquisition.
    For the integration of custom applications into the e-business infrastructure, TIBCO makes available a comprehensive Software Development Kit that enables enterprises to build their own adapters.
    Advantages
    u2022Tibco has many adapters that are built by their own.
    u2022Tibco simple and productive User Interface is much more matured than XI.
    u2022Tibco does publish/subscribe very well. Available messaging types include request/reply, publish/subscribe and publish/reply interactions.
    u2022Improves overall system performance by eliminating repetitive batch requests to packaged application systems.
    u2022Lowers cost-of-ownership through general n-way rather than point-to-point integration.
    u2022Simplifies administration with data transparency provided by subject-based naming.
    u2022Enhances networked applications based on component or object development models.
    u2022Choice of message delivery service levels for optimal resource utilization.
    Dis-Advantages
    u2022Tibco does not have asynchronous SOAP/HTTP.
    u2022Concept of integration in terms of semantics and steps is a little more complex.
    u2022When compared in terms of monitoring, message level trace, message resubmission, pipelining, components monitoring Tibco is far behind to XI.
    cheers

  • Com.bea.bpm.papiws.OperationException_Exception: Invalid comparator

    Hi,
    I am using my studio papi wsdl - http://localhost:8585/papiws/PapiWebServiceEndpoint?wsdl,
    and using interface PapiWebService i am trying to abort the instances
    for a particular process with a filter condition i.e. customer id as '111000'
    I am getting below said exception:
    com.bea.bpm.papiws.OperationException_Exception: Invalid comparator
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:141)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:119)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:89)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:118)
         at $Proxy27.processesGetInstancesByFilter(Unknown Source)
    its working fine when create instances using 'processCreateInstance' of PapiWebService interface but when i am trying to 'processesGetInstancesByFilter' of PapiWebService interface its failing.
    Any thing I am missing in this?
    Edited by: Sreekant on Sep 6, 2010 7:36 PM

    I was able to rectify the exception by pointing to dev papi wsdl instead of local studio papi wsdl.
    However I have a small issue.
    Below is the java code where in I am passing the processid and filter params -
              ProcessIdSetBean processidBean = new ProcessIdSetBean();
              processidBean.getProcessIds().add(_processId); // Process Id being set
              SearchScopeBean searchScopeBean = new SearchScopeBean();
              FilterBean filterBean = new FilterBean();
              String variableId = "";
              String variableValue = "";
              if((null != filterParams )&&(filterParams.size() > 0 )){
                   for (Iterator iterator = _filterParams.keySet().iterator(); iterator.hasNext();) {
                   FilterAttributeBean fltrAttributeBn = new FilterAttributeBean();
                   fltrAttributeBn.setComparison(Comparison.CONTAINS);
                   variableId = (String)iterator.next().toString();
                   fltrAttributeBn.setVariableId(variableId.trim());
                   variableValue = (String)_filterParams.get(variableId).toString();
                   fltrAttributeBn.setValue(variableValue.trim());
                   filterBean.getAttributes().add(fltrAttributeBn);
              searchScopeBean.setStatusScope(StatusScope.ONLY_INPROCESS);
              searchScopeBean.setParticipantScope(ParticipantScope.ALL);
              filterBean.setIsMatchAll(true);
              filterBean.setSearchScope(searchScopeBean);
              InstanceInfoBeanList instanceinfoBeanList;
              List<InstanceInfoBean> instances = new ArrayList<InstanceInfoBean>();
              try {
                   //instanceinfoBeanList = papiWebServicePort.processesGetInstancesByFilter(processidBean, filterBean);
    // instanceinfoBeanList = papiWebServicePort.processGetInstances(_processId);
              } catch (OperationException_Exception e1) {
                   e1.printStackTrace();
    I am able to retrieve all the instances for a process id by using 'instanceinfoBeanList = papiWebServicePort.processGetInstances(_processId);' but when I am giving filters and retrieve instances using 'instanceinfoBeanList = papiWebServicePort.processesGetInstancesByFilter(processidBean, filterBean);', it is always giving me 0 instances.
    Have verified in engine db and workspace, there are instances available.
    Am I missing to set any params or configuration.
    Thanks,
    -Sreekant

  • Benefits of SAP Business Warehouse Reporting compared with the Query-tools?

    Hello experts,
    I've been creating reports with SAP Query tools, but been faced with few problems. First of all, there are restricted possibilities in terms of joining tables, and thus I cannot include all the data required for the report.
    One solution for this would have been to create separate queries and join the data together in Excel. The problem with this is that there exists no common field that would make sense as for a selection criterion. If the selection criterion is different in different queries, there is the danger of combining false data together, which would eventually result with distorted data. 
    So I was wondering, could anyone briefly tell me if SAP Business Warehouse reporting would solve these problems? And what other benefits would it provide compared with the SAP Query? I'd urgently need to know if it would be a beneficial investment for the company, since I haven't found solutions for the problems occurred in the creation of reports.
    Thank you in advance for you help!
    Maria

    The answers are yes - and thousands of companies have gone down this route
    Puttingin BW is a strategic aim of the comapny and not to be thought about and discussed in a BI forum such as this
    The costs of implementation and hardware will no doubt make your eyes water.
    To be quite honest SAP BI is a "no brainer" as most of the new e-SOA and new R3 modules reply on BW for their reporting needs

  • I do not have many messages but my iphone 5s says messages take up 4.6GB of space.  When comparing with friends who have many more message, less than 1 GB is being used on their phones.  Why are mine taking up so much space and how do I correct that?

    I do not have that many messages on my new iPhone 5s (maybe about 15 conversations and only one or two going back a little ways) yet when I go to Settings, Usage it shows that my messages are taking up 4.6GB of space.  When comparing with others (some who have hundeds of messages) they are using under 1GB for their messages.  Why are mine taking up so much space??

    I found a post with this solution that worked for me - .Do a backup, then download ibackupbot. It lets you look into the contents of that backup. Look in system files>mediadomain>library>sms>attachments. I found a ton of huge files related to long deleted texts. ibackupbot let me delete all that old crap. I then restored the phone with that now modifec backup and Bingo! freed up 9 GB. No problems.
    But note, if you are not technically inclined you probaly don't want to be digging around and deleting back up files. You delete the wrong thing and you could jack up your phone badly. Be careful.

  • What are new features in BCS 6.0 compared with earlier versions?

    Hi,
    What are new features in BCS 6.0 compared with earlier versions. Can someone tell in few lines .. just the summary and we can find the docs since it is not seen in service.sap.com.
    Many thanks,
    Regards,
    Ricardo Ferrã

      Hi Fancia Luo
    You can find the file which is suggested by Dan is available in the below link
    https://websmp105.sap-ag.de/~form/handler?_APP=00200682500000002672&_EVENT=DISPLAY&_SCENARIO=01100035870000000122&_HIER_KEY=501100035870000016962&_HIER_KEY=601100035870000210480&_HIER_KEY=601100035870000237998&_HIER_KEY=601100035870000238002&_HIER_KEY=701100035871000517655&
    If the above link is not helpful.  Please follow the complete path to find the specified file.
    https://websmp105.sap-ag.de/sem ---> SAP ERP Financials --> Financial Close --> Business Consolidation --> Media Library -->  Select Release Information.  Under this you can find the file SEM BCS 747 - Overview and Positioning of New Features.
    Regards
    Rajesh SVN

  • Use a single variable value to compare with 2 characteristics

    Hi guys
        I need some advice on how to use a single variable value to compare with 2 characteristics in a Infocube.
    eg : I hv 2 characteristics in Infocube
           Launch date  &  Closing Date
       Now I want to display report where the variable date (inputted by user) is equal to Launch Date and Closing Date.
        with regards

    Bobby,
    if I right understood your situation, you have an input variable ZINPUT (related to a date 'A') and 2 others dates (yours Launch and Closing dates, 'B' and 'C').
    You want to display only the rows where A(user input)=B=C.
    Now you have to create 2 new variables (called ZB and ZC, related to B and C dates) NOT marked as 'ready for input' and set to 'mandatory variable entry'.
    Call Transaction CMOD for the definition of the customer exit (if not already existing!).
    Create a new project, maintain the short text, and assign a development class.
    Goto Enhancements Assignments and assign RSR00001. Press the button components to continue.
    Double-click on EXIT_SAPLRRS0_001. For documentation place the cursor on RSR00001 and use the menu Goto -> Display documentation. 
    Then double-click on ZXRSRU01. If the include doesn’t exist you have to create it; assign a development class and a transport request.
    Enter the coding:
    DATA: L_S_RANGE TYPE RSR_S_RANGESID.
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
    CASE I_VNAM.
    WHEN 'ZB'.
    (and you have to repeate the same code also for the variable 'ZC' !)
    IF I_STEP = 2.
    READ TABLE I_T_VAR_RANGE INTO LOC_VAR_RANGE
    WITH KEY vnam = 'ZINPUT'.
    if sy-subrc = 0.
    L_S_RANGE-LOW  = LOC_VAR_RANGE-LOW.
    endif.
    L_S_RANGE-sign = 'I'.
    L_S_RANGE-opt = 'EQ'.
    append L_S_RANGE to e_t_range.
    ENDIF.
    ENDCASE.
    Save and activate the coding and the project.
    Now go to your query and use these two new variables to restrict B and C....et voilà !!!
    Let me know if you need more help (and please assign points !!! be generous !!!)
    Bye,
    Roberto

  • I-trigue 3400 soundwoofer not working / right speaker low output compare with left speaker

    Hi, basically i have 3 sets of creative i-trigue 3400 purchase as second hand. All these 3 sets have some minor problem. I trust my ability i able to repair it as iam a professional electronic engineer. Just need some advance information or guidance from creative big brother and sister.
    i do check with the controller everything, because i have 3 sets so i able to verified the problem.
    1)subwoofer not output----Is it problem with amplifier or any transistor damage? How do i start checking and verified it?
    2)right speaker low output compare with left speaker----I already analysis it and would like to know is it the transistor prolem? Please let me know so i can start with my repairing.
    From what i know, this model seem like going to discord soon, so is it possible send me a partial schematic on the 3400 so i can repair. Please let me know and reply me, i am waiting your answer. Thank you

    seem like nobody reply my email, can creative technical provide some guide. I already mention i will repair myself.:angry:

  • Compare with my cost of goods sold account to my sales revenue account

    Hi,
    i want to compare with my cost of goods sold account to my sales revenue account.
    After PGI my COGS a/c will be debited INVENTORY a/c will be credited so after sales my SALES a/c credit & customer a/c debit . I want to see what is the difference value of COGS a/c with respective billing Sales A/C
    No doudt we can see in Profit of margin in billing doc. It is quite impossible to see all document in respective wise. Please give a solution for which i can know what is profit of margin with comparing values in both of Account.
    Thank's
    Abhay

    Hi,
    This is possible through CO-PA report. You can get the result per sales order.
    Also the same can be achieved in FI as follows:
    Outbound delivery document thr" VL01N is captured in "Reference field" of FI doc (BKPF-XBLNR) generated through delivery.
    If the settings are done by SD person to capture the outbound delivery no. in "Reference field" of FI doc generated through Billing document (VF01), then there will be a common field to compare the documents in both accounts.
    In transaction FAGLL03, select the account COGS & Sales revenue account. Once the report displays, sort or take sub total on this common field "Reference".
    This will give you difference between COGS & Sales revenue per document.
    Hope this resolves your query.
    Regards,
    Ashutosh

  • Advance features available in sql server 2008 R2 compared with SQL 2008 SP2

    Hi,
    Can some one brief me the advance features available in sql server 2008 R2 compared with SQL Server 2008 SP2.
    I am planning to upgrade my existing sql server 2008 SP2 to sql server 2008 R2, before that i need the advantages to proceed , if the advantages are not suite to my requirements then i will drop out this option.
    Please give me the detailed reply for my analysis
    hemadri

    Hi Hemadribabu,
    There are some new features in SQL Server 2008 Service Pack 2(SP2), including SQL Server utility, Data-tier Application (DAC), Reporting Services in SharePoint Integrated mode and partitioning improvement. Features are supported by the different editions
    of SQL Server 2008 R2. For example, the Report Builder 3.0, PowerPivot for excel are available on the SQL Server Datacenter and SQL Server 2008 R2 Parallel Data Warehouse, they can assist you creating business intelligence documents. Here are the Top
     new features in SQL Server 2008 R2, including 
    Report Builder 3.0, SQL Server 2008 R2 Datacenter, SQL Server 2008 R2 Parallel Data Warehouse, 
    StreamInsight, Master Data Services and so on.
    For more information about SQL Server 2008R2 and SQL Server 2008 SP2, you can review the following articles.
    http://msdn.microsoft.com/en-us/library/cc645993(v=sql.105).ASPX
    https://social.technet.microsoft.com/wiki/contents/articles/1486.microsoft-sql-server-2008-sp2-release-notes.aspx
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • I have the Mac OS 10.9.4  I am unable to read PDF's, so thought I would download the latest version of Adobe Reader.  It will not install.  Is it comparable with my Mac OS?

    I have the Mac OS 10.9.4  I am unable to read PDF's, so thought I would download the latest version of Adobe Reader.  It will not install.  Is it comparable with my Mac OS?

    More information would be good.
    What do you mean by "unable to read PDF's". How are you trying to read them and what exactly happens when you try?
    so thought I would download the latest version of Adobe Reader.  It will not install. 
    Again, what exactly is happening?
    And yes, the latest version should be compatible with your OS.

  • Need to send a mail while safty stock goes down compare with actual stock

    Dear experts,
    I Need to send a mail to concern persion while stock goes down compare with safty stock. We plan to put a check at the point of MARD table updation, Because we not able to put a check at the all transaction codes, So please LET ME KNOW HOW TO PUT A CHECK AT STANDARD TABLE UPDATION?
    Thanks in adv,
    jayakumar.M

    Your best bet may to be place your check in the a user exit for goods movements.  The enhancement is MB_CF001, the component is EXIT_SAPLMBMB_001.
    Hope this helps,
    Mark

  • EA1 - File Compare With Other File... Does Not Work

    I open a file in the SQL Worksheet, select File > Compare With > Other File..., nothing happens! Is this part of the Version Control feature that is yet to be implemented?

    I have it logged.
    Thanks
    Sue

  • Features available in PI 7.11 when compare with PI 7.1

    Hi Experts,
                 What are the extra features available in PI 7.11 when compare with PI 7.1. What are the monitoring techniques added in 7.11.
    Regards,

    search in sdn before posting.
    http://wiki.sdn.sap.com/wiki/display/XI/PI7.1EHP1DeltaFeaturesoverPI+7.1
    Regards,
    Raj

Maybe you are looking for

  • Button help with asp database in dreamweaver

    Hey i have a page that has an iframe inside it with 2 menu's side by side with buttons in between to move items from one menu to another and i have them set with javascript to move back and forth works great only problem is its also supposed to updat

  • Using parameters in a select query sometimes not working

    I use parameters throughout my code - usually without problem, but for some reason in one case it does not return a result. When I modify the querystring to contain the value instead of using parameters it works. Is it because I'm secting a clob? or

  • Internal Speakers do not work at all

    My sound was working just fine a few days ago, and all of a sudden, there is no sound at all comming from my macbook pro. I have tried plugging in headphones and still there's no sound comming from there neither. I don't even hear the chime at start-

  • How do I close IMAQ sessions and freeup memory for 3 Camera While Loop continuous Acquire?

    1) I am using an NI PCI-1428 Camera Link frame grabber to interface with a Pulnix TM6710-CL digital camera. I use the latest IMAQ drivers. When I try to work on 3 cameras (as in the NI example program for single HL Grab), it looks like not freeup the

  • Remote Desktop Client 8.1.3 Display Issue

    We're running Microsoft Remote Desktop 2012R2 services including a Gateway/Connection Broker/Licensing server and  Remote Desktop Session Hosts servers.  Our clients include Windows systems, iPads and iPhones. Since the upgrade to Microsoft Remote De