Neha Mohta
IndividualForum Replies Created
-
Neha
MemberAugust 21, 2017 at 12:22 pm in reply to: How to show related contacts under account in a Salesforce Visualforce page?Hello Radhakrishna,
Please go through my earlier post at: VISIT HERE
Hope it will help you.
- This reply was modified 7 years, 3 months ago by Neha.
-
Neha
MemberAugust 19, 2017 at 7:33 am in reply to: How to display the related contacts of account in the same Salesforce Visualforce page?<apex:page standardController="Account" recordSetVar="Acct">
<apex:pageBlock>
<table>
<apex:repeat value="{!Acct}" var="acc">
<tr>
<td><apex:outputText value="{!acc.Name}"/></td>
<apex:repeat value="{!acc.Contacts}" var="cont">
<td><apex:outputText value="{!cont.Name}"/></td>
</apex:repeat>
</tr>
</apex:repeat>
</table>
</apex:pageBlock>
</apex:page> -
May be it is a username or a Name of your Record..!
-
Neha
MemberAugust 17, 2017 at 10:28 am in reply to: Any one tell me Salesforce visualforce best practicesHello Uday,
I have found this link helpful.Please go through it.
https://pundareekam.wordpress.com/2014/02/11/best-practices-for-visualforce-pages/
https://saramorgan.net/2014/07/14/top-5-tips-for-improving-visualforce-pages/
-
Neha
MemberAugust 17, 2017 at 10:09 am in reply to: Approval Process in Salesforce: Unlock Record BEFORE Field Updatehello Radhakrishan,
There is a possibility to unlock your Record through Final Approval Record Lock as
This will be appear on System Admin Profile.
Hope it will help you.
-
Neha
MemberAugust 17, 2017 at 9:47 am in reply to: How to show my account list on apex page at the time when we preview the page in Salesforce?Hi Shariq,
You can use recordSetVar to view the list and create a variable "var" in <apex:repeat> tag to acess the records. May this example helps you:
<apex:page standardController="Account" recordSetVar="Accounts" >
<apex:pageblock>
<apex:repeat var="a" value="{!Accounts}" rendered="true" id="account_list">
<li>
<apex:outputLink value="/{!a.ID}" >
<apex:outputText value="{!a.Name}"/>
</apex:outputLink>
</li>
</apex:repeat>
</apex:pageblock>
</apex:page> -
Neha
MemberAugust 17, 2017 at 9:42 am in reply to: What is the Order of execution of actions in Salesforce Workflow?Hi Shahryar,
There is no fixed order of execution in Salesforce but the Field Updation action execute first and all other later. But it is possible that it may follow a sequence like :
- Field Update
- New Task
- Email Alert
- Outbound message
Hope it will help you.