• Chiru Gogulakonda
  • NEWBIE
  • 0 Points
  • Member since 2013
  • TechMahindra

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 4
    Replies
Hello All,
There is a requirement from our customer to implement Collaborate Forecasting in Einstein Analytics with the basic Einstein license (Einstein Analytics plus Admin/Plus User).

Use Case : To create forecast dashboard same as Standard Collaborative Forecasts.

Issue:  We are getting all the Opportunities revenue value based on Salesforce Role hierarchy but we need to calculate the values based on Forecasting Role hierarchy. We can achieve this functionality with Sales Cloud Einstein license, but here we have only basic Einstein licenses.

Has anyone implemented/worked custom Collaborate Forecasting in Einstein Analytics?

Thanks in advance for your help.

Chiranjeevi Gogulakonda
Hi,
I am also facing same issue in my org.i have configured SSO with Azure,i can able to logout from community but when login agian this community it is not aksing user login details.

Could you please any one help me out in this.
 

How to display validation messages in  inline visualforce pages, i created one inline vf page.but its doesn't show show validation error messages. please any one help me out for this?

Hi ,

We have implemented Salesforce Single Sign on with Active Directory using SAML 2.0

1. SSO login is successfull.
2. When user log out from salesforce , salesforce session ended however the ADFS session still active .
    User-added image
  
   When the user clicks Single sign on button again ,salesforce session starts without asking for username and password as ADFS session is still active.

Please help to configure "Identity Provider Logout URL" in SSO settings.

How to display validation messages in  inline visualforce pages, i created one inline vf page.but its doesn't show show validation error messages. please any one help me out for this?

Hello! 

 

Well, i tried some examples of how to convert VF to Excel, and i did it with sucess.

 

But now when i convert my own VF Page to Excel, apparently it works fine, but when i try to open, the excel give the following message

"Cant read the file", 

 

Here is the code...

 

 

<apex:page controller="CarteiraCliente" sidebar="false" contentType="application/vnd.ms-excel">

<apex:pageBlock>
    <apex:form>
        <apex:commandButton value="Carrega Tabela" action="{!teste}"/>
    </apex:form>
</apex:pageBlock>

<apex:pageBlock title="Carteira de Cliente">
    <apex:pageBlockTable value="{!valoresClienteMes}" var="cliente" title="Carteira de Cliente">
    
        <apex:column id="nomeCliente" value="{!cliente.nomeCliente}"/>
        <apex:column id="valorTreze"  value="{!cliente.valorTreze}"/>
         
    </apex:pageBlockTable>
</apex:pageBlock>
    
   
    

</apex:page>

 

Tks!!!