All Questions
0
votes
1answer
4 views
Customizing the Detail Account Page
i am asked to create a customize standard account page and to add a component as shown in figure he want to show some logos in account information as shown in the image.is this possible and how to ...
1
vote
0answers
14 views
HttpOnly Cookies Not Available in Apex
When making an HTTP callout using HttpRequest, Set-Cookie headers returned with the HttpOnly flag are not included in the HttpResponse. This appears to be consistent with RFC 6265:
The HttpOnly ...
0
votes
1answer
12 views
Apex Trigger Test Class Coverage
I am trying to create a test class for my apex trigger but I am not able to reach the code coverage. does anyone how I can reach the code coverage?
Here is trigger
trigger AccountInformation on ...
0
votes
0answers
11 views
Only user and group IDs may be used in inline mentions
I'm creating Chatter feed items using connect API apex. I want a simple message that contains a link to the user and a related object, e.g. opportunity. I'm getting this message when running the code ...
0
votes
1answer
12 views
Using children in WHERE criteria of Parent-to-Child SOQL query
Can't seem to find an example of this.
trigger Opportunity_Triggers on Opportunity (after insert, after update, after delete) {
List<Account> accList = [SELECT Id, (SELECT Id, AccountId ...
0
votes
0answers
10 views
Need to create a button/link to use SSO into ServiceNow
Trying to create button/link to log into ServiceNow using the user's email address:
Basically the link has to be crafted to pass 1) the email address of the person already logged in and 2) a ...
1
vote
1answer
9 views
Using a custom controller to populate a custom object on Opportunity
Strap in, as this may turn into TL;DR.
Within Opportunities, we have created a custom object called Marketing_Support__c. When the 'new' button is clicked it takes you to a page where you can choose ...
3
votes
2answers
20 views
Test already started: How to do big tests
I'd like to do a massive test. We've got a fairly complex operation that runs on any of 160,000 records, all of which have various scenarios as children and could be crappy data in some cases.
I'd ...
2
votes
0answers
10 views
Freezing pageblock header using jQuery- doesnt work on mozilla
I am freezing the header as explained in this below blog.
Freezing header -Readkite blog
But the problem i am facing is that i am not able to get it worked on Mozilla.
Do i need to add anything ...
4
votes
1answer
18 views
Is it possible for an AppExchange package to create a custom list of custom fields?
We have an AppExchange package that would ideally create a different set of custom fields for each customer, depending on configurations that either the customer sets at package installation time or ...
2
votes
2answers
32 views
Need Help With Test Class
This has already been asked and answered and is working except for the errorCase.SuppliedName returns Null after my error message. How do I write a Test Class for this. I'm a newbie and this has ...
4
votes
1answer
19 views
Avoiding SOQL limits in a recursive method
I have a SOQL query in a recursive FOR loop. It didn't give me SOQL limit issues on my test data, but apparently we have a managed package whose Apex is hitting the limit due to this code.
public ...
2
votes
1answer
9 views
Can a community user do mass edit from list views
Can a community user do mass edits from a list view?
6
votes
2answers
39 views
Questions regarding Change Sets
I am using Change Sets for the first time. In the past I have deployed with Eclipse.
Right now, I am attempting to deploy an entire object. I would like to deploy everything involved with the object ...
3
votes
1answer
20 views
How can I use Chatter in an external Web Site?
Is it possible to integrate Chatter module in an external website?
The goal is to use Chatter in an external web site and can create post about one document or custom object.
I can add Chatter ...