Skip to main content
HI,

I am getting this error on my apex code when i call it from lighting.

I see that this is not enough information to debug the issue.

Can anybody told me how to check the logs?

[{"message":"An internal server error has occurred\nError ID: 605369606-244479 (119852647)"}]
답변 3개
  1. 1월 31일 오후 3:02

    Try this 

    public class OPurchaseOrderFrontend {

    // Framework needs {get;set;} set to write data

    @AuraEnabled public String AssetFunnel {get;set;}

    @AuraEnabled public Id MarketAccount {get;set;}

    @AuraEnabled public Boolean Active {get;set;}

    @AuraEnabled public Decimal TotalAmount {get;set;}

    @AuraEnabled public List<AssetFilter__c> filtersList {get;set;}

    // Explicitly defining the constructor so the serialization engine has a clear entry

    public OPurchaseOrderFrontend() {}

    }

0/9000