Is BPM communication based on Oracle's ESB?

Hi,
when I use BPEL with the Oracle BPM then I am able to use all the adapters and bindings which the Oracle ESB offers.
1. Is it right that the ESB is the communication plattform for BPM?
2. And when I develop BPEL with the JDeveloper where I can use all this services (e.g. File Adapter, FTP-Adapter) to create partnerlinks are these Services transparently taken over to the ESB?
3. Is there an Architecture Overview of the ESB such as it is provided for the BPM in the Quick Start guide on page 5?

ad1. You can treat ESB as some kind of component library for BPM or BPEL, you can use esb adapters as a "bricks" to build distributed application. The communication platform and data carrier in that case is actually XML technology.
ad2. This is rhetorical question as you responded on it by yourself (for instance by creating partner link indeed)
ad3. of course it is, for instance: http://www.oracle.com/technology/products/integration/esb/pdf/esb-advanced-architecture-presentation.pdf

Similar Messages

  • "Oracle BPM  Suite 11g" and "Oracle SOA Suite 11g" components

    Dear Friends,
    I am very confusing about the "Oracle BPM suite 11g" and "Oracle SOA Suite 11g" and would like your help on explanation as the following :
    I have learn that In order to use "Oracle BPM Suite 11g" require to have "Oracle SOA Suite 11g" components to install first. Does it means that :
    1) When we buy "Oracle BPM Suite 11g" , we automatically get the "Oracle SOA Suite 11g" components as well ?
    2) IS it correct that these " these Oracle SOA Suite 11g components" are included :
    (a) Oracle BAM
    (b) Oracle Business Rules
    (c) Oracle BPEL Manager
    (d) Oracle Service Bus
    (e) Oracle Complex Event Processing
    3) Do we have a right to use all of these components listed in (2) ?
    4) Then the answers in (3) is "YES", then Is it correct when the customer buy the "Oracle BPM Suite 11g" , they no need to buy "Oracle SOA 11g" any more when they would like to implements that applications based on SOA in the future (without using BPM) ?
    5) What IF , the customer would like to start with "Oracle SOA Suite 11g" product and decide to buy only Oracle SOA Suite 11g first ; then later on in the future they would like to implement BPM projects in the future. Can you upgrade "Oracle SOA Suite 11g" to include "Oracle BPM Sutie 11g" and pay only the price different ?
    I hope you can help providing the answers to these questions. THank you very much in advance.
    Best Regards
    Pearapon S.

    This is a question best answered by your Oracle reseller or Oracle account manager to give you all the details but I hope this brief answer helps:
    - The Unified Business Process Management Suite (BPM Suite 11g) includes: BPM Studio, BPM Composer, BPMN Service Engine and Workflow Extensions, BPM Process Spaces, and BPM Process Analytics.
    - BPM Suite 11g requires the licensing of SOA Suite 11g for Oracle Middleware which requires a license for WebLogic Suite.
    - You can license SOA Suite 11g now and license BPM Suite 11g later.
    Since the products are layered, I don't see this cutting into SOA sales at all. My personal view is that BPM on top of SOA is brilliant since it provides easy integration between human and automated tasks, builds on many of the SOA concepts that are key for a successful BPM implementation (functional, not the Oracle product), and uses the same IDE. The synergies extend past easy use of services; the same business rules and human workflow components are used between both products.

  • Oracle BPEL/ESB/SOA vs SAP XI

    Hi,
    Wondering! What would the percentage of implementations SAP XI vs Oracle BPEL/ESB/SOA for next couple of years. I just wanna explore and know more about them.. How's Oracle SOA/BPEL/ESB doing in terms of new customers/implementations and what are all market trends and future jobs.. Also throw the light on SAP XI side... Is it wise to choose Oracle BPEL/ESB/SOA to get better jobs? Every one talking about SAP XI etc... How about Oracle Fusion?
    I appreciate your opinions/facts/guess or whatever.
    Thanks in advance..
    Giri

    Giri,
    SAP XI is something centered around SAP implementations and I am not very much sure of its architecture.
    On the other hand when it comes to BPEL, SOA, ESB, they are all industry wide standard and Oracle is just one of the vendors providing tools to implement the solutions based on these industry standards.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • FUNCTION-BASED INDEX ( ORACLE 8I NEW FEATURE )

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-16
    FUNCTION-BASED INDEX ( ORACLE 8I NEW FEATURE )
    ==============================================
    SCOPE
    10g Standard Edition(10.1.0) 이상 부터 Function-based Index 기능이 지원된다.
    Explanation
    1. 개요
         Function-based index는, 함수(function)이나 수식(expression)으로 계산
    된 결과에 대해 인덱스를 생성하여 사용할 수 있는 기능을 제공한다.
         질의 수행 시 해당 함수나     수식을 처리하여     결과를 가져 오는 것이 아니라,
         인덱스 형태로 존재하는 미리 계산되어 있는 결과를 가지고 처리하므로
         성능 향상을 기할 수 있다.
    2. 제약사항
    1) aggregate function 에 대한 function-based index 생성 불가.
    (예 : sum(...) )
    2) LOB, REF, nested table 컬럼에 대한 function-based index 생성 불가.
    3. 주요 특징
         1) cost-based optimizer에 의해 사용됨.
         2) B*Tree / bitmap index로 생성 가능.
         3) 산술식 (arithmetic expression), PLSQL function, SQL built-in
    function 등에 적용 가능.
         4) 함수나 수식으로 처리된 결과에 대한 range scan 가능
         5) NLS SORT 지원
         6) SELECT/DELETE를 할 때마다 함수나 수식의 결과를 계산하는 것이 아니라
         INSERT/UPDATE 시 계산된 값을 인덱스에 저장.
         7) 질의 속도 향상
         8) object column이나 REF column에 대해서는 해당 object에 정의된
         method에 대해 function-based index 생성 가능.
    4. 생성 방법
         CREATE [UNIQUE | BITMAP ] INDEX <index_name>
         ON <tablename> (<index-expression-list>)
         <index-expression-list> -> { <column_name> | <column_expression> }
         예) CREATE INDEX EMP_NAME_INDEX ON EMP (UPPER(ENAME));
         CREATE INDEX EMP_SAL_INDEX ON EMP( SAL + COMM, empno);
         * Function-based index를 생성하기 위해서는 QUERY REWRITE 권한이
         부여 되어 있어야만 한다.
         예) GRANT QUERY REWRITE TO SCOTT;
    5. Function-Based Index 사용을 위한 사전 작업
         1) Function-based index는 cost based optimizer에서만 사용 가능하므로,
         테이블에 대해 미리 analyze 해 주는 것이 바람직하다.
         그리고 init 파일에서 OPTIMIZER_MODE 를 FIRST_ROWS 나 ALL_ROWS 등으
    로 지정하거나 HINT 등을 사용하여 cost based optimizer가 사용되도록
    한다.
         2) init 파일에서 COMPATIBLE 파라미터 값을 8.1 이상으로 설정되어 있어야
    한다.
         ( 예 : COMPATIBLE = 8.1.6 )
         3) session/instance level 에서 QUERY_REWRITE_ENABLED 값이 TRUE 지정
    되어 있어야 한다.
         ( 예 : ALTER SESSION SET QUERY_REWRITE_ENABLED = TRUE; )
    6. 예제
         1) init 파라미터에서 다음과 같이 지정
         compatible = 8.1.6 (반드시 8.1이상이어야 한다)
         query_rewrite_enabled = true
         query_rewrite_integrity = trusted
         2) SCOTT 유저에서 function_based_index 생성
         create index idx_emp_lower_ename
         on emp
         ( lower(ename) ) ;
         3) EMP table analyze
         analyze table emp compute statistics ;
         4) PLAN_TABLE 생성
         @ ?/rdbms/admin/utlxplan.sql
         5) Cost based optimizer 선택
         alter session set optimizer_mode = FIRST_ROWS ;
         6) Query 실행
         explain plan set statement_id='qry1' FOR
         select empno, ename
         from emp
         where lower(ename) = 'ford' ;
         7) PLAN 분석
         SELECT LPAD(' ',2*level-2)||operation||' '||options||' '||object_name query_plan
         FROM plan_table
         WHERE statement_id='qry1'
         CONNECT BY prior id = parent_id
         START WITH id = 0 order by id ;
         -> 결과
         QUERY_PLAN
         SELECT STATEMENT
         TABLE ACCESS BY INDEX ROWID EMP
         INDEX RANGE SCAN IDX_EMP_LOWER_ENAME
    7. 결론
    Function-based index는 적절하게 사용될 경우 성능상의 많은 이점을 가져
    온다. Oracle8i Designing and Tuning for Performance에서도 가능한 한
    Function-based index를 사용하는 것을 권장하고 있으며, LOWER(), UPPER()
    등의 함수를 사용하여 불가피하게 FULL TABLE SCAN을 하는 경우에 대해서도
    효과적으로 처리해 줄 수 있는 방안이라 할 수 있다.
    Reference Documents
    -------------------

    Partha:
    From the Oracle8i Administrators Guide:
    "Table owners should have EXECUTE privileges on the functions used in function-based indexes.
    For the creation of a function-based index in your own schema, you must be
    granted the CREATE INDEX and QUERY REWRITE system privileges. To create
    the index in another schema or on another schemas tables, you must have the
    CREATE ANY INDEX and GLOBAL QUERY REWRITE privileges."
    Hope this helps.
    Peter

  • Model based on ORACLE in Web Dynpro

    Hi all,
    Hi All,
    i want to create a web Dynpro application which would extract material data from ORACLE database. Apart from BAPI and WEBSERVICE, i dont find any provision or facility to build a model based on ORACLE.
    if there is a provision of building a model based on ORACLE, then please explain me in detail.
    kindly help me out in solving this problem.
    Regards,
    Venkat

    Hi Anil,
    thanks for your reply. the links that have been provided by you says EJB is required to build ORACLE model in web dynpro.
    is it not possible to build the model without EJB??
    my suggestion is::
    ill create a WSDL for the particular ORACLE table columns and expose it to web dynpro. then ill create a model based on this WSDL. can i use this method??how far this will be effecient??
    waiting for valuable suggestions....
    Regards,
    Venkat

  • How to create Discussions Task Flow Based on Oracle Content Server

    Hi,
    I need to create an ADF application consisting of the following aspects:
    1) Upload, Download and Share documents (I'm using Documents Services provided by WebCenter Jdeveloper Extensions)
    2) Create discussion threads and forums (I'm trying to use Discussion Services provided by WebCenter Jdeveloper Extensions)
    3) User should be able to do an universal search i.e search both documents and discussions forums. (I'm using Search Services provided by WebCenter Jdeveloper Extensions)
    I'm using "Oracle Content Server 10g for WebCenter" to manage my documents and discussions. While logging into GUI of OCS, I'm able to create and post discussion threads.
    But, I'm unable to create discussions adf task flow based on Oracle Content Server.
    The demos/tutorials/dev guides provided at http://webcenter.oracle.com have only described using WLS_Services managed server which is created and setup using WC Suite 11g.
    But I couldn't find any information to develop these discussion services using Jdeveloper WebCenter Extensions and Oracle Content Server.
    Please let me know, if anyone has tried this or if you have any idea of how to go about it.
    Thanks in Advance,
    Harikiran.
    Edited by: harikiran on Jul 13, 2010 3:23 PM

    Hi.
    You have official documentation introducing ADF Task Flows here: http://docs.oracle.com/cd/E23943_01/web.1111/b31974/taskflows.htm
    And you have next step by step tutorials to learn how to implement Task Flows:
    http://yonaweb.be/webcenter_tutorial/part_6_building_taskflow_and_consuming_it_webcenter_portal (Yannick blog post).
    http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_57/jdtut_11r2_57.html (official JDev samples).
    http://danielmerchanoracle.blogspot.com.es/2011/08/integrar-adf-task-flows-propios-en-una.html (My spanish blog with "how to add a Custom Task Flow into WebCenter Portal Application", 3 different and possible ways).,
    Probably Yannick Blog post if you need to understand how to integrate Bounded Task Flows with WebCenter Portal's.
    Regards.

  • Business components based on Oracle views

    I am trying to create business component objects in a master-detail relationship based on Oracle views rather than on the underlying tables. The wizard does not create associations or links since the views have no foreign keys. I created the associations and links myself, but I am unable to add them to the data model. I am using the beta v5.0, but I had the same problem in v3.23. Can anyone help?
    Thanx in advance
    null

    Here are the steps I just tried with JDevi 9i Beta:
    [list]
    [*]SQLPLUS SCOTT/TIGER
    [*]CREATE VIEW DEPT_VIEW AS SELECT * FROM DEPT;
    [*]CREATE VIEW EMP_VIEW AS SELECT * FROM EMP
    [*]On my workspace: Right-mouse / New / Empty Project
    [*]On my new project: Right-mouse / New Business Components...
    [*]Next, to the connection panel
    [*]Set the connection, and next
    [*]Pick a package name and next
    [*]Tick the [x] Views checkbox, and select EMP_VIEW and DEPT_VIEW
    [*]Uncheck the "View Objects and View Links" box, since we don't want these created automatically.
    [*]Click (Finish)
    [*]In navigator, select my "DeptView" entity and edit it (the view is called "DeptViewView").
    [*]Click on the "Attributes" tab
    [*]Select "Rowid" in the attribute list
    [*]Click the (Remove) button
    [*]Select the "Attribute Settings" tab, and select the "Deptno" attribute.
    [*]Check the [x] Primary Key checkbox for "Deptno"
    [*]Click (Ok).
    [*]Repeat steps above on "EmpView" entity to remove Rowid attribute and make "Empno" attribute the primary key. (NOTE: Since views don't have constraints, we couldn't detect the primary key constraint, so we default the ROWID to be the primary key in the wizard).
    [*]In navigator, select my "DeptView" entity, and right-mouse / New Association...
    [*]Using the wizard I create a association based on the "Deptno" attribute, and with a 1 to many cardinality.
    [*]I right-mouse on "DeptView" entity and select New Default View Object... to create the "DeptViewView" view object.
    [*]I right-mouse on "EmpView" entity and select New Default View Object... to create the "EmpViewView" view object.
    [*]I right-mouse on the DeptViewView view object and select New View Link...
    [*]I create a new view link between DeptViewView and EmpViewView
    [*]On the "Source Attributes" panel, I select the "Dept2Emp" association I created above, and click the ">" to shuttle it to the selected list.
    [*]Click next and notice that by selecting the association, it automatically picked the right attributes for both sides for the view link automatically.
    [*]click next, then (Finish)
    [*]I right-mouse on my package and select New Application Module...
    [*]On the datamodel panel, I see a tree view of "Available View Objects like this:
    + Project 3
    |
    +---[-] Package3
    |
    +---[SQL] DeptViewView
    | |
    | +--[SQL] EmpViewView via MyViewLink
    |
    +---[SQL] EmpViewView[*]I select DeptViewView in the available list and click ">" to shuttle it to the selected list in my data model
    [*]In the SELECTED list, I select the DeptViewView that I just added, to make it the current view in the selected list.
    [*]Back in the available list, I select the "EmpViewView via MyViewLink" and shuttled it to the selected list as a detail of the current view in the selected list.
    [*]I click finish
    [*]I right-mouse on my AppModule and select "Test..." to build and test my appmodule.
    [*]I click (Connect) on the tester start page
    [*]In the tester, I right mouse on "MyViewLink" and select "Show".
    [list]
    After these steps, I see data correctly.
    null

  • SAP XI vs Oracle BPEL/ESB/SOA

    Hi,
    Wondering!  What would the percentage of implementations SAP XI vs Oracle BPEL/ESB/SOA for next couple of years.  I just wanna explore and know more about them..  How's XI doing in terms of new customers/implementations and what are all market trends and future jobs..  Also throw the light on Oracle side...
    I appreciate your opinions/facts/guess or whatever.
    Thanks in advance..
    Giri

    Hey
    i m not sure about the Oracle products but as far as SAP XI is concerned, its picking up in US.SAP is now recommending to use XI for all the integration instead of Point to point integration as was done earlier.more and more SAP customers are adopting XI and as the market for SAP grows , XI is bound to grow.
    just my suggestion
    Thanx
    Aamir suhail

  • Communication from the Oracle Mngt service host to the agent host failed

    Hi There,
    I have installed Oracle 10.2.0.1 Grid software on a Solaris Zone. I plan to upgrade it to 10.2.0.5 very soon but would like to test the agent connection from a remote server first. I installed agent version 10.2.0.5 on the remote server. When I log into the oracle grid GUI I can see the host called "localhost" (this is not the correct name. It should be the server name) and the database instances on that server. However, when I select the localhost and press the configure button I get the following message:
    Communication from the Oracle Mngt service host to the agent host failed. Refer to help for details localhost:cn=servername
    The system administrators changed the /etc/hosts file to make sure the server was listed first fully qualified. For example: servername.domain.com instead of servername. However, this did no make a difference.
    Could the issue be any of the following:
    - Oracle 10.2.0.1 GRID does not work with 10.2.0.5 agents ?
    - Oracle GRID in general don't work on SOLARIS Zones?
    Please help.
    Thanks.

    OMS - -> Agent communication is not upward compatible
    Downward, so Agent 10.2.0.1 --> OMS 10.2.0.5, should not be a problem.
    In the last case however, you would not have access to any 10.2.0.5 Agent features.
    So you can choose from 2 working options:
    1 - Install the 10.2.0.1 Agent
    2 - Upgrade your OMS to 10.2.0.5 (preferable)
    Regards
    Rob
    For more info, tips and tricks on OEM GC, check http://oemgc.wordpress.com

  • Communication from the Oracle Management Service.....

    Hi everybody,
    I've got a problem after installing agent on one my server hosting Solaris 9 and Oracle 9i.
    In my grid, my server is discovered but when I click on database which is up (icon key green), i tried to log on and I receive this error message :
    Io exception: The Network Adapter could not establish the connection
    Anyway, when I have a look on Management system, agent Tab, I cannot configure my monitored targets and I have a small message in red under my machines :
    Communication from the Oracle Management Service host to the Agent host failed. Refer to help for details. UnknownHostException sending request :: chsunnprod01: chsunnprod01
    Thanks in advance.
    David

    clear indication listener is not running on your box
    Does you agent is up and running and loading whole info to oms
    check your upload dir if any xml file are there Then try to manualy upload
    bu using command ./emctl upload

  • Increase load time to BPM Community

    All
    I developed a process using ALBPM 6.0 MP3 and deployed the project on to the ALUI portal. When I go to the BPM community, the page takes a while to load. I have increased the instance size to 2MB. Is there anything else that I should check?
    Any help would be appreciated. Thanks.

    All
    I developed a process using ALBPM 6.0 MP3 and deployed the project on to the ALUI portal. When I go to the BPM community, the page takes a while to load. I have increased the instance size to 2MB. Is there anything else that I should check?
    Any help would be appreciated. Thanks.

  • BPM Community Newsletter September 2013

    Dear SOA & BPM Partner Community member,
    Are you ready for Oracle Open World 2013? Make sure you book your SOA & BPM sessions, visit the demo points and hands on session. All details are posted in the SOA OOW agenda & BPM OOW agenda. Our OOW 2013 Community Reception is almost booked out, if you want to attend, register today.
    Did you miss the super successful OFM Summer Camps III? Thanks to the community for all the feedback & tweets #OFMSummercamp. We posted the SOA Governance and b2b & adapters training material at our SOA Community Workspace (SOA Community membership required).
    In addition to this we offer different middleware training roadshows for BPM & ADF & WebLogic across Europe make sure you sign-up for: ADF & ADF Mobile or BPM Suite or WebLogic Suite.
    Why is Specialization important for Oracle middleware customer? And how can you benefit as a partner from Specialization? As a Specialized partner you proofed your middleware skills and success, therefore we are very interested to duplicate this success. Make sure that you make use of our join marketing kits like the new Fast Data Executive Round Table event kit. As part of the sales process, as a Specialized partner, you can also use the Oracle demo system.
    We continue our Industrial SOA series with an article about Understanding Service Compensation. On the SOA side our product managed published a best practice deployment white paper and our partner C2B2 host a Performance & Scalability Webcast on September 19th. Within SOA cloud integration continues to raise, make sure you watch the cloud integration samples from Rajesh Raheja.
    Thanks to the community for the MDS, OSB JMS Deployments Utility, BAM Deep Dive and SOA Governance Resource articles and materials.
    In our BPM & ACRM section we continue to highlight the importance of process Process Accelerators to demo and jump start a BPM project. Thanks to Jan Zoggel for the blog posts about Force dehydration in BPM (do you remember from SOA?) and Debugging BPM. If you work on an BPM project, make sure you read these Oracle BPM 11g books. Let us know if you write one, feel free to add yours to our publications wiki!
    What is Adaptive Case Management (ACM)? Watch the webcast with Bruce Silver on-demand. Please feel free to let us know if you work on an ACM opportunity, we will make sure that you get product management support.
    All partners who work on Oracle Applications, make sure you participate in the AppAdvantage IT Leader Program. Fusion Middleware is the base for Oracle Fusion Applications – therefore it is key that you become trained in Fusion Middleware to customize, extend, integrate Oracle Applications.
    See you in San Francisco at our Community Reception.
    Jürgen Kress
    To read the newsletter please visit http://tinyurl.com/soaNewsSeptember2013 (OPN Account required)
    To become a member of the SOA Partner Community please register at http://www.oracle.com/goto/emea/soa (OPN account required) If you need support with your account please contact the Oracle Partner Business Center.
    Blog Twitter LinkedIn Facebook Wiki Mix Forum

    Changed some things up since my last screenshot share ages ago. Mainly the color but eh, when something works for you, why change it?
    KDE 4.11
    Empty Desktop View No, your eyes aren't deceiving you, the cashew is moved out of the way.
    kde-desktop-092013 by lord_mythus, on Flickr
    Fake Busy View
    kde-busy-092013 by lord_mythus, on Flickr
    Desktop Grid View
    kde-grid-092013 by lord_mythus, on Flickr

  • JSF Page Fragment based on Oracle Dynamic Tabs Shell Template

    Hi
    JDeveloper 11.1.1.6
    Can we create a JSF Page Fragment (jsff) based on an Oracle Dynamic Tabs Shell Template ?
    I tried to create this jsff page and added in a bounded taskflow.
    In the create jsff wizard, it will allow us to select the Oracle Dynamic Tabs Shell Template, but when trying to use this taskflow in the another page (jspx), it is giving the following exception.
    javax.faces.FacesException: javax.el.PropertyNotFoundException: Target Unreachable, 'tabContext' returned null
    at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:261)
    at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:222)
    Basically the reason why I am trying to do like this is that I have to simply drop the taskflow in a page as a region.
    The ViewController project code will only be created as an ADF Library Jar File and be used in other projects
    (it will not be deployed as a web application (war))
    More about the requirement:
    I have a BPM Application in which I have 2 ADF ViewController projects, one for only BPM Human Task related UI and another for only ADF functionality.
    I am writing a custom BPM Workspace kind of ADF Application and want the UI to be based on the Oracle Dynamic Tab Shell Template.
    ADF ViewController project is deployed only as a ADF Library Jar file.
    Another advantage I can have is I can test my ADF code within JDeveloper.
    (If I create a jspx page based Oracle Dynamic Tab Shell Template in the BPM Human Task Related UI project, I will not be able to run it in JDeveloper and test it.
    Otherwise I have to deploy to the SOA environment each time I make a change)
    Thanks for any help.
    Sameer

    Hi,
    the dynamic tab shell template can only be used with top level (JSPX) pages (in 12c also with Facelet pages). There is no configuration for templates that would make the JDeveloper IDE to not show the template of the selected page is a fragment.
    Frank

  • Error in BPM: "COMMUNICATION FAILURE" during JCo call. Error opening an RFC

    hello experts
    i am receiving the above error incase of BPM scenario where i am having a Transform step and synchronous RFC step.
    i referred to the few threads discussing such problems and was trying to find whether my mapping is correct and i tested my mappings using my payload which looks good.
    When looked into the Mapping trace of the BPM "Show container" i found error ""COMMUNICATION FAILURE" during JCo call. Error opening an RFC connection" and it seems that when BPM is attempting to call interface mapping it is throwing this error.
    Thanks in advance.
    Regards
    rajeev

    hi,
    I think no problen with the mapping part,
    jco connection requird when xi try to stablish the connection with the adapter .
    please look the link provided.
    Setup and test SAP Java Connector outbound connection
    please also check the following parameter at the exchange profile
    com.sap.aii.rwb.server.centralmonitoring.r3.ashost
    com.sap.aii.rwb.server.centralmonitoring.r3.client
    com.sap.aii.rwb.server.centralmonitoring.r3.sysnr
    com.sap.aii.rwb.server.centralmonitoring.httpport
    these parameter must be given properly.
    if every thing is ok than and problem still exist than try to restart the system.
    for us after restarting its worked fine.
    regards,
    navneet

  • BPM Web Based Process Modelling

    Hi Folks, I remember seeing a webminar or a video on SDN which demonstrated modifying of BPM projects from within Internet Explorer. I cannot seem to find it now. If anyone else seen it or can point me to the link or can tell me which version it is in I would really be great ful.
    Thanks

    Hi,
    I think you are talking about Gravity. You can find the demo here:
    http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/80e7b554-fcf5-2c10-2e97-f9eebad9c723
    However, you clarify the "value proposition". It is not intended to manipulate the NWDS projects through the web browser. The main use cse is to do process modeling in a collaborative way. There is no tight integration with the NWDS expect maybe a file based data exchange.
    Best regards,
    Stefan

Maybe you are looking for

  • Info about recover copy option

    Hello, my commands are based on a dataguard configuration, but I think my question is a general one. The manual describes a possible work flow like the one below about backup operations to be done every day (on physical standby): 1) RESYNC CATALOG FR

  • Displaying image dynamically

    Hi, i am getting data from backend sys its working fine. when eve we r give input like material number like 1, 2, ....... then then press button it shows data and IMAGE also here i have taken images 1.jpg, 2.jpg, .......... workspace - > mimes----->

  • Bamboo pad

    i have the bamboo pad i want to use on microsoft office 2011 but its not working i need to use it for adding note and highlight anything on the document i am working on but i can't find the inking option on the microsoft office 2011

  • File does not exists error

    I am using OAS 10g. Looking through HTTP_Server logs, I see the following error repeating very often. I am a Forms developer unfamiliar with Java. Do you have ideas about this error or any suggestions as to what steps I should take: [Fri Jun 19 17:06

  • Authorizations for formatted searches?

    Hello experts, I have created a simple formatted search so users select from the list the country of origin of a batch. Currently, they get an error message. Do you know which authorizations I should give them so they can use that formatted search qu