Retrieve Approval Processes using package.xml Post author:Swapnil Jaiswal Post published:November 11, 2024 Post category:Blog / Salesforce Post comments:0 Comments Find how to retrieve Approval Processes using manifest/package.xml Summery: Retrieve Single Approval ProcessRetrieve Multiple Approval ProcessesRetrieve All Approval ProcessesFetch Approval Processes using SFDX command Retrieve Single Approval Process <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <name>ApprovalProcess</name> <members>Account.Approve_30_Discount</members> </types> <version>62.0</version> </Package> Retrieve Multiple Approval Processes <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <name>ApprovalProcess</name> <members>Account.Approve_30_Discount</members> <members>Case.Close_Case</members> </types> <version>62.0</version> </Package> Retrieve All Approval Processes <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <name>ApprovalProcess</name> <members>*</members> </types> <version>62.0</version> </Package> Looking for Job Change? Find company wise Salesforce Interview Questions Here: TCS Salesforce Deloitte KPMG L & T Infosys Lirik Capgemini TechAim Bajaj Finance EY Logixal Hexaware Tech Workday Apisero You Might Also Like How to get all picklist types fields with available options for each field in LWC using APEX ? March 26, 2022 How to use intl-tel-input JavaScript plugin in lwc component salesforce. February 5, 2022 LWC Project: Update Parent Records from Child Page. October 25, 2024 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.
How to get all picklist types fields with available options for each field in LWC using APEX ? March 26, 2022