salesforcedx
How to specify managed package dependency
My unlocked package (DX project) depends on a package from the app store, so a managed package.
Topics enabled for objects not getting deployed to packaging org
While trying to deploy TopicsForObjects in the packaging org I receive the following Error:
Topics enabled for objects not getting deployed to packaging org
While trying to deploy TopicsForObjects in the packaging org I receive the following Error:
Error creating a package version
I get an error while trying to create a package version with this command
sfdx:source:pull gave the following error
When I try to pull from a scratch org to my local I got the below error
Limitations of Apex Replay Debugger in VS Code
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
Error deploying or retrieving source
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
SFDX: Grant type not supported
I’m trying to log in to an existing sandbox using the sfdx force:auth:web:login
, which takes me to the login screen, I enter the password and email and I allow access, however in the browser I get a message: localhost didn't send any data
, while in my CLI the message is ERROR: grant type not supported.