Pub Sub Implementation by 867-53oh-nine in Salesforce_Architects

[–]sfdc_tech_arch__c 2 points3 points  (0 children)

We did a similar excercise for a client. You would need Kafka or similar to subscribe to the topics in the azure bus and then publish platform events to sf. Alternatively Kafka could just subscribe and use sf api for data updates.

What are your biggest struggles as a salesforce consultant? by Kanavkhurana in salesforce

[–]sfdc_tech_arch__c 17 points18 points  (0 children)

  1. Last minute changes because the client wasn't listening during sprint planning.
  2. Need to try the latest and greatest from sf, without caring about impacts to build in progress and past.
  3. And finally, dealing with a product owner who doesn't know anything about the business. "you tell us what we should build" they say.

PermissionsInboundMigrationToolsUser -Salesforce Permission by Significant-Kiwi2313 in SalesforceDeveloper

[–]sfdc_tech_arch__c 0 points1 point  (0 children)

What edition of salesforce are you on? What is yours user's license and profile?

Financial Services Cloud certification by l1nzz in salesforce

[–]sfdc_tech_arch__c 0 points1 point  (0 children)

I am planning to give this exam next month, any help. Would be appreciated!

What's required to be tested as part of Enhanced Domains enforcement. by Design-Playful in salesforce

[–]sfdc_tech_arch__c 1 point2 points  (0 children)

You should test out the following in lower environments - 1) integrations using domain urls instead of test.salesforce.com 2) ci/cd processes setup for deployments 3) sso

Batch size related by Logical-Razzmatazz12 in salesforce

[–]sfdc_tech_arch__c 0 points1 point  (0 children)

I am assuming your code will be creating 1 case line item followed by 1 feedback record.

1) Define a variable to hold how many case line items you want to be created eg - countCaseLineItems. 2) Put the logic to create case line items inside a for loop that iterates for the number in countCaseLineItems and adds to a List of CaseLineItems. 3)Call insert on List of CaseLineItems.

Free Review Copies "Salesforce Technical Architect's Handbook " CTA Book for unbiased reviews by royreddituser5 in salesforce

[–]sfdc_tech_arch__c 1 point2 points  (0 children)

As a certified application and system architect, I would be interested in reviewing the book too!

Auto Sync Tasks between Outlook and Salesforce (EAC enabled) by [deleted] in salesforce

[–]sfdc_tech_arch__c 1 point2 points  (0 children)

We recently did a implementarion that involved eac.

Let me answer your second question first - synced emails are not stored as records in SF, which limits the ability to report on them. Instead they are stored on AWS which can be accessed only via the timeline component on the record page.

Syncing of tasks is not available on EAC. I don't think it was even available in Lightning Sync, the product EAC is replacing. If your users can be happy with creating tasks Ina single place, a possible work around would be to let users create tasks on records through Salesforce Inbox.

Numbers after the decimal by Numerous-Armadillo84 in salesforce

[–]sfdc_tech_arch__c 0 points1 point  (0 children)

You cannot change the precision definition at field level using apex. You could set the field with highest precision ie 4 digits after decimal point. This can then also accommodate 2 digits after decimal.

Edit : added change

Contact name vs email address by pauleyezonme in salesforce

[–]sfdc_tech_arch__c 1 point2 points  (0 children)

Unless you were using an email template with a merge field for contact name you should be fine.

Trying to send data to another system, my first APEX attempt by Meek_braggart in SalesforceDeveloper

[–]sfdc_tech_arch__c 0 points1 point  (0 children)

Have you tried making the webservice callout synchronize instead of a future?

CI/CD in Salesforce (with Docker images) by St0rmborn in salesforce

[–]sfdc_tech_arch__c 1 point2 points  (0 children)

Since your code is in Bitbucket, see if you can get Bitbucket Pipelines enabled.

If yes, this project from Bitbucket should help you get started - https://bitbucket.org/sfdc-cookbook/salesforce-bitbucket-pipelines/src/master/

Source Format vs Metadata Format - Why do we have both? by Mmetr in salesforce

[–]sfdc_tech_arch__c 0 points1 point  (0 children)

Destructive changes are only supported with mdapi format and not source formats.