取引先の住所を地図上にマッピングされた形で見たいです。
そのような機能はありますでしょうか?
取引先担当者別で切り替えなどもしたいです。
AppExchengeになにか良いアプリがあれば教えてください。
よろしくお願いいたします。
@* 質問広場~初心者から上級者まで~ 日本 *既出でありますが、みなさん仰るように「UPWARD」と考えます。
※実際に、わたくしも、お客様へ営業提案活動・プリセールで、本製品をご提案差し上げたことございます。
取引先の住所を地図上にマッピングされた形で見たいです。
そのような機能はありますでしょうか?
取引先担当者別で切り替えなどもしたいです。
AppExchengeになにか良いアプリがあれば教えてください。
よろしくお願いいたします。
@* 質問広場~初心者から上級者まで~ 日本 *既出でありますが、みなさん仰るように「UPWARD」と考えます。
※実際に、わたくしも、お客様へ営業提案活動・プリセールで、本製品をご提案差し上げたことございます。
#Trailhead Challenges
I'm newish to Salesforce and dataloader.io. I want to import new contacts and create accounts where the contact is associated. I also have data associated with the new contacts to import to a custom object. What is the best sequence to do this in dataloader.io?
Hi @Connie Pax
For NPSP it is always better to used NPSP Data Import to import data in salesforce
Here are some useful article and trailhead links related to it
https://trailhead.salesforce.com/content/learn/projects/import-your-data-using-npsp-data-importer
https://trailhead.salesforce.com/content/learn/projects/extend-npsp-data-importer-with-advanced-mapping/import-data-to-a-custom-object
https://help.salesforce.com/s/articleView?id=sfdo.npsp_standard_di_fields.htm&type=5
https://help.salesforce.com/s/articleView?id=sfdo.npsp_using_di_template.htm&type=5
Thanks
Hi All,
I have a custom object and in this custom object I have lookup field to Account. When we are creating the Account from lookup then we can see the correct Layout of Account. But after save ,if we wanted to create Account from this lookup again then we see totally differrent Layout. Does anyone have any idea how to get the same Layout?
Thanks
@* Sales Cloud - Best Practices * @* Sales Cloud - Getting Started *
Hey @Nehi Pathak, never saw this behaviour before.
Can you confirm once you save the custom object record with newly created account, you are editing the record and removing the related Account and trying to create a new account record again?
Looking for some help with case logic for the following
If Implementation = "Product 1" Then Disc Pct = ($26,400 - ARR)/$26,400 *100
If Implementation = "Product 2" Then Disc Pct = ($39,000 - ARR)/$39,000 *100
If Implementation = "Product 3" Then Disc Pct = ($90,000 - ARR)/$90,000 *100
#Formulas
Hey @Matt Pinkston
, checkout this:
CASE(
Implementation,
"Product 1", (26400 - ARR) / 26400 * 100,
"Product 2", (39000 - ARR) / 39000 * 100,
"Product 3", (90000 - ARR) / 90000 * 100,
0
)
Hi all,
Do you know about catalog planning and government strategies, i need experiences, resources, documentation.
Regards
Hi Jose,
Catalog planning in Salesforce often uses CPQ (check its docs & Trailhead). Custom catalogs are built with objects & LWCs. Government strategies link to Public Sector Solutions, compliance, and integrations via Mulesoft/APIs.
For experiences, try the Trailblazer Community, partners, and events.
To help more, share your industry and specific needs.
If anyone can shares the samples of the test exam, please share the link.
Thanks
Nav
#Certifications
the page never show up with error on
#Trailhead Challenges
Hey @JiEun Kim, make sure you disconnect some old playground orgs from your trailhead account and then create a new org and see if it resolves your issue
I'm trying to commit changes in my Copado User Story. I have selected the metadata and clicked on Commit Changes, but I encountered the error:
"Feature not enabled - Git. Click the 'Go Back' button to return to the record. The commit process has started."
This is a new environment, and I suspect it might be related to Git configuration or permissions.
I’m not sure what needs to be updated or enabled to clear this error.
Here’s what I’ve checked so far:
Do I need to enable Git somewhere, or could it be related to Copado user permissions or licensing? Any guidance on resolving this would be greatly appreciated!
what to update to clear this error.
Any suggestions will be greatly appreciated.
public class UpdateLeaseQueueable implements Queueable {
List<Lease__c> updateLeases = new List<Lease__c>();
public UpdateLeaseQueueable( Map<Id, Lease__c> leases) {
updateLeases.addAll(leases.Values());
}
public void execute(QueueableContext qc) {
if (!updateLeases.isEmpty()) {
//pass leases to Batch class
}
}
}
Batch
Cheers,Pglobal class UpdateLeaseQueueableBatch implements Database.Batchable <sObject>, Database.Stateful{
global Database.QueryLocator start(Database.BatchableContext bc){
}
global void execute(Database.BatchableContext bc, List<> listLease){
}
global void finish(Database.BatchableContext bc){
}
}
global class UpdateLeaseQueueableBatch implements Database.Batchable <sObject>, Database.Stateful{
List<Lease__c> leaseList;
global UpdateLeaseQueueableBatch(List<Lease__c> records) {
leaseList = records;
}
global Database.QueryLocator start(Database.BatchableContext bc){
return leaseList;
}
global void execute(Database.BatchableContext bc, List<Lease__c> listLease){
system.debug('leaseList --> ' + leaseList);
system.debug('listLease --> ' + listLease);
}
global void finish(Database.BatchableContext bc){
}
}
Queuable Class:
https://salesforce.stackexchange.com/questions/306693/pass-insert-list-to-batch-apex-from-triggerhttps://salesforce.stackexchange.com/questions/194505/passing-parameter-in-batch-apex-to-another-batch-apexhttps://salesforce.stackexchange.com/questions/103223/passing-parameter-to-batch-apex/103224Thanks,public class UpdateLeaseQueueable implements Queueable {
List<Lease__c> updateLeases = new List<Lease__c>();
public UpdateLeaseQueueable( Map<Id, Lease__c> leases) {
updateLeases.addAll(leases.Values());
}
public void execute(QueueableContext qc) {
if (!updateLeases.isEmpty()) {
//pass leases to Batch class
Database.executeBatch(new UpdateLeaseQueueableBatch(updateLeases));
}
}
}
Maharajan.C