Utsav Gargsh
IndividualForum Replies Created
-
Utsav
MemberJune 2, 2016 at 1:16 pm in reply to: Can I get a little more information about Thunder introduced by Salesforce IoT?Hi Shafali
Right now Salesforce IOT is in development phase and soon it will make some beautiful product out of it and gets it live in the market
-
Utsav
MemberJune 2, 2016 at 10:56 am in reply to: How can I send email whenever a user posts a chatter post?Hi Naman
You can try writing a trigger on Feeditem object with which you can send an email whenever a feed has been posted on chatter object.
Following code snippet may help:
trigger onFilePostCreation on FeedItem (after insert) {
// Get the new feed item
// Paste your code here for sending mail using salesforce email service class.
} -
Hi
Salesforce CRM Call Center seamlessly integrates Salesforce with third-party computer-telephony integration (CTI) systems. It easily offer all benefits of cloud. Open CTI lets developers:
- Build CTI systems that integrate with Salesforce without the use of CTI adapters.
2. Create customizable SoftPhones (call-control tools) that function as fully integrated parts of Salesforce and the Salesforce console.
3. Provide users with CTI systems that are browser and platform agnostic, for example, CTI for Microsoft® Internet Explorer®, Mozilla® Firefox®, Apple® Safari®, or Google Chrome™ on Mac, Linux, or Windows machines.
Thanks
-
Utsav
MemberJune 2, 2016 at 7:39 am in reply to: What are the custom analytic capabilities in Salesforce?Hi Himanshu
In salesforce for analytics capabilties we have following things:
1> Analytic Cloud
2> Salesforce Reports and Dashboards
Above mentioned features of salesforce can easily find out patterns in your big data/
Hope it helps.
-
Utsav
MemberJune 2, 2016 at 7:35 am in reply to: Can we count the number of trigger on one object while executing a trigger on the same object?Hi Himanshu
We have a ApexTrigger Object in salesforce which gives us the power to query on all the apex triggers corresponding to an object.
For reference you can use following SOQL query:
SELECT Count(id) from ApexTrigger
Hope it helps
-
Utsav
MemberJune 2, 2016 at 7:30 am in reply to: How is Salesforce App Cloud different from other cloud solutions?Hi suyash
App cloud empowers us to build genralized apps according to the user requirements. It is Platform-As-Service with which you can make custom apps directly from salesforce platform with all powers of Heroku and easy installation in all enviroments.
Hope it helps.
-
Hi Suyash
Salesforce IQ is a product of salesforce now which helps you to make records from outside the salesforce which means field agents can create lead directly from their mail ids by easily integrating salesforce org with the help of chrome extension of Salesforce IQ.
Hope it helps.
-
Hi
The paths can't be concatenated because Salesforce1 adds ?isdtp=p1 to all generated URLs. One of the solution for that is to use URLFOR function of salesforce .Thanks
-
Hi Danna
For measuring success of Salesforce 1 mobile , you can overwrite the save button with a custom button in salesforce which in turn checks a checkbox whenever save button has been hitted with which you can easily tell that this account has been created internally from salesforce and not from Salesforce 1 app.
So, in this way you can easy monitor the growth rate of your Salesforce 1 app.
Thanks.
-
Utsav
MemberJune 1, 2016 at 1:53 pm in reply to: How can we get an API so that we can get an exact search for a particular MLS number?Hi Prakhar
For searching MLS numbers in US you can hit private APIs through REST integration which gives a property information in response
Thanks
-
Hi
Telesales is simply making a direct call to our prospect from salesforce system using Computer Telephony Integration.
Thanks
-
Hi
In addition to @SFDCHacker
Salesforce gives us the following powers with CTI as follows:
- Build CTI systems that integrate with Salesforce without the use of CTI adapters.
- Create customizable SoftPhones (call-control tools) that function as fully integrated parts of Salesforce and the Salesforce console.
- Provide users with CTI systems that are browser and platform agnostic, for example, CTI for Microsoft® Internet Explorer®, Mozilla® Firefox®, Apple® Safari®, or Google Chrome™ on Mac, Linux, or Windows machines.
- Developers use Open CTI in JavaScript to embed API calls and processes; Open CTI is only available for use with JavaScript pages. To use Open CTI, developers should have a basic familiarity with:
You can refer following salesforce toolkit for much deeper information regarding CTI
http://resources.docs.salesforce.com/200/20/en-us/sfdc/pdf/salesforce_cti_developer_guide_2.pdf
-
Utsav
MemberJune 1, 2016 at 1:35 pm in reply to: Display names of Contact & Opportunity which are related to AccountHi Pratyush
You can use the below SOQL query to print on the VF page:
select id,(select name from contacts),(select name from opportunities) from account
Although hierarchical iteration is being needed while printing inner queries results on VF page.
-
Utsav
MemberMay 25, 2016 at 11:36 am in reply to: Has anyone completed a Chatter to Chatter via Salesforce to Salesforce integration?Hi Ravi
ConnectApi Namespace allows us to use all information from salesforce chatter. Although it is not much clear from your end kindly elaborate.
Thanks
-
Utsav
MemberMay 25, 2016 at 11:08 am in reply to: How can I integrate external database with Salesforce?Hi Abhay
Yes you can integrate any third party system with salesforce easily with the help of either REST Api or SOAP Api.It would be better if you mention us the name of the system with which you want to integrate salesforce.
For integrating with REST Api roughly you need an endpoint URL and proper documents from third party database which will help us to use the methods of get and post in that system
Salesforce devloper guide for REST Api can help: https://resources.docs.salesforce.com/sfdc/pdf/api_rest.pdf
For integrating with SOAP Api you needs a WSDL file of third party database and then you will parse the WSDL file in salesforce which will make some apex classes of third party then you will use methods of newly genrated classes for making changes in the third party database.
Salesforce devloper guide for REST Api can help: https://resources.docs.salesforce.com/200/10/en-us/sfdc/pdf/apex_api.pdf
-
Hi Prakhar,
This can be achieved by creating javascript button on the object and as per the condition specified, by using CSS to disable the button on Page Layout. Below is the code to achieve the same:-
{!REQUIRESCRIPT("/soap/ajax/25.0/connection.js")}
{!REQUIRESCRIPT("/soap/ajax/25.0/apex.js")}if({!ISNUMBER(Employee__c.Salary__c)}){
this.disabled = false;
this.classname = 'btnDisabled';}
else{var btnService = document.getElementsByName("test");
btnService[0].value='Please wait...'; //Change the text
btnService[0].disabled=true;}
Hope that helps for you.
Thanks.
-
Hi Ravi
Thanks for your response
I want to format the datetime field directly on VF page.
Currently i am using the following code for formatting of date on vf page
Code:
<apex:outputText value="{0, date, dd'-'MMM'-'YYYY}">
<apex:param value="{!oppoObject.Sailing_Date__c}" />
</apex:outputText>Output:
24-Apr-2016
Expected Output:
24-APR-2016
Please let me know what can i do in this scenario
-
Hey,
In Salesforce the list can show only upto 10 records in debug, if you want to view all the list value than you can iterate over the list and then it can show the entire values of list in debug.
You can do something like this:
List accs = new List();
for(integer i = 0; i < 50; i++) {
accs.add(new Account(Name='Account-'+i));
}
System.debug('accs>>>>>> '+accs );for(Account accObj: accs){
system.debug('accObj:'+accObj);
}
-
Utsav
MemberApril 14, 2016 at 8:49 am in reply to: Skip trigger while I insert or update my custom object record?If it is trigger then it will fire automatically whenever record is inserted or being updated until it has been deactivated. 😉
But what i can do here is skip my logic of trigger by checking certain conditions so that it doesnt affect any data of salesforce database
Hope i make sense. 🙂
-
Utsav
MemberApril 14, 2016 at 8:44 am in reply to: Splitting label values on '\n' is not getting same values on comparingHi Naman
I thought yes it may be due to case of charcters but when read the following conversation which says == is same as equalignorecase and === matches the case then why my code is not working?
-
Utsav
MemberApril 14, 2016 at 8:20 am in reply to: Splitting label values on '\n' is not getting same values on comparingHi Rachit
It works actually, but why it is working i have a doubt there.
Hope i make sense to you. 🙂
-
Hi,
When adding a file or a image in the documents please make sure that the field on document named as "Externally Available Image" is checked as true.
Thanks.
-
Utsav
MemberApril 12, 2016 at 2:23 pm in reply to: How to select all checkboxes of wrapper list on vf page using jquery?Hi ,
Yes it should work , but when i click on the select all checkbox then it shows an error in browser console that "missing attr".
But now i think, i have find out the issue . it actually comes due to the version of jquery i am including. Instead of using "attr" i should use "prop" so now my code will be:
function checkAll(ele){
var checkboxes = $(‘.SelectAll’);
if (ele.checked) {
$(‘.checkedone’).prop(“checked”, true);
}else{
$(‘.checkedone’).prop(“checked”, false);
}
}