And why didn't you write it in the first question?
You should already have the solution ready.
This is how we write codes for you here and nothing like that.
In my example, you are clearly shown how to solve it.
If you don't know how to create a module, or you don't know the basics of PHP, please enter a request in the JOB section.
It's a 30 minute job for a programmer to create a module.
Your table: ps_my_table_name
public function hookActionObjectProductUpdateAfter($object) { $idProduct = $object['object']->id; $idEmployee = $this->context->employee->id; if ($idEmployee && $idProduct){ $employee = new Employee((int)$idEmployee); $getEmployeeName = $employee->firstname.' '.$employee->lasname; Db::getInstance()->insert('my_table_name', array('id_product' => (int)$idProduct, 'id_employee' => $idEmployee, 'employee_name' => pSQL($getEmployeeName), 'date_upd' => pSQL(date('Y-m-d H:i:s'))); } }