Workflow :
Code:
ATTEMPT INSERT RECORD
|_HIT TRIGGER
|_AFTER INSERT PERFORM USER PROCEDURE
|_use (NEW.column) as inputs to procedure
However it occured to me (as i think the other post specified) you don't actually need to use a trigger just :
INSERT INTO <table> (col1,col2) VALUES(user_proc1(val1),val2);
Or something like the above.