Skip to main content

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.

#Salesforce Developer

 

I am creating a PDF summary for our accounts that pull tables from related objects.  One of the fields that I am returning is a checkbox field and have the below code.  The PDF table is brining back "true" or "false" values.  Can I change the display so it shows ticks in the table?  If not, can I change the value so True = "Y" or "Yes and False = "N" or No? 

 

<apex:pageBlock >

<apex:dataTable style="text-align: center" value="{!IOR}" var="o" border="1" styleClass="print-friendly" width="100%">

<apex:column styleClass="inBorder" style="width: 150px; padding: 8px; text-align: center; border: 1px solid #ddd;">

<apex:facet name="header">Asia</apex:facet>

<apex:outputText>

{!o.Asia__c}

</apex:outputText>

</apex:column>

</apex:dataTable>

</apex:pageBlock>

1 answer
  1. Today, 1:20 PM

    Hi @Richard Samme

    To display checkboxes in your Visualforce PDF, you can use conditional rendering to show a tick mark or a different value based on the boolean field. 

    • You can use Unicode characters to represent checkboxes. For example, you can use ✓ for a checked box and ✗ for an unchecked box.
    •  Use apex:outputText with conditional rendering to display the appropriate character based on the boolean value.

    Below is a sample logic that you may try:

    <apex:page renderAs="pdf">

    <apex:pageBlock>

    <apex:dataTable style="text-align: center" value="{!IOR}" var="o" border="1" styleClass="print-friendly" width="100%">

    <apex:column styleClass="inBorder" style="width: 150px; padding: 8px; text-align: center; border: 1px solid #ddd;">

    <apex:facet name="header">Asia</apex:facet>

    <apex:outputText value="{!IF(o.Asia__c, '✓', '✗')}" />

    </apex:column>

    </apex:dataTable>

    </apex:pageBlock>

    </apex:page>

     If you prefer "Yes" and "No" instead of ticks/crosses: 

    <apex:outputText value="{!IF(o.Asia__c, 'Yes', 'No')}" />

     

     

    Hope this helps. Thanks! 

     

     

0/9000

why am i getting this error when i try to complete superbadge challenge of" 

Set Up the Agent and Einstein Data Library

Configure the Coral Cloud Experience Agent and create Einstein Data Libraries as data sources for the agent." 

 

#Trailhead Challenges

1 answer
  1. Today, 1:19 PM

    Hello @CHIRASHRI Jagannatha Sapaliga

    • Superbadges can definitely be challenging—but don’t worry, you’ve got this! 💪 
    • While folks in the Trailblazer Community can’t share step-by-step instructions (since Superbadges are official credentials), we’re all cheering you on.
    • To stay on the right track, check out the Superbadge Challenge Help page—it’s full of great tips and links to helpful articles for each badge. 
    • Still stuck? No problem! You can always reach out to the friendly team at Trailhead Help and they’ll help you sort things out.  
    • You’ve got this—keep going! 🚀✨
0/9000

We are implementing NPC and need to import our commitments, campaigns. The challenge we are facing is how to create the Gift default designations for each commitment. Any Suggestions, ideas 

 

We have already created campaigns and associated gift designation 

 

#Nonprofit  #Data Management

1 answer
  1. Today, 1:15 PM

    When importing commitments, we included the DefaultDesignationId field with each record and mapped it directly to the existing Gift Designation record that was already linked to the campaign. 

     

    Just make sure your designation records are loaded first and referenceable (via external IDs if needed). Also, double-check that the Commitment record type supports that field in your config.

0/9000

Hi 

 

I would activate the Update Report Fields Inline only for some profiles. 

How it's possible please ? 

 

The other users can update fields in their records, but i don't want they update using the report. 

 

Thanks.

1 answer
  1. Today, 1:08 PM

    That setting is global, you can’t enable Update Report Fields Inline just for specific profiles out of the box. 

     

    One workaround is to use field-level security or record types to restrict edit access by profile, so even if inline editing is enabled, they won’t be able to change values they shouldn’t. Not perfect, but helps control exposure.

0/9000

I'm researching whether or not my org wants to use the new reassign action that's in the Spring '25 release. I am trying to determine if it works with apex routing or if it requires flow. I can't seem to find any documentation regarding this and I'm not as knowledgeable with how Omni works on the backend to know for myself.    

1 answer
  1. Today, 1:05 PM

    The new Omni Reassign action (Spring 25) is designed to work with standard Omni-Channel routing, primarily flow-based. If your org is using Apex routing via OmniSupervisor.assignWork() or custom logic, the Reassign action won’t automatically trigger that Apex.  

     

    You’d need to handle reassignment logic yourself in Apex, or migrate to flow-based routing to fully leverage the new feature. Worth testing if you're considering switching.

0/9000

On the opportunity pipeline inspection view there is an owner field so that you can view the pipeline by different methods such as My Team, My Territories opportunities, My Teams Opportunity Teams which I believe are driven from the Role Hierarchy and Territory management. There has also been some other teams created such as for example "John Pritchett's team" At first I thought this was an opportunity team but there are none created, there is no public group or queue that matches the name. Can anyone provide any guidance on how the owner Id field teams are configured please?    Thanks   

2 answers
  1. Feb 26, 4:53 PM
    In summary, they appear for any role that has direct reports in the hierarchy. Visible to those above them in the role hierarchy to easily view data rolled up to each role.
0/9000

We have our list price locked in our system so our sales reps cannot change pricing. However, is it possible to unlock ONE product's list price in it's pricebook? and leave the rest locked? 

 

My thoughts are to unlock it, and then create a validation rule to lock all but that one option? But I'm unsure what that would be..  

 

The product name is "Miscellaneous" and it's in two price books, end user and reseller. 

 

#Salesforce Developer  #Flow  #Data Management  #Sales Cloud  #Reports & Dashboards  #Salesforce Admin  #Formulas  #Salesforce  #Trailhead

2 answers
  1. Divya Chauhan (Kcloud Technologies) Forum Ambassador
    Today, 1:04 PM

    Yes it’s possible to unlock the list price for just one product (e.g.Miscellaneous) in specific price books (e.g.End User and Reseller) while keeping the rest locked in Salesforce. Your idea of using a validation rule is a good approach but 1.first you  Unlock List Price at the System Level-Field-Level Security: Go to Setup > Object Manager > Price Book Entry > Fields > List Price and ensure the field is not set to "Read-Only" for the sales reps' profiles.

    Page Layout: Confirm the field is editable on the Price Book Entry page layout. then after try 2.validation rule-AND( NOT(ISPICKVAL(Product2.Name, "Miscellaneous")), OR( Pricebook2.Name = "End User", Pricebook2.Name = "Reseller" ), ISCHANGED(UnitPrice) )

0/9000
1 answer
  1. Today, 1:03 PM

    Hello @Komal Hardwani

    You will not find shared/free vouchers here. Please follow these suggestions to try to win/earn one voucher

    Good luck with your certification exam preparation!

     

    Please refer to this: 

0/9000

Hello, 

 

 I am seeking a method to enable viewing files on a Work Order in an offline version. In the Briefcase builder on the Work Order object, I added the related objects "Content Version" and "Content Document Link." However, the Service Resource is still unable to view the files offline. Am I missing something, or is there an alternative approach?

2 answers
0/9000