Skip to main content
controller:-

 

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
0/9000