PLM: Business Events Documentation

Hi,
I can't find proper documentation of the PLM Business Events. The PLM/PIM Implementation Guides provide only a list of event names but no further information on when these are raised and which parameters can be used when subscribing or writing custom code. Metalink Doc.ID 372814.1
('Using Business Events in PLM and PIM Data Librarian') covers EGO events only, not ENG events.
Could you please provide me with further documentation sources? Is there any central point of information dealing with seeded Business Events in eBS
in general? Is there any other way I can find out more about how a BE is defined (e.g. a database view providing it's parameters)?
Thanks & kind regards,
Roland

Some information is also available in the Workflow Guides at http://www.oracle.com/technology/documentation/applications.html
HTH
Srini

Similar Messages

  • Business Event not triggering the PLSQL procedure.. What to do?

    We need to call a plsql procedure when the GL Approval workflow has ended with approval. I thought i could do this by customizing the relevant business event.
    We are on EBS 12.1.3 with RDBMS : 11.2.0.3.0.
    I saw that the business event oracle.apps.gl.Journals.journal.approve was disabled currently. I enabled it and created a subscription for it. Subscription was a PLSQL procedure. Currently, for test purpose only thing it is doing is to insert a row into a table.
    Business Event Subscription settings:
    System: ORDEBS.SYSTEM.COM
    Triggering Event
    Source Type:Local
    Event Filter: oracle.apps.gl.Journals.journal.approve
    Execution Condition
    Phase: 100
    Status: Enabled
    Rule Data: Message
    Action Type:Custom
    On Error: Stop and Rollback
    Action
    PL/SQL Rule Function: XX_GL_APPROVE_BE_PKG.Get_Attributes
    Priority: Normal
    Documentation (Not sure what value to be given for these. I went with the below values.)
    Owner: Company Name
    Owner Tag: Custom Schema
    Using the below query i can see that the business event is getting called when the approval happens (One row added each time approval happened). But I cant see any rows in the table where it should insert a row. What could be going wrong? How can i verify that the procedure has been called?
    select * from WF_DEFERRED where corrid ='APPS:oracle.apps.gl.Journals.journal.approve'
    Procedure:
    CREATE OR REPLACE PACKAGE BODY APPS.XX_GL_APPROVE_BE_PKG
    AS
    PROCEDURE Get_Attributes
    IS
    BEGIN
    INSERT INTO xx.xx_test_table VALUES ('From BE');
    COMMIT;
    END Get_Attributes;
    END XX_GL_APPROVE_BE_PKG;

    Thanks Alejandro. Now this is working.
    Changes i made:
    1. Added the WFERROR workflow as a subscription to this event. So i could see that the function i am calling from the event did not have proper signature.
    2. Changed the function signature to have standard parameters like:
    CREATE OR REPLACE PACKAGE BODY XX_GL_APPROVE_BE_PKG
    AS
    function subscription(p_subscription_guid in raw,
    p_event in out nocopy wf_event_t) return varchar2 is
    l_result varchar2(20);
    begin
    insert into xxvtv.xxvtv_test_table values ('From BE');
    commit;
    exception
    when others then
    wf_core.context('XX_GL_APPROVE_BE_PKG','function subscription', p_event.getEventName(), p_event.getEventKey());
    wf_event.setErrorInfo(p_event, 'ERROR');
    return 'ERROR';
    end subscription;
    END XX_GL_APPROVE_BE_PKG;
    3. Changed the owner name and owner tag both to the custom schema name (XX)

  • LSO: Business Event Appraisal

    Hi,
    We have already implemented LSO.Now we are planning to configure Appraisal for a Business Event.
    Please do share any docs related to the configuration
    Thanks in advance.
    Regards,
    Deb

    Hi Deb,
    As you have completed implementing LSO, can you share some documentation & the process for the same?
    Really apprciate your time.
    rlshravan at gmail dot com
    SKR

  • Business Event System in Workflow

    Hi,
    I am having difficulties with the Business Event System (BES).
    Actually, I've read the Oracle documentation about BES. Still I don't understand much.
    There are little documentation about the BES, and I still get blank point.
    Here are my questions :
    1. What the Business Event System is?
    2. Some of documentations show that using the BES, the workflow can interact with
    different system.
    What does 'different system' mean?
    Does it mean to another computer (perhaps Client Server type)?
    Or to another system (like headquarter which has several branches) located in
    different location?
    Or to another database service in the same computer (perhaps ORCL and ORCL2)?
    Or with another database applications (i.e Microsoft SQL Server, MySQL)?
    3. How do we use the BES?
    How do we define BES?
    Where do we use the BES?
    Is it using PL/SQL?
    Or the BES itself is a PL/SQL which is inside a procedure or function or trigger (used
    to manipulate the database)?
    What does the BES look like? Is it a PL/SQL code, an e-mail, or ...?
    4. Some documentations said that using the Event (with Receive type) as a start node
    (in Workflow Builder), the process will wait and respon <u>until</u> a Business
    Event is detected?
    How do we interact with BES?
    How do we know what kind of BES to start the process?
    Do we use the Oracle Advanced Queuing?
    Is it using an e-mail to start the Event?
    5. There is a statement from the "Feature Overview Oracel9i Application Server : Oracle Workflow" (from Oracle site)
    "Business event messages from Oracle Workflow can be placed on or received from Oracle9i Advanced Queues, providing support for Oracle Net as well as HTTP and HTTPS communication protocols."
    and
    "The Business Event System uses Oracle Advanced Queuing to propagate messages between communication points on systems, called agents, using a specified protocol. Events received from external systems are processed by an agent listener that runs on the agent's queue."
    Actually what the Advanced Queuing is?
    Is it the mechanism of scheduling activites such as sending a message?
    Is it use to start the Workflow Background Engine periodically?
    What does the Events received from external system is? Is it an e-mail?
    If it is True, so the workflow process could be start using an e-mail?
    6. There is also a documentation stated that the Event can be raised using the PL/SQL WF_EVENT.Raise() API.
    The Event also could be launch using the Workflow Home Page (Workflow monitor) in Event link?
    So what does the BES is used for, if the Event could be launch using a PL/SQL?
    Is the process of raising the Event called BES?
    Such as a procedure to manipulate database tables that consist the WF_EVENT.Raise().
    What is Generate Function is?
    7. What Agent is?
    What Subscription is?
    What Event group is?
    8. Perhaps there is a guide book of using the Business Event System?
    Any light would be grateful.
    Many many thanks,
    Buntoro

    Hi
    I am in exactly the same position...
    Have queued up my events using wf_event and the subscription is putting them in WF_OUT ok.
    So, I guess that WF_OUT is a multisubscriber queue, so when we register with it in BPEL it asks for us to identify ourselves using the consumer and/or correlation ID.
    However, I'm with you in that I have no idea how to specify the consumer.
    There is a CORRID column in WF_OUT and I'm banking on that being the correlation ID at the moment....
    I'll let you know if I crack it!
    Chris

  • Any business event  is available in  OM   post creation of order

    Hi Every one,
    Once the order is booked, i would like to sync up this order into the 3rd party System. I was looking for the business events provided by oracle.
    Show/Change Sales Order - A business event (oracle.apps.ont.oi.show_so.create) can be raised to trigger generation of a SHOW SO or CHANGE SO XML message. The value of one of the event parameters determines which of the two messages will be generated. The SHOW SO message contains status information about an order and can be generated on demand or as a result of changes to an existing sales order. The CHANGE SO message is used to notify the buyer of changes to a sales order and can be raised as a result of status or attribute changes on a sales order.
    Can we use the above business event for my case. Please suggest.
    Thanks.

    You cannot use that as that event is specifically raised when you have used order import (OI) for the XML integration. If you are entering the order from the front end then you have two options:
    1. Have a node in header level workflow that raises the integration message the way you want it.
    2. Or use ASO order feedback concept. I like this one as this gives you what ever even you need to send to the third party systems. It has information about entire order (all tables information). I have some information in this link , but you can find lot more in documentation and support site.
    Thanks
    Nagamohan

  • Business Event for ACH forms in F110

    Hi,
    I need to trigger ACH form in a mail/ Fax/ Email depending on the vendor criteria. I have developed SAP script for it.
    Iam able to print the form but iam not sure how to trigger the form in FAX mode or Email mode.i.e. if the vendor is supposed to receive the communication in the form of FAX, the form should be sent to him has FAX and it should not trigger the form in other modes.
    I know that i need to use a business event but iam not sure how to use it and trigger it.
    Did anybody had the same situation before.
    Any help would be suitably rewarded with points.
    Regards.

    BTEs are like user exits. SAP calls the custom function modules assigned to the event in Tx:FIBF from application programs.
    For example Payment program RFFOUS_T calls the Z function module assigned to 2040 in FIBF using fm OPEN_FI_PERFORM_00002040_P.
    Check the documentation of the sample fm SAMPLE_PROCESS_00002040 for BTE 2040 in SE37, describes how to E-mail or fax.
    The following link is sap docu on BTEs
    <a href="http://help.sap.com/saphelp_erp2004/helpdata/en/e7/653737d2d211d29e430000e839cd96/frameset.htm">Business Transaction Events</a>
    Regards
    Sridhar

  • Business events in r12

    In r12.1.3 we have following business events when defining a concurrent program using Application developer or system administration responsibility
    1. Request Submitted
    2. Request on Hold
    3. Request Resumed
    4. Request Running
    5. Program Completed
    6. Post Processing Started
    7. Post Processing Ended
    8. Request Completed.Question:
    What is the significance of above business events and how can we use it? Is there a documentation outlining each one of above events in detail? Is there any working example?
    Please advise.
    Thanks,
    Darsh

    Question:
    What is the significance of above business events and how can we use it? Is there a documentation outlining each one of above events in detail? Is there any working example?
    Please advise.Please see these links.
    Oracle Workflow Business Event System Implementation in Oracle E-Business Suite
    http://www.oracle.com/pls/ebs121/ranked?word=Business+AND+event&partno=e12905
    Business Events In Oralce apps (R12)
    http://www.shareoracleapps.com/2010/05/business-events-in-oralce-apps-r12.html
    Thanks,
    Hussein

  • Issues With ADF-BC Business Events.

    Hi All,
    I was just trying out how ADF-BC business events works, so tried to create a small application based on scott.EMP table.
    In the EmpEO entity, created and published a new business event for employee creation.
    However, when I run the AM Tester to see how it works, I faced the 'Business Event Connection Configuration Invalid' error.
    The detailed log is as follows:
    [53] executeQueryForCollection ViewObject:EmpVO1, RowSet:EmpVO1
    [54] EmpVO1>#q computed SQLStmtBufLen: 204, actual=177, storing=207
    [55] SELECT EmpEO.EMPNO, EmpEO.ENAME, EmpEO.JOB, EmpEO.MGR, EmpEO.HIREDATE, EmpEO.SAL, EmpEO.COMM, EmpEO.DEPTNO FROM EMP EmpEO
    [56] ViewObject: [model.EmpVO]AppModule.EmpVO1 Created new QUERY statement
    [57] Bind params for ViewObject: [model.EmpVO]AppModule.EmpVO1
    [58] DBTransactionImpl.mDefaultSparseArrayThreshold is 20
    [59] **** refreshControl() for BindingContainer :AppModule_EmpVO1_0PageDef
    [60] *** DCDataControl.sync() called from :DCBindingContainer.refresh
    [61] **** refreshControl() for BindingContainer :AppModule_EmpVO1_0PageDef
    [62] *** DCDataControl.sync() called from :DCBindingContainer.refresh
    [63] INFO: No app def in BindingContext for: adfFacesContext
    [64] INFO: mDCRefMap lookup failed. Does the cpx have a dataControlUsages 'dc' entry? adfFacesContext
    [65] INFO: No app def in BindingContext for: adfFacesContext
    [66] INFO: mDCRefMap lookup failed. Does the cpx have a dataControlUsages 'dc' entry? adfFacesContext
    [67] DBG: beforeActionPerformed :javax_swing_JToolBara1_16
    [68] OracleSQLBuilder: SAVEPOINT 'BO_SP'
    [69] OracleSQLBuilder Executing, Lock 2 DML on: EMP (Insert)
    [70] INSERT buf EmpEO>#i SQLStmtBufLen: 210, actual=43
    [71] INSERT INTO EMP(EMPNO,ENAME) VALUES (:1,:2)
    [72] Insert binding param 1: 9116
    [73] Insert binding param 2: lk
    [74] Attempting to queue business event: model.EmpEO.EmpCreate
    [75] Successfully queued business event: EmpCreate
    [76] Attempting to raise business event: {http://model/events/edl/EmpEO}EmpCreate
    INFO: Looking for BusinessEventConnectionFactory
    INFO: Looking for EDN-DB JNDI configuration to create SAQRemoteBusinessEventConnectionFactory.
    *INFO: Unable to create SAQRemoteBusinessEventConnectionFactory: [jdbc/EDNSource or jdbc/EDNDataSource] undefined.*
    INFO: Looking for EDN-JMS JNDI configuration to create JMSRemoteBusinessEventConnectionFactory.
    *INFO: Unable to create JMSRemoteBusinessEventConnectionFactory: [java:comp/UserTransaction] undefined.*
    *INFO: Unable to create JMSRemoteBusinessEventConnectionFactory: [jms/fabric/EDNConnectionFactory] undefined.*
    INFO: Failed to get ConnectionFactory instance.
    [77] Batch Warning:Business Event Connection Configuration Invalid
    [78] * * * BindingContainer caching EXCEPTION:oracle.jbo.JboException
    [79] java.lang.NullPointerException
         at oracle.jbo.server.EventInvocation.raiseEvent(EventInvocation.java:513)
         at oracle.jbo.server.EntityImpl.raiseEvents(EntityImpl.java:7724)
         at oracle.jbo.server.EntityImpl.afterCommit(EntityImpl.java:7329)
         at oracle.jbo.server.DBTransactionImpl.doAfterCommit(DBTransactionImpl.java:2285)
         at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:2176)
         at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:2369)
         at oracle.adf.model.bc4j.DCJboDataControl.commitTransaction(DCJboDataControl.java:1608)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    [80] DCBindingContainer.reportException :oracle.jbo.JboException
    [81] oracle.jbo.JboException: Business Event Connection Configuration Invalid     
    at oracle.jbo.server.EventInvocation.raiseEvent(EventInvocation.java:521)
         at oracle.jbo.server.EntityImpl.raiseEvents(EntityImpl.java:7724)
         at oracle.jbo.server.EntityImpl.afterCommit(EntityImpl.java:7329)
         at oracle.jbo.server.DBTransactionImpl.doAfterCommit(DBTransactionImpl.java:2285)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: java.lang.NullPointerException
         at oracle.jbo.server.EventInvocation.raiseEvent(EventInvocation.java:513)
         ... 40 more
    ## Detail 0 ##
    java.lang.NullPointerException
         at oracle.jbo.server.EventInvocation.raiseEvent(EventInvocation.java:513)
         at oracle.jbo.server.EntityImpl.raiseEvents(EntityImpl.java:7724)
         at oracle.jbo.server.EntityImpl.afterCommit(EntityImpl.java:7329)
         at oracle.jbo.server.DBTransactionImpl.doAfterCommit(DBTransactionImpl.java:2285)
         at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:2176)
         at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:2369)
         at oracle.adf.model.bc4j.DCJboDataControl.commitTransaction(DCJboDataControl.java:1608)
         at oracle.adf.model.binding.DCDataControl.callCommitTransaction(DCDataControl.java:1416)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    And when I tried to create a new employee from a JSF page, I get the following error:
    Target URL -- http://127.0.0.1:7101/BusinessEventsApplication-ViewController-context-root/faces/CreateEmployee.jspx
    <Utils> <buildFacesMessage> ADF: Adding the following JSF error message: oracle/fabric/blocks/event/BusinessEventConnectionFactory
    java.lang.NoClassDefFoundError: oracle/fabric/blocks/event/BusinessEventConnectionFactory
         at oracle.jbo.server.EventInvocation.raiseEvent(EventInvocation.java:513)
         at oracle.jbo.server.EntityImpl.raiseEvents(EntityImpl.java:7724)
         at oracle.jbo.server.EntityImpl.afterCommit(EntityImpl.java:7329)
         at oracle.jbo.server.DBTransactionImpl.doAfterCommit(DBTransactionImpl.java:2285)
         at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:2176)
         at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:2369)
         at oracle.adf.model.bc4j.DCJboDataControl.commitTransaction(DCJboDataControl.java:1608)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.ClassNotFoundException: oracle.fabric.blocks.event.BusinessEventConnectionFactory
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:179)
         ... 65 more
    Could you please tell me what I am missing, as I cant find any documentation which says anything about these errors. I tried added 'SOA Runtime' library to both model and UI project but still it did not work out.

    This is the configuration of the global data source I created earlier when BE worked:
    EDNSource
    JNDI Name: jdbc/EDNSource
    URL: jdbc:oracle:thin:@localhost:1521:orcl
    Driver Class Name: oracle.jdbc.xa.client.OracleXADataSource
    user= DEV_SOAINFRA
    EDNDataSource
    JNDI Name: jdbc/EDNDataSource
    URL: jdbc:oracle:thin:@localhost:1521:orcl
    Driver Class Name: oracle.jdbc.xa.client.OracleXADataSource
    user= DEV_SOAINFRA
    So now to test local data sources, I deleted the above to data sources and created the following data source (non-XA) having configuration listed below:
    EDNSource
    JNDI Name: jdbc/EDNSource
    URL: jdbc:oracle:thin:@localhost:1521:orcl
    Driver Class Name: oracle.jdbc.OracleDriver
    user= DEV_SOAINFRA
    This is what happens when I raise the business event with EDNSource data source using non-XA data source with class 'oracle.jdbc.OracleDriver'
    Target URL -- http://127.0.0.1:7101/BusinessEventsApplication-ViewController-context-root/faces/CreateEmployee.jspx
    <JmsBusinessEventBusMessages> <warnUsingOldDatasoureNames> Couldn't find the required datasources, but found them via the old names. Please update your datasource configurations.
    <JmsBusinessEventBusMessages> <warnUsingGlobalDatasourecForLocal> Local Tx Datasource not found, using XA datasource. Please update your configuration.
    Looks like ENDSource is old name of the driver and the new name is EDNDataSource, so created a new data source with name EDNDataSource (after deleting previous data source EDNSource) with the following configuration:
    EDNDataSource
    JNDI Name: jdbc/EDNDataSource
    URL: jdbc:oracle:thin:@localhost:1521:orcl
    Driver Class Name: oracle.jdbc.OracleDriver
    user= DEV_SOAINFRA
    Target URL -- http://127.0.0.1:7101/BusinessEventsApplication-ViewController-context-root/faces/CreateEmployee.jspx
    <JmsBusinessEventBusMessages> <warnUsingGlobalDatasourecForLocal> Local Tx Datasource not found, using XA datasource. Please update your configuration.
    The warning still comes. Luckily, its just a warning and not an error. ;)

  • Empty iViews in PLM Business Packages (Enter Asset, Enter Project etc)

    Hi All,
    We are implementing SAP PLM Business Packages 50.3.1 in SAP EP 6.0 SP16 with a SAP 4.7 backend. 
    We have noticed that certain iViews do not seem to work correctly - they display no entry fields at all.  For instance, in the Assets Business Package, the Asset Details Page contains a Choose Asset iView in which you can choose either Functional Location or Equipment.  When choosing either of these, the Enter Asset iView should refresh and display the appropriate entry field.  ie. either 'Enter Functional Location' or 'Enter Equipment'.  Instead, it displays absolutely nothing (ie. the Enter Asset iView remains blank).  This problem also occurs for projects in the Projects business package.
    Has anybody seen and resolved this behaviour for the PLM business packages?
    Any useful thoughts or suggestions will be greatly appreciated and rewarded.
    Regards
    John Moy

    Hi All,
    Thanks for the responses.  Thanks to your input, I have solved the problem.  Basically, we are working on copied versions of the pages and iViews (ie. copied into our custom folder in PCD).  Our users do not have access to the original SAP iViews.
    I noticed (after reading the documentation page 116 which you referenced), that for our copy of the component loader, the parameter Java_IView_Directory was still pointing to the standard SAP location, which our users have no access to.  This explains why the iViews are blank.  When I amend this parameter to point to our custom location, everything works!
    Thanks again for your input.  Points awarded.
    Regards
    John Moy

  • Business Event Management (BEM)

    Dear friends,
       I have got the requirement from the client that,
    If any New Plant or new production line within a plant or new chart accounts is being introduced in your company, how we need to initiate these new activities?
    What is BEM? Is it a documentation process?
    How BEM concept helps us to moniter these new activities?
    Regards
    Senthil

    Dear Senthil,
    You can create a process in which if a user raises a request to create a new plant/chart of account etc. The alert would be forwarded to the concerning person. After the approval to the master data management department so that they could create the same.
    You would have to develop these on your own with workflows. It is currently available for Purchase Requisitions, Purchase Orders, Leave Approval, Travel Expense Approval etc. Where the request would be forwarded to corresponding person for the approval.
    With SAP NetWeaver, IT organizations can enable an event-driven architecture. Business events propagate from a multitude of systems to the appropriate decision makers in the context of the relevant business processes and are optimally resolved.
    Business events can directly trigger an alert in the event resolution dashboard. The business events may occur within a SAP Business Suite application or be triggered by the business intelligence functions of SAP NetWeaver.
    Hope this will help.
    Regards,
    Naveen.

  • Error during Oracle Workflow installation to upload Business Events data

    My problems is :
    - I have installed correctly "Oracle workflow server 2.6.2" on Windows 2000;
    - when I try to "upload Business Event System seed data" the system display this message :
    ORA-20002 : 3819 File could not be opened or operated on as requested
    ORA-06512 : at "OWF_MGR.WF_CORE", line 280
    ORA-06512 : at "OWF_MGR.WF_EVENT_SYNCHRONIZE_PKG", line 357
    ORA-06512 : at line 8
    I have a machine configuration in this way :
    machine A : oracle database 9i
    machine B : application server 9iAS + Oracle Workflow server 2.6.2
    Thank you in advice
    Mohammed Amin

    Hi Mohamed
    In Workflow 2.6.2, you can load BES seed data using the wfxload command line utility. It is documented in the Workflow Guide.
    Cheers
    Mark

  • HELPL ! BPEL reading business events (WF_DEFERRED queue) problem

    Hi all,
    I'm actually trying to catch a CDH (TCA) business event using the Bpel Oracle applications adapter. The problem is that there is no visible bpel instance in the console, but in other hand i can see events being raised by CDH in WF_DEFERRED queue (messages). The event that my bpel service is listenning to is "oracle.apps.ar.hz.Person.create". The WF_DEFERRED agent statuts is "Enabled" in workflow administrator console. I'm using Jdeveloper 10.1.3.3 and EBS R12. So, did i forget any steps ? Where can i find detailed documentation about this subject ? Any help would be apreciated. Thank you,
    Edmundo
    I'm using Jdeveloper 10.1.3.3 and E-Business suite R12.

    Yes. It's running. I checked it out in the Oracle Workflow Adminstrator console. It says status: Enabled. Thank you again for any help.

  • Business Events

    Hi,
    In R12, I could fine some seeded shipping related business events like 'oracle.apps.wsh.delivery.gen.shipconfirmed', 'oracle.apps.wsh.stop.gen.closed'. For testing purpose I am raising this event manually using 'Tesing Business Event'. It is showing that the event has been raised. But I like to know what action it has performed (like in which AQ, it has enqueued the data). I have checked in WF_DEFERRED, other AQ tables, but none of it is getting enqueued.
    Please let mw know where to sse the data.
    Primary requirement:
    According to the documentation, the above 2 events will get fired during the Shipconfirm process. So we have to identify what this event is doing. I believe somewhere Delivery ID is getting stored by this event. We need this information, as we have to build a outbound ship confirm interface on this.
    Thanks,
    Gowri.

    Additionally, take a look at the event subscriptions for the given event names. Are there any? if so what do they do?
    posting the question in WSH forum might also help.
    hth

  • Notification Business Events

    Hi,
    I remember reading in the documentation that the Business Event System has a set of pre-defined events that correspond to Notification events like send, respond, cancel etc.
    (Unfortunately I am not able to locate the exact document in which I had seen this listing).
    The problem is that I am not able to find any notification related events in the business event list of my workflow installation.
    I have installed WF 2.6.2 from ias902int(egration)cd into a 9.0.1.3.0 infrastructure db.
    Notification Business Events would have been an extremely useful feature to have...Could anyone please tell me why I am not able to find these events? Am I doing something wrong or do they not exist in this version?
    TIA,
    regards,
    Libin

    Hi Raja,
    Thank you for your response. I was able to find the listing in the workflow guide.
    But I am not able to find these events in my installation.
    I have used wfver.sql to double check that the version is indeed 2.6.2. There were no errors raised during installation and so far the schema appears to be fully functional.It is just that these particular events are missing.
    Would you know how I could get these events inside the installation(any patch/upgrade etc)?
    thanks and regards,
    Libin
    =============
    This is a listing of events already present:
    oracle.apps.wf.event.agent.create
    oracle.apps.wf.event.agent.delete
    oracle.apps.wf.event.agent.update
    oracle.apps.wf.event.all.sync
    oracle.apps.wf.event.any
    oracle.apps.wf.event.event.create
    oracle.apps.wf.event.event.delete
    oracle.apps.wf.event.event.update
    oracle.apps.wf.event.group.all
    oracle.apps.wf.event.group.create
    oracle.apps.wf.event.group.delete
    oracle.apps.wf.event.group.update
    oracle.apps.wf.event.subscription.create
    oracle.apps.wf.event.subscription.delete
    oracle.apps.wf.event.subscription.update
    oracle.apps.wf.event.system.create
    oracle.apps.wf.event.system.delete
    oracle.apps.wf.event.system.signup
    oracle.apps.wf.event.system.update
    oracle.apps.wf.event.test.ack
    oracle.apps.wf.event.test.ping
    oracle.apps.wf.event.unexpected
    oracle.apps.wf.event.wf.ack
    oracle.apps.wf.event.wf.send
    demo.oracle.wf.b2b.po.ack
    demo.oracle.wf.b2b.po.asn
    demo.oracle.wf.b2b.po.create
    demo.oracle.wf.b2b.po.invoice
    oracle.apps.wf.public.user.change
    oracle.apps.wf.app.user.change
    oracle.apps.fnd.user.created
    oracle.apps.fnd.security.user.assignment.change
    oracle.apps.wf.callback.delay

  • Item Relationship business events

    Hi All,
    Is there any business event which will trigger when item relationship is added or changed using Inventory item relationship form (INVISDRI)?
    Thanks in advance
    Rak

    Rak,
    I don't think there is one (even in R12). But depending on where you are coming from (Spares Management or Pure Engineering perspective), you may find something in those applications. Even clean item master import where you are creating Item relationships as part of the item import, you can use item create business event (checking the rows existance in the interface tables and base tables) and use that event.
    Also I am aware as part of the AIA effort to integrate the Agile PLM and EBS Item master, there are quite a few planned and I am sure this could be one of those. I saw a open world presentation where this is was one of those "Should Have" and not "Must Have" features.
    Sorry for the long answer, but the answer as I found now, is now.
    Thanks
    Nagamohan

Maybe you are looking for

  • How do I record AND monitor at the same time?

    I'm having trouble while trying to record from my XLR connected microphone. I have the mic going through a USB preamp and my speakers are outputting directly through my Power Mac. I cannot seem to be able to record at the same time I monitor. I can't

  • Backup management: how to update a Time Machine backup on a different Mac?

    Hello everyone, I need some advice. I have a question, which I think is simple, but my situation is a bit complicated, so I am not sure about what to do. I will try to describe it as simply as possible. There are 3 macs: A: an old macbook (the white

  • DVI out port output @ 1920x1080?

    I have a 15" macbook pro (2nd gen i believe, it has the full aluminum casing and touchpad supports gestures). I was wondering if the DVI Out supports up to 1920x1080 resolution (without any scaling, ect.)? I was looking to buy a 1920x1080 native LCD

  • How to use some math functions?

    Hey everyone, In this days i building a calculator and i need to use so Trigo functions, how can i use them? have some table with all the math library functions? Thanks so much for the helpers!!

  • ISync v3.0.2 released as part of Mac OS X 10.5.3 Update

    In the *Mac OS X 10.5.3* Update released today, iSync has been updated from v3.0 (568.0) to v3.0.2 (574.0). No support for any new devices has been added. It's now 7 months since Apple last added any new devices to iSync. There are no obvious changes