-
ChatterFeed
-
37Best Answers
-
0Likes Received
-
2Likes Given
-
9Questions
-
298Replies
how to make standard sync button enable or disable based on picklist values
Is there any way to make standard sync button enable or disable on particular picklist condition?
Supposte Status= granted then i should able to sync and if Status = awaiting for approval then it should not sync.
I want to control it on statndard sync button on quote object
Thanks & Regards,
Utkarsha
- sfdeveloper12
- July 03, 2017
- Like
- 0
- Continue reading or reply
Trailhead trouble with authentication for app exchange
"We can’t log you in because of an authentication error. For help, contact your Salesforce administrator."
Please help.
Thank you.
- Rebecca H
- February 19, 2017
- Like
- 0
- Continue reading or reply
Add contact to multiple accounts missing button
Cheers,
Jay
- Jay Pring
- February 15, 2017
- Like
- 0
- Continue reading or reply
Portal user | add access to custom objects
I have a contact, there is a button which says "manage external user", so clicked on "log in to Portal as user".
When i login, the interface changes to a portal, i supopose.
There are list views for two custom objects ,
the list displays no result.
Is there any way how i could check the accessibility of the user, to the custom objects ?
- Ab
- September 14, 2016
- Like
- 0
- Continue reading or reply
i have one Radio button.if i select that radio button(itemlabel) corrosponded itemvalue should display on page..can any one help me
<apex:page controller="radiobox_Class">
<apex:form>
<apex:pageBlock>
<apex:pageBlockSection >
<apex:selectRadio label="Select Hobby" borderVisible="true" immediate="true" disabled="false" value="{!SelectGame}">
<apex:selectOption itemlabel="FootBall" itemvalue="FB"/>
<apex:selectOption itemlabel="Tennis" itemvalue="TN"/>
<apex:selectOption itemlabel="Hockey" itemvalue="HOC"/>
<apex:selectOption itemlabel="CoCo" itemvalue="Co"/>
<apex:selectOption itemlabel="Cricket" itemvalue="Cric"/>
</apex:selectRadio>
<apex:commandButton value="Show Selected game" action="{!Display}"/>
<apex:outputLabel>your selected game code is....{!output }</apex:outputLabel>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
class:
public class radiobox_class {
public string output{get;set;}
public string SelectGame{get;set;}
public void Display(){
if(SelectGame=='FootBall'){
output='FB';
}else if(SelectGame=='Tennis'){
output='TN';
}else if(SelectGame=='Hockey'){
output='HOC';
}else if(SelectGame=='Cricket'){
output='CIC';
}else if(SelectGame=='CoCo'){
output='Co';
}else{
output='sorry some thing went wrong';
}
}
}
i want through method only
THanks in Advance
- randheer practise
- September 07, 2016
- Like
- 0
- Continue reading or reply
- siddik s 6
- August 12, 2016
- Like
- 0
- Continue reading or reply
- Lakshmi S
- July 22, 2016
- Like
- 0
- Continue reading or reply
show account and related contacts on same VFpage
- Puja Patil 13
- July 21, 2016
- Like
- 0
- Continue reading or reply
validation rule on tasks
- Harikrishna Mandadapu
- July 20, 2016
- Like
- 0
- Continue reading or reply
Is Save & New standard button not available in Lightning Experience?
Is Save & New standard button not available in Lightning Experience?
Thanks for any help in Advance!
- Sushma Ramakrishnan
- July 13, 2016
- Like
- 0
- Continue reading or reply
Sending email from activities in contacts
Is there any setting in Production or Sandbox, where it allows user to send email ?
Before it was possible for user to send email from activities from Concats, but they are no more able to
- Ab
- May 23, 2016
- Like
- 0
- Continue reading or reply
- Ghulam
- May 05, 2016
- Like
- 1
- Continue reading or reply
Master detail relationship on standard objects
I am trying to create a formula field on Case and I want an opportunity field in my formula but I do not have the option to choose opportunity object nor its fields. I understand I need to establish a relationship between Case and Opportunioty. Could someone tell me how I can do this? If the only way is creating a trigger then could you help me with how to create such a trigger as well please?
Thanks, Jayashree
- Jayashree prakash-kumar
- April 26, 2016
- Like
- 0
- Continue reading or reply
Product record detail page in SF1
- raju sen 10
- March 21, 2016
- Like
- 0
- Continue reading or reply
what is the use of SRC attribute in SCRIPT tag in visualforce page..
what is the use of SRC attribute in SCRIPT tag in visualforce page.. ?
here i have seen this piece of code for creating account record through visualforce page.
why he used this attribute.
here example is :
<apex:page id="page"> <script src="/soap/ajax/36.0/connection.js" type="text/javascript"> </script> <script> function callAjax(){ sforce.connection.sessionid = '{!$Api.session_id}'; var accountnam = document.getElementById('page:fm:accountname').value; var indust = document.getElementById('page:fm:accountindustry').value; var account1 = new sforce.sobject("account"); account1.name = accountnam; account1.industry = indust; var result = sforce.connection.create([account1]); document.getElementById('page:fm:reslt').innerhtml = result; } </script> <apex:form id="fm"> Account name : <apex:inputText id="accountname"/><br/> Industry : <apex:inputText id="accountIndustry"/><br/> <apex:commandButton value="Call ajax" oncomplete="callAjax()" /> <apex:outputLabel id="reslt" /> </apex:form> </apex:page>
please help me
Thanks in Advance
Anji reddy
- Anjaneylu
- March 10, 2016
- Like
- 0
- Continue reading or reply
Validation rule is not working.
(ISCHANGED(Date_of_Birth__c)) &&($User.ProfileId<>'00e90000001TW6p')
DOB cannot be change other than system admin.
- Supriyo Ghosh 5
- March 08, 2016
- Like
- 0
- Continue reading or reply
Trailhead - Lightning Connect / Integrating External Data Error
The 'Phone__x' external object is not correctly setup with an indirect relationship to the User standard object.
I have the UUID setup with the following:
Custom Field Definition Detail
Field Information
Field LabelUUIDObject NamePhone
Field NameUUIDData TypeIndirect Lookup
API NameUUID__c
DescriptionUUID
Help Text
External Column NameUUID
Created ByShad Oliver, 2/17/2016 9:14 PMModified ByShad Oliver, 2/17/2016 10:49 PM
Indirect Lookup Options
Length128Child Relationship NamePhones
Related ToUserTarget FieldPhone UUID
Related List LabelPhones
- Shad Oliver
- February 18, 2016
- Like
- 0
- Continue reading or reply
need information about ADM-201 exam for winter'16
- Sweta Patel
- February 12, 2016
- Like
- 0
- Continue reading or reply
Trailhead Error: Lightning component is not using the Apex controller, though it exists
'DisplayCaseController' Apex Class is written:
But, the DisplayCase Component is not being saved, showing error that no such controller is found.
So, can't complete the Challenge.
Can anyone help? Thanks in advance
Warm Regards,
Sourav
- Dutta Sourav
- November 18, 2015
- Like
- 0
- Continue reading or reply
Web to Opportunity Form
Like "Web-to-Lead", Opportunity needs to be stored.
Any Idea?
Thanks in Advance.
- Dutta Sourav
- August 26, 2015
- Like
- 0
- Continue reading or reply
Calculating Activity Score on Task & Event
There is custom field "Activity Score" on Contact and Account, which should be updated based on following formula:
Contact/Account Activity Score =
Count of Meetings * 3 + Count of calls * 2 + Count of Emails * 1
(Note: This count will be done for all child activities)
Can anyone help??
- Dutta Sourav
- June 06, 2015
- Like
- 0
- Continue reading or reply
Pagination and SetPageSize through <apex:repeat>
How can we implement setpageSize through <apex:repeat>
Data are displaying through Repeat. I want to display 10 at a time
and want to add "Previous" & "Next" Button in VF Page.
Caan anyone help??
- Dutta Sourav
- June 04, 2015
- Like
- 0
- Continue reading or reply
How to implement Progress Bar in Salesforce?
I want to show the progress of the Stages in Opportunity as per Probability?
For example, If it is "Prospecting", 10% of the bar will be displayed. If "Closed Won", it will be 100%.
Also some diggerent colors need to be set as per Stages.
Can anyone help? Thanks in advance.
- Dutta Sourav
- May 20, 2015
- Like
- 0
- Continue reading or reply
Integrating Google Map for Check-In & Check-out
How to Integrate Google Map in Salesforce?
An Organization wants to track their Sales represntatives who use to travel many places.
They want Check-In and Check-Out functionality thorigh Google Map.
How to achieve that? Can anyone please help?
- Dutta Sourav
- May 08, 2015
- Like
- 0
- Continue reading or reply
Converting Lead to Account with Mandatory Custom Fields
There is a Custom Picklist in Lead (mandatory field). Same mandatory custom picklist is also in Account.
While Lead conversion, In the Account Object the value is not automatically populated.
How to do that?
Can Any one help me?
- Dutta Sourav
- April 27, 2015
- Like
- 0
- Continue reading or reply
Displaying Parent Object on Child Record through VF Page
I want to display the parent Object on Child Record where there is Master-Details relationship.
There are two Objects: Student(Child) & College (Parent).
I want to design a form in Visualforce to insert Student Details where I want to take College as input.
But, Its showing error.
Can anyone help?
- Dutta Sourav
- March 16, 2015
- Like
- 0
- Continue reading or reply
How to Calculate Age in Day?
There is a date field, for inserting date of birth.
There is another button to calculate age (in days) which will be displayed below.
How to do that?
- Dutta Sourav
- March 10, 2015
- Like
- 0
- Continue reading or reply
Visualize Your Data with Dashboards and Charts
Challenge Not yet complete... here's what's wrong:
The dashboard named 'Cases Dashboard' wasn't found or it wasn't refreshed recently.
Any Help?
- MikeA
- November 06, 2017
- Like
- 0
- Continue reading or reply
- Robert Roy
- November 06, 2017
- Like
- 0
- Continue reading or reply
- MNP Kiran
- September 08, 2017
- Like
- 0
- Continue reading or reply
Trigger not getting fired for different profile ?
I am not able to see a related list( Classification) for a paticular profile. The scenerio is such that , whenever an account is created , a related list called classification is created. this functionality is achieved via trigger and trigger handler class. However , The trigger is getting fired for Malaysia profile and not for Thailand Profile. even though I have cloned Thailand profile from the Malaysia one. Can anybody help on this ?
- Siddharth Lakhotia
- September 08, 2017
- Like
- 0
- Continue reading or reply
How to add account name field on new contact creation on contact lookup ?
I am creating new contact on the lookup filed. But whenever i create new contact it does not asociate with any account. so contact gets stored without an account. I want to add account name field while contact creation. How to achive that?
Thanks,
Utkarsha
- sfdeveloper12
- July 18, 2017
- Like
- 0
- Continue reading or reply
how to make standard sync button enable or disable based on picklist values
Is there any way to make standard sync button enable or disable on particular picklist condition?
Supposte Status= granted then i should able to sync and if Status = awaiting for approval then it should not sync.
I want to control it on statndard sync button on quote object
Thanks & Regards,
Utkarsha
- sfdeveloper12
- July 03, 2017
- Like
- 0
- Continue reading or reply
Approval Process is not working
I am working on a quote object. In this approval process is not working. If below criteria is satisfied then approval process should fire and assigned approval should get notification to approve or reject record.
Quote Record Type: BenderINC - Industrial Quotes.
I dont know why this is happening. It was working earlier.
Thanks & Regards,
Utkarsha
- sfdeveloper12
- July 03, 2017
- Like
- 0
- Continue reading or reply
- Ram s 30
- June 30, 2017
- Like
- 0
- Continue reading or reply
Custom List View - Challenge
Challenge Not yet complete... here's what's wrong:
Could not find an opportunity list view named 'High Probability Opportunities'.
Can someone please help me here?
- Amogh Dhamankar 6
- June 29, 2017
- Like
- 0
- Continue reading or reply
Picklist with dependencies | transfer from one sandbox to another
I have created two picklist, one controlling and another dependent.
I would like to deliver from one sandbox to other sandbox..how can i transfer them with guarding the dependencies..
Thanks for suggestion !
- Ab
- June 27, 2017
- Like
- 0
- Continue reading or reply
- sekhar maramreddy
- June 27, 2017
- Like
- 0
- Continue reading or reply
Email alert when Opportunities have not been modified in the last 30 days?
How to do Email alert when Opportunities have not been modified in the last 30 days?
How to do with workflow or Process builder?
Can Anyone write the steps?
- yash mehta 12
- June 26, 2017
- Like
- 0
- Continue reading or reply
Leads and Opportunities Problem
????
- Darryl Day
- June 20, 2017
- Like
- 0
- Continue reading or reply
Cross-Object Triggers for the Field Update
I am trying to set up a trigger that will work in the way:
When Call Disposition value is "Meeting" (custom Field in Task Screen) => Lead Status is changed to "Active".
How can I do it in SFDC Worklow rules?
Thank you,
Kate
- mansour salame
- July 10, 2015
- Like
- 1
- Continue reading or reply