|
More site info...
Apex Code Development | Forum profile
|
|
Forum profile page for Apex Code Development on http://www.salesforce.com.
This report page is the aggregated overview from a single forum: Apex Code Development, located on the Message Board at http://www.salesforce.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Apex Code Development" on the Message Board at http://www.salesforce.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Apex Code Development:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
174
|
639
|
1,565
|
|
Post:
|
309
|
1,191
|
2,888
|
|
|
Apex Code Development Posting activity graph:
|
Top authors during last week:
user's latest post:
Community - Creating a CSV file...
Published (2009-11-12 00:59:00)
This requires two components that would work in tandem. First, you need an appropriate Apex Class that can perform the transfer. This utilities the Http, HttpRequest, and HttpResponse objects. The "method" would be set to "POST", the endpoint would be set to your server's URL, and the Body would be set to the CSV string you are sending (or Base64, if you prefer). The second part would be a service...
user's latest post:
Community - Help with inbound...
Published (2009-11-09 15:13:00)
My guess is your String[] emailBody is not being set properly with the split() method. I recommend using System.debug messages to output the plainTextBody and the emailBody string array to ensure its as you expect. If you are trying to split() based off the newline character, isn't that '' and not '/n'?
user's latest post:
Community - Where Statement -...
Published (2009-11-12 08:20:00)
Thanks sfdcfox, did not realise you could use the IN statement.
user's latest post:
Community - Customize Lead...
Published (2009-11-11 11:54:00)
To "hide" accounts, person accounts are what you're looking for. Then the contact & account are the same thing, and you can track opportunities to contacts. Support can turn person accounts on for you.
user's latest post:
Community - Apex Triggers - Apex...
Published (2009-11-10 02:16:00)
Please read this post - it explains things quite simply about before and after triggers. http://community.salesforce.com/sforce/board/message?board.id=apex&message.id=22429#M22429
user's latest post:
Community - API 17.0 - Apex Code...
Published (2009-11-12 21:22:00)
they are skipping 17 in the ide. i'm told you won't see an update until spring '10, which will be version 18. the only "safe" option is writing it in the web editor in a dev org.
user's latest post:
Community - Trigger NOT working...
Published (2009-11-06 10:07:00)
It does block your trigger if for example they're trying to update fields that the portal user doesn't have access too. They will still fire but won't be able to do their jobs because they encountered an error. Add System.debug() and monitor your debug logs closely.
user's latest post:
Community - after update trigger...
Published (2009-11-10 00:04:00)
You can write a trigger for Emailmessages,that will call whenever mail comes
user's latest post:
Community - The method that...
Published (2009-11-12 00:12:00)
First of all, not so many people know Shift_JIS is a character encoding for the Japanese language (people may guess it from "UTF-8", but...). You should have mentioned that. >> People, If anybody knows how to convert char encoding, please post your solution. Second of all, you should explain little bit more about your situation. Basically, Shift JIS is not supposed to come in to VF page or...
|
|
|
|
Latest active threads on Apex Code Development::
Started 4 days, 15 hours ago (2009-11-10 12:48:00)
by KVaishna
It should not show you exception once you delete the job from setup -> administration setup -> monitoring -> scheduled jobs
link I observed that you need to make atleast single change (even a space) in the class and save it again once you delete the scheduled apex class from the scheduled jobs list.
Started 2 days, 6 hours ago (2009-11-12 21:22:00)
by paul-lmi
they are skipping 17 in the ide. i'm told you won't see an update until spring '10, which will be version 18. the only "safe" option is writing it in the web editor in a dev org.
Started 3 days, 7 hours ago (2009-11-11 20:27:00)
by prageeth
Hello theitdeptrocks ; It is not mentioned in your question what is the field which returns the boolean value. I assume that the field is " Available_in_Portal_Can_Edit__ c". If this is the field you can print "yes" or "No" on the page as below. If this is not the answere for your question please try to supply more info. On VF page:...
|
|
Hot threads for last week on Apex Code Development::
Started 1 week, 2 days ago (2009-11-05 16:35:00)
by Anand@SAAS
You can certainly create the opportunity using a trigger but you cannot navigate the user to another record from a trigger. Here are a few options: 1. Use "visual force" and "retURL" or "saveURL" in order to take you to the opportunity record 2. Override "edit" of "File_Note__c" with a visual force page and manage the logic that you mention in the controller extension. More info ...
Started 3 days, 17 hours ago (2009-11-11 10:35:00)
by jkucera
There advice is accurate - best route to go is code here as then you can automate all of the above.
Started 4 days, 14 hours ago (2009-11-10 13:30:00)
by jkucera
Please paste the exact error. Best way to paste code is to copy & then paste using the Insert Code button next to the ABC icon.
Started 1 week, 2 days ago (2009-11-06 01:45:00)
by Pragadheeshwari
Hai, you can compare if( trigger.old[0].IF_SAP__c != acc.IF_SAP__c) { / / Do wat you want }
Started 5 days, 4 hours ago (2009-11-09 23:17:00)
by Pragadheeshwari
Hai, I think you can directly insert like this,if suppose you splitted correctly, Person__c[] newPerson = new Person__c[0]; newPerson.add(new Person__c( Name = name, Age__c = age, Birth_Date__c = birthdate, City__c = city, Street__c = street, Zip_Postal_Code__c = zip)); insert newPerson;...
Started 4 days, 15 hours ago (2009-11-10 12:48:00)
by KVaishna
It should not show you exception once you delete the job from setup -> administration setup -> monitoring -> scheduled jobs
link I observed that you need to make atleast single change (even a space) in the class and save it again once you delete the scheduled apex class from the scheduled jobs list.
Started 1 week, 2 days ago (2009-11-05 04:15:00)
by sggottlieb
I made some headway by using the internal name of the relationship: resources = [ SELECT Name,
Primary_Discipline__c,
Project_Manager__c,
Account_Executive__c,
Foreign_Languages__c,
(SELECT count() FROM R00N40000001HoCZEA0)
FROM SFDC_Resource__c
]; I am not ...
Started 5 days, 21 hours ago (2009-11-09 06:41:00)
by ThomasTT
I don't know your definition of "duplicated records", but with assuming "records with the same sobject type (Account) and name", you just use Map . Map doesn't allow same keys, and O(1) to get a object with using the key. You may need a logic to determine which record of duplicated 2. If it kis just to delete, Map.values() is useful to get the all objects at the end. - ThomasTT
Started 1 week, 2 days ago (2009-11-05 05:37:00)
by JimRae
This still works in our org. My guess would be that you defined a custom class with the name test, and it is overriding the system "Test" class.
Started 1 week, 1 day ago (2009-11-06 15:42:00)
by jkucera
It sounds like you're expecting a bounced email to fire a trigger on a Person Account - is that right? I don't believe you can have bounced emails fire features like workflow, validation rules, & trigger - it's a silent update. You could create a daily batch process to query for PersonAccounts WHERE PersonBouncedEmail==Null AND EmailBounced=True, & batch update the date for ...
|
|