Deprecated
This CDS view is deprecated in S/4HANA. Use I_EWM_SerialNumberProfile instead. View all deprecated CDS views →

C_Serialnumtemp

DDL: C_SERIALNUMTEMP SQL: CSERIALNOTEMP Type: view CONSUMPTION Package: VDM_MD_PRODUCT_OBSOLETE

Serial Number Profile View

C_Serialnumtemp is a Consumption CDS View that provides data about "Serial Number Profile View" in SAP S/4HANA. It reads from 1 data source (tserial) and exposes 2 fields with key field SerialNumberProfile. It has 1 association to related views. Part of development package VDM_MD_PRODUCT_OBSOLETE.

Data Sources (1)

SourceAliasJoin Type
tserial tserial from

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_Serialnumtexttemp _Text $projection.SerialNumberProfile = _Text.SerialNumberProfile

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CSERIALNOTEMP view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey SerialNumberProfile view
EndUserText.label Serial Number Profile View view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_SerialNumberProfile view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SerialNumberProfile SerialNoProfile
_Text _Text

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 C_Serialnumtemp.
-- 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.
-- SQL view name: CSERIALNOTEMP

CREATE VIEW C_Serialnumtemp AS
SELECT
  cast(serial as cifserial preserving type ) AS SerialNumberProfile
FROM tserial
LEFT OUTER JOIN C_Serialnumtexttemp AS _Text ON SerialNumberProfile = _Text.SerialNumberProfile  -- association [0..*]
;