I_ServiceDocItemCategory

DDL: I_SERVICEDOCITEMCATEGORY Type: view BASIC

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

CategoryService Operations and Processes
Data CategoryDimension
StatusStatus 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.

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
crmc_item_type crmc_item_type from

Associations (3)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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]
;