Hi,
The easiest way will be to create mass actions from the menu System > Mass actions.
Before that you will have to create a plugin to add a trigger in the triggers list, like:
function onMassactionTableTriggersLoad(&$table,&$triggers,&$triggers_html,&$loadedData){
if($table->table == 'product')
$triggers['onBeforeProductCreate']=JText::_('BEFORE_A_PRODUCT_IS_CREATED');
}
Then create another function which can be called by url (joomla part), and in this function call the desired trigger.
It require good php knowledge.