Himanshu Jasuja
IndividualForum Replies Created
-
Himanshu
MemberMay 24, 2016 at 10:11 am in reply to: Is it possible to get the record owner's name without code?Hi Ravi,
you can use the formula like this - Account.Owner.FirstName & " " & Account.Owner.LastName
-
Himanshu
MemberMay 24, 2016 at 9:51 am in reply to: How to convert date time to date using formula field?Hi Naman,
you can use this formula to convert the datetime to date.
DATEVALUE( "YYYY-MM-DD" )
-
Himanshu
MemberMay 24, 2016 at 8:46 am in reply to: What are the data migration tools? and their limitations?Data Migration tools:-
1.Data Import Wizard:-It is used for import data for many standard Salesforce objects, including accounts, contacts, leads, solutions and custom objects. You can import up to 50,000 records at a time.
2.Data Loader:-Data Loader is used for the bulk import or export of data.We can insert, update,
delete, export,export all Salesforce records.
When importing and exporting data, it shows the results in CSV files.You can use data loader for up to 5 million records.
-
Hi Naman,
You can set the auto response rule in sales force for web to lead and case auto response rules.
To create a Auto response rule:-
Setup, enter Auto-Response Rules in the Quick Find box, then select Lead Auto-Response Rules.
On the Auto-Response Rules page:
Click on the New Button.
Enter the rule name.
Check the active box to make this rule active.
Click Save.
Define the rule entries based on the conditions.To create a response rule for cases:-
Setup, enter Auto-Response Rules in the Quick Find box, then select Case Auto-Response Rules.
-
Himanshu
MemberMay 24, 2016 at 7:47 am in reply to: How many types of knowledge articles are there in Salesforce?Hi Naman,
There are two types of Knowledge articles in salesforce:-
1.FAQs
2.Tutorials
Articles provides the structure and format to describe how an article displays for each audience,such as channel.In articles,you can create custom fields,customize the layout by adding and removing fields and sections,workflow rules and approval process.
New Article:-
Go to Setup, enter Knowledge Article Types in the Quick Find box, then select Knowledge Article Types.
Click New Article Type or edit an existing article type. -
Himanshu
MemberApril 30, 2016 at 4:09 pm in reply to: Is it possible to use after update trigger on an object after it gets updated in Salesforce?Hi AJAY,
Follow this link:-
Hope its helps you.
-
Himanshu
MemberApril 30, 2016 at 4:06 pm in reply to: Testing assignment rule when inserting test casesHi Ravi,
try adding the seeAllData annotation to your test method
@isTest(seeAllData=true)
static void test_mockIfAtAllPossible(){
}Hope this helps you.
-
Hi Ajay,
Follow this link:-https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/ref_aura_doneRendering.htm
Hope this helps you.
-
Himanshu
MemberApril 30, 2016 at 4:00 pm in reply to: How does Visualforce Components differ from Lightning Components?Hi AJAY,
They are much different than VF components, in that Visualforce components are in effect just VF and may contain a controller (or not) and will render HTML with or without a custom style sheet.
Lightning components on the other hand are meant to run in Salesforce1 (well, you can have them run in the native UI, but that's just not where they're meant to be).
Further, Lighning components are structured in "bundles" - typically consisting of an app (which calls the component), a controller (much different from VF controller) - the Lighning controller operates client-side, not server-side so it will primarily "pull" rather than "push" data.
Also in the component bundle are the CSS, rendering, and documentation elements of the component.
The strategy that is Salesforce's Lightning platform is to develop a framework for making the Salesforce platform "platform-independent". It's my personal belief that Salesforce's strategy is to have no functional look & feel difference between the Lighning (heretofore "mobile" L&F) and native Salesforce, but this will take some time.
-
Himanshu
MemberApril 30, 2016 at 3:46 pm in reply to: Is Salesforce Lightning a component-based framework?Yes,Lightning is a component based framework
Lightning includes the Lightning Component Framework and some exciting tools for developers. Lightning makes it easier to build responsive applications for any device.
The benefits include an out-of-the-box set of components, event-driven architecture, and a framework optimized for performance
-
Himanshu
MemberApril 30, 2016 at 3:41 pm in reply to: How do I deploy Lightning components to my production org?Hi Piyush,
You can develop Lightning Components in a sandbox or Developer Edition org and then deploy them to any organization that supports Apex using managed packages. NOTE: We don’t recommend changing your development process to use namespaces and managed packages if you aren’t already using them.
-
Himanshu
MemberApril 30, 2016 at 3:33 pm in reply to: Can we create community user through REST API?Hi Piyush,
Have you allowed the delegated user permissions to manage that profile? See help.salesforce.com/HTViewHelpDoc?id=networks_DPUA.htm for the example guide
-
Hi Piyush,
Try This link:-
://github.com/developerforce/Force.com-JavaScript-REST-Toolkit/blob/master/forcetk.js
find function: forcetk.Client.prototype.setSessionToken leave it as is but at the end add:
this.instanceUrl = 'your community url';
this.proxyUrl = null;
this.visualforce = false;This is a hack, there are ways to clean this up better, but this is the least intrusive modification I could pull off quickly.
-
Himanshu
MemberApril 30, 2016 at 3:23 pm in reply to: Can I create child records referencing the External ID and not the Account ID?Hi Ravi,
Yes, using the data loader you can look up to another record based on an external ID. However, note that the ID should be flagged as unique too.This would also be doable via the API.
-
Himanshu
MemberApril 30, 2016 at 2:53 pm in reply to: Can I use formula field in a Salesforce custom report?Hi Ajay,
Try This link:-http://salesforce.stackexchange.com/questions/110491/can-we-use-a-formula-field-value-in-a-report
Hope this help you.
-
Himanshu
MemberApril 30, 2016 at 2:26 pm in reply to: How to enable truncate custom object feature in Salesforce?Hi Piyush,
Navigate to “App Setup | User Interface” and select “Enable Custom Object Truncate”
-
Himanshu
MemberApril 30, 2016 at 2:24 pm in reply to: Which custom fields or relationships in Salesforce ends with “__pc” and “__pr”?Hi Piyush,
In normal scenario all custom fields ends with “__c” and relationships ends with “__r” However for Person accounts, custom fields ends with “__pc” and custom relationship ends with “__pr”.
-
Himanshu
MemberApril 30, 2016 at 2:20 pm in reply to: How can I take parameters from one page to another with different controllers in Salesforce?Hi Rachit,
Try this link:-http://www.forcetree.com/2009/06/passing-parameters-to-visualforce-page.html
Hope this helps you.
-
Himanshu
MemberApril 30, 2016 at 2:17 pm in reply to: How do I update Unsubscribe Reason while importing in All Subscribers?Hi Audrey,
I think that's the behavior of SFMC. When you import subscribers with 'Unsubscribed' status, it updates the status but the 'reason' value is set by default. In this case it will be 'Unsubscribed via Import'. SFMC doesn't even give you the 'reason' field to map
Hope it helps.
-
Himanshu
MemberApril 30, 2016 at 2:08 pm in reply to: Can you show Lightning Components tab in Mobile as well in Desktop?Hi Piyush,
Currently you can only use Lightning Components in the Salesforce1 Mobile App or a standalone app.
Thanks
-
Himanshu
MemberApril 30, 2016 at 2:06 pm in reply to: Can we use encrypted fields in Report Filters with Platform Encryption?Hi Piyush,
You can't use encrypted fields in report filters.
Encrypted fields can’t be used in:
Criteria-based sharing rules
Filter criteria for list views, reports, and dashboards
Portals: communities, customer, self-service, and partner
Similar opportunities searches External lookup relationships -
Hi Piyush,
Platform Encryption
Platform Encryption gives your data a whole new layer of security while preserving critical platform functionality. The data you select is encrypted at rest using an advanced key derivation system. You can protect data at a more granular level than ever before, so that your company can confidently comply with privacy policies, regulatory requirements, and contractual obligations for handling private data.Encrypt Fields and Files
To implement Platform Encryption in your organization, create a tenant secret and then specify the fields and files you want to encrypt, and designate users who can generate, rotate and archive your organization's keys.
Set Up Platform Encryption
With Platform Encryption, you manage your own tenant secret, which is used to derive the encryption keys that protect your data. Keys are never saved or shared across organizations. Instead, they are derived on demand from a master secret and an organization-specific tenant secret and then cached on an application server.
How Platform Encryption Works
Platform Encryption builds on the data encryption options that Salesforce offers out of the box. It enables you to encrypt the data stored in many standard and custom fields and in files and attachments. Data is encrypted at rest, not just when transmitted over a network, so it is protected even when other lines of defense have been compromised. -
Hi Piyush,
Try this link:-http://salesforce.stackexchange.com/questions/74003/force-com-ide-debugger-new-feature
Hope this helps you to understand the new feature.
-
Hi Piyush,
You can use @RemoteAction annotation with static method only. As a result you can't use public variable directly even if remote action is declared in the same controller.
However, you can pass through public variables via JavaScript as a parameters of remote action. -
Himanshu
MemberApril 30, 2016 at 1:41 pm in reply to: Can I filter records while creating a report in Salesforce?Hi Ajay,
http://salesforce.stackexchange.com/questions/115620/top-50-contacts-by-number-of-cases-opened
Hope this helps you.