Last Updated By Value

The Last Updated By column value in the Dispatch List defaults to the employee login value. This program provides the ability to display the employee resource who Clocked In, instead of the employee login.

Procedure: get_last_updated_by

function get_last_updated_by(p_wip_entity_id IN NUMBER,
p_organization_id IN NUMBER,
p_operation_seq_num IN NUMBER) return varchar2
is
begin

/* Enter values in the following code lines. This can be customized to return the employee name to display on the Dispatch List in the Last Updated By column. The column value will be the return value of this function. */

return NULL;
end get_last_updated_by;