You need to sign in to do that
Don't have an account?
jeremy_r
Unable to delete trigger in production
I need to delete a trigger from production. Using the Eclipse plugin, the trigger is not listed as being available to delete. Any ideas why this is?
Message Edited by jeremy_r on 09-07-2007 06:30 PM
Hi, I've been trying to delete a trigger from production using Ant, but it shows me an error because it evaluates code again And to be sincer I don't understand the reason. Would you please tell me how did you do or what is necessary to achieve this?
I only use the comand: ant delete and in the build.xml file a have as part of the code, this:
<target name="delete">
<sf:compileAndTest username="${sf.username}" password="${sf.password}" server="${sf.serverurl}" apiversion="10.0">
<deleteClass>compileAndTest</deleteClass>
<deleteTrigger>OppMandatoryFields2_tgr</deleteTrigger>
</sf:compileAndTest>
</target>