For development and integration use cases you may need to create or renew a self-signed certificate and store the certificate to your web server host or pass the certificate to your target system to trust only connections from an app using the certificate. If you are storing the certificate on your webserver and enabled only […]
Finally, thanks to viewers and subscribers to my channel. Just Another Dang How To Channel – a channel where I share how-to tech videos. A small milestone for me but super happy. It’s been a roller coaster ride reaching this milestone. June 8, 2020 I started the channel way back Feb 2017 when Youtube didn’t […]
By Salesforce documentation, you can define several collection types including a Map. A Map collection allows you have a key/value pair where the key is unique. Declaring such is easy by adding the following But in your controller, if you try to do any Map functions such as keys(), set(key, value), values(), you get an […]
This tip is for creating symlink for your favorite text editor, it is like an alias but more powerful. This would allow you to launch the application from the command line. ( You can do the same by setting paths as an alternative to symlinks). Symlinks can only be created from the terminal. First find […]
My particular use case is for Salesforce ant deployment. I wanted to replace some metadata before I deploy to the target org which will allow me to automate the process. I can fetch metadata from my sandbox org and when it gets deployed to the target org like production the values will be updated. You […]
Chances are you upgraded to the latest Xcode and along with it, your Swift compiler is updated as well. Then existing projects using a particular project have stopped working with similar error such as. Or you are checking out some hosted on code on Github using some framework, the framework might have been built using […]
Going through the Getting Started guide for Firebase I encountered this error ‘JSON::ParserError – 767: unexpected token at ‘ and thought to blog and share how to fix it. I went to the Xcode project directory in the terminal and ran Then I defined the PodFile spec But when I ran I encountered this error […]
Component.cmp Controller.js Are you receiving cannot read property ‘setParams’ of undefined after assigning an event? This indicates that $A.get(“e.c:CRMAppEvent”) cannot find the event and any reference to setParams method or any properties of the event would eventually be undefined. To fix this you need to set your application event access to global CRMAppEvent.evt May 10, […]
If your deployment strategy still evolves around ant deployment and not the new Salesforce CLI and you encounter this error on your deployment. Failed to check the status for request ID=0Af0r00000ClbNgCAJ. Error: InfoNot a valid enumeration for type: class com.sforce.soap.metadata.DeployProblemType. Retrying… While digging around, I found out this is a tool issue. Chances are your […]
This LWC1010 compilation error is caused by an invalid reference to the component filename. By default camel case component folder names are mapped to kebab-case in the markup when calling them from Lightning Web Components. To resolve entry for module errors check the proper naming and hyphen. Eg. myComponent would be my-component Visual Studio code […]