• Kanav Techfinery
  • NEWBIE
  • 80 Points
  • Member since 2020

  • Chatter
    Feed
  • 3
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 17
    Replies
Hi all,
I am blocked to pass the process builder challenge. I tried all possible solutions provided on community forum but still the same.
I tried with correct order,billing adress,OR/AND condition.
I have also started from scratch for 3 times, Cloned and deactivated.

Match Billing Address is also unchecked.

https://trailhead.salesforce.com/content/learn/projects/quickstart-process-builder/quickstart-process-builder4 (https://trailhead.salesforce.com/content/learn/projects/quickstart-process-builder/quickstart-process-builder4" style="color:blue; text-decoration:underline)
An update to an account record failed to update the mailing address fields of all child contact records. Make sure that the process is correct and that it is activated.
User-added image
Hi

I have a requirement that when a child account is saved a validation rule needs to check against a filed on the top level account. 

I can do this via a trigger because I can select the clients then recursively loop up to the top client. However I was looking at doing in a flow and wondered how you can raise an error out of the flow to show stop the process and show to the user there is a rule that has been hit?

I read somewhere that auto launched flow should be able to complete with no issue. So my question is really what is the recommended approach to dealing with complex business rules that can not be done using validation rules.

Thanks
Hi I am new to triggers and I would like to know how to throw normal errors under a field or on the top of the page.
Also please provide with a sample example with explanation.
Hi there,
We are looking to create tiered pricing without using a full-blown CPQ solution.
We sell equipment models with different speeds. When a different speed is entered, we want the pricing to autofill.

Note: We don’t want to create separate products to accommodate this because there would be way too many products (speeds range from 3 to 10,000).
What we’re looking for: IF a rep enters a download speed of 100 and an upload speed of 200, then enter the product price as $XXX.XX

Pricing is tiered. THINK: 1-100 is $100 per and 101-200 is $0.50 per etc. I’m not a developer and need help to formulate this flow or trigger. Any help would be appreciated. I will mark as best answer if you’re able to help accomplish this.

Object: Opportunity Product
Fields:
Upload_Speed_Mbps__c (Number field)
Download_Speed_Mbps__c (Number field)
UnitPrice (Currency)
Hi,

I have used one object as lookup in two or more different object. I want to show different label / placeholder (Search .. Object)  of parent object while adding each child record.

Can anyone please help me to resolve this?

Thanks
Within Apex is there a way that I can check who updated a record. Basically a to check see if someone other than the account holder updated a record. 
I am working in the new flow designer and have a screen where the user can upload documents. Is there a way to send an email after that screen with the attachment from previous screen

We all know how to use an image inside a formula field

(IMAGE(URL, Alternate Text, H,W)

In Lightning we can use <img src=..... onError....

My question is prteey simple:

is there any way to figure out (system) not by viewing if the formula is actually displaying an image.

Or differently phrased is there a way to find out if the image url will return nothing and therefoe display the alternate text / show an on error image which might be there or not, hence my question 

Sure we use the formula to display images we know about but what if the image is sitting in the cloud and someone deleted it

a formula or img src tag does not do a http callout, so how to find out if its a shown image in that field or not??

  • August 14, 2020
  • Like
  • 0
Hi,
I am using a ternary operator like the following 
MyObject has a field "Name"



String WebSite = ‘Yahoo.com’;
String WebSiteResult = WebSite != null ? WebSite : ‘Google.com’;

But how can i do something like this 

MyObject obj = new MyObject();
String WebSite = ‘Yahoo.com’;
String WebSiteResult = WebSite != null ? { WebSite; obj.Name ='TestName' } : ‘Google.com’;
It says invalid '  {"

 
How to create pre-filled records in salesforce? 
for example I have an object - a system that consists of parts (the part is also a salesforce object, right).

the whole project consists of many identical systems. 

For example, I create a system 1 and I want that system 1 to include a predefined list of parts already. Later I will have only to enter serial numbers of each part and specific data for each part. 

the same for system 2, system 3, etc. 



 
Hi all,
I am blocked to pass the process builder challenge. I tried all possible solutions provided on community forum but still the same.
I tried with correct order,billing adress,OR/AND condition.
I have also started from scratch for 3 times, Cloned and deactivated.

Match Billing Address is also unchecked.

https://trailhead.salesforce.com/content/learn/projects/quickstart-process-builder/quickstart-process-builder4 (https://trailhead.salesforce.com/content/learn/projects/quickstart-process-builder/quickstart-process-builder4" style="color:blue; text-decoration:underline)
An update to an account record failed to update the mailing address fields of all child contact records. Make sure that the process is correct and that it is activated.
User-added image
I have custom fields for my Opportunity Product Object that I need my sales reps to fill out. 

On the Opportunity page however, these Custom Fields are only visible when they click into the Products themselves. I would like them to be able to edit on the spot so they only have to live in one Object. 

Hi guys, 
I am working on a project for my training.
The project is a school.
When a student purchases their first training their status changes from prospect to client.

I am supposed to make a report that shows the conversion rate from prospect to client before and after the automation.

Can you help me with that? 

Hi

I have a requirement that when a child account is saved a validation rule needs to check against a filed on the top level account. 

I can do this via a trigger because I can select the clients then recursively loop up to the top client. However I was looking at doing in a flow and wondered how you can raise an error out of the flow to show stop the process and show to the user there is a rule that has been hit?

I read somewhere that auto launched flow should be able to complete with no issue. So my question is really what is the recommended approach to dealing with complex business rules that can not be done using validation rules.

Thanks
Hi I am new to triggers and I would like to know how to throw normal errors under a field or on the top of the page.
Also please provide with a sample example with explanation.