Newer Version Available
Glossary
A |B |C |D |E |F |G |H |I |J |K |L |M |N |O |P |Q |R |S |T |U |V |W |X |Y |Z
A
- AJAX Toolkit
- A JavaScript wrapper around the API that allows you to execute any API call and access any object you have permission to view from within JavaScript code. For more information, see the AJAX Toolkit Developer's Guide.
- Anonymous Block, Apex
- Apex code that does not get stored in Salesforce, but that can be compiled and executed by using the ExecuteAnonymousResult() API call, or the equivalent in the AJAX Toolkit.
- Anti-Join
- An anti-join is a subquery on another object in a NOT IN clause in a SOQL query. You can use anti-joins to create advanced queries. See also Semi-Join.
- Apex
- Apex is a strongly typed, object-oriented programming language that allows developers to execute flow and transaction control statements on the Lightning platform server in conjunction with calls to the Lightning Platform API. Using syntax that looks like Java and acts like database stored procedures, Apex enables developers to add business logic to most system events, including button clicks, related record updates, and Visualforce pages. Apex code can be initiated by Web service requests and from triggers on objects.
- Apex-Managed Sharing
- Enables developers to programmatically manipulate sharing to support their application’s behavior. Apex-managed sharing is only available for custom objects.
- App
- Short for “application.” A collection of components such as tabs, reports, dashboards, and Visualforce pages that address a specific business need. Salesforce provides standard apps such as Sales and Service. You can customize the standard apps to match the way you work. In addition, you can package an app and upload it to the AppExchange along with related components such as custom fields, custom tabs, and custom objects. Then, you can make the app available to other Salesforce users from the AppExchange.
- AppExchange
- The AppExchange is a sharing interface from Salesforce that allows you to browse and share apps and services for the Lightning Platform.
- AppExchange Upgrades
- Upgrading an app is the process of installing a newer version.
- Application Programming Interface (API)
- The interface that a computer system, library, or application provides to allow other computer programs to request services from it and exchange data.
B
- Boolean Operators
- You can use Boolean operators in report filters to specify the logical relationship between two values. For example, the AND operator between two values yields search results that include both values. Likewise, the OR operator between two values yields search results that include either value.
- Bulk API 2.0
- The REST-based Bulk API 2.0 is optimized for processing large sets of data. It allows you to query, insert, update, upsert, or delete a large number of records asynchronously by submitting a job that is processed in the background by Salesforce. See also SOAP API.
C
- Callout, Apex
- An Apex callout enables you to tightly integrate your Apex with an external service by making a call to an external Web service or sending a HTTP request from Apex code and then receiving the response.
- Child Relationship
- A relationship that has been defined on an sObject that references another sObject as the “one” side of a one-to-many relationship. For example, contacts, opportunities, and tasks have child relationships with accounts.
- See also sObject.
- Class, Apex
- A template or blueprint from which Apex objects are created. Classes consist of other classes, user-defined methods, variables, exception types, and static initialization code. In most cases, Apex classes are modeled on their counterparts in Java.
- Client App
- An app that runs outside the Salesforce user interface and uses only the Lightning Platform API or Bulk API 2.0. It typically runs on a desktop or mobile device. These apps treat the platform as a data source, using the development model of whatever tool and platform for which they are designed.
- Component, Visualforce
- Something that can be added to a Visualforce page with a set of tags, for example, <apex:detail>. Visualforce includes a number of standard components, or you can create your own custom components.
- Component Reference, Visualforce
- A description of the standard and custom Visualforce components that are available in your organization. You can access the component library from the development footer of any Visualforce page or the Visualforce Developer's Guide.
- Controller, Visualforce
- An Apex class that provides a Visualforce page with the data and business logic it needs to run. Visualforce pages can use the standard controllers that come by default with every standard or custom object, or they can use custom controllers.
- Controlling Field
- Any standard or custom picklist or checkbox field whose values control the available values in one or more corresponding dependent fields.
- Custom App
- See App.
- Custom Field
- A field that can be added in addition to the standard fields to customize Salesforce for your organization’s needs.
- Custom Help
- Custom text administrators create to provide users with on-screen information specific to a standard field, custom field, or custom object.
- Custom Links
- Custom links are URLs defined by administrators to integrate your Salesforce data with external websites and back-office systems. Formerly known as Web links.
- Custom Object
- Custom records that allow you to store information unique to your organization.
- Custom S-Control
- Custom Web content for use in custom links. Custom s-controls can contain any type of content that you can display in a browser, for example a Java applet, an Active-X control, an Excel file, or a custom HTML Web form.
D
- Database
- An organized collection of information. The underlying architecture of the Lightning Platform includes a database where your data is stored.
- Database Table
- A list of information, presented with rows and columns, about the person, thing, or concept you want to track. See also Object.
- Data Loader
- A Lightning Platform tool used to import and export data from your Salesforce organization.
- Data Manipulation Language (DML)
- An Apex method or operation that inserts, updates, or deletes records.
- Date Literal
- A keyword in a SOQL or SOSL query that represents a relative range of time such as last month or next year.
- Decimal Places
- Parameter for number, currency, and percent custom fields that indicates the total number of digits you can enter to the right of a decimal point, for example, 4.98 for an entry of 2. Note that the system rounds the decimal numbers you enter, if necessary. For example, if you enter 4.986 in a field with Decimal Places of 2, the number rounds to 4.99. Salesforce uses the round half-up rounding algorithm. Half-way values are always rounded up. For example, 1.45 is rounded to 1.5. –1.45 is rounded to –1.5.
- Delegated Authentication
- A security process where an external authority is used to authenticate Lightning Platform users.
- Dependent Field
- Any custom picklist or multi-select picklist field that displays available values based on the value selected in its corresponding controlling field.
- Developer Edition
- A free, fully-functional Salesforce organization designed for developers to extend, integrate, and develop with the Lightning Platform. Developer Edition accounts are available on developer.salesforce.com.
- Salesforce Developers
- The Salesforce Developers website at developer.salesforce.com provides a full range of resources for platform developers, including sample code, toolkits, an online developer community, and the ability to obtain limited Lightning Platform environments.
- Document Library
- A place to store documents without attaching them to accounts, contacts, opportunities, or other records.
E
- Email Alert
- Email alerts are actions that send emails, using a specified email template, to specified recipients.
- Email Template
- A form email that communicates a standard message, such as a welcome letter to new employees or an acknowledgment that a customer service request has been received. Email templates can be personalized with merge fields, and can be written in text, HTML, or custom format.
- Enterprise Edition
- A Salesforce edition designed for larger, more complex businesses.
- Enterprise WSDL
- A strongly-typed WSDL for customers who want to build an integration with their Salesforce organization only, or for partners who are using tools like Tibco or webMethods to build integrations that require strong typecasting. The downside of the Enterprise WSDL is that it only works with the schema of a single Salesforce organization because it is bound to all of the unique objects and fields that exist in that organization's data model.
- Entity Relationship Diagram (ERD)
- A data modeling tool that helps you organize your data into entities (or objects, as they are called in the Lightning Platform) and define the relationships between them. ERD diagrams for key Salesforce objects are published in the SOAP API Developer’s Guide.
F
- Field
- A part of an object that holds a specific piece of information, such as a text or currency value.
- Field-Level Security
- Settings that determine whether fields are hidden, visible, read only, or editable for users. Available in Professional, Enterprise, Unlimited, Performance, and Developer Editions.
- Filter Condition/Criteria
- Condition on particular fields that qualifies items to be included in a list view or report, such as “State equals California.”
- Foreign Key
- A field whose value is the same as the primary key of another table. You can think of a foreign key as a copy of a primary key from another table. A relationship is made between two tables by matching the values of the foreign key in one table with the values of the primary key in another.
- Formula Field
- A type of custom field. Formula fields automatically calculate their values based on the values of merge fields, expressions, or other values.
- Function
- Built-in formulas that you can customize with input parameters. For example, the DATE function creates a date field type from a given year, month, and day.
G
- Gregorian Year
- A calendar based on a 12-month structure used throughout much of the world.
- Group Edition
- A product designed for small businesses and workgroups with a limited number of users.
H
- HTTP Debugger
- An application that can be used to identify and inspect SOAP requests that are sent from the AJAX Toolkit. They behave as proxy servers running on your local machine and allow you to inspect and author individual requests.
I
- ID
- See Salesforce Record ID.
- Inline S-Control
- An s-control that displays within a record detail page or dashboard, rather than on its own page.
- Instance
- The cluster of software and hardware represented as a single logical server that hosts an organization's data and runs their applications. The Lightning Platform runs on multiple instances, but data for any single organization is always stored on a single instance.
- Integration User
- A Salesforce user defined solely for client apps or integrations. Also referred to as the logged-in user in a SOAP API context.
- ISO Code
- The International Organization for Standardization country code, which represents each country by two letters.
J
- Junction Object
- A custom object with two master-detail relationships. Using a custom junction object, you can model a “many-to-many” relationship between two objects. For example, you create a custom object called “Bug” that relates to the standard case object such that a bug could be related to multiple cases and a case could also be related to multiple bugs.
L
- License Management Application (LMA)
- A free AppExchange app that allows you to track sales leads and accounts for every user who downloads your managed package (app) from the AppExchange.
- License Management Organization (LMO)
- The Salesforce organization that you use to track all the Salesforce users who install your package. A license management organization must have the License Management Application (LMA) installed. It automatically receives notification every time your package is installed or uninstalled so that you can easily notify users of upgrades. You can specify any Enterprise, Unlimited, Performance, or Developer Edition organization as your license management organization. For more information, go to Managing Licenses for Managed Packages.
- Lightning Platform
- The Salesforce platform for building applications in the cloud. Lightning Platform combines a powerful user interface, operating system, and database to allow you to customize and deploy applications in the cloud for your entire enterprise.
- List View
- A list display of items (for example, accounts or contacts) based on specific criteria. Salesforce provides some predefined views.
- In the Agent console, the list view is the top frame that displays a list view of records based on specific criteria. The list views you can select to display in the console are the same list views defined on the tabs of other objects. You cannot create a list view within the console.
- Locale
- The country or geographic region in which the user is located. The setting affects the format of date and number fields, for example, dates in the English (United States) locale display as 06/30/2000 and as 30/06/2000 in the English (United Kingdom) locale.
- In Professional, Enterprise, Unlimited, Performance, and Developer Edition organizations, a user’s individual Locale setting overrides the organization’s Default Locale setting. In Personal and Group Editions, the organization-level locale field is called Locale, not Default Locale.
- Logged-in User
- In a SOAP API context, the username used to log into Salesforce. Client applications run with the permissions and sharing of the logged-in user. Also referred to as an integration user.
M
- Managed Package
- A collection of application components that is posted as a unit on the AppExchange and associated with a namespace and possibly a License Management Organization. To support upgrades, a package must be managed. An organization can create a single managed package that can be downloaded and installed by many different organizations. Managed packages differ from unmanaged packages by having some locked components, allowing the managed package to be upgraded later. Unmanaged packages do not include locked components and cannot be upgraded. In addition, managed packages obfuscate certain components (like Apex) on subscribing organizations to protect the intellectual property of the developer.
- Manual Sharing
- Record-level access rules that allow record owners to give read and edit permissions to other users who might not have access to the record any other way.
- Many-to-Many Relationship
- A relationship where each side of the relationship can have many children on the other side. Many-to-many relationships are implemented through the use of junction objects.
- Master-Detail Relationship
- A relationship between two different types of records that associates the records with each other. For example, accounts have a master-detail relationship with opportunities. This type of relationship affects record deletion, security, and makes the lookup relationship field required on the page layout.
- Master Picklist
- A complete list of picklist values available for a record type or business process.
- Metadata
- Information about the structure, appearance, and functionality of an organization and any of its parts. Lightning Platform uses XML to describe metadata.
- Metadata WSDL
- A WSDL for users who want to use the Lightning Platform Metadata API calls.
- Multitenancy
- An application model where all users and apps share a single, common infrastructure and code base.
N
- Namespace
- In a packaging context, a one- to 15-character alphanumeric identifier that distinguishes your package and its contents from packages of other developers on AppExchange, similar to a domain name. Salesforce automatically prepends your namespace prefix, followed by two underscores (“__”), to all unique component names in your Salesforce organization.
- Native App
- An app that is built exclusively with setup (metadata) configuration on Lightning Platform. Native apps do not require any external services or infrastructure.
O
- Object
- An object allows you to store information in your Salesforce organization. The object is the overall definition of the type of information you are storing. For example, the case object allow you to store information regarding customer inquiries. For each object, your organization will have multiple records that store the information about specific instances of that type of data. For example, you might have a case record to store the information about Joe Smith's training inquiry and another case record to store the information about Mary Johnson's configuration issue.
- Object-Level Help
- Custom help text that you can provide for any custom object. It displays on custom object record home (overview), detail, and edit pages, as well as list views and related lists.
- Object-Level Security
- Settings that allow an administrator to hide whole objects from users so that they don't know that type of data exists. Object-level security is specified with object permissions.
- onClick JavaScript
- JavaScript code that executes when a button or link is clicked.
- One-to-Many Relationship
- A relationship in which a single object is related to many other objects. For example, an account may have one or more related contacts.
- Organization-Wide Defaults
- Settings that allow you to specify the baseline level of data access that a user has in your organization. For example, you can set organization-wide defaults so that any user can see any record of a particular object that is enabled via their object permissions, but they need extra permissions to edit one.
- Outbound Call
- Any call that originates from a user to a number outside of a call center in Salesforce CRM Call Center.
- Outbound Message
- An outbound message sends information to a designated endpoint, like an external service. Outbound messages are configured from Setup. You must configure the external endpoint and create a listener for the messages using the SOAP API.
- Overlay
- An overlay displays additional information when you hover your mouse over certain user interface elements. Depending on the overlay, it will close when you move your mouse away, click outside of the overlay, or click a close button.
- Owner
- Individual user to which a record (for example, a contact or case) is assigned.
P
- PaaS
- See Platform as a Service.
- Package
- A group of Lightning Platform components and applications that are made available to other organizations through the AppExchange. You use packages to bundle an app along with any related components so that you can upload them to AppExchange together.
- Package Dependency
- This is created when one component references another
component, permission, or preference that is required for the component to be
valid. Components can include but are not limited to:
- Standard or custom fields
- Standard or custom objects
- Visualforce pages
- Apex code
- Divisions
- Multicurrency
- Record types
- Package Installation
- Installation incorporates the contents of a package into your Salesforce organization. A package on the AppExchange can include an app, a component, or a combination of the two. After you install a package, you may need to deploy components in the package to make it generally available to the users in your organization.
- Package Publication
- Publishing your package makes it publicly available on the AppExchange.
- Package Version
- A package version is a number that identifies the set of components uploaded in a package. The version number has the format majorNumber.minorNumber.patchNumber (for example, 2.1.3). The major and minor numbers increase to a chosen value during every major release. The patchNumber is generated and updated only for a patch release.
- Unmanaged packages are not upgradeable, so each package version is simply a set of components for distribution. A package version has more significance for managed packages. Packages can exhibit different behavior for different versions. Publishers can use package versions to evolve the components in their managed packages gracefully by releasing subsequent package versions without breaking existing customer integrations using the package. See also Patch and Patch Development Organization.
- Parent Account
- An organization or company that an account is affiliated. By specifying a parent for an account, you can get a global view of all parent/subsidiary relationships using the View Hierarchy link.
- Partner WSDL
- A loosely-typed WSDL for customers, partners, and ISVs who want to build an integration or an AppExchange app that can work across multiple Salesforce organizations. With this WSDL, the developer is responsible for marshaling data in the correct object representation, which typically involves editing the XML. However, the developer is also freed from being dependent on any particular data model or Salesforce organization. Contrast this with the Enterprise WSDL, which is strongly typed.
- Patch
- A patch enables a developer to change the functionality of existing components in a managed package, while ensuring subscribing organizations that there are no visible behavior changes to the package. For example, you can add new variables or change the body of an Apex class, but you may not add, deprecate, or remove any of its methods. Patches are tracked by a patchNumber appended to every package version. See also Patch Development Organization and Package Version.
- Patch Development Organization
- The organization where patch versions are developed, maintained, and uploaded. Patch development organizations are created automatically for a developer organization when they request to create a patch. See also Patch and Package Version.
- Personal Edition
- Product designed for individual sales representatives and single users.
- Personal Information
- User information including personal contact information, quotas, personal group information, and default opportunity team.
- Picklist
- Selection list of options available for specific fields in a Salesforce object, for example, the Industry field for accounts. Users can choose a single value from a list of options rather than make an entry directly in the field. See also Master Picklist.
- Picklist (Multi-Select)
- Selection list of options available for specific fields in a Salesforce object. Multi-select picklists allow users to choose one or more values. Users can choose a value by double clicking on it, or choose additional values from a scrolling list by holding down the CTRL key while clicking a value and using the arrow icon to move them to the selected box.
- Picklist Values
- Selections displayed in drop-down lists for particular fields. Some values come predefined, and other values can be changed or defined by an administrator.
- Platform as a Service (PaaS)
- An environment where developers use programming tools offered by a service provider to create applications and deploy them in a cloud. The application is hosted as a service and provided to customers via the Internet. The PaaS vendor provides an API for creating and extending specialized applications. The PaaS vendor also takes responsibility for the daily maintenance, operation, and support of the deployed application and each customer's data. The service alleviates the need for programmers to install, configure, and maintain the applications on their own hardware, software, and related IT resources. Services can be delivered using the PaaS environment to any market segment.
- Platform Edition
- A Salesforce edition based on Enterprise, Unlimited, or Performance Edition that does not include any of the standard Salesforce apps, such as Sales or Service & Support.
- Primary Key
- A relational database concept. Each table in a relational database has a field in which the data value uniquely identifies the record. This field is called the primary key. The relationship is made between two tables by matching the values of the foreign key in one table with the values of the primary key in another.
- Production Organization
- A Salesforce organization that has live users accessing data.
- Professional Edition
- A Salesforce edition designed for businesses who need full-featured CRM functionality.
Q
- Queue
- A holding area for items before they are processed. Salesforce uses queues in a number of different features and technologies.
- Query Locator
- A parameter returned from the query() or queryMore() API call that specifies the index of the last result record that was returned.
- Query String Parameter
- A name-value pair that's included in a URL, typically after a '?' character. For
example:
1https://yourInstance.salesforce.com/001/e?name=value
R
- Record
- A single instance of a Salesforce object. For example, “John Jones” might be the name of a contact record.
- Record Name
- A standard field on all Salesforce objects. Whenever a record name is displayed in a Lightning Platform application, the value is represented as a link to a detail view of the record. A record name can be either free-form text or an autonumber field. Record Name does not have to be a unique value.
- Record Type
- A record type is a field available for certain records that can include some or all of the standard and custom picklist values for that record. You can associate record types with profiles to make only the included picklist values available to users with that profile.
- Record-Level Security
- A method of controlling data in which you can allow a particular user to view and edit an object, but then restrict the records that the user is allowed to see.
- Recycle Bin
- A page that lets you view and restore deleted information. Access the Recycle Bin either by using the link in the sidebar in Salesforce Classic or from the App Launcher in Lightning Experience.
- Related Object
- Objects chosen by an administrator to display in the Agent console's mini view when records of a particular type are shown in the console's detail view. For example, when a case is in the detail view, an administrator can choose to display an associated account, contact, or asset in the mini view.
- Relationship
- A connection between two objects, used to create related lists in page layouts and detail levels in reports. Matching values in a specified field in both objects are used to link related data; for example, if one object stores data about companies and another object stores data about people, a relationship allows you to find out which people work at the company.
- Relationship Query
- In a SOQL context, a query that traverses the relationships between objects to identify and return results. Parent-to-child and child-to-parent syntax differs in SOQL queries.
- Report Type
- A report type defines the set of records and fields available to a report based on the relationships between a primary object and its related objects. Reports display only records that meet the criteria defined in the report type. Salesforce provides a set of pre-defined standard report types; administrators can create custom report types as well.
- Role Hierarchy
- A record-level security setting that defines different levels of users such that users at higher levels can view and edit information owned by or shared with users beneath them in the role hierarchy, regardless of the organization-wide sharing model settings.
- Roll-Up Summary Field
- A field type that automatically provides aggregate values from child records in a master-detail relationship.
- Running User
- Each dashboard has a running user, whose security settings determine which data to display in a dashboard. If the running user is a specific user, all dashboard viewers see data based on the security settings of that user—regardless of their own personal security settings. For dynamic dashboards, you can set the running user to be the logged-in user, so that each user sees the dashboard according to his or her own access level.
S
- SaaS
- See Software as a Service (SaaS).
- S-Control
- Custom Web content for use in custom links. Custom s-controls can contain any type of content that you can display in a browser, for example a Java applet, an Active-X control, an Excel file, or a custom HTML Web form.
- Salesforce Record ID
- A unique 15- or 18-character alphanumeric string that identifies a single record in Salesforce.
- Salesforce SOA (Service-Oriented Architecture)
- A powerful capability of Lightning Platform that allows you to make calls to external Web services from within Apex.
- Sandbox
- A nearly identical copy of a Salesforce production organization for development, testing, and training. The content and size of a sandbox varies depending on the type of sandbox and the edition of the production organization associated with the sandbox.
- Search Layout
- The organization of fields included in search results, in lookup dialogs, and in the key lists on tab home pages.
- Search Phrase
- Search phrases are queries that users enter when searching on www.google.com.
- Semi-Join
- A semi-join is a subquery on another object in an IN clause in a SOQL query. You can use semi-joins to create advanced queries, such as getting all contacts for accounts that have an opportunity with a particular record type. See also Anti-Join.
- Session ID
- An authentication token that is returned when a user successfully logs in to Salesforce. The Session ID prevents a user from having to log in again every time they want to perform another action in Salesforce. Different from a record ID or Salesforce ID, which are terms for the unique ID of a Salesforce record.
- Session Timeout
- The time after login before a user is automatically logged out. Sessions expire automatically after a predetermined length of inactivity, which can be configured in Salesforce from Setup by clicking . The default is 120 minutes (two hours). The inactivity timer is reset to zero if a user takes an action in the web interface or makes an API call.
- Setup
- A menu where administrators can customize and define organization settings and Lightning Platform apps. Depending on your organization’s user interface settings, Setup may be a link in the user interface header or in the dropdown list under your name.
- Sharing
- Allowing other users to view or edit information you own. There are different ways to
share data:
- Sharing Model—defines the default organization-wide access levels that users have to each other’s information and whether to use the hierarchies when determining access to data.
- Role Hierarchy—defines different levels of users such that users at higher levels can view and edit information owned by or shared with users beneath them in the role hierarchy, regardless of the organization-wide sharing model settings.
- Sharing Rules—allow an administrator to specify that all information created by users within a given group or role is automatically shared to the members of another group or role.
- Manual Sharing—allows individual users to share records with other users or groups.
- Apex-Managed Sharing—enables developers to programmatically manipulate sharing to support their application’s behavior. See Apex-Managed Sharing.
- Sharing Model
- Behavior defined by your administrator that determines default access by users to different types of records.
- Sharing Rule
- Type of default sharing created by administrators. Allows users in a specified group or role to have access to all information created by users within a given group or role.
- Sites
- Salesforce Sites enables you to create public websites and applications that are directly integrated with your Salesforce organization—without requiring users to log in with a username and password.
- Snippet
- A type of s-control that is designed to be included in other s-controls. Similar to a helper method that is used by other methods in a piece of code, a snippet allows you to maintain a single copy of HTML or JavaScript that you can reuse in multiple s-controls.
- SOAP (Simple Object Access Protocol)
- A protocol that defines a uniform way of passing XML-encoded data.
- SOAP API
- A SOAP-based Web services application programming interface that provides access to your Salesforce organization's information.
- sObject
- The abstract or parent object for all objects that can be stored in the Lightning Platform.
- Software as a Service (SaaS)
- A delivery model where a software application is hosted as a service and provided to customers via the Internet. The SaaS vendor takes responsibility for the daily maintenance, operation, and support of the application and each customer's data. The service alleviates the need for customers to install, configure, and maintain applications with their own hardware, software, and related IT resources. Services can be delivered using the SaaS model to any market segment.
- SOQL (Salesforce Object Query Language)
- A query language that allows you to construct simple but powerful query strings and to specify the criteria that selects data from the Lightning Platform database.
- SOSL (Salesforce Object Search Language)
- A query language that allows you to perform text-based searches using the Lightning Platform API.
- Standard Object
- A built-in object included with the Lightning Platform. You can also build custom objects to store information that is unique to your app.
- Syndication Feeds
- Give users the ability to subscribe to changes within Salesforce Sites and receive updates in external news readers.
- System Log
- Part of the Developer Console, a separate window console that can be used for debugging code snippets. Enter the code you want to test at the bottom of the window and click Execute. The body of the System Log displays system resource information, such as how long a line took to execute or how many database calls were made. If the code did not run to completion, the console also displays debugging information.
T
- Test Method
- An Apex class method that verifies whether a particular piece of code is working properly. Test methods take no arguments, commit no data to the database, and can be executed by the runTests() system method either through the command line or in an Apex IDE, such as the Salesforce extensions for Visual Studio Code.
- Translation Workbench
- The Translation Workbench lets you specify languages you want to translate, assign translators to languages, create translations for customizations you’ve made to your Salesforce organization, and override labels and translations from managed packages. Everything from custom picklist values to custom fields can be translated so your global users can use Salesforce in their language.
- Trigger
- A piece of Apex that executes before or after records of a particular type are inserted, updated, or deleted from the database. Every trigger runs with a set of context variables that provide access to the records that caused the trigger to fire, and all triggers run in bulk mode—that is, they process several records at once, rather than just one record at a time.
- Trigger Context Variable
- Default variables that provide access to information about the trigger and the records that caused it to fire.
U
- Unit Test
- A unit is the smallest testable part of an application, usually a method. A unit test operates on that piece of code to make sure it works correctly. See also Test Method.
- Unlimited Edition
- Unlimited Edition is Salesforce’s solution for maximizing your success and extending that success across the entire enterprise through the Lightning Platform.
- Unmanaged Package
- A package that cannot be upgraded or controlled by its developer.
- URL (Uniform Resource Locator)
- The global address of a website, document, or other resource on the Internet. For example, https://salesforce.com.
- URL S-Control
- An s-control that contains an external URL that hosts the HTML that should be rendered on a page. When saved this way, the HTML is hosted and run by an external website. URL s-controls are also called web controls.
V
- Validation Rule
- A rule that prevents a record from being saved if it does not meet the standards that are specified.
- Visualforce
- A simple, tag-based markup language that allows developers to easily define custom pages and components for apps built on the platform. Each tag corresponds to a coarse or fine-grained component, such as a section of a page, a related list, or a field. The components can either be controlled by the same logic that is used in standard Salesforce pages, or developers can associate their own logic with a controller written in Apex.
W
- Web Control
- See URL S-Control.
- Web Links
- See Custom Links.
- Web Service
- A mechanism by which two applications can easily exchange data over the Internet, even if they run on different platforms, are written in different languages, or are geographically remote from each other.
- Web Services API
- Term describing the original Salesforce Platform web services application programming interface (API) that provides access to your Salesforce org's information. See relevant developer guides for SOAP, REST, or Bulk APIs of interest.
- WebService Method
- An Apex class method or variable that external systems can use, like a mash-up with a third-party application. Web service methods must be defined in a global class.
- Web Tab
- A custom tab that allows your users to use external websites from within the application.
- Automated Actions
- Automated actions, such as email alerts, tasks, field updates, and outbound messages, can be triggered by a process, workflow rule, approval process, or milestone.
- Workflow Action
- A workflow action, such as an email alert, field update, outbound message, or task, fires when the conditions of a workflow rule are met.
- Workflow Email Alert
- A workflow action that sends an email when a workflow rule is triggered. Unlike workflow tasks, which can only be assigned to application users, workflow alerts can be sent to any user or contact, as long as they have a valid email address.
- Workflow Field Update
- A workflow action that changes the value of a particular field on a record when a workflow rule is triggered.
- Workflow Outbound Message
- A workflow action that sends data to an external Web service, such as another cloud computing application. Outbound messages are used primarily with composite apps.
- Workflow Queue
- A list of workflow actions that are scheduled to fire based on workflow rules that have one or more time-dependent workflow actions.
- Workflow Rule
- A workflow rule sets workflow actions into motion when its designated conditions are met. You can configure workflow actions to execute immediately when a record meets the conditions in your workflow rule, or set time triggers that execute the workflow actions on a specific day.
- Workflow Task
- A workflow action that assigns a task to an application user when a workflow rule is triggered.
- Wrapper Class
- A class that abstracts common functions such as logging in, managing sessions, and querying and batching records. A wrapper class makes an integration more straightforward to develop and maintain, keeps program logic in one place, and affords easy reuse across components. Examples of wrapper classes in Salesforce include the AJAX Toolkit, which is a JavaScript wrapper around the Salesforce SOAP API, wrapper classes such as CCritical Section in the CTI Adapter for Salesforce CRM Call Center, or wrapper classes created as part of a client integration application that accesses Salesforce using the SOAP API.
- WSC (Web Service Connector)
- An XML-based Web service framework that consists of a Java implementation of a SOAP server. With WSC, developers can develop client applications in Java by using Java classes generated from Salesforce Enterprise WSDL or Partner WSDL.
- WSDL (Web Services Description Language) File
- An XML file that describes the format of messages you send and receive from a Web service. Your development environment's SOAP client uses the Salesforce Enterprise WSDL or Partner WSDL to communicate with Salesforce using the SOAP API.
DRC 236.19