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
Karthik Kota 9Karthik Kota 9 

How to create Related list to product?? In workflow formula its showing product__r ! where we can find this in org ? Help me

SandhyaSandhya (Salesforce Developers) 
Hi,

You can use workbench

http://https://workbench.developerforce.com
 

Go to: Info -> standard & custom obj (choose your object) -> Child relationship -> relationshipName

Hope this helps you!

If this helps you, please mark it as solved.

Thanks and Regards
Sandhya
Karthik Kota 9Karthik Kota 9
I Want to build a process builder for the workflow rules

in workflow rule it was showing product__r & order__r.Name ???

Now i want to create Related list for product & Order how can i create related list for this two ???
RD@SFRD@SF
Hi Guys,

Related list in VF or Standard page ?
If standard, use page layout, to add the list to page of the master object or the object you are looking up to.
If VF, use related list tag, and as Sandhya explained use the child relationship name in the tag, but the controller should be of the master object or the object your looking upto.

The fields on the workflow would be available in process builder's formulae

Can you paste the workflow rule criteria which you are trying to replicate, would be really useful ?
Till then the fields "product__r & order__r.Name" are related records of the object.
They are objects with api name "product__c" and "order__c". __r is added when accessed from the child record or the record accessing the looked up records value.

Hope it helps
RD