Parul
IndividualForum Replies Created
-
Parul
MemberAugust 29, 2018 at 12:41 pm in reply to: How can we insert records in custom object from standard objectHello 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
-
Parul
MemberAugust 29, 2018 at 12:38 pm in reply to: Can we select Person Account as parent for Business Account and create Account hierarchy ?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
MemberAugust 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 6 years, 2 months ago by Parul.
-
Parul
MemberAugust 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
MemberAugust 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.