Forum Replies Created

Page 5 of 8
  • Surbhi

    Member
    June 8, 2016 at 1:33 pm in reply to: Can anybody suggest me the usage of jquery.noConflict()?

    Hi Ajit,

    jQuery.noConflict will reset the $ variable so it will no longer be an alias of jQuery. Aside from just calling it once, there's not much else you really need to do. Though, you can create your own alias with the return value.

    Thanks

  • Surbhi

    Member
    June 8, 2016 at 1:08 pm in reply to: How to automate manually sharing of records?

    Hi Himanshu,

    Unfortunately, as per my knowledge, there is no such functionality to automate manually sharing of records.

    Thanks

  • Hi Himanshu,

    I never come to know as such limit for the number of permission sets assigned to a user.

    Thanks

  • Surbhi

    Member
    June 7, 2016 at 2:05 pm in reply to: How to enable visualforce page overrides on ideas?

    Hi Ravi,

    I don't think that can be done. You need that black tab feature to give you the ideas controllers. You can then make use of all the fancy ideas controllers without having to do very apex.

    Thanks

  • Hi Ravi,

    This might be possible because of inner classes were being called during testing, then surely they are contributing positively to test coverage.

    Thanks

  • Hi Himanshu,

    This might be possible because of login hours. Please look into login hour setting of your org.

    Thanks

  • Surbhi

    Member
    June 7, 2016 at 1:58 pm in reply to: Flex security cross-domain issue in Salesforce

    Hi Himanshu,

    You can try to use your domain's copy of the crossdomain.xml file. If anyone will get more details information, please do share.

    Thanks

  • Surbhi

    Member
    June 7, 2016 at 1:56 pm in reply to: How to render Visualforce components based on default values?

    Hi Ravi,

    You can take reference from below code:

    <apex:inputField value="{!CustomObjectName.CustomField__c}" rendered="{!IF(CustomObjectName.BooleanVar__c == 'Yes', true, false)}">

    Thanks

  • Surbhi

    Member
    June 7, 2016 at 1:51 pm in reply to: How do you deserialize json into the correct virtual class?

    Hi Ravi,

    For deserializing JSON, please have a look on JSON class.

    e.g. ClassName queryResult = (ClassName)JSON.deserialize(jsonString, ClassName.class);

    Thanks

  • Surbhi

    Member
    June 7, 2016 at 1:45 pm in reply to: How do we create a chatter group for a particular object?

    Hi Ravi,

    Unfortunately, chatter groups aren't specific to an object or record only. You can create a private group via apex or manually.

    Thanks

  • Surbhi

    Member
    June 7, 2016 at 1:42 pm in reply to: Is there anyway to schedule the activation of a workflow?

    Hi Himanshu,

    Please have a look on Metadata API because this can be achieved by using this.

    Thanks

  • Surbhi

    Member
    June 7, 2016 at 1:40 pm in reply to: Create test data with more than 10000 rows dynamically in apex

    Hi Himanshu,

    My solution for this would be to insert 5000 in one pass, and then use the Test.Starttest(), which will give you a set of limits and then insert another 5,000. Then, run the test with "seeAllData= true". But this is not ideal approach.

    Thanks

     

  • Hi Utsav,

    I have faced the same problem in one of my project. Mainly this issue is because of version of component which is to be 25.0. The other reason is, may be in controller there is some kind of loop formation. But It might possible that there will other reasons also exist for this.

    Thanks

  • Surbhi

    Member
    June 3, 2016 at 2:13 pm in reply to: How can I get code coverage programmatically through Apex?

    Hi Ravi,

    For synchronous testing: The run tests result returned by calling ApexService.runTests() contains a code coverage property, which is a code coverage result array.

    The code coverage result locations not covered property gives you the line number and column of code that wasn't tested in the run.

    Thanks

  • Surbhi

    Member
    June 3, 2016 at 1:56 pm in reply to: Apex regex to get html child tag and its content?

    Hi Himanshu,

    Regular expressions work on regular languages and HTML is not a regular language. So, while you can do some limited extraction of html using a regexp, regexps are not the right tool for the job. Instead of this, I'd suggest you using the Dom.Document class and the Dom.XmlNode class.

    Thanks

  • Surbhi

    Member
    June 3, 2016 at 1:38 pm in reply to: Record Type picklist

    Hi Nitish,

    As per my knowledge, this is not possible to select record type on main page of the record. But if I get to know any possibility for this, I will surely let you know.

    Thanks

  • Hi Nitish,

    If you have allowed report at object level,then a kind of possible problem is after creating the report type, some fields are missing in the report builder. This is because of custom fields have not been added to the report type.
    To resolve this, Go to Setup > Create > Report Types.

    Click on your Custom Report Type. At the bottom under Fields Available for Reports click Edit Layout. Then drag and drop the fields you want to display on report from right hand side panel and save it.

    Thanks

  • Hi Rachit,

    I have found an idea for approval process on opportunity line item. But if you could share some more details regarding your requirement, I will be able to provide you a better solution.

    Thanks

  • Hi Rachit,

    As per my knowledge and research, the maximum CPU time on the salesforce servers is 10,000 milliseconds (Synchronous limit) and 60,000 milliseconds (Asynchronous limit). We can't exceed this limit. But an important point to note here is to know that CPU time will vary when running the same code over and over again. The CPU time vary by as much as 25% from one request to the next. Salesforce don't not give any information on how much of a variation that can be expected.

    Thanks

  • Surbhi

    Member
    June 3, 2016 at 12:31 pm in reply to: What can do to performance optimization in salesforce?

    Hi Himanshu,

    Please look at the below points:

    1. Store only what’s needed.
    2. Know your expected data growth rate.
    3. Define criteria for data archiving.
    4. Initially plan architecture rather than planning it in later phase.

    Thanks

     

  • Surbhi

    Member
    June 3, 2016 at 6:43 am in reply to: What is the role of report snapshot in salesforce?

    Hi Satyakam,

    A reporting snapshot  is mainly for creating report on historical data. Authorized users can save tabular or summary report results to fields on a custom object, then map those fields to corresponding fields on a target object. They can then schedule when to run the report to load the custom object's fields with the report's data.

    Reporting snapshots enable you to work with report data similarly to how you work with other records in Salesforce.

    Thanks

  • Surbhi

    Member
    June 3, 2016 at 6:33 am in reply to: What are the best practices for data integration?

    Hi Himanshu, please have a look on the below points:

    1. Identify data that needs to be stored in salesforce
    2. Be aware of your source data and where to store it
    3. Review data management requirements
    4. Decide on a schedule that fits your company
    5. Leverage standard integration apps
    6. Set up time for quality assurance (QA)
    7. Create a salesforce data model specific to the needs of your company
    8. Use salesforce functionality
    9. Set up a “system of record”
    10. Use help text to provide end users with context
    11. Use external ids
    12. Undertake regular updates and logging
    13. Perform a security check

    Thanks

  • Surbhi

    Member
    June 2, 2016 at 7:43 am in reply to: Can anyone define the service cloud console?

    Hi Himanshu,

    Service Cloud Console is a salesforce application that is designed for users in a fast-paced environment that need to find, update, and create records quickly. SCC introduces a tabbed environment in which users are able to look at different groupings of records in one screen via a Secondary and Primary tab. Another notable feature is that it has keyboard shortcuts so that power users are able to save time switching between tabs and saving information. The most notable feature of SCC is that it is very easy to plug in custom Visualforce pages within the console and the ability to build custom integrations directly into the console making it very extendible. Another cool feature is the ability to have an interaction log which allows you to quickly create tasks whilst you are on the phone with customers.

    Thanks

  • Surbhi

    Member
    June 2, 2016 at 7:38 am in reply to: In what situations a case could be escalated?

    Hi Himanshu,

    A case can be escalated automatically if they are not resolved within a certain period of time. Or imagine a support process, there will be customer reps --> managers --> Senior mangers etc. If a rep cannot solve your issue, case should go to manager and if he cannot solve it, should go to senior manager etc...

    Thanks

  • Surbhi

    Member
    June 2, 2016 at 7:33 am in reply to: Should I use Sales Cloud or SalesforceIQ?

    Hi Suyash,

    SalesforceIQ is an out-of-the-box CRM solution that automatically tracks and analyzes the day-to-day interactions that drive professional relationships. With SalesforceIQ, you can quickly connect with your Gmail or Exchange email and leverage Relationship Intelligence to sell smarter.

    Sales Cloud is a fully customizable platform that can provide a single view of your customer and access thousands of applications via the AppExchange.

    Hope above points will help you in making your choice.

    Thanks

Page 5 of 8