Utsav Gargsh
IndividualForum Replies Created
-
Utsav
MemberJune 14, 2016 at 7:11 am in reply to: Want to take values as parameters from one page to another but this is working in Salesforce classic but not in lightning.How to overcome this issue?Hi Rachit
If you are using URL for transferring values from one page to another then lightning can create problem instead you should use same controller for both pages such that updated values can be accessed direclty.
Thanks
-
Utsav
MemberJune 13, 2016 at 1:41 pm in reply to: How to create a mobile app using mobile SDK in Salesforce?Hi Himanshu
Using mobile SDK of salesforce you can develop:
- Native apps(ios, android, windows)
- Hybrid apps(html5)
Native app has fast performance and responsiveness while hybrid app has cross platform accessibilty
First you have to create a connected app where mobile app settings must be filled and at the same time the connected key and callback URL must be used for authentication purposes while calling through REST api for salesforce data.
with mobile sdk you donot have to write any code from scratch it automatically creates a basic app in that technology and you can make changes in that according to your requirement.
Refer following webinar for more info:
https://developer.salesforce.com/events/webinars/mobile_SDK
Hope it helps
-
Utsav
MemberJune 13, 2016 at 7:39 am in reply to: What is salesforce marketing cloud and where it is useful?Hi
Salesforce marketing cloud helps businesses to grow by making a brand through latest automated marketing practices.
It involves:
- Email marketing
- Social Media Marketing(Facebook, Twitter, and LinkedIn Ads platform)
- Mobile messaging
- Content marketing
- Data mining and analysis and reporting
For overview of marketing cloud can be get from the follwoing link
http://www.salesforce.com/in/marketing-cloud/overview/
Hope it helps
Happy coding 🙂
-
Utsav
MemberJune 13, 2016 at 7:33 am in reply to: Is there any governor limits for batch apex executions?Hi Suyash
Salesforce has governor limits everywhere
In apex batch you have generally maximum batch classes processing parallely. You can have all those limits based on you org edition. Most of the time it is 5.
You can use Queueable Interface to cope it up. With async. queable interface you can make sure your batch will run whenever resources become available.
Thanks
-
Utsav
MemberJune 13, 2016 at 7:24 am in reply to: How can I get rid of view state error with more than 50k record in a list in controller?Hi rachit
viewstate error comes only when you deal large number of records on visualforce page. If you only want to use it in controller then you can use it by some workarounds but on VF page you cant deal it other then pagination which is least expected in such scenarios 😉
Happy coding 🙂
-
Utsav
MemberJune 13, 2016 at 7:20 am in reply to: Google map in Salesforce Visualforce Page - Unknown component Apex:map errorHi Ajay
I came across the same error once and get to know that apex:map is not for developer enviroment for now. You can try in sandbox enviroment for using it.
For more clearification
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_maps.htm
-
Hi Rachit
I have faced the same issue once . I used jquery for showing inline errors in list view.
Hope it makes sense
-
Utsav
MemberJune 13, 2016 at 7:09 am in reply to: I am facing issues in saving data in sandbox between 4-6 PM. This happens regularly. Any suggestion?Hi
Have you checked salesforce instances in between 4-6PM
Just check you sandbox instance on the given URL
http://trust.salesforce.com/trust/instances
Thanks
-
Utsav
MemberJune 13, 2016 at 6:55 am in reply to: How can we handle email service that are undelivered with correct message?Hi
You can enable the Bounced email functionality in Salesforce, which will notify the user and will displays the bounce alert on the record.
For detailed information refer the article “Configuring Deliverability Settings”.
Help URL: https://help.salesforce.com/apex/HTViewHelpDoc?id=emailadmin_deliverability.htm&language=en_US
Hope it helps
Thanks
-
Utsav
MemberJune 13, 2016 at 6:50 am in reply to: I have an attachment that needs to be moved to next page so how can I achieve this,will URL help me out in this?Hi Rachit
Solution 1: If you want to move your attachment to next page you just need to use the same controller in it and make attachment instance public and then do whatever you want to do so whenever you access that instance of attachment you will get you required value.
Solution 2: From URL , you just have to convert the blob value of attachment body into string although it is not much feasible because sometimes blob size can gets you to some big value based on file size so i prefer to go with solution 1 only.
Thanks
-
Utsav
MemberJune 13, 2016 at 6:40 am in reply to: How to get my date time value reflect value as per logged in user's time zone?Hi Rachit
Yes it can be done , Salesforce provide us the Timezone class with which you can get the time zone offset of currently logged in user and then you can make calculations over it.
Thanks
-
Utsav
MemberJune 13, 2016 at 6:36 am in reply to: Facing issues with rerendering a section on a page after getting a value from another pageHi Rachit
Yes you can rerender the page section based on some values from another page until or unless you have the same controller. If you have a same controller for both pages then you can easily rerender the page section.
It will be helpful , if you share your code with us
Thanks
-
Utsav
MemberJune 13, 2016 at 6:20 am in reply to: Can you use any fields on the lead for in a Web2Lead form?Hi Naman
According to salesforce knowledge article number-000005128
It clear states that you can add any field to salesforce web-to-lead form but everytime you have to create a new HTML code then only you can get the functionality of new field live over it.
Thanks
-
Utsav
MemberJune 9, 2016 at 2:39 pm in reply to: Pricing (cost) of Salesforce Customer Community and Partner Community?Hi
Agree with @mark , Community pricing depend on its useage like Count of active community users, Traffic, Objects permissions etc.
Previously there was a fixed price but now it varies based on a customer requirements
Thanks
-
Utsav
MemberJune 9, 2016 at 2:26 pm in reply to: How can I bypass the limit of fetching less than 10 geo locations per second if I am trying to do this with the help of batch class?Hi Rachit
Yes there is a workaround for this. One way is to degrade your code performance. You can iterate the loop unnecessarily which means you can iterate a looop in between say for 1000 times that will increase the time and you will get new callout limits i.e 10 per sec
Thanks
-
Utsav
MemberJune 9, 2016 at 2:01 pm in reply to: Can we restrict a user to login through two devices in org from same location(Same Ip Address)?Hi
I think it is hard to identify and differentiate a device based on same ip address because Mac address(machine address) is not public on network hence it becomes very tough for salesforce to differentiate in between two devices.
Thanks
-
Utsav
MemberJune 9, 2016 at 1:57 pm in reply to: Is there any way to restrict a user from entering a duplicate starting character?Hi Amit
You could try salesforce validation rules, as you are saying to check duplicates charcters upto 3,4,5.. starting characters which means you can make use of following functions of validation rules
- LEFT, RIGHT - For extracting starting characters
- BEGINS- For checking starting charcters of string
- CONTAINS- For checking any existence of specified string in that.
e.g Now string1: aabcd and string2: aaaxyz, so it shows that you only have to check for "aa" characters in between and it checks automatically for any number of same existence
Hope it helps
Thanks
-
Utsav
MemberJune 9, 2016 at 1:13 pm in reply to: Person Accounts is now supported in Lightning ExperienceGreat it is really needed in lightning 🙂
-
Utsav
MemberJune 9, 2016 at 1:08 pm in reply to: Is there any way to perform DML operations from visualforce email templates?Hi
I think it is not possible once i had faced the same issue , there exists some interface which resists us from performing a SOQL in visualforce email templates.
Thanks
-
Utsav
MemberJune 9, 2016 at 12:54 pm in reply to: Display recently closed opportunities - add / remove while scrollingHi Ravi
You can use the Recentlyviewed Api for getting the list of records recently viewed by an user
https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_recentlyviewed.htm
-
Utsav
MemberJune 9, 2016 at 12:39 pm in reply to: Can we put the apex class in map as key and value?Hi Naman
Yes you can put an instance of apex class in salesforce maps.
i try the following code and it doesnot gives an error to me:
public class help{
map<DarkJedi, integer> testMap;
public help(){
testMap = new map<DarkJedi, integer>();
}
}Here DarkJedi is an apex class stored in my salesforce org.
Hope it helps
Thanks
-
Utsav
MemberJune 9, 2016 at 12:28 pm in reply to: Want to show a text area field on Visualforce with some different format as compared to on PDFHi Rachit
If you are rendering a VF page as Pdf and wants to show some different format values on Pdf page as compare to Vf page then use following things in code:
- Use paremeter based rendering on VF page
renderas="{!if($CurrentPage.parameters.p == null, null, 'pdf')}".
2. Use an outputpanel based on this parameter p and rendered that panel only if p==1
which means you can seprate values from VF page to Pdf page.
Hope it helps
Thanks
-
Utsav
MemberJune 9, 2016 at 12:05 pm in reply to: is this possible to create a vf page which will display a report based on my chosen picklist?Hi Danna
Yes absolutely it is very much possible . In such tasks which includes custom reporting based on VF page we query all data from the salesforce system and shows complete data on VF page with pagination. Because pagination is needed to display large data sets on VF page for saving view state size of VF page. Everytime picklist value is being changed then we refresh the data on VF page accordingly.
Hope it helps
Thanks
-
Utsav
MemberJune 9, 2016 at 6:32 am in reply to: Can you use dynamic visualforce in VF email templates?Hi Ravi
According to Summer 16 Visualforce Devloper Guide Page-211,
Yes we can use custom controllers in our visualforce email templates which means you can control the values to be displayed on the VF Email templates and in the same sense you can make it dynamic based on the satisfying conditions of controller.
Hope it helps
Thanks
-
Hi Hazel
Community Cloud is an online social platform that enables companies to connect customers, partners, and employees with each other and the data and records they need to get work done. It is like a website given by salesforce with which only authenticated community user can login and get salesforce data in hand. We can attach the salesforce community URL with the already existing static website of URL.
Hope it helps