Getting error while retrieving Source from Salesforce Org using VS Code and Salesforce Extension Pack
I am getting this error while trying to fetch(retrieve) source from VS Code and SF Extension Pack.
I am getting this error while trying to fetch(retrieve) source from VS Code and SF Extension Pack.
Trying to work through the Quick Start: Lightning Web Components trailhead and getting the following error while running command:
I am attempting to write a Lightning Web Component, but continually run into errors in my Javascript that I can’t debug.
global class Opportunity_EmailService implements Messaging.InboundEmailHandler { public Messaging.InboundEmailResult handleInboundEmail(Messaging.inboundEmail email, Messaging.InboundEnvelope env) { Messaging.InboundEmailResult result = new Messaging.InboundEmailResult(); //try{ List<Opportunity> oppsToUpsert = new List<Opportunity>(); List<Account> agenciesToUpsert = new List<Account>(); List<Policyholder__c> policyholdersToUpsert = new List<Policyholder__c>(); for(Messaging.InboundEmail.BinaryAttachment att : email.binaryAttachments){ String attBody = att.Body.toString(); String firstRow = attBody.split('rn', 2)[0]; system.debug(firstRow); List<String> columns = firstRow.split('\|'); Integer columnCount = … Read more
I have newly created a project then created a random LWC page and right click on it and deploy and it is giving me below error