Suyash Singhal
IndividualForum Replies Created
-
Suyash
MemberAugust 11, 2016 at 10:21 am in reply to: There is a problem in Streaming Api notification?Hi Pranav,
Did you put NotifyForOperationCreate = true for your push topic.
-
Suyash
MemberAugust 11, 2016 at 7:08 am in reply to: How can we replace action function by a command button?Hi Mohit,
Can you just provide the scenario where you thought to replace a command button with Action function.
-
Suyash
MemberAugust 11, 2016 at 6:31 am in reply to: How to trigger a workflow without editing the record?Hi Pranav,
I think you can,by using time based workflow you can trigger it on timely basis considering the requirement to choose the a field that will cause it to initially execute.
Thanks
-
Suyash
MemberAugust 10, 2016 at 1:46 pm in reply to: How can be pass the picklist value in trigger of a sobject?Hi Mohit,
Can you please make your question a bit more clear and elaborate.
-
Suyash
MemberAugust 10, 2016 at 1:32 pm in reply to: How to create a custom button to mass update related contacts of an account?Hi Pranav,
You can create a batch class and execute it on button press on account detail page by sending Account id with it.
In execute method you can Update,create related contacts on that particular account.
Please comment if you need a help with a sample code. -
Suyash
MemberAugust 10, 2016 at 1:24 pm in reply to: How to achieve calendar view date on selection of input date field?Hi Tanu,
Use this tag on your Vf page.
<apex:input type="date" value="{!YourGetter/SetterVariableName}"/>
-
Suyash
MemberAugust 10, 2016 at 8:17 am in reply to: How can we create a dynamic checkbox on visualforce page?Hi Mohit,
You can do this by putting all the related fields or a single related field in an output panel.And on change on check box value just rerender your panel.
Panel will be rendered according to the value of check box
Here's a sample code for this:
<apex:page controller="CheckboxRerenderController">
<apex:form >
<apex:pageBlock >
<apex:pageblocksection >
<apex:inputcheckbox value="{!chkBx}" label="checkBox">
<apex:actionSupport event="onchange" rerender="thePanel" action="{!click}"/>
</apex:inputcheckbox>
<apex:outputPanel id="thePanel">/* Contains all the fields you want to show on checkbox value*/
<apex:pageBlockSectionItem rendered="{!displayInputputText}">
<apex:outputLabel value="Input Text" />
<apex:inputText value="{!input}"/>
</apex:pageBlockSectionItem>
</apex:outputPanel>
</apex:pageblocksection>
</apex:pageBlock>
</apex:form>
</apex:page>Controller code:
public with sharing class CheckboxRerenderController {public Boolean displayInputputText{get;set;}
public Boolean chkBx{get;set;}
public String input{get;set;}public void click(){
if(chkBx){
displayInputputText = true;
}
else{
displayInputputText = false;
}}
} -
Suyash
MemberMay 26, 2016 at 11:28 am in reply to: When a lead is converted, does the lead get removed from the system?Hi,
After lead conversion you will not be able in the leads in the Lead records unless query lead records with condition that includes "isConverted=true"
So on the report creating a report of type: "Leads with Converted Lead Information and creating custom formula of type CONVERTED:SUM / RowCount may solve your problem.
Thanks -
Hi Himanshu,
No you cant use Map methods directly in Dynamic query.You need to first create a list/set to collect all the values or keys from the map and then you can use this list/set in your dynamic query.
Thanks
-
Suyash
MemberApril 30, 2016 at 5:43 pm in reply to: How to remove time from datetime field in Salesforce Visualforce Page?Hi,
I believe you are using apex:outputField to display createdDate. Use apex:outputText.Thanks
-
Hi,
Queues help you prioritize, distribute, and assign records to teams who share workloads. You can access queues from list views, and queue members can jump in to take ownership of any record in a queue. Queues are available for cases, leads, orders, custom objects, service contracts, and knowledge article versions.
You can add a record to a queue manually by changing the record’s owner. Or, an assignment rule can add cases or leads to a queue based on criteria, such as Origin equals Email. Records remain in a queue until they’re assigned an owner, or a queue member volunteers to own them. Any queue members or users higher in a role hierarchy can take ownership of records in a queue.
Some examples of queues include lead queues for distributing and sharing leads among salespeople assigned to specific regions, such as western or eastern. Case queues for distributing and sharing cases among support agents assigned to different service levels, such as gold or silver service. Knowledge article version queues for distributing new versions of articles to people who can translate articles into specific languages.
Thanks -
Suyash
MemberApril 30, 2016 at 4:34 pm in reply to: How can I develop a custom login page in Salesforce Communities?Hi,
This link will help you.
https://hub.appirio.com/tech-blog/how-to-create-a-custom-salesforce-communities-login-and-landing-page -
Suyash
MemberApril 30, 2016 at 4:29 pm in reply to: How can I create dependent Multi Picklist on Visualforce page?Hi Rachit,
Go through these links:
https://help.salesforce.com/HTViewSolution?id=000181251
https://www.minddigital.com/how-to-create-dynamic-dependent-picklist-of-objects-within-salesforce
- This reply was modified 8 years, 6 months ago by Suyash.
-
Hi,
this link will help you:
http://salesforce.stackexchange.com/questions/97011/what-is-the-internal-debug-level -
Suyash
MemberApril 30, 2016 at 3:36 pm in reply to: Facing issues with indexing standard fields in a query with single filter?Hi Rachit,
You can raise a case in salesforce and ask them to allow indexing for the standard fields used in query.This will definitely solve your problem.
Thanks
-
Suyash
MemberApril 30, 2016 at 3:31 pm in reply to: First error: Delete failed. First exception on row 0 with id 02cn000001tySY7AAM; first error: INVALID_CROSS_REFERENCE_KEY, id does not exist: []Hi Rachit,
This is might be case of manual deleting of a record while its processing in batch execution.
Thanks.
-
Suyash
MemberApril 30, 2016 at 3:11 pm in reply to: List of Person Account fields in Field Level Security?Hi Piyush,
Field Level Security (FLS) of Person Account fields ar controlled by Contact Fields. So, if you want to setup FLS of Person Account Fields navigate to fields of Contact and it will be reflected on Person Account.
Thanks
-
Suyash
MemberApril 30, 2016 at 3:09 pm in reply to: Can we perform mass delete reports using Salesforce Apex?This link has the ans to your query:
http://releasenotes.docs.salesforce.com/en-us/summer14/release-notes/rn_analytics_mass_delete.html
Thanks
-
Suyash
MemberApril 30, 2016 at 3:03 pm in reply to: How to include external javascript file in Salesforce Lightning Component?this link will be helpful:
Thanks
-
Suyash
MemberApril 30, 2016 at 3:02 pm in reply to: How to redirect Salesforce flow after completion, if end URL is known in advance?Hi Abhinav,
Please go through this link:
Ques 123 will solve your query:
http://www.jitendrazaa.com/blog/salesforce/salesforce-flow-interview-questions-for-admins-part-23 -
Suyash
MemberApril 30, 2016 at 3:00 pm in reply to: Is it possible to use other frameworks like AngularJs or KendoUI with lightning component?Yes it is possible.
Go through this link:
http://www.jitendrazaa.com/blog/salesforce/salesforce-faq-part-20-lightning-questions 🙂Thanks
-
Suyash
MemberApril 30, 2016 at 2:58 pm in reply to: Why do we still need Visualforce once Lightning will be GA In Salesforce?Hi Abhinav,
Visualforce provides the facility for delivering template-driven web pages and email messages. In addition, developers wishing to simply utilize a basic container and maintain more control over the lifecycle of the request may choose Visualforce pages. Finally, organizations that can’t use Apex code can’t use Lightning Components, but they can use Visualforce.
Thanks -
Suyash
MemberApril 30, 2016 at 10:53 am in reply to: What is the difference between Customer, Employee and Partner communities?Hi Hazel,
Employee Community builds an internal social intranet across an enterprise. It includes Chatter, Sites, myCases, Answers, Files, Content Libraries, Knowledge, and Ideas.
Externally facing Community Cloud products include Customer Community, Customer Plus Community, and Partner Community. Customer Community enables feed discussions, groups, profiles, gamification, moderation, analytics — everything you need for high-scale external collaboration. Customer Community Plus adds the ability to control sharing; add private groups; and limit the ability to access files, posts, and records within the community so that some conversations can happen in private. In addition to this privacy, Partner Community enables cooperative selling within the community, adding lead and opportunity management, campaigns, and events.
Thanks -
Hi Piyush,
Go through this link may be this can solve your query:
http://salesforce.stackexchange.com/questions/69516/how-to-show-a-confirmation-dialog-in-lightning-componentThanks
-
Suyash
MemberApril 30, 2016 at 10:46 am in reply to: How to show a report with all leads even after converted?Hi Ajay,
You can view all the lead conversion related information by creating a report of type: "Leads with Converted Lead Information". Then you can aggregate your information bases on the Converted field value ("YES | NO") to view how many leads have been converted and how many not. Additionally you can create custom formula in your report like CONVERTED:SUM / RowCountwhich should ease your analysis.
Hope it Helps
thanks.