I am trying to register a database trigger on project accounting but could not succeed. I tried to register some other trigger also but failed. But i can find Project Accounting in my dynamics.set.I am putting the code here.Any help would be appreciated.
local integer result;
{Register the database trigger that runs when deleting the applicant record.}
result = Trigger_RegisterDatabaseByName(258, "PA_Budget_MSTR", "", TRIGGER_ON_DB_DELETE, script PA_PriceDelete);
if result <> SY_NOERR then
warning "Database trigger 3 registration failed.";
end if;
*This post is locked for comments