Jogender
IndividualForum Replies Created
-
Jogender
MemberApril 20, 2021 at 2:52 pm in reply to: Is it possible to edit formula field values in a Salesforce Record?No, you can't edit the formula field on the Page layout. Formula fields are read-only fields in Salesforce.
You need to either set the value via workflow instead - and then edit it after save, or you can look at using Quick Actions to default a value on creation based on a formula. This formula will appear on the Edit (creation) screen and they can then leave it as is or adjust it prior to saving the record.
-
Jogender
MemberJuly 31, 2019 at 12:44 pm in reply to: Display an error when user is not logged into the community and Is Visible In Pkb == false in Knowledge Article Version in SalesforceIf the PKB checkbox is checked on the Knowledge Article, it means the Knowledge Article will be visible to unauthenticated users. So if in your case IsVisibleInPkb == false then the Knowledge Article should not be visible to the user if he or she is not logged into the community.
So there should not be any need to display the error if the Knowledge Article is not at all visible to the user. Hope this makes sense.
-
Jogender
MemberJuly 29, 2019 at 9:15 am in reply to: How can I send an email to all accounts owners to provide information?Can you please elaborate the question. Not able to understand what you are asking for?
-
Enabling Order: From Setup, in the Quick Find box, enter Order Settings, and then select Order Settings. Select Enable Orders. If you allow product swaps or decreases in quantity on amendments, select Enable Negative Quantity.
To setup Salesforce CPQ, Once you’ve installed your CPQ package, review some common objects and features as described in the following link:
https://help.salesforce.com/articleView?id=cpq_setup_tips.htm&type=5
Hope this helps.
-
Please refer to this blog on Forcetalks. Following the steps provided in the blog, you will get a clear understanding on how to integrate Lex Chatbot with Salesforce.
https://www.forcetalks.com/blog/amazon-lex-api-implementation-with-salesforce-for-chatbot/
-
To perform OAuth in salesforce, you must create Connected App in salesforce.
A Connected App can be visualized as an intermediate authentication layer between Salesforce data model and the client application.
Steps for creating sample Connected App in salesforce is available in following link: https://www.salesforce.com/us/developer/docs/api_rest/.
Once a Connected App is configured in Salesforce, we will get a consumer key and a consumer secret for OAuth implementation in the client application.
-
Jogender
MemberApril 29, 2019 at 12:59 pm in reply to: Is it possible to remove Like and Comment from Salesforce chatter tab?No. Its not possible to remove Like and Comment from chatter tab in Case standard Layout. Although you can remove Case Comments from Chatter Feed as explained in the following link:
-
Jogender
MemberApril 29, 2019 at 11:03 am in reply to: What Is SFDX JENKINS Integration Error in Salesforce?Please try to run the following commands:
sudo apt-get remove --purge fglrx*
sudo apt-get remove --purge xserver-xorg-video-ati xserver-xorg-video-radeon
sudo apt-get install --reinstall xserver-xorg-core libgl1-mesa-glx libgl1-mesa-dri
sudo rm /etc/X11/xorg.conf.o* /etc/X11/xorg.conf.0* /etc/X11/xorg.conf.f*
sudo rm -rf /etc/atiYou can see the following link for more details:
https://askubuntu.com/questions/735898/cannot-autolaunch-d-bus-without-x11-display/736732 -
Jogender
MemberJuly 8, 2016 at 10:51 am in reply to: Restricting Input Text Field declared as Decimal from entering text valuesHello Ravi,
In your "Submit" method in controller , you can add your customized error message on the page using the below code:
apexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR,'Enter only numeric values'));
Hope this helps.
-
Jogender
MemberJuly 8, 2016 at 10:46 am in reply to: How to Update Record in Custom metadata type through Salesforce Apex Class?Hello Piyush,
You can’t update protected types and records in custom metadata programmatically. You can modify protected types and records only by performing a package upgrade.
You can’t update public types and records by using Apex directly. To modify records from Apex, you must make calls to the Metadata API.
-
Salesforce does not allow Custom Lookup on Activity currently. You cannot add lookup fields or junction objects to Tasks to achieve what you want to do.
But you can create your own Task object and recreate Task functionality.
-
Jogender
MemberMay 24, 2016 at 10:54 am in reply to: How to convert date time to date using formula field?Hi Naman,
You can use the below formula somewhat similar to above by Himanshu for your standard/custom fields.
DATEVALUE(YourField)
-
Hello Utsav,
You can refer the below link to resolve your problem:
https://success.salesforce.com/answers?id=90630000000gtYiAAI
-
Jogender
MemberApril 14, 2016 at 9:29 am in reply to: How can I use email service for files with size more than 5 MB?Hello Rachit,
Refer to the link below..
https://developer.salesforce.com/page/Force.com_Email_Services_Size_Limitations
-
Jogender
MemberApril 14, 2016 at 9:22 am in reply to: How to get value of Custom Label in lowercase?You can use the below code..
{!LOWER($Label.Company)}