Can anyone help us, we are on site, and have a trigger that inserts data into the opportunities form when an Estimate is entered. Simple on site, but we have one location in the cloud, can this be accomplished in the cloud??
sorry to ask again, but when i use the Update collection and pass the conum to the opportunity it pushes the 'N' along with the conum which cause it to blow out. SO i tried to pass the cust_num and it did the same thing, is there something i am not doing correctly or is the behavior of the events?
GOT it was using FP instead of P once i changed it all is well
Yes. Well; possibly. You would accomplish this with the AES (Application Event System). You would trigger on an IdoInsert into the Estimates IDO.Just for an additional quick reference:-AES replaces database triggers-Mongoose reports replaces SSRS-IDO Custom Assemblies replace Stored ProceduresThese aren't hard rules but a decent guide for 95-99% of the time. For example, I had an instance where the way the insert was being done, it wasn't an IDO being triggered so I had to seriously try to rework my code.
As Stephen suggests the Event System will handle this. Set up an IdoOnOnItemInsert event handler with an Update Collection event action. Update Collection can be used to Insert,Update or Delete data in the chosen target.
Right on, i figured that but I have not created a update/insert with the event system. I assume this will be it. THANK YOU BOTH VERY MUCH!!!!!!!!