Skip to main content

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.
2 answers
0/9000

Hey Trailblazers! 👋

I’m currently preparing for the Agentforce-Specialist certification and would love some help from this amazing community. I'm looking for reliable and up-to-date practice questions or mock tests that can help me get a real feel for the exam format and question types.

If you've recently passed or are preparing for the exam too, please share any resources, tips, or platforms that worked for you. 

 I'm focusing on strengthening my hands-on knowledge, but a good set of

practice questions would really boost my confidence.

Any help is appreciated – thanks in advance! 🙏💡 

 

#Agentforce

1 answer
  1. Today, 8:38 AM

     I successfully passed my Salesforce Agentforce-Specialist exam with the help of Pass-exam-4-sure. Their well-structured practice exams comprehensively covered all the essential topics. This is an invaluable resource for anyone preparing to excel in their certification journey. 

0/9000

 am stuck on work with a Single Record and getting a error and trying to fix it 

 

and not able to get my vs code to work to fix it myself i am getting errors in my vs code 

 

Step not yet complete in Mindful Wolf Playground 

Make sure the 'bearLocation' and 'bearSupervisor' Lightning web components have been added to the Bear record page.  

 

#Trailhead Challenges  #Trailhead

1 answer
  1. Today, 7:52 AM

    Hi @jill dixson

    Click Setup --> edit page 

    Hi , Click Setup --> edit page Go to Components Section --> Custom --> drag and drop the components -'bearLocation' and 'bearSupervisor' onto the record page.Click on Save and Activate it.

     

    Go to Components Section --> Custom --> drag and drop the components -'bearLocation' and 'bearSupervisor' onto the record page.

    components.JPG

    Click on Save and Activate it. You will be able to see the changes. 

     

     

    Regards 

    Vijaya Sravani S N

0/9000

I did all the configurations for java:home, environment variables to sfdx but i am still running this error when I try to use the sfdx command:    C:\Users\eduardo.waski>sfdx -v  node:internal/modules/cjs/loader:1404    throw err;    ^    Error: Cannot find module 'C:\Users\eduardo.waski\undefined'      at Function._resolveFilename (node:internal/modules/cjs/loader:1401:15)      at defaultResolveImpl (node:internal/modules/cjs/loader:1057:19)      at resolveForCJSWithHooks (node:internal/modules/cjs/loader:1062:22)      at Function._load (node:internal/modules/cjs/loader:1211:37)      at TracingChannel.traceSync (node:diagnostics_channel:322:14)      at wrapModuleLoad (node:internal/modules/cjs/loader:235:24)      at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:170:5)      at node:internal/main/run_main_module:36:49 {    code: 'MODULE_NOT_FOUND',    requireStack: []  }    Node.js v22.15.0   

@* Salesforce Developers * 

3 answers
  1. May 15, 2:31 PM

    If you’re getting MODULE_NOT_FOUND or sfdx not recognized, Salesforce has probably moved you to the newer CLI called sf.  

     

    • sfdx is the old CLI
    •  sf is the new CLI (works better with newer Node versions) 

    Check your install by running: 

     sf --version  

     

    If that works, you will have to start transitioning to the newer CLI and utilize the sf commands. 

0/9000

i am facing issue in Connect Data Cloud and CRM with Enrichment 

 

in cloud data related list when i create new there is no External reservation object. how to fix this? 

 

I'm working on the

 

in  data cloud object i can not find externalReservation 

 

#Trailhead Challenges

8 answers
0/9000
So I'm trying to create a second generation package that contains a report and that is all it contains (with it's report folder definition of course). When I run the version:create command then I get an error back in the form of:

<ReportFolder>/<ReportName>: filterlanguage: Invalid value specified: 1.

Where <ReportFolder> is the report's folder and <ReportName> is the report's name. I've tried this with several kinds of reports and with Translation Workbench on and off in the DevHub org as well as the default scratch org. This just doesn't seem to work. Has anyone else had success in building a 2nd gen package (Unlocked) with any kind of a report and NOT gotten this maddening error message?
4 answers
  1. Today, 5:24 AM

    Yeah, this is one of those annoying issues that comes up when trying to include reports in a second-generation package. The error you're getting:

    filterlanguage: Invalid value specified: 1

    usually means that Salesforce added a value during report creation that doesn't play well with packaging. Specifically, the value 1 for filterLanguage isn't valid for metadata deployments. It often gets pulled in when you retrieve the report metadata from an org.

    What’s worked for me in the past is opening the report’s XML file and either changing the line:

    <filterLanguage>1</filterLanguage>

    to

    <filterLanguage>en_US</filterLanguage>

    or just removing that line completely. After that, try running the package version create command again.

    Also worth noting, reports created through the UI can sometimes include other metadata elements that don’t behave well in packaging. It’s always a good idea to manually review the XML for anything that looks off.

0/9000

Hello, 

 

I am struggling with OCAPI. Wondering if anyone would have any idea with this. Much appreciated. 

 

For OCAPI data API version 25.6.  

get /catalogs/{catalog_id}/categories

you can pass two parameters according to the api doc

select & expand

 but i couldn't figure it out what value should go under here, I read the doc, used api explorer, tried google, tried gpt, tried guess the value, tried everything i could, still with no luck. very frustrated with the doc, can't really find much stuff that is useful. 

 -- 

Q1. Would anyone have any idea what are accepted value for these two parameters?

 

OCAPI data api endpoint /catalogs/{catalog_id}/categories

 

In the sample response json object from this endpoint, there are following sample properties available

{  ...  "id": "string",  "image": "string",  "last_modified": "2025-06-19T04:55:46.255Z",  "link": "string",  "name": {},  "online": true,  "page_description": {},  "page_keywords": {},  "page_title": {},  "parent_category_id": "string",  "paths": [    {      "id": "string",      "name": {}    }  ],  "position": 0,  "sorting_rules": [    {      "creation_date": "2025-06-19T04:55:46.255Z",      "description": "string",      "id": "string",      "last_modified": "2025-06-19T04:55:46.255Z",      "product_sorting_rule_steps": [        {          "attribute_id": "string",          "direction": "asc",          "is_system": true,          "position": 0,          "text_relevance_included": true,          "type_id": "string"        }      ],      "rule_context": "string",      "site": "string"    }  ],  "thumbnail": "string"  ...}

The "online" property controls if the category is online or offline, however there also online from and online to

 from the sfcc interface. 

 

 -- 

Q2: Where are these information (online from and to for categories) been stored in the category object or any object? 

 

api1.png

 

Appreciate your help with this! 

J.J. 

 

#Salesforce Developer @* Salesforce Developers *

1 answer
  1. Today, 7:02 AM

    hi@S S

     

    Q1. 

    select

    lets you choose specific fields to return (like id, name, image). 

    expand lets you include related data (like online, parent_category, categories).

    Example: 

     /catalogs/{catalog_id}/categories?select=id,name&expand=online 

     

    Q2. 

     The

    "Online From" and "Online To" fields are stored in the Category object

    itself in SFCC. 

    These fields define the time range when the category is considered

    online

    or active.  

     

    If this work for you please mark it as the "Accepted answer". so it can help other too.

0/9000

I have added "Printable View" action to account plans page layout and even added in lightning record page but still it is not visible. Any solution? 

 

 

unable to see printable view option in account plans page

 

 

Screenshot_6.png

 

 

 

#Salesforce Admin  #CRM Configuration

0/9000
1 answer
0/9000