Forum Replies Created

Page 53 of 53
  • Parul

    Member
    August 29, 2018 at 12:41 pm in reply to: How can we insert records in custom object from standard object

    Hello Chanchal,

    We can insert record using trigger.

    Refer this link as example: https://salesforce.stackexchange.com/questions/178606/insert-custom-objects-record-into-standard-object

    Thanks

    Parul

  • Hello Prachi,

    Person Account is used for B2C & Business Account is B2B model in Salesforce. In real life, headquarter or head office of business Account can never be person Account. Therefore we cannot choose Person Account as parent Account for Business Account. It will throw error –Parent Account may not be a person account.

    you refer this link for reference : https://www.jitendrazaa.com/blog/salesforce/salesforce-interview-questions-part-24-person-account/

    Thanks.

    Parul Singh

  • Parul

    Member
    August 29, 2018 at 12:37 pm in reply to: Can we create a field on Person Account directly in Salesforce?

    Hello Prachi,

    No we cannot create  a field on person account directly. We need to create a field on contact which will appear for Person Account as well. Fields created on Contact appear on Account with extension __pc

    you refer this link for reference : https://www.jitendrazaa.com/blog/salesforce/salesforce-interview-questions-part-24-person-account/

    Thanks.

    Parul Singh

    • This reply was modified 5 years, 8 months ago by  Parul.
  • Parul

    Member
    August 22, 2018 at 6:12 am in reply to: How to retrieve all custom objects from Ant Migration in Salesforce?

    Hello Anurag,

    To retrieve all custom object using Ant Migration Tool below code:

    <?xml version="1.0" encoding="UTF-8"?>
    <Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
    <members>*</members>
    <name>CustomObject</name>
    </types>
    <version>40.0</version>
    </Package>

    Thanks.

  • Parul

    Member
    August 18, 2018 at 5:17 am in reply to: What is the use of renderIf in Salesforce lightning component?

    Hello Anurag,

    aura:renderIf : If you expect to show the components for both the true and false states use renderif, and it would require a server round trip to instantiate the components that aren't initially rendered.

Page 53 of 53