Piyush Kumar
IndividualForum Replies Created
-
Piyush
MemberMay 26, 2016 at 10:53 am in reply to: How to get list of All Objects enabled with Activities in Salesforce?Hello Surbhi,
Thanks for the response its work for me.
-
Hello Ravi,
The Id Field Type is a base-62 encoded string.
Where 15 character Id the breakdown is:-
- The first 3 digits are a prefix that specifies the type of sObject.
- 3 Digits (Object) / 12 Digits (Record) / (Optional) 3 Digits (Error Correction)
-
Piyush
MemberApril 30, 2016 at 6:15 pm in reply to: How can i debug the javascript code in Salesforce Lightning?You can use debugger or salesforce lightning Inspector
-
Hello ,
please have a look on this link it may be solve your query:-https://success.salesforce.com/answers?id=90630000000h1s8AAA
-
Hello ,
Community Cloud is built on the trusted Salesforce1 platform. The robust and flexible security architecture of the platform is relied on by companies around the world, including those in the most heavily regulated industries — from financial services to healthcare to government. It provides the highest level of security and control over everything from user and client authentication through administrative permissions to the data access and sharing model.
Trust starts with transparency. Salesforce displays real-time information on system performance and security, and offers tips on best security practices for your organization.
-
Hello ,
Go to this link it will solve your query:-https://success.salesforce.com/ideaView?id=08730000000Dgi5AAC
https://success.salesforce.com/answers?id=90630000000CjZxAAK
-
Piyush
MemberApril 30, 2016 at 4:54 pm in reply to: How can I debug the Javascript code in Lightning Components?Hello Himanshu,
You can use JavaScript debugger which is use to debug in lightning component. Also use Salesforce Lightning Inspector Chrome Extension to debug in Lightning Component .
-
Piyush
MemberApril 30, 2016 at 4:48 pm in reply to: What study material should I follow to prepare for service cloud certification?Hello ,
Go to this link:-http://blog.jeffdouglas.com/2011/01/26/how-to-pass-the-service-cloud-consultant-exam/
-
Piyush
MemberApril 30, 2016 at 4:47 pm in reply to: How can we update child records from parent using Salesforce Apex Class? -
Piyush
MemberApril 30, 2016 at 4:40 pm in reply to: How can I develop a custom login page in Salesforce Communities?Hello Ajit,
Go to Develop->Sites->Click the Site label->Public access settings->Visual force page access->Edit ->add the custom VF page to the list and save.
Have a look on this link: http://www.forcetree.com/2014/05/salesforce-login-page-custom-login-page.html
-
Piyush
MemberApril 30, 2016 at 4:37 pm in reply to: How to integrate Sharepoint and Salesforce with/without third party app?Hello Rachit,
I am not sure about this but I think, this link might help you: https://www.linkedin.com/pulse/how-integrate-sharepoint-salesforce-pratyush-kumar
Thanks.
-
Yes, you can use meta tag in Visualforce page.
Here is the sample code:-
<apex:page ...>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
</head>
<body>
<!-- rest of page goes here -->
</body>
</apex:page> -
Piyush
MemberApril 30, 2016 at 4:20 pm in reply to: Can I use Controller and Extension both in Aura Component?Hello Ajay,
Please have a look at this blog. The blog describes how to use controller and extension in lightning component:- https://developer.salesforce.com/blogs/developer-relations/2015/03/salesforce-lightning-components-by-example-component-extension.html
-
Piyush
MemberApril 30, 2016 at 4:17 pm in reply to: How can I manage offline data in Salesforce Lightning?Hello ,
If you're doing a standalone app with a SDK-based wrapper, I think it would be possible to do with Application Cache manifest files, but I haven't seen any examples of doing this yet.
Thanks.
-
Piyush
MemberApril 30, 2016 at 3:58 pm in reply to: Display Datetime on the basis of current user TimezoneHello Ajit,
Have a look on this:-https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_outputText.htm
-
Piyush
MemberApril 30, 2016 at 3:51 pm in reply to: How can I use country state picklist enabled for org in my apex class?Hello Rachit,
You can access State an Country through the Api name StateCode or CountryCode.
-
Piyush
MemberApril 30, 2016 at 3:44 pm in reply to: How can we use fusion charts on a Salesforce Visualforce page?Hello Ajit,
Have a look on this link:-https://success.salesforce.com/answers?id=90630000000h1ZgAAI
-
Piyush
MemberApril 30, 2016 at 3:40 pm in reply to: When running a batch that performs DML, as it started it showed error. Can you please help?Hello Rachit,
Have a look on this link it may be help you to over come with this isssue:-http://salesforce.stackexchange.com/questions/63858/asyncapexexecutions-limit-exceeded-error-for-apex-batch
-
Piyush
MemberApril 30, 2016 at 3:35 pm in reply to: How can I stop a trigger from triggering another trigger that gets invoked when we are updating child object from a trigger on parent object?Hello Rachit,
On the assumption that your delete logic is embedded in the Child trigger and you want to execute that logic upon some event in the Parent object ....
Triggers can only be invoked when a DML statement occurs and the trigger is registered to handle that DML event (insert, update, delete, undelete - and in before/after such event)
Move your logic out of the Child trigger into a class that can be called both from the Child trigger and from the Parent trigger -
Hello
Please have a look on this;-https://developer.salesforce.com/page/An_Introduction_to_Environments
-
Piyush
MemberApril 30, 2016 at 3:28 pm in reply to: How to enable the Person account feature in free Salesforce developer org?Hello Abhinav,
You have to log a case to enable person account to the support .After that they enable Person Account in your Org. Once you enable person account it cant be disabled.
Thanks
-
Piyush
MemberApril 30, 2016 at 3:20 pm in reply to: How is Lightning aware of what record you are on if you embed it in Salesforce1? -
Piyush
MemberApril 30, 2016 at 3:12 pm in reply to: Are Lightning Components intended only for mobile?Hello,
Lightning component is for both mobile or desktop.
-
Piyush
MemberApril 30, 2016 at 3:09 pm in reply to: How can I create a hybrid app in Salesforce Developer Edition?Hello ,
please have a look on this:-http://salesforce.stackexchange.com/questions/119365/hybrid-app-salesforce-mobile-sdk
-
Piyush
MemberApril 30, 2016 at 2:55 pm in reply to: Can we update the child object field from parent object using workflow?Hello ,
Currently workflows dont support this .For more detail have a look on this link:-http://salesforce.stackexchange.com/questions/31277/can-i-update-a-child-record-when-the-parent-changes-with-workflows
https://developer.salesforce.com/forums/?id=906F0000000Ae26IAC