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
Taha HaiderTaha Haider 

Getting this issue can SOMEONE HELP ME PLEASE see the details

I created one custom field in accounts and tranfer it from one org to another org.
FLS and Profile transfer successfully BUT it did not showed on my accounts form,I have to put this field manually from pagelayouts after that it will be showing in accounts form.


In package.xml file

<types>
<members>*</members>
<name>CustomField</name>
</types>
<types>
<members>Account</members>
<name>CustomObject</name>
</types>
<types>
<members>Admin</members>
<name>Profile</name>
</types>

 
ShirishaShirisha (Salesforce Developers) 
Hi,

Greetings!

The API name for the System administrator is correct and I would suggest you to check the .xml file for the profile and double check,if it has the access data related to the field or not.

Please mark it as best answer if it helps you to fix the issue.

Thank you!

Regards,
Shirisha Pathuri
Maharajan CMaharajan C
HI Taha,

You can retrieve that specific pagelayout also for deployment: 
 
<types>
    <members>ObjectName.PagelayoutName</members>
    <name>Layout</name>
</types>

Ex : 
<types>
    <members>Account.AccountLayout</members>
    <name>Layout</name>
</types>

https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_layouts.htm
https://salesforce.stackexchange.com/questions/241475/how-to-add-any-specific-objects-page-layout-in-package-xml

Thanks,
Maharajan.C