Radhakrishna and
Kumar are now friends 3 months, 3 weeks ago
Radhakrishna and
Prakhar are now friends 4 months, 3 weeks ago
Radhakrishna and
Prafull are now friends 7 months, 3 weeks ago
Radhakrishna started the topic SOQL to find Accounts without Contacts AND Opportunities in Salesforce in the forum Miscellaneous 8 months, 1 week ago
I am looking for help to run a Join Query to find all out Accounts in our Database without Contacts AND Opportuntiy. I can run the query indepetly, but I would like to join the queries.
The Query I am runing to find Accounts without Contacts: Select Id, Name From Account Where Id NOT IN (SELECT AccountId FROM Contacts)
Query to find Accounts…[Read more]Radhakrishna started the topic Customize tabs on Salesforce Lightning page layouts for different record types? in the forum Miscellaneous 8 months, 1 week ago
Is there a way to customize an object record page in lightning? I want certain tabs to appear on certain record types.
Radhakrishna started the topic How to prevent a Salesforce record from being deleted in account object when rating is set to hot? in the forum Miscellaneous 8 months, 1 week ago
trigger Tour on Account (before insert ) {
Account sam=Trigger.new[0];
if(sam.Rating==’Hot’ )
{
sam.AddError(‘record cannot be deleted’);
}
}Even though when I run this record is deleting.
can someone help me with this ?
Radhakrishna started the topic How to show related contacts under account in a Salesforce Visualforce page? in the forum Miscellaneous 8 months, 1 week ago
I’m displaying all accounts in a visual force page where each row is having a first column as a ‘+'(expands). On clicking of symbol i wants to show related contacts under the same account.When I click on symbol account columns should be displayed in single row only and contacts should come below.
Radhakrishna started the topic How to create a PageBlockTable for Parent to Child Relationship in Salesforce? in the forum Miscellaneous 8 months, 1 week ago
i have done a pageblocktable with parent to child relationship. here is a problem i can see the whole records on my profile (system admin) but another user can not see these records with the same pageblocktable. i have given field level security,profile permissions on those objects also.
still why can not he see those records?please mention me any…[Read more]Radhakrishna replied to the topic Can any one tell me when do we use custom controller in Salesforce with extension class? in the forum Miscellaneous 8 months, 1 week ago
Hello Uday,
Hope you will have better understanding now with these many answers…
Let me add few more points here, I would say, A Controller is an Apex Class but an Apex Class is not always a Controller. Further you can call apex class in many different ways:-
From another class
From Trigger
From Visualforce page
From Developer console
Form…[Read more]Radhakrishna started the topic Approval Process in Salesforce: Unlock Record BEFORE Field Update in the forum Miscellaneous 8 months, 1 week ago
Is it possible to ensure an approval process’s final approval/rejection unlocks the record before any of the field updates happen?
Ordinarily it seems like it doesn’t especially matter, as field updates are somehow applied despite being locked, but I am running a trigger off those field updates that attempts to delete the record, but cannot…[Read more]
Radhakrishna started the topic Salesforce1 lightning component apex controller offline in the forum Miscellaneous 8 months, 1 week ago
What i have done so far: a lightning component that accesses data (accounts, custom objects) through an apex controller. The component in the end creates a custom object record and makes an insert. The lightning component is accessed as an action button on the account or from a tab in the navigation of the salesforce1 app.
So what i want to…[Read more]
Radhakrishna started the topic Scheduled Salesforce report not getting to user in the forum Miscellaneous 8 months, 1 week ago
Salesforce.com could not email the report to any of the specified recipients. Check that recipients are specified and that they have the appropriate permissions to view the report.
If you get this ^error:
Make sure you also check:
Setup > Customize > Reports & Dashboards > Email Notifications > Allow Reports and Dashboards to Be Sent to Portal…[Read more]Radhakrishna started the topic Stages available only when another specific stage has been selected in Salesforce in the forum Miscellaneous 8 months, 1 week ago
Hi,
In my Opportunity path, I have 2 stages that will only be needed by the user if another previous stage was selected.
For instance, the stages “Pending Document” and “Waiting for Approval” are only needed if the previous stage “Form Requested” was selected. Most of the time, no form is requested and therefore the 2 next stages are not…[Read more]
Radhakrishna started the topic Side Panel Error Outlook 2010 in Salesforce Lightning in the forum Miscellaneous 8 months, 1 week ago
I have someone who has Office 2010 and we recently installed the Side Panel for Outlook, and have received the following error- “COM object that has been separated from its underlying RCW cannot be used.”
Any advice on how to fix this? Upgrading Office or using the Lightning for outlook plugin are not options.
Radhakrishna started the topic I would like a Salesforce dashboard component to show in the forum Miscellaneous 8 months, 1 week ago
I would like a dashboard component to show 1) Sales quota, 2) sales actual, 3) GM quota, 4) GM actual for three years starting 2016. I created these 12 custom fields in my user record. Report chart cannot work. Prof. Edit. How to accomplish? Thanks.
Radhakrishna started the topic Hi There, Trying to sync event series but when I click the calendar logo next to the related Salesforce record in the forum Miscellaneous 8 months, 1 week ago
Trying to sync event series but when I click the calendar logo next to the related record, I get he message: “First sync the series to salesforce”, but then how do I do that?
Btw, I have made sure that my ‘sync recuring event’ checkbox in data set it checked.
Thanks for any help in clearing this up.
Radhakrishna started the topic Integration – Salesforc PE (Professional Edition) integration with MS365. Does it work? Any good links? in the forum Miscellaneous 8 months, 1 week ago
Hi All – Anybody out there implemented a Salesforce for Outlook integration based on PE and Office365? Does it work as advertised if you have. Thanks.
Radhakrishna started the topic How to track the usage of each function in Salesforce? in the forum Miscellaneous 8 months, 1 week ago
I would like to check the usage of each function like
– How many times users clicked “opportunity” component
– How many times users clicked specific components last monthIs there any way to do this? If not, it would be great if you can share your idea on tracking the usage of the system and how to set up the KPI for measaurement
Radhakrishna started the topic How to create a Pie chart with 3 or more fields in Salesforce? in the forum Miscellaneous 8 months, 1 week ago
I am trying to create a pie chart comparing more than 2 fields. Anyone have experience the same problem and have a solution for it? Thank you!!!
Radhakrishna replied to the topic any batch apex scenarios in Salesforce? in the forum Miscellaneous 8 months, 2 weeks ago
Hello Uppada kishore,
We use batch apex for bulk processing. Let’s say you want to update thousands to accounts on a regular basis or (even if just one time) and real time update is not a MUST HAVE requirement. You know how you are bound by governor limits for all the retrievals , updates , inserts.
Batch class has much wider governor limits .…[Read more]
- Load More