-
ChatterFeed
-
0Best Answers
-
1Likes Received
-
0Likes Given
-
15Questions
-
8Replies
Enable Wave anayltics
I tried installing the Salesforce Analytics App on Ios device. When tried to login into my dev org from the app it is throwing an error:
Enable analytics cloud in your org.
Please let me know from where can i enable analytics cloud for my org, inorder to use it in the app.
Also it would be great if you could shre few docs for Wave anaylitics.
Thanks in Advance!
- CloudPower1
- November 05, 2014
- Like
- 0
- Continue reading or reply
Notification after installing unManaged package successfully
global interface InstallHandler {
void onInstall(InstallContext context)
}
which can be used to send notifictaion email after package is installed.
In the same way is there any way to get notification once an unManaged package is installed?
Please suggest if there is any solutions/ideas.
- CloudPower1
- July 10, 2014
- Like
- 0
- Continue reading or reply
Can we create Knowledge articles in Salesforce using Apex code?
Can we create Knowledge articles programatically using Apex code in salesforce?
- CloudPower1
- June 04, 2014
- Like
- 0
- Continue reading or reply
Delay in inline VF page loading in Standard detail page of Sobject
Please let me know if there is any approach to handle this delay in page load of Inline VF page. Basically the end user is not happy for the the time taking to load inline VF page
- CloudPower1
- June 04, 2014
- Like
- 0
- Continue reading or reply
Standard Search URL
Will change in future releases.
We will be using this URL in our system outside of salesforce in order to redirect to standard SF search page.
- CloudPower1
- May 16, 2014
- Like
- 0
- Continue reading or reply
Hide edit and delete button in standard detail page using jquery or Javascript
Hi ,
I am trying to hide standard edit/delete button from standard detail page.
I tried using Javascript and Jquery but none is working.
Javascript:
document.getElementsByName("edit").style.display='none';
Jquery:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$j = jQuery.noConflict();
$j(document).ready(function(){
$j("input[name=edit]").hide();
});
</script>
Please let me know if some thing needs to be changed in the above code, or let me know if any easy solution other than record types.
Thanks
Prashanth
- CloudPower1
- December 09, 2013
- Like
- 0
- Continue reading or reply
Hide edit and delete button in standard detail page
Hi ,
I am trying to hide standard edit/delete button from standard detail page.
I tried using Jvascript and Jquery but none is working.
Javascript:
document.getElementsByName("edit").style.display='none';
Jquery:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$j = jQuery.noConflict();
$j(document).ready(function(){
$j("input[name=edit]").hide();
});
</script>
Please let me know if some thing needs to be changed in the above code, or let me know if any easy solution other than record types.
Thanks
Prashanth
- CloudPower1
- December 09, 2013
- Like
- 1
- Continue reading or reply
isssue while connecting to share point server from salesforce
I have a requirement where i need to store data in sharepoint List whenever a record is created in salesforce org.
Steps: I was able to download the WSDL file from Sharepoint2007 server which is in DMZ(Publicly available).
Generated apex class out of the WSDL file from sharepoint. But when tried to access the methods by passing correct credentials and endpoint url facing the below error:
System.CalloutException: IO Exception: External server did not return any content:
Please let me know if any one has any idea/views on this.
Thanks in advance!
Regards shaan
- CloudPower1
- October 24, 2013
- Like
- 0
- Continue reading or reply
isssue while connecting to share point server from salesforce
I have a requirement where i need to store data in sharepoint List whenever a record is created in salesforce org.
Steps:
I was able to download the WSDL file from Sharepoint2007 server which is in DMZ(Publicly available).
Generated apex class out of the WSDL file from sharepoint. But when tried to access the methods by passing correct credentials and endpoint url facing the below error:
Please let me know if any one has any idea/views on this.
Thanks in advance!
Regards
shaan
- CloudPower1
- October 24, 2013
- Like
- 0
- Continue reading or reply
Add Quota to user
Hi,
I have set Quota enabled for forecast setting .I need to set Quota for user but I'm unable to see the Quota related list in user record.
I have enabled users in forecast hierarchy and user has required permissions.
Is there anything required to view/set Quota ??
This is quite urgent and any help would be highly appreciated!
Thank you!
- CloudPower1
- October 17, 2013
- Like
- 0
- Continue reading or reply
Error: unexpected token: ":" is returned in Visualforce pages
After Winter'14 release we are facing the below issue in Visual flows: Error: unexpected token: ":" is returned in Visualforce pages using flow:interview with interview attribute Can anyone please help us on this or provide a workaround as we are facing this issue before our release its on high priority. Thanks
- CloudPower1
- September 11, 2013
- Like
- 0
- Continue reading or reply
Hippa Compliance
Does Salesforce Support HIPPA Compliance.
If Yes do we have any seperate DataBase where the data can be stored.
- CloudPower1
- September 10, 2013
- Like
- 0
- Continue reading or reply
Create a post to a blog from salesforce.com
Is there any way to create/Share a post from Salesforce.com Org to a blog.
Description: I want to create a post from salesforce org(force.com IDE) and want to send the data to a blog using Apex code.
Please let me know if there is a way to do this using Apex Code.
- CloudPower1
- July 17, 2013
- Like
- 0
- Continue reading or reply
Report creation without record count on axis.
Need suggestion regarding report creation.
While Creating reports in salesforce there seems to be record count mandatory on x axis or y axis( Which is to be a summary or Integer field).
Is there any way i can add two text fileds in both x axis and Yaxis.
Ex: In my requirement i need a report which display all the tasks name on xaxis and status of tasks on y axis.
Wasnt able to achieve this.
can anyone suggest me how to create this kind of report.
Thanks in advance.
- CloudPower1
- July 11, 2013
- Like
- 0
- Continue reading or reply
Calculating start date from a list of business days for a particular month
Hi,
I have a requirement where I need to calculate start date from business days in a particular month.
Ex:
In the month of April i need to calculate the start date from list of business days for that particular month.
Ex: 2ndof April is start of business date of April month and i need to calculate that date :
How can we calculate start date for that particualr month?
Thanks
- CloudPower1
- May 22, 2013
- Like
- 0
- Continue reading or reply
Hide edit and delete button in standard detail page
Hi ,
I am trying to hide standard edit/delete button from standard detail page.
I tried using Jvascript and Jquery but none is working.
Javascript:
document.getElementsByName("edit").style.display='none';
Jquery:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$j = jQuery.noConflict();
$j(document).ready(function(){
$j("input[name=edit]").hide();
});
</script>
Please let me know if some thing needs to be changed in the above code, or let me know if any easy solution other than record types.
Thanks
Prashanth
- CloudPower1
- December 09, 2013
- Like
- 1
- Continue reading or reply
Can we create Knowledge articles in Salesforce using Apex code?
Can we create Knowledge articles programatically using Apex code in salesforce?
- CloudPower1
- June 04, 2014
- Like
- 0
- Continue reading or reply
Delay in inline VF page loading in Standard detail page of Sobject
Please let me know if there is any approach to handle this delay in page load of Inline VF page. Basically the end user is not happy for the the time taking to load inline VF page
- CloudPower1
- June 04, 2014
- Like
- 0
- Continue reading or reply
Hide edit and delete button in standard detail page
Hi ,
I am trying to hide standard edit/delete button from standard detail page.
I tried using Jvascript and Jquery but none is working.
Javascript:
document.getElementsByName("edit").style.display='none';
Jquery:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$j = jQuery.noConflict();
$j(document).ready(function(){
$j("input[name=edit]").hide();
});
</script>
Please let me know if some thing needs to be changed in the above code, or let me know if any easy solution other than record types.
Thanks
Prashanth
- CloudPower1
- December 09, 2013
- Like
- 1
- Continue reading or reply
Error: unexpected token: ':' when passing Values to varibles into a flow
Hi,
I am trying to pass values to varibles of a flow named 'CallReasonSelectFlow' from vf page.
I am getting this error. unexpected token: ':' at the interview attribute in the vf page.
i will be inserting this page as a related list..
my vf page:
<apex:page standardController="Contact_Program__c" extensions="VisualWorkFlowController" >
<flow:interview name="CallReasonSelectFlow" buttonLocation="bottom" interview="{!CallReasonSelectFlow}" >
<apex:param name="SelectedProgramId" value="{!ProgramId}"/>
<apex:param name="SelectedProgramName" value="{!ProgramName}"/>
</flow:interview>
</apex:page>
Controller:
public with sharing class VisualWorkFlowController {
public Flow.Interview.CallReasonSelectFlow CallReasonSelectFlow {get; set;}
public Contact_Program__c contctProgObj;
public Program__c ProgObj;
public static String ProgramId{get;set;}
public static String ProgramName{get;set;}
public VisualWorkFlowController (ApexPages.StandardController controller) {
------------------ my code for getting values..
}
Thanks in advance.
- Rakesh31
- September 10, 2013
- Like
- 0
- Continue reading or reply
Visualforce with Recordtype default picklist values
I am having an issue where I can get the picklists to filter etc in my custom VF (assign the recordtype to the object) but none of the fields are utilizing the default values set in the recordtype if I display the field. If I do not display the field, the defaults work just fine. Anyone know if or how this should work? is there anything special I need to do to make it happen?
- DamionAllen
- July 17, 2013
- Like
- 0
- Continue reading or reply
Report creation without record count on axis.
Need suggestion regarding report creation.
While Creating reports in salesforce there seems to be record count mandatory on x axis or y axis( Which is to be a summary or Integer field).
Is there any way i can add two text fileds in both x axis and Yaxis.
Ex: In my requirement i need a report which display all the tasks name on xaxis and status of tasks on y axis.
Wasnt able to achieve this.
can anyone suggest me how to create this kind of report.
Thanks in advance.
- CloudPower1
- July 11, 2013
- Like
- 0
- Continue reading or reply