Salesforce Certified Platform App Builder - Transition Exam (WI16) 1 of 20. Users would like to be able to enter multiple paragraphs of notes on a custom object. Which field type will allow them to do so? Choose 2 answers Ans: Text Area (Rich) Text Area (Long) 2 of 20. Universal Containers introduces a custom object called Service, which has a lookup to Account. Field operators need to 20. enter Service using th Salesforcel mobile app. Operators create new Service records when viewing Accounts, so the Account name needs to automatically display the current Account. How can this be accomplished? A. Create an action in the Account object and add it to the Service page layout. B. Create an action in the Service object and add it to the Account page layout. C. Create an action in the Account object and add it to the Account page layout. D. Create an action in the Service object and add it to the Service page layout. C 3 of 20. When changing a field...
Popular posts from this blog
Salesforce Certified Administrator – Spring ’17 Release Exam 1 of 5. Which two features best describe the enhanced Contact search functionality? Choose 2 answers A. Enter the last name and the Account name, and Contacts that match the search terms are returned. B. Enter the Account name, and the first and last names of all related Contacts are returned. C. Enter the first name and the Account name, and Contacts that match the search terms are returned. D. Enter address, the Account name, and Contacts that match the search terms are returned. A, C 2 of 5. Which two Chatter Stream functionalities are available in Lightning Experience? Choose 2 answers A. Create up to 5 Chatter Streams in Lightning or Classic. B. Create up to 5 Chatter Streams in Lightning. C. Create up to 25 entities per Chatter Stream. D. Create up to 25 Chatter Streams in Lightning. B, C 3 of 5. Universal Containers uses web-to-lead. How can an Administrator help sales representatives focus on legiti...
External Id plays very important role if you want to update records without knowing the record Ids or want to relate the child record with parent record without knowing the parent record Id. As a best practice, you should always make External Id unique. If you are performing upsert with External Id, then following situations will occur: If no record is found in table with provided External Id, then it will create record in table. If 1 record is found in table with provided External Id, then it will update record in table. If more than 1 records is found in table with provided External Id, then system will throw an error. I am going to cover 2 different aspect of using external Id in apex. Updating a record with External Id Create a External Id field on Account as Account_Unique_Number__c and mark it as External Id and unique while creating it.Now we will create a new record using upsert. Execute below command in developer console List<Account> acclist=new list...
Comments
Post a Comment