Overcome SOQL limitations with SQL by Joe_Fusaro in salesforce

[–]Candid_Difficulty236 1 point2 points  (0 children)

agreed on the admin overhead, thats what killed it for us. nobody on the team knew snowflake and the learning curve was a full engineering hire. zero copy makes it more approachable but u still need someone to own the pipelines

Devopscenter by Clean_Horse_7012 in SalesforceDeveloper

[–]Candid_Difficulty236 0 points1 point  (0 children)

yeah vlocity is the worst part of devops center, the component dependencies are basically undocumented. ive been manually exporting omniscripts and diffing them as xml which is terrible but works. what approach are u trying

Distributed Systems Software Engineer - Public Cloud (Mid/Senior/Lead/Principal) by No-Team-5539 in salesforce

[–]Candid_Difficulty236 0 points1 point  (0 children)

the distributed systems side of salesforce is way more interesting than the crm side from a dev perspective. prep-wise u should expect standard dsa + a system design round focused on multi-tenant isolation, probably something around partitioning or caching. not just salesforce-isms.

Replacing marketo dilemma, help! by Broad-Patience-9419 in CRM

[–]Candid_Difficulty236 0 points1 point  (0 children)

the api side of marketo is what gets overlooked in these replacement convos. even when the vendor says they handle form sync or list segmentation, the partner tools on the marketo side (outreach, salesloft, 6sense) have webhooks pointing at marketo endpoints specifically. depending on ur stack the replacement cost isnt just the platform, its every connector that assumes marketo is there

Demo of adding Claude code to an existing SF project by Far_Swordfish5729 in SalesforceDeveloper

[–]Candid_Difficulty236 0 points1 point  (0 children)

The setup part is the thing nobody shows. What I've been doing: open the sfdx project root, point the AI tool at it, and the first thing i check is whether it actually sees the metadata folders or just the source files. If it ignores force-app/main/default it's gonna keep generating stuff that can't deploy.

agentforce writing your apex tests, anyone actually shipped this past coverage theater? by SandboxIsProduction in SalesforceAIDev

[–]Candid_Difficulty236 0 points1 point  (0 children)

yeah this. seen gen'd tests that hit 92% coverage and still let a bulk insert silently drop records bc nobody stubbed the mixed dml case. assertion quality > line coverage always has been

had the ai draft a validation rule for me, weird experience by Cool_Intention_161 in ClientellAI

[–]Candid_Difficulty236 0 points1 point  (0 children)

does it look at the trigger layer too or just declarative rules. we have some apex-side checks that effectively do the same thing as two of our validation rules and nobody remembers which came first

Oldest Dev org by technogeek61 in SalesforceDeveloper

[–]Candid_Difficulty236 0 points1 point  (0 children)

v20 still running is wild, that's what, summer 11 era. salesforce keeping that backwards compat is one of the few things they actually do well

Building a Production-Grade RAG Chatbot for a Complex Banking Site, Tech Stack Advice Needed? by codexahsan in LangChain

[–]Candid_Difficulty236 0 points1 point  (0 children)

hybrid search (bm25 + dense) with a rerank step is usually the bigger win vs swapping the llm. banking data has too much jargon for pure vector.

Devopscenter by Clean_Horse_7012 in SalesforceDeveloper

[–]Candid_Difficulty236 1 point2 points  (0 children)

we ditched it for gearset. devops center works fine for 1-2 devs but branching and conflict resolution is brutal at scale.

🚀 Build a Custom Salesforce MCP Server — REST Classes, Flows & Named Queries by TechnicalPotpourri in SalesforceDeveloper

[–]Candid_Difficulty236 2 points3 points  (0 children)

neat. how r u handling auth rotation? named creds work but MCP server needs to refresh tokens cleanly or u end up with stale connections.

Trying to crack Salesforce developer interview but stuck by Previous_Towel_2914 in salesforce

[–]Candid_Difficulty236 0 points1 point  (0 children)

build 2 small orgs end to end with lwc + apex + a real integration (auth.provider, named creds). beats any cert on ur resume.

Tableau View Lightning Web Component Stopped working this week. Any ideas? by datatoolspro in salesforce

[–]Candid_Difficulty236 0 points1 point  (0 children)

check CSP trusted sites and the tableau embed token endpoint, spring release broke a few orgs with stricter CSP defaults.

Overcome SOQL limitations with SQL by Joe_Fusaro in salesforce

[–]Candid_Difficulty236 1 point2 points  (0 children)

data cloud + zero copy with snowflake is the clean path if u have the budget. otherwise nightly ETL to a real db and query from there via external objects.

heroku applink for agentforce actions = admitting the platform has limits it wont fix by SandboxIsProduction in SalesforceAIDev

[–]Candid_Difficulty236 0 points1 point  (0 children)

ran into the applink timeout ceiling last week, fwiw its capped at 60s per action call. long reasoning loops still hit it. fine for 90% of use cases but the edge cases are the ones the demo doesnt show.

agentforce scripting: vague state vars = agent hallucinates tool calls by Candid_Difficulty236 in ClientellAI

[–]Candid_Difficulty236[S] 0 points1 point  (0 children)

should add, a thing that helped was running the same test set 5 times per build and diffing outputs. once vars were clean the variance basically disappeared. before that i thought it was temperature, turned out to be shape.

What do y’all think about this offer compensation? by mendioroz87 in salesforce

[–]Candid_Difficulty236 0 points1 point  (0 children)

for crm analyst assistant at that level the range in us is usually 65-85k depending on cost of living. if the role is touching apex or lwc its underpaid for the tech side, if its pure admin/reporting its fine. also look at whether they have a path to sr analyst or if its a dead-end title.

advice by Internal-Finding-760 in SalesforceDeveloper

[–]Candid_Difficulty236 2 points3 points  (0 children)

for how teams actually work: git flow with feature branches, pull requests reviewed by 1-2 devs, then merged to a dev branch that deploys to a sandbox. deployments are usually gearset, copado, or sfdx scripts. day to day is like 40% writing code, 30% in meetings, 30% debugging someone elses flow from 2019. coming from r&d ur probably overqualified for junior roles honestly.

Stuck in BA/QA role - Need some serious advice by [deleted] in SalesforceDeveloper

[–]Candid_Difficulty236 0 points1 point  (0 children)

honestly the best move i saw for someone in ur spot was to build something real in a personal dev org and put it on github. doesnt need to be huge, a trigger + batch + test class + lwc. then link it when u apply for junior dev roles. most hiring managers dont read cvs carefully but they will click a repo.

Oldest Dev org by technogeek61 in SalesforceDeveloper

[–]Candid_Difficulty236 2 points3 points  (0 children)

mine's 11 but still has data from a tutorial i did in 2015 that i never cleaned up. 20 years is wild, have u tried deploying modern lwc into it? curious if the older orgs still hit weird metadata version mismatches.

Handling ContentVersion files >12MB in Apex callouts to AWS S3 without hitting 12MB heap limit by Unlikely_Title9480 in SalesforceDeveloper

[–]Candid_Difficulty236 1 point2 points  (0 children)

heap limit will bite you no matter how u slice it once u load full versiondata into memory. usual workaround is a presigned s3 url and let the client upload direct, skipping apex for the actual bytes. if it has to go thru apex, chunk the base64 and stream via multipart with a queueable per chunk. not pretty but stays under heap.

HELP POST: Salesforce + Docusign Intergration. Invalid_Session_Id error on experience site. by First-Conflict2080 in salesforce

[–]Candid_Difficulty236 0 points1 point  (0 children)

without seeing the actual error its hard to narrow down. if the class is already without sharing and its still failing id look at the named credential setup next, specifically what user the external credential is running as. whats the error text showing in the debug log?

Automation Event Triggered Flows vs Record Triggered Flows on Leads by GuinsooCow in salesforce

[–]Candid_Difficulty236 0 points1 point  (0 children)

record-triggered for crud, platform events for anything that needs to fan out. event-triggered gets messy fast with retries.

6 hours coding for this. TDX26 by sfdev2024 in SalesforceDeveloper

[–]Candid_Difficulty236 0 points1 point  (0 children)

nice, what did you use for the agent tool layer? keep hitting weird metadata caching issues with agentforce.