
global with sharing class AccountHistory
{
public List<Account_Histroy__c> result{get; set;}
@RemoteAction
global static List<Account_Histroy__c> getAccountHistory()
{
List<Account_Histroy__c> result=[select Name,Account_Id__c,Account_Owner_New__c,Account_Owner_Old__c,
Name_New__c,Name_Old__c,Account_Number_New__c,Account_Number_Old__c,Account_Website_New__c,
Account_Website_Old__c,Modified_By_New__c from Account_Histroy__c ];
return result;
}}
whats wrong??
custom fields contain undefined value ..
1 Antwort
Please post this question in one of the developer forums for a quick response where the participants are more geared towards code, this forum is more focussed towards the declarative side of things.
https://developer.salesforce.com/forums/#!/feedtype=RECENT&criteria=ALLQUESTIONS
http://salesforce.stackexchange.com/