Forum Replies Created

Page 5 of 24
  • Shweta

    Member
    October 28, 2020 at 6:45 pm in reply to: How to retrieve the metadata using Ant Migartion Tool in Salesforce?

    Follow these steps to retrieve metadata:
    1. Open a command prompt.
    2. Run Ant by specifying a target name in build.xml. If this is the first time you are running Ant, use ant retrieveUnpackaged to retrieve unpackaged components specified in package.xml.

  • Shweta

    Member
    October 28, 2020 at 6:33 pm in reply to: difference between callout and web service salesforce?

    Apex callout enables you to tightly integrate your Apex code with an external service and also enable Apex to invoke external web services. The callout makes a call to an external web service or sends an HTTP request from Apex code, and then receives the response. This allows you to connect to 3rd party web services such as Google, Amazon, Facebook, and any other external web service.
    REST and SOAP are the two web service frameworks available on the Force.com platform. The SOAP API uses authentication with username and password and communicates using XML messages. There are different APIs to work with the Enterprise, Partner, Bulk, Metadata, etc.

  • Shweta

    Member
    October 27, 2020 at 3:29 pm in reply to: How do you change the opportunity stage in Salesforce lightning?

    <div>Follow these steps to change the opportunity stage:</div>Go to SetUp -> Click on Object Manager -> Click on Opportunity -> Field & Relationships -> Click on the field name "Stage".
    Click 'New' to add a new stage under Opportunity Stage Picklist Values. Click 'Edit' next to the stage to change the probability or type of forecast category. For new Opportunity stage values, select the Sales Process to be associated. Click on Save.

  • Shweta

    Member
    October 27, 2020 at 3:21 pm in reply to: How to show field name error in VisualForce pages in Salesforce?

    Use the below code to show the error message:
    if (fieldname == null){
    ApexPages.addmessage(new ApexPages.message(ApexPages.severity.WARNING,'Please enter value'));
    return null;
    }
    Insert the below tag inside the visualforce page within page block
    <apex:pageMessages ></apex:pageMessages>

  • Shweta

    Member
    October 27, 2020 at 3:10 pm in reply to: Why is WFM adaptor used in Salesforce?

    WFM Adapter provides seamless integration between Salesforce Service Cloud and WFM systems. It takes data from Salesforce and molds it to a format that can be used by WFM systems such as NICE, Aspect, Teleopti, and Verint. With the adapter, business managers can effectively manage performance and forecast work volume and staffing.

    • This reply was modified 4 years ago by  Shweta.
  • Shweta

    Member
    October 23, 2020 at 3:05 pm in reply to: What is Kanban in Salesforce lightning?

    Kanban views show records in a graphical way that helps you monitor your work and keep deals moving ahead. Kanban views are available for most objects, with exceptions such as tasks.

  • Shweta

    Member
    October 23, 2020 at 1:32 pm in reply to: What is meant by oAuth tokens in Salesforce?

    OAuth tokens are essentially permissions given to a client application. The resource server can validate the tokens and allow the client application access to the defined protected resources. In Salesforce, you can use OAuth authorization to approve a client application's access to your org's protected resources. This token authorizes access to protected resources.

  • Shweta

    Member
    October 23, 2020 at 1:25 pm in reply to: How to generate access token in Salesforce?

    <div>Follow these steps to generate an access token:</div>1. Go to Setup -> enter Apps in the Quick Find box -> select App Manager.
    2. Locate the OAuth connected app in the apps list, click Action dropdown, and select View.
    3. In the Initial Access Token for Dynamic Client Registration section, click Generate if an initial access token hasn’t been created for the connected app. If a token has already been created for the app, but you require a new token, click Regenerate.
    4. Regenerating the initial access token invalidates the previous one that your OAuth clients use. Update your OAuth clients to use the new token.
    5. Click Click to reveal, and copy the token for registration with the app’s OAuth 2.0 client.

  • Shweta

    Member
    October 22, 2020 at 2:17 pm in reply to: Which resource can be included in a lightning component bundle?

    Each Lightning Component is made up of a Mark-ups, JavaScript controller, a Helper, a Renderer, Documentation, and more (Component Bundle).

  • Shweta

    Member
    October 22, 2020 at 2:12 pm in reply to: Is it possible to skip steps in approval process?

    Yes. In processes that have steps that are optional depending on criteria, use the skip step feature.To skip steps, use filter criteria or formula, then choose what should happen to records that do not meet the criteria.

  • Shweta

    Member
    October 22, 2020 at 2:06 pm in reply to: What is field level encryption in Salesforce ?

    Field-level encryption requires encryption of any email address fields used for sending. Field-Level Encryption requires a subscriber key for each contact. All business units within an Enterprise account must use Field-Level Encryption.

  • Trusted IP range: It defines a list of IP addresses from which users can log in without receiving a login challenge for verification of their identity, such as a code sent to their mobile phone.
    Login IP range: You can control login access on a user’s profile by specifying a range of IP addresses. When you define IP address restrictions for a profile, any login from a restricted IP address is denied.

  • Shweta

    Member
    October 21, 2020 at 6:43 pm in reply to: How to convert string to blob in Apex?

    To convert string to blob :
    String myString = 'StringToBlob';
    Blob myBlob = Blob.valueof(myString);
    System.assertEquals('StringToBlob', myBlob.toString());

  • Shweta

    Member
    October 21, 2020 at 6:32 pm in reply to: What is Shield Platform Encryption in Salesforce ?

    Salesforce Shield Platform Encryption solution encrypts data at rest when stored on our
    servers, in the database, in search index files, and the file system. To encrypt data at rest and
    preserve functionality, we built the encryption services natively into the Salesforce Platform.

  • Shweta

    Member
    October 20, 2020 at 6:04 am in reply to: What is difference between aura and LWC?

    Aura-based Lightning components are built using both HTML and JavaScript.
    Lightning Web component: It is built directly on the Web stack. its structure relies on using code that runs natively on browsers, improving performance while making it much faster to deploy and more versatile. LWC was created basically to overcome the shortcomings of the Aura framework but not eliminating the power of the Lightning Components.

  • Visualforce follows a Page-Centric model. PageCentric means that the goal of Visualforce is to create something that is your full-page interface. When the user has to perform some operation, eg Create a record or save a record, it sends that request to the Salesforce servers and then reloads the entire page with the new state of the UI. All backend processing is done with Apex Code on the Server-Side.
    Lighting Component is an App-centric approach. Lightning components are part of the Salesforce user interface framework for developing dynamic web applications for desktop and mobile devices. They use JavaScript at the client-side and Apex at the server-side to provide the data and business logic.

  • Shweta

    Member
    October 20, 2020 at 5:39 am in reply to: Does lightning work with Visualforce?

    With the use of some important exceptions, Visualforce just works in Lightning Experience. If you've written Visualforce apps for your organization, you can expect that they work whether your users access them in Lightning Experience or Salesforce Classic.

  • Shweta

    Member
    October 19, 2020 at 1:50 pm in reply to: Where we can display vf pages in Salesforce?

    Follow these steps to display the VF page:
    1. Go to Setup -> enter Visualforce Pages in the Quick Find box -> select Visualforce Pages to display the Pages list page, which shows all the Visualforce pages defined for your organization. From the Pages list page, you can:
    2. Click New to define a new Visualforce page.
    3. Click a page name to display detailed information about the page, including its label and Visualforce markup.
    4. Click Edit next to a page name to modify the page’s name, label, or Visualforce markup.
    5. Click the Preview button (Launch) to open the page in a new window.

  • Shweta

    Member
    October 19, 2020 at 1:25 pm in reply to: What is the architecture of EDA in Salesforce?

    Education Data Architecture (EDA) is a community-driven data architecture designed to help educational institutions use Salesforce out-of-the-box. Built-in collaboration with our partners and customers, the Education Data Architecture (EDA) provides the foundation for your connected campus and empowers institutions of all sizes to connect with students, alumni, faculty, and staff in new ways.

  • Shweta

    Member
    October 19, 2020 at 1:13 pm in reply to: When to use transient keyword in Salesforce?

    We can use the transient keyword to declare instance <em style="font-family: inherit; font-size: inherit;">variables that can't be saved, and shouldn't be transmitted as part of the view state for a <em style="font-family: inherit; font-size: inherit;">Visualforce page. We can also use the transient keyword in Apex classes that are serializable, namely in controllers, controller extensions, or classes that implement the <samp style="font-size: inherit;">Batchable</samp> or <samp style="font-size: inherit;">Schedulable</samp> interface.

  • Shweta

    Member
    October 16, 2020 at 2:27 pm in reply to: Is it possible to grant delete permission using apex managed sharing?

    We cannot grant transfer, delete, or share permissions with Sharing rules but an all-access level can only be used by Force.com managed sharing.

  • Shweta

    Member
    October 16, 2020 at 2:11 pm in reply to: How do I deploy metadata in Salesforce?

    We can use the deploy() and retrieve() calls to move metadata (XML files) between a Salesforce organization and a local file system. Once you retrieve your XML files into a file system, you can manage changes in a source-code control system, copy and paste code or setup configurations, diff changes to components, and perform many other file-based development operations.

  • Shweta

    Member
    October 16, 2020 at 2:06 pm in reply to: how it is able to access "Contact.Owner.email" ??

    Contact Owner is a lookup to the User object. So, when you query Contact.Owner.Email.It will lookup to contact -> Contact Owner (User) -> Email.You will get the email address of the User that owns that contact.

  • Shweta

    Member
    October 15, 2020 at 5:54 pm in reply to: What is the use of Matcher Class in Salesforce ?

    Matcher class stores the results of an attempt to match a Pattern with a String, including any captured text.

  • Shweta

    Member
    October 15, 2020 at 5:53 pm in reply to: What is the use of Pattern Class in Salesforce ?

    Patterns are used by matchers to perform match operations on a character string. A regular expression is a string that is used to match another string, using a specific syntax. Apex supports the use of regular expressions through its Pattern and Matcher classes.

Page 5 of 24