Forum Replies Created

Page 1 of 3
  • Hi Ranjith,

    As we know developer can now employ batch Apex to build complex, long-running processes that run on thousands of records on the Force.com platform. Batch Apex operates over small batches of records, covering your entire recordset and breaking the processing down into manageable chunks. It contains three methods that must be implemented:

    1. Start Method
    2. Execute Method
    3. Finish Method

    If we are discussing about the batch size then following are the details:

    The minimum size for Batch Apex is 1.

    The maximum size for Batch Apex is 2000.

    The default is 200.

    I hope this will be helpful for you.

    Thanks

     

  • Satyakam

    Member
    January 30, 2018 at 3:41 pm in reply to: How to upload doc in salesforce content?

    Hi,

    You can also use Data Loader to bulk upload documents and links into libraries in Salesforce CRM Content.

    Thanks

  • Hi Saurabh,

    We can not mass delete reports using Anonymous Apex but it can be possible by using following step:

    In Setup, under Data Management | Mass Delete Records, select Mass Delete Reports and configure a filter to find reports that need to be deleted.

    Thanks

  • Satyakam

    Member
    January 30, 2018 at 3:14 pm in reply to: What is salesforce content?

    Hi,

    Salesforce Content includes all file types, from traditional business documents such as Microsoft PowerPoint presentations to audio files, video files, Web pages, and Google Docs.Salesforce CRM Content simplifies content management by following tasks:

    1. Organizing
    2. Reviewing Usage and Providing Feedback
    3. Sharing Content in Salesforce
    4. Sharing Content in Salesforce Mobile Classic
    5. Subscribing
    6. Searching

    Thanks

  • Satyakam

    Member
    January 30, 2018 at 3:07 pm in reply to: What is the difference between RPC or Document Style web services?

    Hi Tanu,

    Following are the differences between RPC and Document style web services:

    Document: There are no types in WSDL.Document style is the default.In WSDL file, it specifies types details either having inline Or imports XSD document, which describes the structure(schema) of the complex data types being exchanged by those service methods which makes loosely coupled.

    Advantage: we can validate SOAP messages against the predefined schema. It supports XML datatypes and patterns.
    loosely coupled.
    Disadvantage: It is a little bit hard to get understand.

    RPC: Types section would be available in WSDL. In WSDL file, it does not create types schema, within message elements it defines name and type attributes which makes tightly coupled.

    Advantage: Easy to understand.
    Disadvantage:
    1. We can not validate SOAP messages.
    2. Tightly Coupled.

    Thanks

  • Satyakam

    Member
    January 18, 2018 at 11:23 am in reply to: How to embed iframe in Salesforce Visualforce page?

    Hi Charan,

    Is there any other option to show all websites within our visualforce page.

    Thanks

  • No, We can't change/modify the setting of child records in case of Master-Detail relationship because child record can be only controlled by the Parents setting.

  • Satyakam

    Member
    January 23, 2017 at 8:07 am in reply to: What are bucket fields in Salesforce reports and how can we use it?

    Hi Pranav,

    Please go through the following link,hope this will help you a lot:

    http://www.infallibletechie.com/2013/03/what-is-use-of-bucket-field-in-reports.html

    Thanks

  • Satyakam

    Member
    January 23, 2017 at 7:53 am in reply to: The top 7 marketing tools and apps for Salesforce

    Congratulations Abhay & your team for your Achievement.

  • Hi Neha,

    It depends upon the demand of technology in current market and availability of developer to fulfilled it's demand . If demand is more than the availability, scope and package of these developer is more compare to the developer of different technology where availability is more than demand.

    So salesforce is here in first category currently so they have higher scope and package.There are also other technology like Big Data,Machine Learning which are higher in demand then salesforce.

    Thanks

     

     

     

  • Thanks Mark for giving information.

  • Satyakam

    Member
    January 23, 2017 at 6:47 am in reply to: How can we access community in Lightning ?

    Hi Mohit,

    Community Builder supports Lightning Components that use the forceCommunity:availableForAllPageTypes interface. So declare your component like this:

    <aura:component controller="MyController" implements="forceCommunity:availableForAllPageTypes">
    ...
    </aura:component>

    Thanks

  • Satyakam

    Member
    January 23, 2017 at 6:45 am in reply to: Job Opportunity: Force.com Developer 6-12+months San Francisco CA

    Sure

  • Satyakam

    Member
    January 23, 2017 at 6:44 am in reply to: How can I import lightning component into my org?

    Hi Tanu,

    STEP 1:  Get Started

    When you log into your Salesforce org, go to your Setup page.  Under the search bar in the left hand nav, click on the option entitled “Lightning Experience.”

    STEP 2:  Evaluate Your Org

    Great!  You’ve made it to the Lightning Experience Migration Assistant, which is the place to learn about Lightning Experience and migrate to Lightning Experience.  When you’re ready, look under the section entitled “Evaluate if Lightning Experience Is Right for Your Org,” and look for the topic entitled “Check Your Lightning Experience Readiness.”  Next to this topic, you’ll see a link called “Evaluate.” Click it!

    STEP 3:  Check Out Your Results

    Here’s what happens next: your Salesforce org is automatically evaluated to help you determine if your org is ready to migrate to Lightning Experience. All you need to do is enter your username and password, and we will email a readiness report to you.

    Thanks

  • Satyakam

    Member
    January 23, 2017 at 6:39 am in reply to: Salesforce Admin Training

    Thanks and Good Luck!

  • Thanks Dave

  • Satyakam

    Member
    January 23, 2017 at 6:35 am in reply to: How to hide/show page block table in a Salesforce visualforce page?

    Hi Pranav,

    My visualforce page having 2 sections(Account and Contacts). If the Account having any contacts need to display Contacts section other wise display only Account section.

    Used following statement in VFP:

    <apex:pageBlockSection  rendered="{!IF(contactsLst.size>0, true, false)}">

    Thanks,

  • Hi Tanu,

    The short answer to your question is this: there is no analog to apex:pageBlock or its child tags in Lightning Components.

    As you know, the pageBlock family of tags in Visualforce gave developers tools to create Salesforce look-and-feel pages.

    for lightning you can use <aura:iteration> to show the list of Account object.

    Thanks

  • Satyakam

    Member
    January 23, 2017 at 6:16 am in reply to: How to extend a standard Salesforce lightning ui component?
  • Hi Tanu,

    In your Component if you are iterating a list of any object with input Checkbox field and you want to get values of selected checkbox on click of button:

    <aura:iteration items="{!v.AccountList}" var="opp">
    <tr>
    <td>
    <ui:inputCheckbox class="slds-checkbox" value="{!opp.selected}" />
    </td>
    <td><ui:outputText class="slds-output" value="{!opp.Accc.Name}"/></td>
    </tr>
    </aura:iteration>

    <ui:button class="slds-button slds-button--neutral " label="Add" press="{!c.addValue}"/>

    JsController:

    addValue : function(component, event, helper) {
    var accProList = component.get("v.AccountList");
    var selectedtLists = [];
    for(var i=0;i<accProList.length;i++){
    if(accProList[i].selected == true){
    selectedtLists.push(accProList[i].Accc.Name);
    }
    }

    }

    In this you have to use wrapper class in your apex controller.if you are getting any problem than please let me know.

    Thanks

    • This reply was modified 7 years, 10 months ago by  Satyakam.
  • Hi Mohit,

    Apex classes to run at specific times, first implement the Schedulable interface for the class, then specify the schedule using either the Schedule Apex page in the Salesforce user interface, or the System.schedule method.

    Ex: CRON Expression to run half past the hour
    You can do it via code. The following code will schedule if for half an hour.

    ProcessAccs pa= new ProcessAccs();
    String cronStr = '0 30 * * * ?';
    System.schedule('Process Job', cronStr, pa);

    Thanks

  • Satyakam

    Member
    January 6, 2017 at 8:44 am in reply to: What are the benefits of using Salesforce Lightning experience?

    Hi Sushant,

    Following are the benefits of Lightning experience in salesforce:

    1. Faster development
    2. Device-aware and cross browser compatibility
    3. Performance
    4. Rich component ecosystem
    5. Event-driven architecture

    The Lightning Component framework is built on the open source Aura framework. The Aura framework enables you to build apps completely independent of your data in Salesforce.

    For more details,follow the link given below:

    http://www.salesforce.com/campaigns/lightning/

    • This reply was modified 7 years, 10 months ago by  Satyakam.
  • Satyakam

    Member
    January 6, 2017 at 8:37 am in reply to: Salesforce Ligthning Application

    Hi Vikas,

    Use the Lightning Design System to style your Lightning apps by extending force:slds or using a static resource. The Salesforce Lightning Design System provides a look and feel that’s consistent with Lightning Experience.

    Your application automatically gets Lightning Design System styles and design tokens if it extends force:slds. This method is the easiest way to stay up to date and consistent with Lightning Design System enhancements.

    Thanks

  • Satyakam

    Member
    January 6, 2017 at 7:39 am in reply to: What is the use of marketing cloud in salesforce?

    Hi Sushant,

    Marketing Cloud:

    Salesforce Marketing Cloud is a customer relationship management (CRM) platform for marketers that allows them to create and manage marketing relationships and campaigns with customers.Marketing cloud is formerly known as 'ExactTarget'.

    Services:

    • Salesforce Marketing Cloud develops marketing automation and analytics software for email, mobile, social and online marketing.
    • Salesforce Marketing Cloud also offers consulting and implementation services.
    • The software is sold primarily on a multi-year subscription basis. The price of the subscription is based on what features are enabled, number of users and level of customer service.

    For more details,you may go through following link:

    https://www.salesforce.com/products/marketing-cloud/overview/

  • Satyakam

    Member
    January 6, 2017 at 7:28 am in reply to: In salesforce can we include more than one app in a package?

    Hi Sushant,

    Yes you can include more than one app in a package.

    Thanks

Page 1 of 3