Skip to main content
Question

Execute Event from Command - EVENT_SYS.EVENT_EXECUTE

  • October 16, 2024
  • 4 replies
  • 209 views

Forum|alt.badge.img+3
  • Do Gooder (Partner)
  • 6 replies

Hi,  

 I am trying to trigger a Custom Event from a Command Button in Cloud 22R2. 

I created a projection action and selected the method: 

EVENT_SYS.EVENT_EXECUTE


And in my page, I created a command button of type Execute Action,

and selected the projection action I created. 
In the Parameters, I entered my Event LU and Event ID. 
Which seems to work fine. The event is executed correctly. 

But how do I pass a parameter to the custom event? 
I can select attributes in the EVENT_DATA parameter, but I dont seem to be able to fetch that from the Custom Event. Lets say I select ‘WoNo’  into EVENT_DATA,   how do i  use that WoNo in my event action?

 

(This is cloud 22R2 so using a command button to execute a workflow is not possible)

 

Thank you!
Kalindu

 

 

4 replies

dsj
Superhero (Partner)
Forum|alt.badge.img+22
  • Superhero (Partner)
  • 837 replies
  • October 30, 2024

Hi @Kalindu 

Try following snippet for constructing the message to send to the event.

In this example, it adds value to NEW:WO_NO attribute. you can use it in the event action as &NEW:WO_NO.

For safeguard, I usually keep the event enabled without adding and Fire When actions.

  DECLARE
    msg_       VARCHAR2(32000);
  BEGIN
    msg_ := MESSAGE_SYS.Construct('EVENT_ID');
    MESSAGE_SYS.add_attribute(msg_,'NEW:WO_NO', wo_value);
    IF (EVENT_SYS.event_enabled('EventLU', 'EVENT_ID')) THEN      
      EVENT_SYS.event_execute('EventLU','EVENT_ID',msg_);
    END IF;
  END;

 

Hope it helps!

Damith


Forum|alt.badge.img+2
  • Do Gooder (Partner)
  • 7 replies
  • January 21, 2025

Hi ​@dsj 

Where do you add this message sending parameters to the event?

 

Thank you!

Krzysztof


Forum|alt.badge.img+2
  • Do Gooder (Customer)
  • 4 replies
  • March 19, 2025

Anyone find a solution to this? I am trying to pass parameters through the ExecuteAction to the custom event as well. I’ve yet to find anything online on how to do this from the page designer where the ExecuteAction is defined.

 

Right now I’m passing a value to the Event_Data_ parameter but, like the original poster said, it isn’t clear what the syntax is needed to assign it to the parameter(s) in the custom event.

 

If the custom event has the OLD:ORDER_NO field, how does one assign the correct data from the ExecuteAction to that field?


Forum|alt.badge.img+2
  • Do Gooder (Customer)
  • 4 replies
  • March 24, 2025

Kalindu, I seem to have found a solution. When creating the ExecuteAction, the Event_Data_ parameter can pass a value to an attribute on the called event with the following syntax:

$OLD:VALUE=${FIELD}

Where VALUE is the name of the attribute on the event, and FIELD is a value from the page you’re creating the ExecuteAction button on. Switch out OLD with NEW as necessary.

I am unsure how to pass more than one, haven’t had time to test it further.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings