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
Syed Aswan 5Syed Aswan 5 

What is the name tag of "RecordType" for extracting a record type through ANT ?

Best Answer chosen by Syed Aswan 5
REVNAREVNA
<types>
        <members>Lead.xxx</members>
        <members>Lead.uuu</members>
        <members>Lead.ooo</members>
        <name>RecordType</name>
    </types>

All Answers

REVNAREVNA
<types>
        <members>Lead.xxx</members>
        <members>Lead.uuu</members>
        <members>Lead.ooo</members>
        <name>RecordType</name>
    </types>
This was selected as the best answer
Amit Chaudhary 8Amit Chaudhary 8
Try below tag for same.

    <types>
        <members>Account.recordTypeName</members>
        <name>RecordType</name>
    </types>

 
Syed Aswan 5Syed Aswan 5
I tried with the same tags, but it is not extracting.
REVNAREVNA
You might be going wrong in building the build.xml and build.properties file.
Post the error if you are getting any errors...