Salesforce Deployment

Salesforce

How to just validate the package with Specific test classes using ANT tool in Salesforce?

How to just validate the package with Specific test classes using ANT tool in Salesforce?    build.xml:            <target name="validateSpecified">        <sf:deploy            username="${sf.username}"            password="${sf.password}"            serverurl="${sf.sandboxurl}"   ....

Salesforce

Sample package.xml to retrieve Translation for Custom App using Apache ANT Tool in Salesforce

pacakge.xml:    <types>         <members>*</members>         <name>Translations</name>     </types>    <types>        <members>LeadGen</members>        <name>CustomApplication</name>    </types> Using above, we can retrieve the Translation used for the Custom Application "LeadGen". Folder Name will be "translations". Translation will be ....

Salesforce

Deploy the in-app guidance in the Salesforce by creating the package XML

Metadata API entity is Prompt. package.xml:<?xml version="1.0" encoding="UTF-8"?><Package xmlns="http://soap.sforce.com/2006/04/metadata">    <types>        <members>*</members>        <name>Prompt</name>    </types>    <version>47.0</version></Package> For more info, check https://developer.salesforce.com/docs/atlas.en-us.222.0.api_meta.meta/api_meta/meta_prompt.htm