I_SerialNumberProfileText
Serial Number Profile - Text
I_SerialNumberProfileText is a Basic CDS View that provides data about "Serial Number Profile - Text" in SAP S/4HANA. It reads from 1 data source (t377p_t) and exposes 4 fields with key fields SerialNumberProfile, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t377p_t | t377p_t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| AbapCatalog.entityBuffer.definitionAllowed | true | view | |
| EndUserText.label | Serial Number Profile - Text | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SerialNumberProfile | serail | ||
| KEY | Language | spras | ||
| SerialNumberProfileDescription | ||||
| _SerialNumberProfile | _SerialNumberProfile |
@AccessControl: { authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED }
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S }
@ObjectModel.supportedCapabilities: [
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#LANGUAGE_DEPENDENT_TEXT
]
@AbapCatalog.entityBuffer.definitionAllowed: true
@EndUserText.label: 'Serial Number Profile - Text'
define view entity I_SerialNumberProfileText
as select from t377p_t
association to parent I_SerialNumberProfile as _SerialNumberProfile
on $projection.SerialNumberProfile = _SerialNumberProfile.SerialNumberProfile
{
key serail as SerialNumberProfile,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
cast( t377p_t.serailtxt as losn_profile_description preserving type ) as SerialNumberProfileDescription,
_SerialNumberProfile
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T377P_T"
],
"ASSOCIATED":
[
"I_SERIALNUMBERPROFILE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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