Which business event is triggered when terminate employee?

Hi,
I need to know which business event is triggered when press terminate button in end employment form.
Edited by: 969359 on Mar 18, 2013 5:36 AM

It must be oracle.apps.per.api.person.delete_person or oracle.apps.per.api.person.update_person.
Please check.
FYI: Both of these events are disabled at the instance I was checking. So makes sure they are enabled before you test the events.
Regards,
Peddi
Edited by: Peddi on Mar 18, 2013 3:31 PM

Similar Messages

  • Business Event not triggering the SOA BPEL Process with OA Adapter

    Hello Gurus,
    I am working on Business event "oracle.apps.per.api.employee.create_employee" and the event is getting triggered when creating an employee from EBS.
    The message has come till WF_BPEL_QTAB(I could seeit) and in "READY" status.We have a SOA BPEL Process that is subscribed to the event "oracle.apps.per.api.employee.create_employee" using OA Adapter.
    The issue is that the SOA BPEL process is not getting triggered and it is not dequeing the message from WF_BPEL_Q.
    Please let me know if I have missed any steps on SOA BPEL side.
    Note: Agent Listener is up and running.
    Thanks,
    Sunil

    Ofcourse, I subscribed to the business event using BPEL. Ideally the instances should be created and I should be able to receive the standard payload.
    Yes the JNDIs are correct. We have other business events working in the same fashion and we are using same JNDI.

  • Is there any event that triggers when you switch between components?

    is there any event that triggers when you switch between components?
    like for example... when i switch between components, i need a function to fire everytime i switch...
    ive tried show, hide, and initialize... and none of them work...
    any ideas or help is greately appretiated!!

    Depends on what you are trying to do,
    you have mouseover and mouseout and mouseclick events which you can use on the component and write code to deal with what you want to happen when you change focus. You have keypress event which would allow you to monitor tabbing between components, remember that in most events the currentTarget and target values will give you the information you need to handle component interaction.
    so
    [Bindable] private var CurrentObject: Object; <-------  use this as a pointer to what ever object you are currently focused on or just to indicate things have changed
    addeventListener(MouseEvent.CLICK,myCompponentSwap);
    protected function myComponentSwap(e:event): void
        if (CurrentObject !=e.currentTarget && CurrentObject != null)
             do what you want becuase a component switch just happened
        CurrentObject = e.currentTarget;
    Hope this gets you started.
    David

  • What Event is Triggered When a Title Window is Shown?

    I am creating the Title Window Component once, and then
    showing it with PopUpManager.addPopUp, and hiding it with
    PopUpManager.removePopUp. I need to run some logic each time the
    PopUp is shown. However, I can't figure out what Event is triggered
    when the TitleWindow is "opened". The window is there, it's just
    not being displayed. This make me think that "show" would be
    triggered, but it is not. I also tried "add", but this threw a RTE.
    Any thoughts?
    Thanks.

    Since I couldn't find an Event to trigger, I am instead using
    an override of protected function commitProperties() to run my
    logic.

  • Which Business Event fires when candidate applies for a vacancy?

    Can somebody please confirm the workflow business event which fires when a candidate applies for a vacancy?
    Is there an easy way of finding this out or some doco which mentioned what events are called when?
    Thanks.

    Hi Shruti,
    Theoretically speaking you can edit the workflow process and achieve your objective (Using Workflow Builder) by designing what triggers to be fired once the AutoCreate Configuration Item completes.
    See if the following docs give you any hints:
    Oracle Order Management Using Oracle Workflow in Oracle Order Management
    AutoCreating Configuration Items and Final Assembly Orders (Oracle Bills of Material Help)
    AutoCreate Configuration Items (Oracle Bills of Material Help)
    Thanks &
    Best Regards,

  • BSEG.CREATED event not triggering when a document is posted in FB60

    Hi All,
    I have a requirement in which i need to post documents in FB60/FB65/FB01 tcode. But when i post the document in FB60 the event BSEG.CREATED is not triggering. I could not see any trace in SWEL. But when i park the document in FB60, FIPP.CREATED event is getting triggerd.
    Can anyone tell me why this BSEG.CREATED event is not triggering.
    Thanking you in advance,
    satheesh.

    Hi Viji,
    Thanks for your quick reply.
    We have maintained the required configurations in the system related to this. But still the event BSEG.CREATED is not triggering.
    for this the alternative solution is to implement the BTE '1030'. But our functional team is asking us to check whey standard business object BSEG.CREATED is not triggering when we post a document. So that particular reason we are not able to find out.
    Configuration maintained.
    1) Created a workflow variant and assigned it to particular company code(OBWA and OBWJ).
    2) Checked the 'Posting' release' and 'Release payments' checkboxes in the OBWA transaction.
    3) Event linkage for BSEG is active.(SWETYPV)
    Thanks,
    satheesh

  • 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)

  • APPS Adapter / Business Events not visible when BPEL uses non-apps user

    We have BPEL connection using custom oracle user, xx_b2b and when we use APPS adapter in BPEL, I can not see and use any business event.
    If anybody across same requirement, please share your experience.
    Appreciate help on this.
    Thanks,
    Sonartori

    Hi,
    I'm facing the same issue. Were you able to resolve it. Appreciate if you can let me know.
    Thanks
    -Prapoorna

  • Which windows event is triggered by secondary display device detection

    I want to schedule a windows task to run when a secondary output device (e.g., VGA monitor or HDMI A/V receiver is turned on or off)
    but I'm not sure which event should be used for this. I found something related to network cable plug/unplug here How
    to launch a command on network connection/disconnection? basically, the event is
    Log: Microsoft-Windows-NetworkProfile/Operational
    Source: NetworkProfile
    Event ID: 10000
    for connect and 10001 for disconnect
    but couldn't find anything for external audio/video devices. Any such event or events exist? If not,
    any other way to do this? Thanks

    Thanks for your reply.
    I have an LED monitor/TV connected to VGA port and an AV receiver connected to HDMI. The problem is that whenever there's video re-configuration (e.g., VGA cable connect, monitor turned on, AV receiver turned on or off, HDMI cable connect/disconnect) the
    monitor will try to automatically adjust the picture h-position and v-position and it always fails (picture is shifted few inches both horizontally and vertically) and I have to manually adjust h and v positions every time. The only exception that the monitor
    would auto adjust correctly is when the video re-configuration occur while the displayed picture is blank. The monitor is 1080p and windows is configured to send 1080p to external monitor. If I send 720p, the picture auto adjust works OK.
    I realize this could be a problem with the monitor, but on my older Windows XP, the display driver (Mobile Intel 4 Series Express Chipset Family) could be configured to adjust video signal low-level controls (h-sync, v-sync, timing, etc.) and I used those
    to set the right values for this monitor so that auto adjust always work for 1080p. However for Windows 8, the display driver (same laptop as used with XP) does not provide any of the low-level controls.
    My approach was to use the task scheduler to display a blank image when video re-configuration is detected and remove it few seconds afterwards, but I need the event triggered by this re-configuration process. Connecting the monitor using HDMI works OK for
    1080p but the picture doesn't look as sharp as with VGA besides if I do that, I can't connect the AV receiver.
    Thanks

  • Af:query - which client event is raised when selecting a saved search

    Hi Everyone,
    Is there a client event raised when selecting a different saved search in the af:query panel?
    I thought it would be propertyChange but that doesn't seem to work.
    Using JDev / ADF 11.1.2.1.0

    I can think of one way... Like Frank said, you could try hooking up a query operation listener in a backing bean and use QueryOperationEvent to get what you want.
    Then you could use the ExtendedRenderKitService to execute/inject javascript on the page.
    Would that work for you?Hi, thanks for sharing that.
    And I do appreciate that QueryOperationEvent would do the job in most cases, but there might be some cases where I would like to avoid a trip to the server if possible.
    Before considering workarounds I was trying to clarify the expected behaviour (i.e. +which of the client events if any, is intended to be raised when you switch a saved search?+)
    e.g. af:query raises the client event called 'query' (while on a server side managed bean you can listen for QueryEvent as mentioned earlier in the thread).
    [To quickly see the list of client events, you can add an af:clientListener under af:query and look at the available options]
    This 11.1.2 doc doesn't mention client events at all: http://docs.oracle.com/cd/E24382_01/apirefs.1112/e17491/tagdoc/af_query.html
    And the ADF client side architecture also doesn't list the specific events:
    http://docs.oracle.com/cd/E29049_01/web.1112/e16181/af_arch.htm#CBHJEJJG

  • How to find out which event is triggered in SDK

    Hi all
    From SDK, I am would like to know which event is triggered when the user select navigation menu Follow up -> Create Lead (screen 1).
    I am guessing, it calls LeadCreateWithRef outport event but I don't see any absl code?? (screen 2)
    When I try to switch from Display to Edit, I got error "Component which you are trying to edit comes from a lower layer. Please use Extensibility Explore to Edit" (screen 3)
    Also in Extensibility Explorer, I can't open the button details (can't even see it in the buttongroup).
    Any advice is welcomed.
    Thanks
    Anthony

    Hi Meghna
    Thanks for the info. I am trying to do reverse engineering, to understand how to existing UI screen is built, how and what events get called when button is pressed and which screen will be opened.
    For example, in Ticket screen, when I select Follow up then Create Lead:
    I cannot drill down to see the button and its properties??
    nb. Also there is no left right scroll bar to see the rest of button group. Is it a bug?? I am using Windows 8.1.
    And in outport setting, I don't see which action/event triggered? and what screen to show?
    Thanks again,
    Anthony

  • "Presave" Event triggered when the form is loaded.

    Dear all,
    I created an interactive form with an XML interface and I use it into a Web Dynpro ABAP.
    The version of my Adobe LiveCycle Designer is 8.0.
    My problem is that the "presave" event is triggered when the form is loaded.
    For example, if I place a field in the form and add the script " this.rawValue = "123"; " to the "presave" event of this field, the field will have the value "123" when I launch the Web Dynpro application.
    Then, if the user does not make any input and directly save the form, the "presave" event is not triggered.
    Does anyone know why I get such a behavior?

    Steeven, I was unable to test this scenario as Adobe Credentials are not installed in my system. But something similar from Java Script is referenced here in the below mentioned link.
    Please look if you find it useful:
    http://careerabap.blogspot.ca/2011/02/custom-dialog-box-message-while-saving.html
    Please reward if you find it useful.
    Regards,
    Nitin.

  • Unable to configure Oracle Applications Adapter to capture Business Event

    Hi All,
    I am new to SOA and BPEL so please bare that in mind when reading and responding to this post.
    I am attempting to trigger BPEL from an EBS business event as per the SOA gateway developers guide.
    I am working on EBIZ R12.1.2, 11g weblogic, Jdev 11g release 1
    Step 1. I have enabled the business event oracle.apps.per.api.employee.create_employee and created a subscription from the integration repository which I can see from the business events subscription window.
    Step 2. I have created a new SOA project in JDev with an empty composite and added a BPEL process and called it createOrsResource.
    Step 3. Following this I opened the BPEL process and added in an applications adapter and set this up to interact with the WSDL that I got from going through the adapter configuration wizard (i.e. selected the business event detailed above).
    I then tried to compile and got the following error:
    Error: Load of wsdl "createEmployeeEvent.wsdl with Message part element undefined in wsdl [file:/D:/jdev_home/mywork/IntegrationApplication/integrationExample/createEmployeeEvent.wsdl] part name = WF_EVENT_T     type = {http://xmlns.oracle.com/xdb/APPS/createEmployeeEvent}WF_EVENT_T" failed
    This is obviously something to do with the business event message type that materialized when I selected the business event in the Adapter Config Wizard.
    I went back into the Apps Adapter and checked the config, when I clicked next .. next .. next etc... through the wizard just before hit the schema definition page I got the following error:
    null file is either missing or is corrupt.
    This schema defines the stricture of wf event. Wizard would not be able
    to edit the service
    Also when I tried to add an assign activity using the WF_EVENT_T as an input to another variable I got the following WF_EVENT_T node in the left mapping window:
    Exception: Unable to parse schema APPS_WF_EVENT_T_createEmployeeEvent.xsd
    Can anyone point me in the right direction???
    Keith

    Tapas123 wrote:
    Hi Osama,
    Database is working perfectly fine in my machine. Please let me know the procedure to fix the client issue , if you know.
    Thanks.It is not - else you would not have posted this thread. Home version architecture differs significantly from Professional version and higher, especially in the area of User Access Control. It is tough enough to try and solve issues on certified/supported OS versions/hardware, let alone on uncertified/unsupported ones ;-)
    http://en.wikipedia.org/wiki/Windows_7_editions
    http://docs.oracle.com/cd/E11882_01/install.112/e24187/pre_install.htm#CIHIAGFG
    Pl use a supported OS version
    HTH
    Srini

  • Business Events related to AME Rules in iRecruitment

    Hello all,
    We have a Seeded AME rule and want to know which business event is firing that rule. Is it possible to find this out? The reason i want to know is we have a seeded rule called "Apply For Job - Manager Rule" which is related to iRecruitment. I want to know when this rule is fired. I tried so many ways to find out but couldn't.
    Thanks
    KK

    That means you want to know the condition on when this rule will be fired.
    So, search for the rule see if the Update icon is enabled. If enabled click on it there you can see the conditions.
    If update icon is not enabled, then on top you can see Conditions tab. Click on that.
    Conditions are based on the AME Attributes. There is one more attribute tab to see the definition of the tab.
    Regards,
    Peddi.

  • EBiz Business Events contain no event data

    Hi,
    I'm trying to use the Ebiz Business event feature to capture data in eBiz R12. Using the Integration Repository i have created subcritpion to business event oracle.apps.per.api.employee.create_employee. However when a new employee is created in eBiz the event is fired but the xml document doesnt contain any information regarding the newly created employee?
    Does anyone know why this might be happening? I have captured the output event below
    <?xml version="1.0" encoding="UTF-8" ?><WF_EVENT_T xmlns="http://xmlns.oracle.com/xdb/APPS/testEbizBusinessEvents">
    <PRIORITY xmlns="">50</PRIORITY>
    <SEND_DATE xmlns="">2011-04-04T16:55:22.000Z</SEND_DATE>
    <RECEIVE_DATE xmlns="">2011-04-04T16:56:33.000Z</RECEIVE_DATE>
    <CORRELATION_ID NULL="TRUE" xmlns=""/>
    <PARAMETER_LIST xmlns="">
    <PARAMETER_LIST_ITEM>
    <NAME>#CURRENT_PHASE</NAME>
    <VALUE>401</VALUE>
    </PARAMETER_LIST_ITEM>
    </PARAMETER_LIST>
    <EVENT_NAME xmlns="">oracle.apps.per.api.employee.create_employee</EVENT_NAME>
    <EVENT_KEY xmlns="">81</EVENT_KEY>
    <EVENT_DATA xmlns=""></EVENT_DATA>
    <FROM_AGENT xmlns="">
    <NAME>WF_BPEL_QAGENT</NAME>
    <SYSTEM>CPLDEV01.JL.CO.UK</SYSTEM>
    </FROM_AGENT>
    <TO_AGENT NULL="TRUE" xmlns=""/>
    <ERROR_SUBSCRIPTION xmlns="">9FC54C923BBD0238E043AC16518C0238</ERROR_SUBSCRIPTION>
    <ERROR_MESSAGE NULL="TRUE" xmlns=""/>
    <ERROR_STACK NULL="TRUE" xmlns=""/>
    </WF_EVENT_T>
    Regards,
    Adrian

    The event definition is set to Customization Level = Limit so i can only enable/disable the event. The Generate functions are blank and greyed out so can not be edited. I guess my question was that now i can see the event data in the <event data> tag in the .xml type form (see extract below) i was wondering whether there were any .xsd's that can be used to parse this payload data into a usable structure?
    <EVENT_DATA xmlns="">
    <employee>
    <hire_date>2011/04/07 00:00:00</hire_date>
    <business_group_id>81</business_group_id>
    <last_name>pbtest</last_name>
    <sex>M</sex>
    <person_type_id>1144</person_type_id>
    <per_comments></per_comments>
    <date_employee_data_verified></date_employee_data_verified>
    <date_of_birth>1967/02/03 00:00:00</date_of_birth>
    <email_address></email_address>
    <employee_number>81127669</employee_number>
    <expense_check_send_to_addres></expense_check_send_to_addres>
    <first_name>phil</first_name>
    <known_as></known_as>
    <marital_status></marital_status>
    <middle_names></middle_names>
    <nationality></nationality>
    <national_identifier>NM001122D</national_identifier>
    <previous_last_name></previous_last_name>
    <registered_disabled_flag></registered_disabled_flag>
    <title>MR.</title>
    <vendor_id></vendor_id>
    <work_telephone></work_telephone>
    <attribute_category></attribute_category>
    <attribute1></attribute1>
    <attribute2></attribute2>
    <attribute3></attribute3>
    <attribute4></attribute4>
    <attribute5></attribute5>
    <attribute6></attribute6>
    <attribute7></attribute7>
    <attribute8></attribute8>
    <attribute9></attribute9>
    <attribute10></attribute10>
    <attribute11></attribute11>
    <attribute12></attribute12>
    <attribute13></attribute13>
    <attribute14></attribute14>
    <attribute15></attribute15>
    <attribute16></attribute16>
    <attribute17></attribute17>
    <attribute18></attribute18>
    <attribute19></attribute19>
    <attribute20></attribute20>
    <attribute21></attribute21>
    <attribute22></attribute22>
    <attribute23></attribute23>
    <attribute24></attribute24>
    <attribute25></attribute25>
    <attribute26></attribute26>
    <attribute27></attribute27>
    <attribute28></attribute28>
    <attribute29></attribute29>
    <attribute30></attribute30>
    <per_information_category>GB</per_information_category>
    <per_information1></per_information1>
    <per_information2></per_information2>
    <per_information3></per_information3>
    <per_information4></per_information4>
    <per_information5></per_information5>
    <per_information6></per_information6>
    <per_information7></per_information7>
    <per_information8></per_information8>
    <per_information9></per_information9>
    <per_information10></per_information10>
    <per_information11></per_information11>
    <per_information12></per_information12>
    <per_information13></per_information13>
    <per_information14></per_information14>
    <per_information15></per_information15>
    <per_information16></per_information16>
    <per_information17></per_information17>
    <per_information18></per_information18>
    <per_information19></per_information19>
    <per_information20></per_information20>
    <per_information21></per_information21>
    <per_information22></per_information22>
    <per_information23></per_information23>
    <per_information24></per_information24>
    <per_information25></per_information25>
    <per_information26></per_information26>
    <per_information27></per_information27>
    <per_information28></per_information28>
    <per_information29></per_information29>
    <per_information30></per_information30>
    <date_of_death></date_of_death>
    <background_check_status>N</background_check_status>
    <background_date_check></background_date_check>
    <blood_type></blood_type>
    <correspondence_language></correspondence_language>
    <fast_path_employee></fast_path_employee>
    <fte_capacity></fte_capacity>
    <honors></honors>
    <internal_location></internal_location>
    <last_medical_test_by></last_medical_test_by>
    <last_medical_test_date></last_medical_test_date>
    <mailstop></mailstop>
    <office_number></office_number>
    <on_military_service>N</on_military_service>
    <pre_name_adjunct></pre_name_adjunct>
    <rehire_recommendation></rehire_recommendation>
    <projected_start_date></projected_start_date>
    <resume_exists>N</resume_exists>
    <resume_last_updated></resume_last_updated>
    <second_passport_exists>N</second_passport_exists>
    <student_status></student_status>
    <work_schedule></work_schedule>
    <suffix></suffix>
    <benefit_group_id></benefit_group_id>
    <receipt_of_death_cert_date></receipt_of_death_cert_date>
    <coord_ben_med_pln_no></coord_ben_med_pln_no>
    <coord_ben_no_cvg_flag>N</coord_ben_no_cvg_flag>
    <coord_ben_med_ext_er></coord_ben_med_ext_er>
    <coord_ben_med_pl_name></coord_ben_med_pl_name>
    <coord_ben_med_insr_crr_name></coord_ben_med_insr_crr_name>
    <coord_ben_med_insr_crr_ident></coord_ben_med_insr_crr_ident>
    <coord_ben_med_cvg_strt_dt></coord_ben_med_cvg_strt_dt>
    <coord_ben_med_cvg_end_dt></coord_ben_med_cvg_end_dt>
    <uses_tobacco_flag></uses_tobacco_flag>
    <dpdnt_adoption_date></dpdnt_adoption_date>
    <dpdnt_vlntry_svce_flag>N</dpdnt_vlntry_svce_flag>
    <original_date_of_hire>2011/04/07 00:00:00</original_date_of_hire>
    <adjusted_svc_date></adjusted_svc_date>
    <person_id>512670</person_id>
    <assignment_id></assignment_id>
    <per_object_version_number>2</per_object_version_number>
    <asg_object_version_number></asg_object_version_number>
    <per_effective_start_date>2011/04/07 00:00:00</per_effective_start_date>
    <per_effective_end_date>4712/12/31 00:00:00</per_effective_end_date>
    <full_name>pbtest, Mr phil</full_name>
    <per_comment_id></per_comment_id>
    <assignment_sequence></assignment_sequence>
    <assignment_number></assignment_number>
    <town_of_birth></town_of_birth>
    <region_of_birth></region_of_birth>
    <country_of_birth></country_of_birth>
    <global_person_id></global_person_id>
    <party_id></party_id>
    <name_combination_warning>FALSE</name_combination_warning>
    <assign_payroll_warning>FALSE</assign_payroll_warning>
    <orig_hire_warning>FALSE</orig_hire_warning>
    </employee>
    </EVENT_DATA>
    <FROM_AGENT xmlns="">
    <NAME>WF_BPEL_QAGENT</NAME>
    ....../>

Maybe you are looking for