In this step you change the #avFrameworkManager.uWAMEvent_1 eventroutine in the Employee Details command handler to signal that employee details have changed.

  1. Locate and open the Employee Details command handler iiiCOM06.
  2. Display the Source tab.
  3. Locate the #avFrameworkManager.uWAMEvent_1 eventroutine.  Add the following code before the Endroutine statement:
    Invoke #ThisHandler.avSignalEvent WithId(EMPLOYEE_CHANGED) SendAInfo1(#EMPNO) to(BUSINESSOBJECT) 

    Your code will look like this:



    You use the avSignalEvent method when there is an event you would like other components within the Framework to be notified about: 

  4. Compile the command handler and check it into the server.
  5. Close the command handler.