• Robert Griffin 3
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 17
    Replies
Hi Community,

I'm looking for a way to style my quote templates.
I would like to change font color, font sizes, lineheight etc. 

I looked at CPQ, but its very expensive for what I would need (just the styling is in this case important for me). Further, I checked out the rich text editor, but I'm not sure how I can change the font style etc for the dynamic fields.

I have skills in CSS / HTML. 

Any help?

Thanks a lot!
Can I change the font to my liking in animeflix (https://animeflix.city/), how do I install it?
Thank you!

Hi everyone,

With a lot of help from this forum, I got my first invocable method to work but now I am stuck on writing the test class for it.

Here's my invocable method and the attempted test class:

global class CreatedDateWithinBusinessHours {
        @InvocableMethod(label = 'Created Date is within BH' description = 'Check if flow record Created Date is within business hours')
            public static List<Results> execute(List<Requests> requestList) {
           
            // Get the default business hours
            BusinessHours bh = [SELECT Id FROM BusinessHours WHERE IsDefault = true];
            
            // Pass the Created Date Time of the flow Record
            Datetime targetTime = requestList[0].inputCreatedDateTime;

            // Boolean that returns true if date time is within Business hours
            Boolean isWithin = BusinessHours.isWithin(bh.id, targetTime);

            // Results object that holds the return values
            Results response = new Results();

            //Add the return values to the Results object
            response.outputMember = isWithin;

            //Wrap the Results object in a List container 
            List<Results> responseWrapper = new List<Results> ();
            responseWrapper.add(response);
            return responseWrapper;
    }

    global class Requests {
        @InvocableVariable(label = 'Created Date Time' description = 'Created Date of the Flow record' required = false)
           global Datetime inputCreatedDateTime;
        
    }
    global class Results {
        @InvocableVariable(label = 'Within Business Hours' description = 'Boolean that returns true if the Created Date is within Business Hours' required = true)
        public Boolean outputMember;
    }
}


@isTest
private class CDwithinBusinessHoursTest {
    static testMethod void validateCDBusinessHours() {
       
        Case  c = new Case ();
         
        Datetime recordCD = c.CreatedDate;
       
          insert c; 
        
        List<Datetime> requestList = new List<Datetime>();
        requestList.add(recordCD);
       
        Test.startTest();
         
        //Getting this error here: Method does not exist or incorrect signature: void execute(List<Datetime>) from the type CreatedDateWithinBusinessHours
        CreatedDateWithinBusinessHours.execute(requestList);
        
           Test.stopTest();
        
        //Variable does not exist: outputMember             
           System.assert(outputMember);
       
   }
}    

Hello!

I'm completely new on salesforce and i have quite the massive case study to do on it. Therefore, i'm currently still going through the online training to get a feel on the platform and learn how to do things, however i'd be super grateful if you guys could help me with it, or tell me the differents steps you'd might have gone through to solve this:

"Customer Scenario
Build a system in Salesforce.com that suits the needs of the company.
Do not use the Opportunity and Leads objects in Salesforce.com (you can create your own custom objects).
Dear consultant at Custom CRM Solutions,
I run an organization that sells 3 products, blue, red, and green gift boxes. We are targeting stores in shopping malls to use our gift boxes for gift wrapping their merchandise. Our sales people call and visit stores at the malls talking to store owners about our boxes. To help the sales efforts, our sales people carry sample boxes that they distribute to store owners that show some interest.
Frankly, right now I feel like my sales team is producing good results but I have no way to tell; I need to be able to track my sales team’s efforts and determine which boxes are selling.
The best view of my sales team would be one that tracks sales from start to finish, and beyond. For one, samples are at a cost to my company so I need to track how many samples each sales person is giving out and how they lead to sales. Additionally, to make sure our customers are happy in the long term, we want to collect feedback from our customers. We want to know which of our customers are happy, what it is that makes our customers happy, and how our customer’s attitude changes over time. Finally, once a sale is made, it would be nice but not essential to provide both our warehouse and the customer with the details of the sale automatically. We want our customers to get product fast and be informed on when product will arrive.
Ultimately, I need to know what my sales folks are doing, which sample boxes they are giving out, when they make a sale, how happy they make our customers, and how they are building our customer base. "

I'd appreciate whatever help or advices, leads (see what i did there?) or steps you guys may propose, and i'm also available in private message or another platform for help or if you need that help should be paid for etc.

Thank you VERY MUCH in advance
I'm looking for a solution that would occassionally update fields in Salesforce automatically by pulling data from external fields on social media platforms like Instagram and LinkedIn.

For instance, for each Account they have an associated Instagram account and there are 3 primary fields I'd want to update -- # of posts, # of followers, and # following (see below).

Are you aware of any Apps in the App Exchange or of some code that could build this out?
User-added image
Hi,

I am currently working on creating a flow and in this flow I have lots of checkboxes which I am storing in one text template. This text template is then used to update a field of an object. When this flow is executed, the field that is updated is updated with the pain text version of the text template even tough I have edited my text template using rich view.

I would just need something like "System 1 checked: True" in the field that I am trying to populate. Would anyone have any ideas?

Thanks,
Aivaras.
Dear all, I need to complete a case study and I would appreciate if you can give me some indications and clues. As a restriction, Opportunity and Leads objects cannot be used, and the case has to be devolped in Salesforce classic. The case states the following:

I run an organization that sells 3 products, blue, red, and green gift boxes.  We are targeting stores in shopping malls to use our gift boxes for gift wrapping their merchandise. Our sales people call and visit stores at the malls talking to store owners about our boxes.  To help the sales efforts, our sales people carry sample boxes that they distribute to store owners that show some interest. 

The best view of my sales team would be one that tracks sales from start to finish, and beyond. For one, samples are at a cost to my company, so I need to track how many samples each salesperson is giving out and how they lead to sales. Additionally, to make sure our customers are happy in the long term, we want to collect feedback from our customers. We want to know which of our customers are happy, what it is that makes our customers happy, and how our customer’s attitude changes over time. Finally, once a sale is made, it would be nice but not essential to provide both our warehouse and the customer with the details of the sale automatically. We want our customers to get product fast and be informed on when product will arrive.

Ultimately, I need to know what my sales folks are doing, which sample boxes they are giving out, when they make a sale, how happy they make our customers, and how they are building our customer base.
Hi all ,


new to salesforce development . I need a basic design for school-student management  . We will have 3 different object as 

1. Student --> containing basic info about student like DOB ,name ,standard,StudnetID  etc....StudentID will be unique . 

2. Marksheet --> This object has field like studentID ,name , marks in every subject ,and many more . we need to send report card to parent . mail will be used from Student object .

3. attendance sheet --> montly attendance sheet which need to be send to parent with remarks . Also StudendID and Student name will be here . 

Now student ID is here unique and we need to send marksheet and attendance sheet everymonth . we will upload csv file for marks and attendance at the end of every month . according to that data we want to send a mail to parent .

my question is how I can relate this student object to rest of two object based on studentID and how I can store data for every month (like if someone wants to check  attendance for the current year ,we should be able show them ). 

Thanks 
I have a PowerPoint containing 15 slides. We would like to display this PowerPoint as a page on our customer community. We want the slides to show in full on the community page for the customers to click through. What would be the best way of doing this?
Need Ideas for my college project on Restaurant Point of Sale..I mean my intention is to use salesforce lightning,Apex programming to achieve below features in my dev org.

Can anyone suggest me what should be my approach to achieve below functionalities namely A),B) and C) below,if you can go detailed steps,would be really grateful.Want to keep this thread a living document for others who wish to develop such project in future.

A) Inventory management:
-->Here i want to manage ingredient level inventory in real-time and start restocking at the right levels

B) Online Ordering:
-->Here i want customer can send order tickets straight to the kitchen

C) Table Management:
-->Here i want on-table ordering that allows restaurant customers to order food from android phone
-->Give feedback right from the table without having to wait for restaurant staff
 
More details at: http://www.jobs.ac.uk/job/BIQ821/salesforce-administrator-developer/
Hai

I am New To SFDC

Please Help me Any One....
Hi all,

have anyone of you already started/finished one of these domain specialist trainings?
There is a lack of information, and I really want to know for what I'll pay 400$.. I can't find anything revant about these trainings. 

--> http://www.salesforce.com/campaigns/success-services/architect-academy.jsp
--> https://www.inkling.com/store/salesforce-university/

Thanks,
Marek
I'm stuck on the SOSL query challenge in trailhead. can't write the method.

cheers
Hello,
we are three students doing a graduation project on salesforce plateforme.
my question is the following :
- we created a first account called, isitech.partner@gmail.com "system administrator": fully working even with the apex eclipse force.com api.
- we created a second account edold "system administrator" : fully working able to use the api as well.
our problem is that we need two more accounts with the same authorizations to be able to connect to our own computers each without resetting the security token each, because in the end it disconnects the other computer.
we would like to have each our own account and work on our project together and sync it all together, but the developer edition doesn't allow us to have more than two salesforce license, is there a way to get two more somehow? or any other way to create accounts allowed to modify the plateforme for our project?
thanks again in advance