function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
goosegoose 

Setting packed triggers to active in a production environment

Hi,
 
I created a couple of very simple triggers on my development account - but not using eclipse, just the standard web interface tools. They successfully past testing and I uploaded the related package to the production system.
 
However, in the production system they are marked as inactive and cannot be edited. I read in the boards this is normal but I can't see how to set them active without starting to use eclipse. Is there a simpler way to do this?
 
Thanks
Vijay RautVijay Raut
You can accomplish this using Trigger MetaData files and deploy them using ANT Tool. Before deploying make sure that you have following line into each trigger Metadata file.

<status>Active</status>

Hope this will help.

Thanks,
V.R.