Understanding Service Model Foundation in Healthcare Operations

  • Release version: Australia
  • Updated June 10, 2026
  • 4 minutes to read
  • Summarize
    Summarized using AI
    This content was generated using new OpenAI-powered functionality. Results are provided on an as is basis and are not guaranteed to be accurate or complete.

    Summary of Understanding Service Model Foundation in Healthcare Operations

    The Service Model Foundation (SMF) framework underpins Healthcare Operations Core in ServiceNow, structuring how cases, locations, and bulk imports are configured. It uses a hierarchy of location tables starting with service organization and extending through business location to internal and external business locations. Healthcare organizations act as profiles linked one-to-one to business locations, holding healthcare-specific information without being the primary location record.

    Show full answer Show less

    Key Features

    • Location Hierarchy: Service organization is the base table, extending to business location, which further extends to internal and external business locations.
    • Healthcare Organization Role: A one-to-one profile with business locations, storing healthcare-specific fields separately from business location tables.
    • Internal vs. External Business Locations: Internal locations belong to your organization (e.g., hospital units), while external locations represent affiliates or external providers accessing your services.
    • Case Configuration: The Healthcare Operations case form includes two critical service organization fields:
      • Requesting service org: Identifies who needs support and drives shared case visibility; must be correctly populated.
      • Supporting service org: Denotes the organization fulfilling the case; used as needed per implementation.

      Display internal or external business locations using the requesting service org field—not the healthcare organization—to ensure proper case visibility.

    • Common Location Table: Stores physical address information referenced by service organizations. Customize and configure healthcare locations through the healthcare location table rather than the common location table.
    • Bulk Import Best Practices: When importing location data, address duplication can occur if multiple business locations share an address. To prevent this:
      • Load or confirm addresses in the common location table first.
      • Create a single import set targeting the healthcare organization table, using a choice column to indicate internal or external locations.
      • Use an onBefore transform script to create corresponding internal or external business location records linked to existing common location records whenever possible.
      • Avoid adding address fields directly to business locations if a matching common location record exists to prevent duplicate common location records.

    Key Outcomes

    • Proper understanding and configuration of the SMF tables ensure accurate case visibility and data integrity within Healthcare Operations.
    • Separating healthcare-specific data into healthcare organization profiles maintains best practices and simplifies management.
    • Distinguishing internal and external business locations enables precise representation of organizational and affiliate entities.
    • Following recommended import procedures minimizes data duplication and supports smooth migration from ITSM environments.

    Understand how the Service Model Foundation (SMF) tables relate to each other so that you configure cases, locations, and bulk imports correctly for Healthcare Operations Core.

    The Service Model Foundation data model

    Healthcare Operations Core is built on the Service Model Foundation (SMF) framework. The SMF location tables form an extension hierarchy. From parent to child:

    • Service organization is the base table in the hierarchy.
    • Business location is an extension of service organization.
    • Internal business location and external business location are both extensions of business location.

    Two additional tables relate to this hierarchy by reference rather than by extension:

    • The common location [cmn_location] table is referenced from service organization through a location reference field. It stores the physical address of a record.
    • The healthcare organization [sn_hcls_organization] table has a one-to-one, bidirectional relationship with business location.
    Important:

    The primary record for a location is the internal business location or the external business location—not the healthcare organization.

    Because the documentation and configuration steps focus heavily on the healthcare organization table, it's commonly mistaken for the primary record. In reality, internal business locations and external business locations are the tables that are considered the requesting organization or location—not the healthcare organization.

    The healthcare organization is like a profile: a one-to-one repository of healthcare-specific fields and information about its linked internal or external business location. It's against best practice to add healthcare-specific information directly to the business location tables. That information belongs on the healthcare organization record. For more information, see Setting up healthcare locations and healthcare organizations.

    Internal and external business locations

    Whether a location is internal or external depends on its relationship to the organization that owns the ServiceNow instance.

    • Internal business locations are internal to your organization. For example, the hospital that owns the ServiceNow instance, the units within that hospital, or the individual floors and rooms within the hospital.
    • External business locations are external to your organization. For example, private practices or healthcare affiliates that consume your healthcare services. An affiliate that logs into your organization's Epic environment through Epic Community Connect and needs to report EMR issues requires an external business location in ServiceNow, along with the corresponding membership setup.

    Service organization fields on the case

    The Healthcare Operations case [sn_hco_case] form has two service organization fields. Configure them correctly to preserve out-of-box case visibility.

    Requesting service org
    Represents the organization that needs support—the requester. This out-of-box field is used in every SMF implementation and drives shared case visibility. If the requesting service org isn't populated on the case, none of the shared visibility works.
    Supporting service org
    Represents the organization that's fulfilling the case—the fulfiller. This field isn't used in every implementation.
    Note:

    A common configuration error is displaying the healthcare organization on the case form. Display the internal or external business location through the out-of-box requesting service org field instead. Because the healthcare organization is only a profile, showing it on the case doesn't establish the visibility that the requesting service org field provides.

    Common locations and business locations

    The common location [cmn_location] table represents the physical address of a record and is used across the ServiceNow platform. Because several tables contain location in their name, it's commonly assumed that one table extends another. They don't. Service organization holds a reference field to the common location record.

    For healthcare use cases, configure the healthcare location [sn_hcls_location] table rather than customizing the common location table directly. The healthcare location is a profile for an individual location—a repository of fields and information that aren't available on the common location table. For more information, see Setting up healthcare locations and healthcare organizations.

    Importing location data

    When you bulk import location data, a business rule on service organization creates a new common location record whenever address fields are added and the common location reference field is empty. If multiple units at the same hospital share a single physical address and you import address details on each business location, this business rule creates duplicate common location records—one for every internal or external business location that you import.

    To avoid duplicates, look up and reuse existing common location records instead of letting the business rule create new ones. Reusing existing records also matters for customers migrating from ServiceNow IT Service Management, who likely already have common location records—and incidents related to them—that should be reused.

    Use the following process to import location data:

    1. Load or confirm the addresses in the common location [cmn_location] table. If the customer already has address records, such as from an existing ITSM deployment, no action is needed in this step. Otherwise, import the addresses into the common location table first.
    2. Create a single import set and transform map at the healthcare organization [sn_hcls_organization] table. Include a custom choice column in the import spreadsheet that indicates whether each row is internal or external.
    3. Use an onBefore transform script to create the correct internal or external business location record. Based on the internal or external value, the script creates the linked internal business location or external business location. This approach produces one import set that creates records across the appropriate tables, so the customer manages only a single import set.
    4. In the same script, look up an existing common location record for the address and reference it from the internal or external business location, copying the address data up to the business location. Only when no matching common location record exists should you add the address details and allow a new common location record to be created.
    Tip:

    Don't add address fields directly to an internal or external business location when a matching common location record already exists if you haven't populated the common location yet. Doing so triggers the business rule that creates duplicate common location records.