• Pasumarthy Raghavendra
  • NEWBIE
  • 0 Points
  • Member since 2018
  • Developer
  • Diligent Force Labs

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 1
    Questions
  • 4
    Replies
Hi,
I am new to Service Cloud and Lightning Knowledge. I am dealing with a requirement of sending an email when a case is created with related knowledge article automatically in lightning experience which means that before the agent could respond if the article is sent to the customer with related artcile link, it would be better. Could anyone help me out regarding this? 

Thanks in Advance.
Hi,
I am new to Service Cloud and Lightning Knowledge. I am dealing with a requirement of sending an email when a case is created with related knowledge article automatically in lightning experience which means that before the agent could respond if the article is sent to the customer with related artcile link, it would be better. Could anyone help me out regarding this? 

Thanks in Advance.
Hello All,

I have a urgent requirment where I need to store file of 50 MB. <apex:inputFile> does not support this much large file, I tried with the below link but I am not able to write code. 
https://hub.appirio.com/tech-blog/upload-a-file-as-large-as-2gb-in-salesforce-using-a-visualforce-page

can someone please help me to achieve this. Thanks in advance.
  • March 02, 2019
  • Like
  • 0
Hello everyone, this is my first post in sf community and i have a strange issue right now .
I have a page with fixed header and my body with:
html,body {
             overflow: auto;
            -webkit-overflow-scrolling:touch;
       }
body {
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
  }
The problem im facing is when you scroll down or up the header will re-appear and my boss dont want this behavior .(Only IOS , desktop and devices mode work perfectly).
Anyone have any idea ? Sorry about my bad english but i tried my best.
Hello All,
I have completed this challenge.

1-For this first you need to create a helper formula field(type-percent) 
Percent Completed :
(DATEVALUE( CreatedDate ) - CloseDate )/100


2- Then you need to create the actual formula field (type- text) by using the helper formula field.
Opportunity Progress :

IF( Percent_Completed__c <=25,"Early", 
IF(Percent_Completed__c <=75,"Middle", 
"Late"))

Thanks,
Nida



 
Hello All,
I have completed this challenge.

1-For this first you need to create a helper formula field(type-percent) 
Percent Completed :
(DATEVALUE( CreatedDate ) - CloseDate )/100


2- Then you need to create the actual formula field (type- text) by using the helper formula field.
Opportunity Progress :

IF( Percent_Completed__c <=25,"Early", 
IF(Percent_Completed__c <=75,"Middle", 
"Late"))

Thanks,
Nida