Skip to main content Take our 5-minute Community Survey. Open now through 4/11/2025. Click here to participate.

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.
2 answers
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    Today, 4:36 PM

    Hello, have you tried creating a custom file with the same name and extension, and use it instead ?

    Eric

0/9000

Hello Guys,  

 

I am trying to get a Custom Data into a VF Page PDF. My Issue is that I am unable to send that Huge data into VF Page as Params. 

 

 

I tried to set some cookies or Headers

PageReference pageRef = Page.SummaryDetailsPDF;

List<Cookie> cookiesList = new List<Cookie>();

Integer count = 0;

for(SummaryDetailsPdfController.SummaryDetail detail : content.summaryDetails) {

Cookie counter = new Cookie('Summary'+count, JSON.serialize(detail), '/', -1, false);

count++;

cookiesList.add(counter);

}

// Set the new cookie for the page

pageRef.setCookies(cookiesList);

pageRef.getParameters().put('companyName', companyName);

pageRef.getParameters().put('footer', JSON.serialize(content.footer));

pageRef.getParameters().put('summarySize', ''+content.summaryDetails.size());

Blob pdfBlob = pageRef.getContentAsPDF();

String base64Pdf = EncodingUtil.base64Encode(pdfBlob);

return base64Pdf;

 

Even tried adding Headers 

        pageRef.getHeaders().put('Summary', 'Hello');

But Nothing Worked. 

 

 

Any Suggestions apart from creating a Salesforce Object for that Huge Custom Data ? 

 

LWC present in the Experience Cloud Site is the Source for all the Data. 

 

#Visualforce  #VisualForce Communities  #VisualForce Page

0/9000
7 answers
  1. Mar 31, 7:11 PM

    Hi @Jacquie Robinette

     Here is the prework info, you will also be receiving this in an email this week. Please let me know if you have any additional questions. Thank  you! 

     

    Pre-Work Checklist

    These are the required steps to get ready for your Tableau Bootcamp. There are more details about each step below.

    1. Install Tableau Desktop version 2024.3 or later

    2. Access Mimeo and download the student materials

    3. Bring your laptop and power cable (and a mouse and/or travel/portable monitor, if desired)

     

    1. Install Tableau Desktop

    The Tableau Bootcamp curriculum is based on Tableau Desktop version 2024.3 If you do not have Desktop version 2024.3 downloaded, you can download the trial version for use during the session.

     

    2. Access Mimeo and Download the Student Materials

    Before you get to San Diego, please make sure you can access the student materials via Mimeo, our virtual eBook vendor. You have registered for: Visual Analytics and the access key for materials is: USAUA3A1B0AJ. For more information on how to redeem your access key via Mimeo, please review the Trailhead Academy Class Materials help document.

0/9000

Hello all,

 

We want to visualize (e.g. using an LWC) what the best candidates for a recurring sequence of service appointments would be.

There are several limitations to building this solution and I wonder if anyone has worked with a similar requirement and have some ideas to throw at me?

 

Thanks in advance!

5 answers
0/9000

 I can't see the carousel template option for MobilePush in Content Builder as described in the Salesforce Marketing Cloud guide. Can someone help me understand how and why this is happening? I’d like to know if there’s something I need to enable that I haven’t yet, even though the release notes state: This change applies to all editions of Marketing Cloud Engagement with MobilePush included.

0/9000

Hi Team,

I'm unable to see all my certifications under my profile, even though I’ve logged in using the same Webassessor account email. I’ve also connected that account to Trailhead and merged all my Trailhead profiles accounts, but the certifications are still not showing.

I need to complete the due maintenance for the Email Specialist Certification, and the deadline is 10-04-2025.

I have raised a Salesforce Help case (#470230779), but no one has looked into it even after 24 hours. When I contacted support over the phone, they mentioned that the case would be escalated. However, since it relates to Trailhead, their support team will review it within 24 to 48 hours.

Requesting urgent attention to this as the maintenance deadline is approaching. Can someone please help me in this case !

Thanks,

1 answer
  1. Today, 5:03 PM

    Why not just try to complete the Maintenance Module and check the Email for completion of Maintenance? 

     

    If Unsure about the Maintenance Module then you can Just search for the One's which you compeleted previously, this new one might be of similar name. 

     

    I also faced similar issue few months back, but the Issue got resolved all by itself.

0/9000

We are a nonprofit org who home delivers meals to individuals living with life altering illness, in New York City. This year we implemented Salesforce to manage our clients, our supply chain and our routing, including FSL. 

We worked with a certified consultant to help us to set up FSL, and they have done a good job of setting up our system. 

We use ~35 vans to deliver to ~1200 households each day. We are seeing that very frequently, FSL builds the routes in such a manner that it requires our drivers to return to a neighborhood where they have already been. See attached for an example. 

Our consultant is a bit stumped on this, and hasn't been able to resolve. We haven't been able to find other consultants to resolve. 

Our delivery team is getting very frustrated. We are having to pay overtime to drivers whose days are much longer than they were with the old software. Our head of delivery wants to return to our old platform. 

 

Are there still office hours available for someone to review? Are there recommended consultants who might be able to look at this? 

Any advice is very welcome. 

7 answers
  1. Today, 5:02 PM

    Hello @Julie Van Dore

     

    Have you considered using the Same Site service objective? It could help to make sure a minimal number of mobile workers visit the same location by scheduling service appointments located at the same site together. 

     

    Please refer to the Same Site Service Objective for more details. 

     

    Thank you!

0/9000

Is there a way to change the default text fonts in CRM analytics labels and text boxes? Currently, I could see that we can change font size, colour, bold, italics etc but not the fint itself.

4 answers
0/9000

I just watched this video

that demonstrates low-code external connectors. I cannot find any documentation or Trailhead guides on how to configure them. 

 

Does anyone know where to look for this information? 

 

#Flows  #Automation  #Integration  #Salesforce Admin  #Saleforce Administrator

0/9000

I am writing a validation rule to require a field on a custom object called Agreements. It should not fire on creation of the record, only on update. With this said, I think I need to input NOT(ISNEW()) into the AND() statement. Here is what I have right now, but the validation rule is still firing on create. It should not fire if Fuel_Purch_T_E_Prepaid__c or VCAP_Prepaid__c = FALSE. It should only fire for those that are in CA or UT.  

 

IF(

OR(

Fuel_Purch_T_E_Prepaid__c = FALSE),

OR(

VCAP_Prepaid__c = FALSE),

AND( 

$Setup.Control_Panel__c.Disable_Validation_Rules__c = FALSE,

$Profile.Name = 'CP - Sales Lightning - PROD',

RecordType.Name = 'Master Services Agreement',

CASE(ES_Physical_State_or_Province__c,

'CA',1,

'UT',1,

0 ) = 1,

ISBLANK(TEXT( Credit_Limit_Type__c )),

NOT(ISNEW())

))

12 answers
  1. Dec 6, 2022, 9:42 PM

    You don't need an IF in a Validation Rule Formula 

     

    Are you trying to do this?

     

    AND(

    NOT(ISNEW()),

    OR(

    Fuel_Purch_T_E_Prepaid__c = FALSE),

    OR(

    VCAP_Prepaid__c = FALSE),

    AND(

    $Setup.Control_Panel__c.Disable_Validation_Rules__c = FALSE,

    $Profile.Name = 'CP - Sales Lightning - PROD',

    RecordType.Name = 'Master Services Agreement',

    CASE(ES_Physical_State_or_Province__c,

    'CA',1,

    'UT',1,

    0 ) = 1,

    ISBLANK(TEXT( Credit_Limit_Type__c ))

    )

    )

0/9000