Salesforce terms starting with C
118 terms in the dictionary that start with C.
- Calculated InsightAnalyticsAdvanced
A Calculated Insight in Salesforce Data Cloud is a computed metric or aggregation derived from unified customer profile data. Calculated Insights use SQL-like expressions to create new data points by performing calculations across Data Cloud data model objects, such as computing a customer's lifetime value, average order frequency, or engagement score. These insights can then be used for segmentation, activation, and AI-driven personalization.
View term → - CalendarCore CRMBeginner
A Calendar in Salesforce (Calendar in the API) is a standard object that represents a single calendar - typically a user's personal calendar, a Public Calendar visible to specific groups of users, a Resource Calendar for shared rooms or equipment, or a Holiday Calendar maintained by an admin. Each Calendar record holds a Name, a Type (User, Public, Resource, Holiday), a UserId or other owner reference, and visibility settings governing who can see and book against it. Calendars are containers for Calendar Events and Tasks; they appear as toggleable layers in the Salesforce calendar view, where users can overlay their own Calendar with their team members' Calendars, public Calendars (Office Holidays, Marketing Events), or resource Calendars (Conference Room A, Demo Lab) to coordinate scheduling. Salesforce Calendars integrate with external systems through Einstein Activity Capture and add-on Lightning Sync products that bidirectionally synchronize Events between Salesforce and Microsoft Outlook or Google Calendar.
View term → - Calendar SettingsAdministrationBeginner
Calendar Settings is a Setup page where administrators configure how calendars behave across the org. Options include enabling Home Page hover links for events, configuring calendar sharing defaults, controlling whether users can create events on other users' calendars, and setting the default calendar view.
View term → - CallCore CRMBeginner
A Call in Salesforce refers to a phone call activity logged as a Task record with the type set to 'Call.' Calls can be logged manually by users or automatically through CTI integrations. The logged call captures details such as the subject, comments, duration, related Contact or Lead, and associated records. Calls appear in the Activity Timeline and Activity History on related records.
View term → - Call CenterServiceAdvanced
A Call Center in Salesforce is a CTI (Computer-Telephony Integration) configuration that connects a third-party phone system to the Salesforce interface. It enables features such as click-to-dial, screen pops (showing caller information), call logging, and call controls (hold, transfer, conference) directly within the Salesforce console, allowing agents to manage phone interactions without leaving Salesforce.
View term → - Callout, ApexDevelopmentAdvanced
A Callout in Apex is an HTTP or web service request made from Apex code to an external server or API. Apex supports both HTTP callouts (using HttpRequest/HttpResponse classes) and SOAP callouts (using WSDL2Apex-generated classes). Callouts are subject to governor limits (such as a 10-second timeout per callout and a maximum of 100 callouts per transaction) and require the external endpoint to be registered in Remote Site Settings or Named Credentials.
View term → - CampaignSalesBeginner
A Campaign in Salesforce is a marketing initiative such as an advertisement, email blast, webinar, conference, or direct mail effort. Campaigns track the cost, expected revenue, and effectiveness of marketing activities by associating Leads and Contacts as Campaign Members with statuses like Sent, Responded, or Attended.
View term → - Campaign HierarchySalesAdvanced
A Campaign Hierarchy in Salesforce is a parent-child structure that organizes related Campaign records into a tree, allowing marketers to group individual campaigns under a broader initiative. Child campaigns roll up their statistics (such as total leads, responses, and costs) to the parent campaign, providing a consolidated view of the overall marketing program's performance.
View term → - Campaign MemberSalesBeginner
A Campaign Member in Salesforce is a junction record that links a Lead or Contact to a Campaign, representing that individual's participation in the marketing initiative. Each Campaign Member record has a Status field (such as 'Sent,' 'Responded,' or 'Attended') that tracks the individual's level of engagement with the campaign.
View term → - Campaign ROI (Return On Investment)SalesBeginner
Campaign ROI (Return On Investment) in Salesforce is a calculated field on the Campaign object that measures the financial return of a marketing campaign. It is calculated as: ((Total Value of Won Opportunities - Actual Cost) / Actual Cost) x 100. This metric helps marketers evaluate which campaigns are generating the best return relative to their investment.
View term → - Canvas App PreviewerPlatformAdvanced
Canvas App Previewer is a Setup tool that allows administrators and developers to preview Canvas apps directly within Salesforce. Canvas apps are web applications hosted outside of Salesforce that are displayed within the Salesforce UI using an iframe. The previewer lets users test how these external apps render before deploying them to production.
View term → - Care PlanServiceIntermediate
A Care Plan in Salesforce (primarily in Health Cloud) is a standard object that represents a structured plan of care for a patient or member. It includes goals, tasks, problems, and care team assignments that define the coordinated approach to managing a patient's health. Care Plans help healthcare organizations track treatment progress, coordinate across providers, and ensure patients receive consistent care.
View term → - Care ProgramServiceIntermediate
A Care Program in Salesforce (primarily in Health Cloud) is a standard object that represents a structured health or wellness program designed to manage a group of patients or members with similar health needs. Care Programs define enrollment criteria, milestones, and associated care plans, enabling healthcare organizations to manage population health initiatives like chronic disease management or preventive care programs.
View term → - Care TeamServiceBeginner
A Care Team in Salesforce (primarily in Health Cloud) is a group of individuals (such as doctors, nurses, social workers, and family members) who are collectively responsible for a patient's care. The Care Team is associated with an Account or Care Plan and tracks each member's role, contact information, and relationship to the patient, facilitating coordinated care delivery.
View term → - CartSalesIntermediate
A Cart in Salesforce (WebCart in the API) is a standard Commerce Cloud object that represents an active or abandoned shopping cart for a buyer on a Salesforce Lightning B2B or B2B2C Commerce storefront. Each Cart record holds a Name, an AccountId (the buying organization for B2B, or the buyer Account for B2C), an OwnerId, a Status (Active, Checkout, Pending Order, Processing Order, Closed), BuyerGroupId for entitled price-list resolution, currency, and totals fields including SubtotalAmount, TotalTaxAmount, TotalShippingAmount, and GrandTotalAmount. Carts are the central transaction object in Commerce Cloud - they collect Cart Items as the buyer browses, evaluate pricing through Price Books and entitlements, hold promo and coupon adjustments, and ultimately produce an Order when the buyer checks out. Salesforce Commerce supports multiple concurrent Carts per buyer (B2B buyers managing parallel quote requests, for example) and persists abandoned Carts for marketing-driven re-engagement campaigns.
View term → - Cart ItemSalesIntermediate
A Cart Item in Salesforce (CartItem in the API) is a standard Commerce Cloud object that represents a single line in a buyer's shopping Cart on a Lightning B2B or B2B2C Commerce storefront - one Product, a Quantity, and the resolved pricing for that line. Each Cart Item record holds a parent CartId, a Product2Id, the Quantity, the ListPrice (snapshot from the entitled Price Book), the SalesPrice (after promotion and entitlement adjustments), TotalListPrice, TotalAmount, AdjustmentAmount (cumulative discounts), and a Type field distinguishing Product Cart Items from Charge Cart Items (shipping, tax, fees layered onto the Cart). Cart Items are added when a buyer clicks Add to Cart, updated as they change quantities, and ultimately copied into the resulting Order as Order Products when the Cart is checked out. Like all Commerce pricing, Cart Item totals are recalculated server-side through the Pricing Procedure pipeline whenever the Cart contents, buyer entitlements, or active promotions change - making Cart Items the canonical record of what the buyer will pay if they check out right now.
View term → - Cascading Style Sheet (CSS)DevelopmentIntermediate
Cascading Style Sheets (CSS) in the Salesforce context refers to the standard web technology used to style and format the visual presentation of Visualforce pages, Lightning components, and Experience Cloud sites. In Lightning Web Components, CSS is scoped to the component using Shadow DOM. Salesforce's Lightning Design System (SLDS) provides a comprehensive CSS framework with pre-built styles optimized for the Salesforce UI.
View term → - CaseServiceBeginner
A Case in Salesforce represents a customer issue, question, or request for support. Cases track the entire lifecycle of a service interaction from creation through resolution, with fields for Status, Priority, Origin, and Subject. They can be created manually, via email-to-case, web-to-case, or by AI agents.
View term → - Case FeedServiceIntermediate
Case Feed in Salesforce is a chronological, activity-stream view on a Case record that displays all interactions and updates related to the case in a single timeline. It shows emails, Chatter posts, call logs, status changes, and other activities in reverse chronological order. Case Feed provides agents with a complete picture of the case history and enables them to take actions (like sending emails or posting updates) directly from the feed.
View term → - Case, CheckoutPlatformBeginner
A Case (Checkout) in Salesforce Commerce refers to a support case that originates from or is related to a checkout transaction in Salesforce Commerce Cloud. It links the customer service issue to the specific order or checkout session, allowing service agents to view transaction details, payment information, and order status alongside the case for faster resolution.
View term → - Category Group for ArticlesServiceIntermediate
A Category Group for Articles in Salesforce Knowledge is a Data Category Group used to classify and organize Knowledge articles. It provides a hierarchical structure of categories (like Product > Hardware > Laptops) that authors use to tag articles and that users use to browse and filter articles. Multiple category groups can be created to support different classification schemes.
View term → - Category, IdeasPlatformAdvanced
A Category (Ideas) in Salesforce is a classification used to organize Ideas posted in an Ideas community. Categories allow users to browse ideas by topic (such as 'Product Features,' 'Usability,' or 'Integrations') and help administrators manage and prioritize submitted ideas. Categories are defined by administrators for each Ideas community.
View term → - Category, Knowledge and AnswersServiceAdvanced
A Category in Salesforce Knowledge and Answers refers to a node within a Data Category Group hierarchy. Categories classify and organize Knowledge articles and Answers questions into logical groupings. They support hierarchical structures (parent-child categories) and are used for both navigation (browsing content) and access control (restricting which categories different user groups can see).
View term → - Category, SolutionsCore CRMBeginner
A Category (Solutions) in Salesforce is a classification applied to Solution records to organize them by topic. Categories help support agents and customers browse and find relevant solutions more efficiently. Solution Categories can be organized hierarchically and are managed through the Solution Categories Setup page. Note: Solutions is a legacy feature that has largely been replaced by Salesforce Knowledge.
View term → - Certificate and Key ManagementAdministrationBeginner
Certificate and Key Management is a Setup page where administrators create, manage, and store digital certificates and key pairs used for secure communications. These certificates are used for SSL/TLS encryption, single sign-on, mutual authentication with external systems, and signing SAML assertions.
View term → - ChallengePlatformAdvanced
A Challenge in Salesforce Trailhead is a hands-on assessment within a Trailhead module that requires the learner to complete a practical task in a Trailhead Playground or Developer org. Unlike quizzes that test knowledge with multiple-choice questions, challenges verify that the learner has actually performed the required configuration or development work by checking their org against specific criteria.
View term → - Change Data CaptureDevelopmentAdvanced
Change Data Capture (CDC) in Salesforce is a Streaming API feature that publishes real-time notifications when records in Salesforce are created, updated, deleted, or undeleted. External systems subscribe to change event channels to receive these notifications, enabling near-real-time data synchronization and event-driven architectures without polling the Salesforce API for changes.
View term → - Change SetAdministrationIntermediate
A Change Set is a Salesforce deployment tool used to send customizations and configurations from one org to another, typically from a sandbox to production. Change Sets can include components like custom objects, fields, Apex classes, Flows, page layouts, and profiles. They require a deployment connection between the source and target orgs.
View term → - Channel ManagerSalesIntermediate
Channel Manager in Salesforce (particularly in Partner Relationship Management) refers to a user or role responsible for managing partner and channel sales relationships. In the context of Salesforce PRM, it includes tools and dashboards that help channel managers recruit partners, manage deal registration, track partner performance, and facilitate co-selling activities.
View term → - ChatServiceIntermediate
Chat (now called Messaging for In-App and Web, formerly Live Agent) in Salesforce is a real-time text-based communication channel that allows customers to chat with service agents through a website or mobile app widget. Chat conversations are routed to agents via Omni-Channel, and agents handle them within the Service Console, with access to full customer context and Knowledge articles.
View term → - Chat ConsoleServiceBeginner
Chat Console in Salesforce (related to the legacy Live Agent feature) is the agent-facing interface where service agents conduct real-time chat conversations with customers. It displays the active chat, customer details, a chat transcript, quick text options, and Knowledge article suggestions. In modern Salesforce, this functionality is embedded within the Service Console.
View term → - Chat WindowServiceIntermediate
A Chat Window in Salesforce is the customer-facing widget that appears on a website or mobile app, enabling visitors to initiate a live chat conversation with a service agent. The chat window is configured by administrators with customizable branding, pre-chat forms, and offline messaging options. It connects to the Salesforce org via Embedded Service deployments.
View term → - ChatletServiceIntermediate
A Chatlet in Salesforce is a compact, mini version of a chat interface component used within the Salesforce Console. Chatlets allow agents to manage aspects of a chat session (such as viewing transfer options, customer details, or canned responses) in small pop-up panels within the console without navigating away from their current workspace.
View term → - Chatter BookmarksCore CRMBeginner
Chatter Bookmarks in Salesforce is a feature that allows users to save (bookmark) specific Chatter posts or comments for easy reference later. Bookmarked items are collected in a dedicated Bookmarks feed, enabling users to quickly return to important posts, discussions, or updates without scrolling through the full Chatter feed.
View term → - Chatter FavoriteCore CRMIntermediate
A Chatter Favorite in Salesforce is a saved search or topic stream in Chatter that a user has marked as a favorite. By favoriting a feed search or topic, users create quick-access shortcuts in their Chatter sidebar, allowing them to easily monitor specific discussions, keywords, or topics that are important to their work.
View term → - Chatter FeedCore CRMAdvanced
Chatter Feed is the central stream of posts, comments, updates, and activities displayed on the Chatter tab, on user profiles, and on individual record pages in Salesforce. The feed shows real-time updates including posts from followed users, record field changes, file shares, mentions, and group discussions, keeping users informed about activity relevant to them.
View term → - Chatter GroupCore CRMBeginner
A Chatter Group is a collaborative space within Salesforce Chatter where a defined set of users can post, share files, and discuss topics together. Groups can be public (anyone can see and join), private (membership is by invitation or request), or unlisted (hidden from search). Groups are commonly used for project teams, departments, or cross-functional initiatives.
View term → - Chatter MobileCore CRMBeginner
Chatter Mobile is the mobile component of Salesforce Chatter accessible through the Salesforce Mobile App. It allows users to view their Chatter feed, post updates, share files, comment, mention colleagues, and receive push notifications for Chatter activity on their mobile devices, enabling collaboration on the go.
View term → - CheckoutPlatformIntermediate
Checkout in Salesforce Commerce refers to the process and functionality that allows customers to complete a purchase in a Salesforce Commerce Cloud storefront. It encompasses the cart review, shipping address entry, shipping method selection, payment processing, and order confirmation steps. Checkout can be customized to support various payment methods, tax calculations, and promotional discounts.
View term → - Child RelationshipDevelopmentIntermediate
A Child Relationship in Salesforce describes the connection from a child object to a parent object in a master-detail or lookup relationship. The child object contains the relationship field that points to the parent. Child relationships are referenced in SOQL subqueries using the relationship name (e.g., querying Contacts as a child relationship of Account). The relationship name is used for building queries, related lists, and cross-object formulas.
View term → - ClaimServiceBeginner
A Claim in Salesforce (primarily in Financial Services Cloud and Insurance) is a standard or custom object representing a request from a policyholder for coverage or compensation based on the terms of an insurance policy. Claims track the details of the incident, the policy involved, the claimant, assessments, and the status of the resolution process.
View term → - Classic Email TemplatesAdministrationBeginner
Classic Email Templates is a Setup page for creating and managing email templates in the Salesforce Classic format, including text, HTML with letterhead, custom HTML, and Visualforce templates. While Lightning Email Templates are the newer standard, Classic templates remain available for workflows, approval processes, and legacy integrations.
View term → - Classic LetterheadsAdministrationBeginner
Classic Letterheads is a Setup page for creating branded letterhead designs that serve as backgrounds for Classic HTML email templates. A letterhead defines the header image, footer content, background color, and border styling that gives emails a consistent, professional appearance aligned with the organization's brand.
View term → - Client AppDevelopmentAdvanced
A Client App in Salesforce refers to an external application that connects to and interacts with Salesforce through APIs using a Connected App configuration. The client app authenticates via OAuth 2.0 and then uses Salesforce APIs (REST, SOAP, Bulk, etc.) to read or modify data. Examples include mobile apps, desktop applications, and web applications that integrate with Salesforce.
View term → - Clinical Data ModelServiceBeginner
The Clinical Data Model in Salesforce Health Cloud is a pre-built data model designed for healthcare organizations to manage clinical information. It includes standard objects and fields for clinical encounters, conditions, medications, allergies, immunizations, procedures, and observations, aligned with healthcare data standards like HL7 FHIR to enable interoperability with electronic health record (EHR) systems.
View term → - CloneAdministrationBeginner
Clone in Salesforce is the action of creating a new record that duplicates the field values of an existing record. Users click the Clone button on a record to pre-populate a new record form with the original record's data, which they can then modify before saving. Clone functionality is available on most standard and custom objects and can be configured to include or exclude related records (Deep Clone).
View term → - Cloud ComputingPlatformIntermediate
Cloud Computing in the Salesforce context refers to the delivery model where software, platforms, and infrastructure are provided as a service over the internet rather than installed locally. Salesforce pioneered the SaaS (Software as a Service) cloud computing model, hosting all applications and data on its multi-tenant servers so customers access their CRM through a web browser without managing hardware or software installations.
View term → - Code CoverageDevelopmentIntermediate
Code Coverage in Salesforce refers to the percentage of Apex code lines that are executed by test methods. Salesforce requires a minimum of 75% overall code coverage across the org for deploying Apex to production, and each trigger must have at least 1% coverage. Code coverage is measured by running Apex test classes and is tracked on the Apex Classes and Apex Test Execution Setup pages.
View term → - Collapsible SectionAdministrationBeginner
A Collapsible Section in Salesforce is a section on a page layout that can be expanded or collapsed by the user to show or hide the fields within it. Administrators configure collapsible sections in the Page Layout editor, optionally setting them to be collapsed by default. This helps organize record pages by grouping related fields and reducing visual clutter.
View term → - Combination ChartAnalyticsBeginner
A Combination Chart in Salesforce reports and dashboards is a chart type that displays two or more data series using different chart styles on the same visualization. For example, it can show bar columns for revenue alongside a line for the number of deals closed, using a secondary Y-axis. Combination charts help users compare metrics with different scales on a single component.
View term → - CommentCore CRMBeginner
A Comment in Salesforce refers to a text note added to a record, such as a Case Comment on a Case record, a Feed Comment on a Chatter post, or a comment on an Idea or Knowledge article. Comments allow users to add context, updates, or additional information to records and collaborate with teammates or customers around specific issues.
View term → - Comment, ChatterCore CRMIntermediate
A Comment in Chatter is a reply to a Chatter post in the feed. Users can comment on posts to continue a conversation, provide additional information, mention other users with @, attach files, and add links. Comments appear threaded beneath the original post and contribute to the collaborative discussion on records, groups, or user profiles.
View term → - Commerce CloudPlatformAdvanced
Commerce Cloud is Salesforce's e-commerce platform that enables businesses to create seamless shopping experiences across web, mobile, social, and in-store channels. It comes in two flavors: B2C Commerce (formerly Demandware) for consumer-facing storefronts and B2B Commerce for business buyer portals with complex pricing and account hierarchies.
View term → - Commerce Cloud EinsteinAIIntermediate
Commerce Cloud Einstein is the AI layer within Salesforce Commerce Cloud that provides personalized shopping experiences using machine learning. It powers features such as predictive product recommendations, personalized search results and sorting, commerce insights (dashboards showing product performance and shopping behavior), and open-time email content personalization, all based on shopper behavioral data.
View term → - Commerce Cloud StorefrontPlatformAdvanced
A Commerce Cloud Storefront is a customer-facing e-commerce website or digital shopping experience built and hosted on Salesforce Commerce Cloud. Storefronts include the product catalog, search, category navigation, product detail pages, shopping cart, checkout, and account management. B2C storefronts serve individual consumers, while B2B storefronts serve business buyers with features like account-based pricing and bulk ordering.
View term → - Commit AmountSalesBeginner
Commit Amount in Salesforce Collaborative Forecasts is the forecast category and associated amount that represents revenue the sales team is confident will close. It includes Opportunities that the forecast owner has committed to delivering. The Commit Amount rolls up through the forecast hierarchy, giving management a reliable baseline for revenue projections.
View term → - Community ApplicationPlatformAdvanced
A Community Application in Salesforce refers to a Salesforce app that is published and made available within an Experience Cloud site (community). It allows external users to interact with specific Salesforce data and functionality through a branded portal, such as a customer support portal with case management or a partner portal with deal registration.
View term → - Community ExpertPlatformAdvanced
A Community Expert in Salesforce is a recognized member of a Trailblazer Community or Experience Cloud site who demonstrates deep knowledge and actively helps others by answering questions, sharing best practices, and contributing valuable content. In Experience Cloud sites, administrators can designate certain members as experts, giving them a badge and elevated visibility in the community.
View term → - Company InformationAdministrationAdvanced
Company Information is a Setup page that stores the organization's fundamental details, including company name, address, default locale, default currency, and time zone. It also displays critical org information such as the Organization ID, edition type, API usage, data storage usage, and file storage usage.
View term → - CompetitorSalesIntermediate
A Competitor in Salesforce is a related list entry on an Opportunity record that identifies other companies competing for the same deal. Sales reps add competitors to Opportunities along with their strengths and weaknesses, helping the sales team develop competitive strategies. Competitor data can be reported on to analyze win/loss patterns against specific rivals.
View term → - Complaint ManagementServiceBeginner
Complaint Management in Salesforce (particularly in Financial Services Cloud and regulated industries) refers to the set of features and processes for tracking, managing, and resolving customer complaints in a compliant manner. It includes complaint intake, categorization, investigation, resolution tracking, regulatory reporting, and audit trails to meet industry compliance requirements.
View term → - Compliance BCC EmailAdministrationBeginner
Compliance BCC Email is a Setup feature that automatically sends a blind carbon copy of every outbound email from Salesforce to a specified compliance email address. This ensures that all customer communications are archived for regulatory compliance, legal discovery, or internal audit purposes.
View term → - Compliant Data SharingAdministrationBeginner
Compliant Data Sharing is a Setup feature that provides enhanced data sharing controls for organizations in regulated industries. It enables granular, record-level data access rules that comply with regulatory requirements like HIPAA, FINRA, and GDPR, ensuring sensitive data is only accessible to authorized users.
View term → - Component Reference, VisualforceDevelopmentAdvanced
The Component Reference (Visualforce) is the official documentation that lists all available Visualforce components, their attributes, and usage examples. Developers consult this reference to find the correct tags (like <apex:pageBlock>, <apex:inputField>, <apex:dataTable>) and their properties when building Visualforce pages. It is accessible through Salesforce Developer Documentation.
View term → - Composite AppDevelopmentIntermediate
A Composite App in Salesforce refers to an application that combines native Salesforce functionality with external application components, mashups, or services. Composite apps leverage Salesforce data and UI while integrating external web applications, Canvas apps, or APIs to deliver a unified user experience that spans multiple systems within the Salesforce interface.
View term → - Computer-Telephony Integration (CTI)Core CRMBeginner
Computer-Telephony Integration (CTI) in Salesforce is the technology that connects telephone systems to the Salesforce platform, enabling agents to manage phone calls from within the Salesforce interface. CTI provides features such as click-to-dial, screen pops (automatic display of caller information), call logging, call transfer, and conference calling, all integrated into the Service Console or Sales Console using Open CTI or partner CTI adapters.
View term → - Connected AppDevelopmentAdvanced
A Connected App is a framework that allows an external application to integrate with Salesforce using APIs, standard protocols like OAuth 2.0 and SAML, and other authentication mechanisms. Connected Apps define which API permissions are granted, enforce security policies, and control how external systems access Salesforce data.
View term → - Connected Apps OAuth UsageAdministrationBeginner
Connected Apps OAuth Usage is a Setup page that displays usage statistics and details for Connected Apps using OAuth authentication in the org. It shows which connected apps are actively being used, the number of users, token counts, and last access dates, helping administrators monitor third-party application access.
View term → - Connected UserAdministrationIntermediate
A Connected User in Salesforce refers to a user whose Salesforce account is linked to an external system or identity provider through a Connected App, OAuth token, or SSO configuration. Connected users have an active authentication session that allows an external application to access Salesforce on their behalf. Administrators can view and manage connected user sessions and revoke access as needed.
View term → - Connection (for Salesforce to Salesforce)PlatformBeginner
Connection (for Salesforce to Salesforce) is a feature that enables two separate Salesforce organizations to share records with each other. Administrators establish a connection between orgs by sending and accepting connection invitations, then configure which objects and fields to publish (share) and subscribe to (receive). This allows partner companies or divisions with separate Salesforce orgs to collaborate on shared Leads, Opportunities, or Cases.
View term → - Console LayoutAdministrationBeginner
A Console Layout in Salesforce defines the arrangement and configuration of components displayed in the footer panel of a Salesforce Console (Service Console or Sales Console in Classic). It determines which interactive components (such as chat, softphone, history, or Knowledge sidebar) are available as mini-views in the console footer, giving agents quick access to tools without leaving their current record.
View term → - Console SettingsAdministrationBeginner
Console Settings is a Setup page where administrators configure behavior and appearance options for the Salesforce Console (both Service Console and Sales Console). Settings include keyboard shortcuts, tab limits, navigation behavior, and whether to show pinned lists or the footer component.
View term → - Console TabCore CRMBeginner
A Console Tab in Salesforce is a tab within the Service Console or Sales Console that represents an open record or workspace. Console tabs allow agents to work on multiple records simultaneously without navigating away. There are two types: Primary Tabs (main records like Cases or Accounts) and Subtabs (related records opened from a primary tab, displayed as nested tabs beneath it).
View term → - Consult CallServiceAdvanced
A Consult Call in Salesforce Service Cloud Voice is a feature that allows an agent to place a secondary call to another agent, supervisor, or external number to consult about an active customer call. During a consult call, the customer is placed on hold while the agent discusses the issue. The agent can then return to the customer, merge both calls into a conference, or transfer the customer.
View term → - ContactCore CRMBeginner
A Contact in Salesforce represents an individual person associated with an Account. Contacts store personal details like name, title, phone, and email, and serve as the primary record for tracking communications and relationships with people at your customer or prospect organizations.
View term → - Contact RoleCore CRMBeginner
A Contact Role in Salesforce defines the part that a Contact plays in relation to a specific record, such as an Account, Opportunity, Case, or Contract. Contact Roles on Opportunities identify stakeholders like 'Decision Maker,' 'Evaluator,' or 'Economic Buyer.' Contact Roles on Accounts identify relationship types like 'Primary Contact' or 'Technical Contact.' They help teams understand who to engage in business processes.
View term → - Contact Roles on OpportunitiesSalesBeginner
Contact Roles on Opportunities is a Setup page where administrators enable and configure the ability to associate Contacts with Opportunity records and assign them specific roles such as Decision Maker, Evaluator, or Economic Buyer. This feature helps sales teams track the key stakeholders involved in each deal.
View term → - Content DeliveryPlatformBeginner
Content Delivery in Salesforce is a feature that allows users to share Salesforce CRM Content documents with external recipients by generating a trackable URL. The recipient can view or download the content via the link without needing a Salesforce login. Content deliveries track views, downloads, and last viewed date, providing visibility into how shared content is consumed.
View term → - Content DocumentCore CRMIntermediate
A Content Document in Salesforce (ContentDocument in the API) is the standard parent object in the Salesforce Files framework that represents a single file as users see it - the persistent identifier for "this file" across all its uploaded versions. Each Content Document record holds metadata like Title, FileType (PDF, JPG, Office documents, etc.), FileExtension, ContentSize, ContentModifiedDate, OwnerId, the LatestPublishedVersionId pointing to the current Content Version, and SharingPrivacy controls. Content Document is the user-facing record of what most people simply call a "File" in Salesforce - its child Content Version records hold the actual binary content (one row per uploaded version), and its child Content Document Link records connect the file to the records it has been attached to. Content Document is the modern replacement for the legacy Attachment object, supporting multi-record sharing, version history, in-browser previews, library organization, and external sync through Salesforce Files Connect.
View term → - Content PackPlatformAdvanced
A Content Pack in Salesforce CRM Content is a collection of related documents bundled together for easy sharing. Content Packs allow users to assemble multiple files, documents, and presentations into a single package that can be delivered to prospects or clients via a content delivery link, providing a curated set of materials for a specific purpose like a sales pitch or onboarding kit.
View term → - Content VersionCore CRMIntermediate
A Content Version in Salesforce (ContentVersion in the API) is the standard child object in the Salesforce Files framework that holds the actual binary content for one specific version of a Content Document. Each Content Version record contains the file's binary data in the VersionData field (stored base64-encoded over the API), along with metadata like Title, FileType, FileExtension, ContentSize, VersionNumber, IsLatest flag, ReasonForChange (free-text explanation of what changed in this version), and a parent ContentDocumentId. When a file is first uploaded, Salesforce creates one Content Version record (the initial version, with VersionNumber = 1 and IsLatest = true) plus its parent Content Document. Subsequent file replacements insert new Content Version records under the same Content Document, each incrementing VersionNumber and flipping IsLatest on the prior version. Apex and API code that uploads files always inserts Content Version (not Content Document) - the platform automatically creates the parent Content Document and the initial Content Document Link to the inserting user.
View term → - ContractSalesIntermediate
A Contract in Salesforce is a standard object that represents a written agreement between a company and a customer. Contracts are linked to Accounts and track terms such as start date, end date, status (Draft, In Approval Process, Activated), payment terms, and special conditions. They provide a record of the formal business relationship and can trigger renewal workflows as expiration dates approach.
View term → - Contract Line ItemCore CRMIntermediate
A Contract Line Item in Salesforce represents an individual product or service included in a Contract. Similar to Opportunity Line Items (which reference Products and Price Books), Contract Line Items detail the specific items covered by a contract, including quantity, unit price, and terms. They are commonly used in Service Cloud for entitlement management and in Revenue Cloud for subscription tracking.
View term → - Contract, CheckoutPlatformAdvanced
A Contract (Checkout) in Salesforce Commerce refers to a contract or subscription agreement created as part of the checkout process in Salesforce Commerce Cloud. It captures the recurring billing terms, subscription period, and product details agreed upon during the purchase, linking the commercial transaction to ongoing contract management within Salesforce.
View term → - Controller ExtensionDevelopmentAdvanced
A Controller Extension in Visualforce is an Apex class that extends the functionality of a Standard Controller or Custom Controller. It allows developers to add custom logic, additional queries, and new actions to a Visualforce page while still leveraging the built-in capabilities of the standard controller (like record retrieval and navigation). Extensions are defined in the page's extensions attribute and take the standard controller as a constructor parameter.
View term → - Controlling FieldAdministrationAdvanced
A Controlling Field in Salesforce is a standard or custom field whose value determines the available options in a Dependent Field (picklist). When the controlling field's value changes, the dependent picklist dynamically filters to show only the valid subset of values. Controlling fields can be either checkbox or picklist field types. For example, a 'Country' picklist field can control a 'State' dependent picklist.
View term → - Conversation DesignerAIIntermediate
Conversation Designer in Salesforce is a tool for designing and building conversational AI experiences, particularly for Einstein Bots. It provides a visual interface where administrators and designers map out conversation flows, define intents and dialog paths, configure natural language understanding (NLU) models, and design the end-to-end customer interaction experience across messaging channels.
View term → - Conversation Transcript ExportAdministrationBeginner
Conversation Transcript Export is a Setup feature that allows administrators to export chat and messaging conversation transcripts from Salesforce. This is used for compliance, quality assurance, and training purposes, providing a full record of customer-agent interactions.
View term → - ConvertSalesBeginner
Convert in Salesforce refers to the Lead Conversion process, which transforms a qualified Lead record into an Account, Contact, and optionally an Opportunity. During conversion, the Lead's field data is mapped to the corresponding fields on the new records. The original Lead record is marked as Converted and is no longer editable. Lead conversion is a key step in the sales process that moves prospects from the marketing pipeline to the sales pipeline.
View term → - CookieDevelopmentIntermediate
A Cookie in Salesforce refers to a small piece of data stored in the user's web browser by Salesforce or by Salesforce-hosted sites (such as Experience Cloud sites or Salesforce Sites). Cookies are used for session management, user authentication, remembering user preferences, and tracking analytics. Salesforce uses both first-party and third-party cookies for functionality and performance monitoring.
View term → - CORSDevelopmentAdvanced
CORS (Cross-Origin Resource Sharing) is a Setup page where administrators add trusted origin URLs that are allowed to make JavaScript requests to Salesforce APIs from web pages hosted on external domains. Without a CORS allowlist entry, browsers block cross-origin requests to Salesforce for security reasons.
View term → - CouponSalesIntermediate
A Coupon in Salesforce (Coupon in the API) is a standard object used in Loyalty Management and Salesforce Commerce that represents a single redeemable discount code issued to a buyer or loyalty member. Each Coupon record holds a unique CouponCode, a reference to its parent Promotion (which defines the discount mechanics - percentage off, fixed amount, free shipping, BOGO), an issued-to identifier (typically a Loyalty Member or Account), an EffectiveFromDate and EffectiveToDate that bound the validity window, a Status (Issued, Redeemed, Expired, Cancelled), and a UsageCount tracking redemption against the parent Promotion's max-use rules. Coupons differ from Promotions: a Promotion defines the rule (every customer who applies code SAVE10 gets 10% off), while a Coupon represents a single instance of that rule (member 12345 was issued code SAVE10-XYZ123 valid through April 30). This per-instance modeling enables precise tracking of who received which coupon, when it was used, and what its lifetime contribution to revenue and engagement was.
View term → - CoverageServiceBeginner
Coverage in Salesforce (particularly in Service Cloud) refers to the entitlement or service level coverage that a customer has for support. It determines whether a customer is eligible for service based on their entitlements, service contracts, and warranty terms. When a Case is created, Salesforce can check the customer's coverage to ensure they are entitled to support and to apply the correct service level milestones.
View term → - Credit MemoSalesAdvanced
A Credit Memo in Salesforce (particularly in Salesforce Billing and Revenue Cloud) is a document that records a credit issued to a customer, reducing the amount they owe. Credit Memos are generated when invoiced charges are reversed, such as for refunds, billing errors, or contract modifications. They reference the original invoice and adjust the customer's account balance.
View term → - CRM AnalyticsAnalyticsAdvanced
CRM Analytics (formerly Tableau CRM and Einstein Analytics) is Salesforce's native analytics platform that provides AI-powered dashboards, predictions, and data exploration directly within the Salesforce UI. It uses SAQL for querying datasets and offers features like Einstein Discovery for automated insight generation and predictive modeling.
View term → - CSV (Comma Separated Values)DevelopmentAdvanced
CSV (Comma Separated Values) in Salesforce refers to the plain text file format used for importing and exporting data. CSV files use commas to separate field values and newlines to separate records. Salesforce tools like Data Loader, Data Import Wizard, Bulk API, and report exports all use CSV format. Data must conform to the correct field mappings and character encoding (typically UTF-8) for successful processing.
View term → - CTI AdapterServiceBeginner
A CTI Adapter in Salesforce is a software component that serves as the bridge between a third-party telephony system and Salesforce's CTI framework. The adapter translates telephony events (like incoming calls, call transfers, and hang-ups) into Salesforce actions (like screen pops and call logging). CTI adapters are typically provided by telephony vendors and integrate with Salesforce using the Open CTI API.
View term → - CTI ConnectorServiceBeginner
A CTI Connector in Salesforce is a software integration that connects a specific phone system or telephony provider to the Salesforce platform. It enables features like click-to-dial, inbound screen pops, call recording, and call logging. Connectors are typically built by telephony partners using Open CTI and are installed as managed packages or configured through Setup.
View term → - CTI SystemServiceIntermediate
A CTI System (Computer-Telephony Integration System) in Salesforce refers to the complete telephony infrastructure that integrates with Salesforce, including the PBX (Private Branch Exchange) or cloud phone system, the CTI adapter or connector, and the Salesforce Call Center configuration. Together, these components enable agents to manage phone calls directly within the Salesforce interface.
View term → - Custom AppAdministrationIntermediate
A Custom App in Salesforce is an app created by an administrator that bundles a set of tabs (for standard objects, custom objects, Visualforce pages, Lightning components, and other items) under a single label with a custom logo. Custom Apps are defined in the App Manager and appear in the App Launcher. In Classic, Custom Apps can be Classic apps (with a tab bar) or Console apps (with a multi-tab workspace).
View term → - Custom Console ComponentCore CRMAdvanced
A Custom Console Component in Salesforce is a custom Visualforce page, Lightning component, or Canvas app that administrators add to the sidebar, footer, or highlights panel of a Service Console or Sales Console. These components extend the console with custom functionality such as displaying external data, providing agent tools, or integrating third-party applications within the agent's workspace.
View term → - Custom ControllerDevelopmentAdvanced
A Custom Controller in Visualforce is an Apex class written entirely from scratch that provides all the data and logic for a Visualforce page, without relying on a Standard Controller. Custom Controllers give developers complete control over page behavior, including custom queries, complex business logic, and custom navigation. The custom controller class is specified in the Visualforce page's controller attribute.
View term → - Custom FieldAdministrationIntermediate
A Custom Field is a field created by an administrator on any standard or custom object to capture data specific to the organization's needs. Salesforce supports many custom field types including text, number, date, picklist, formula, lookup, and more. Custom field API names end with "__c".
View term → - Custom HelpAdministrationIntermediate
Custom Help in Salesforce refers to administrator-defined help text that can be added to custom fields, custom objects, and Visualforce pages to provide context-specific guidance to users. For custom fields, it appears as a tooltip next to the field label. Administrators can also override the default help pages for objects with custom content that is specific to their organization's processes.
View term → - Custom LabelsAdministrationBeginner
Custom Labels in Salesforce are custom text values that can be accessed from Apex code, Visualforce pages, Lightning components, and other platform features. They support translation into multiple languages, making them essential for building multilingual applications. Administrators create Custom Labels in Setup with a name, value, and optional translations, and developers reference them in code using System.Label.labelName.
View term → - Custom LinksAdministrationIntermediate
Custom Links (also called Custom Buttons and Links) in Salesforce are administrator-defined URL links or JavaScript actions that appear on record detail pages, list views, or related lists. Custom Links can navigate to external websites, execute JavaScript (Classic only), open Visualforce pages, or construct URL-based integrations with external systems. They extend the actions available to users on Salesforce records.
View term → - Custom Metadata TypeDevelopmentAdvanced
A Custom Metadata Type in Salesforce is a framework for creating custom, deployable, and packageable application metadata. Unlike Custom Settings (which store data), Custom Metadata Type records are treated as metadata and can be deployed between environments using Change Sets, packages, and the Metadata API. They are ideal for storing application configuration, mapping tables, and business rules that need to move with the application.
View term → - Custom NotificationAutomationIntermediate
A Custom Notification in Salesforce is an admin-defined notification message that can be sent to specific users through the Salesforce mobile app push channel, the desktop bell icon, or both - triggered programmatically from Flow, Process Builder, Apex, or the REST API. Custom Notifications are configured through the Custom Notification Type standard object (CustomNotificationType in the API), which holds the MasterLabel, CustomNotifTypeName, Description, and channel toggles (Desktop, Mobile). Once a Custom Notification Type is defined, automations reference it by Id when sending notifications, providing a Title, Body, optional Sender Id and TargetId (the record the notification is about), and a list of recipient User Ids. Custom Notifications complement standard Salesforce notifications (case assignments, approval requests, Chatter mentions) by letting admins build domain-specific alerts - "High-value Opportunity at risk", "VIP customer just submitted a Case", "SLA breach imminent" - without writing custom mobile push integration code.
View term → - Custom NotificationsAdministrationIntermediate
Custom Notifications is a Setup page where administrators create notification types that can be sent to users through Flows, Apex, or REST API. Custom notifications appear in the Salesforce notification bell, as desktop push notifications, and in the Salesforce mobile app, providing a flexible way to alert users about important events.
View term → - Custom ObjectCore CRMIntermediate
A Custom Object is a user-defined database table created by administrators or developers to store information specific to their organization that is not covered by Salesforce's Standard Objects. Custom Objects can have custom fields, relationships, page layouts, and security settings just like standard objects, and their API names always end with "__c".
View term → - Custom PermissionsAdministrationIntermediate
Custom Permissions is a Setup page where administrators create named permissions that can be assigned to users via Permission Sets or Profiles. Custom Permissions act as feature flags that developers and administrators can check in Apex code, validation rules, and Flows to control access to custom functionality without modifying profiles.
View term → - Custom Report TypeAnalyticsBeginner
A Custom Report Type in Salesforce is an administrator-defined report template that specifies which objects and their relationships are available for reporting. It defines the primary object, related objects (up to four levels), and the fields from each object that report builders can use. Custom Report Types enable reporting on object combinations that are not covered by standard report types.
View term → - Custom SettingsAdministrationIntermediate
Custom Settings in Salesforce are a special type of custom object that allows administrators and developers to store reusable configuration data at the organization, profile, or user level. There are two types: List Custom Settings (store a dataset accessible across the org) and Hierarchy Custom Settings (store settings that can be overridden at the profile or user level). Custom Settings data is cached in the application cache, enabling fast access without SOQL queries.
View term → - Custom ViewAdministrationBeginner
A Custom View (more commonly called a List View) in Salesforce is a filtered, sorted display of records for a particular object. Users create custom views by defining filter criteria, selecting which columns to display, and choosing the visibility (private, shared with groups, or visible to all users). Custom views appear as selectable options in the list view dropdown on object tabs and record home pages.
View term → - Customer 360PlatformBeginner
Customer 360 is Salesforce's product-portfolio and integration vision: one unified customer profile spanning every Salesforce cloud (Sales, Service, Marketing, Commerce, Data Cloud, Agentforce) so every department sees the same data about each customer. The concept is delivered through shared data models (the Customer 360 Data Model), identity resolution in Data Cloud, and cross-cloud integration via Marketing Cloud Connect, Salesforce Connect, and the Einstein 1 Platform. "Customer 360" is both the marketing term Salesforce uses to describe its suite and the technical capability that unifies customer data across the products.
View term → - Customer Relationship Management (CRM)AnalyticsAdvanced
Customer Relationship Management (CRM) is a strategy and technology category for managing all of an organization's relationships and interactions with current and potential customers. In Salesforce's context, CRM refers to the core platform and its functionality for tracking accounts, contacts, opportunities, cases, and activities. Salesforce is the world's leading CRM platform, providing cloud-based tools for sales, service, marketing, and more.
View term → - Customer Satisfaction ScoreServiceBeginner
Customer Satisfaction Score (CSAT) in Salesforce Service Cloud is a metric derived from post-interaction surveys that measures how satisfied customers are with the support they received. CSAT surveys can be sent automatically after case closure, and the results are tracked on Case records and displayed in Service Analytics dashboards. The score typically represents the percentage of customers who rated their experience as positive.
View term → - Customers, ChatterCore CRMIntermediate
Customers (Chatter) in Salesforce refers to external users who are invited to participate in specific Chatter groups without having a full Salesforce license. Chatter Customer users can post, comment, and share files within the groups they are invited to, but they cannot see any Salesforce data or records outside their designated groups. This feature allows controlled collaboration with external stakeholders.
View term →