I_ServiceDocItemCategory
Category of Service Transaction Item
I_ServiceDocItemCategory is a Basic CDS View (Dimension) that provides data about "Category of Service Transaction Item" in SAP S/4HANA. It reads from 1 data source (crmc_item_type) and exposes 8 fields with key field ServiceDocItemCategory. It has 3 associations to related views.
SAP Help Documentation
| Category | Service Operations and Processes |
|---|---|
| Data Category | Dimension |
| Status | Status profile |
Purpose
This CDS view displays the mapping between transaction item categories and internal Service object types (BUS types). It also provides additional relevant information about each item category. As a Customizing view, it exposes a selected subset of fields. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .
Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.
Structure
Important Fields Important fields in this view include the following: Field Name Description ServiceDocItemCategory Key Item category ServiceObjectType Object type ItemIsBillingRelevant Billing relevance StatusProfile Status profile SrvcMgmtPrtnDetnProcedure Partner determination procedure
Constraints
The view is not searchable. It does not support the capabilities VALUE_HELP_PROVIDER and SEARCHABLE_ENTITY.
This CDS view displays the mapping between transaction item categories and internal Service object types (BUS types). It also provides additional relevant information about each item category. As a Customizing view, it exposes a selected subset of fields. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .
Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.
Structure
Important Fields Important fields in this view include the following: Field Name Description ServiceDocItemCategory Key Item category ServiceObjectType Object type ItemIsBillingRelevant Billing relevance StatusProfile Status profile SrvcMgmtPrtnDetnProcedure Partner determination procedure
Constraints
The view is not searchable. It does not support the capabilities VALUE_HELP_PROVIDER and SEARCHABLE_ENTITY.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmc_item_type | crmc_item_type | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_ServiceDocItemCategoryText | _ServiceDocItemCategoryText | $projection.ServiceDocItemCategory = _ServiceDocItemCategoryText.ServiceDocItemCategory |
| [0..1] | I_ServiceDocItemTypeSlsSttg | _ServiceDocItemTypeSlsSttg | $projection.ServiceDocItemCategory = _ServiceDocItemTypeSlsSttg.ServiceDocItemCategory |
| [1..1] | I_SrvcMgmtPrtnDetnProcedure | _SrvcMgmtPrtnDetnProcedure | $projection.SrvcMgmtPrtnDetnProcedure = _SrvcMgmtPrtnDetnProcedure.SrvcMgmtPrtnDetnProcedure |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Category of Service Transaction Item | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISERVDOCITMCAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | ServiceDocItemCategory | view | |
| ObjectModel.sapObjectNodeType.name | ServiceDocumentItemCategory | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocItemCategory | itm_type | Item Category | |
| ServiceObjectType | object_type | Type | ||
| ItemIsBillingRelevant | _ServiceDocItemTypeSlsSttg | ItemIsBillingRelevant | ||
| StatusProfile | user_stat_proc | Status Profile | ||
| SrvcMgmtPrtnDetnProcedure | part_determ_proc | PartnerDetProc | ||
| _ServiceDocItemCategoryText | _ServiceDocItemCategoryText | |||
| _ServiceDocItemTypeSlsSttg | _ServiceDocItemTypeSlsSttg | |||
| _SrvcMgmtPrtnDetnProcedure | _SrvcMgmtPrtnDetnProcedure |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view I_ServiceDocItemCategory.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
CREATE VIEW I_ServiceDocItemCategory AS
SELECT
itm_type AS ServiceDocItemCategory,
object_type AS ServiceObjectType,
_ServiceDocItemTypeSlsSttg.ItemIsBillingRelevant AS ItemIsBillingRelevant,
user_stat_proc AS StatusProfile,
part_determ_proc AS SrvcMgmtPrtnDetnProcedure
FROM crmc_item_type
LEFT OUTER JOIN I_ServiceDocItemCategoryText AS _ServiceDocItemCategoryText ON ServiceDocItemCategory = _ServiceDocItemCategoryText.ServiceDocItemCategory -- association [1..*]
LEFT OUTER JOIN I_ServiceDocItemTypeSlsSttg AS _ServiceDocItemTypeSlsSttg ON ServiceDocItemCategory = _ServiceDocItemTypeSlsSttg.ServiceDocItemCategory -- association [0..1]
LEFT OUTER JOIN I_SrvcMgmtPrtnDetnProcedure AS _SrvcMgmtPrtnDetnProcedure ON SrvcMgmtPrtnDetnProcedure = _SrvcMgmtPrtnDetnProcedure.SrvcMgmtPrtnDetnProcedure -- association [1..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA