We need to follow some steps to enable and configure Multicurrency in salesfroce 1. Enabling Multicurrency Setup -> Company Information -> Edit -> Activate Multiple Currencies (Check this check box). Note : Once Multicurrency is enabled we con't disable it. 2. See all the available New Currencies Setup -> Company Information -> Currency Setup (button) as shown in the image below. 3. How to Create Multiple Currencies in Salesforce Setup -> Company Information -> Currency Setup -> New As shown in the image below, we can create new Currencies. 4. How to use Multiple Currencies in Opportunity Creation. Note : If you enable Multy-currency then In the opportunity(Object), "Opportunity Currency" (field) is mandatory to create an opportunity. 5. How to use Multi-currency in Quote Note: 1. If you gave currency for opportunity as EUR, and in quot...
Contact Trigger : ================================================ trigger ContactTrigger on Contact ( after insert , after update , after delete , after undelete ) { Set < Id > accountIds = new Set < Id >(); // Insert, Update (new AccountId), Undelete if ( Trigger . isInsert || Trigger . isUpdate || Trigger . isUndelete ) { for ( Contact con : Trigger . new ) { if ( con . AccountId != null ) { accountIds . add ( con . AccountId ); } } } // Delete, Update (old AccountId) if ( Trigger . isDelete || Trigger . isUpdate ) { for ( Contact con : Trigger . old ) { if ( con . AccountId != null ) { ...
Comments
Post a Comment