I_InspSpecCharcType

DDL: I_INSPSPECCHARCTYPE Type: view BASIC

Inspection Characteristic Type

I_InspSpecCharcType is a Basic CDS View that provides data about "Inspection Characteristic Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field InspSpecCharacteristicType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_InspSpecCharcTypeText _InspSpecCharcTypeText $projection.InspSpecCharacteristicType = _InspSpecCharcTypeText.InspSpecCharacteristicType

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IINSPCHARCTYP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Inspection Characteristic Type view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey InspSpecCharacteristicType view
ObjectModel.resultSet.sizeCategory #XS view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY InspSpecCharacteristicType
_InspSpecCharcTypeText _InspSpecCharcTypeText
@AbapCatalog: {
    sqlViewName: 'IINSPCHARCTYP',
    preserveKey: true,
    compiler.compareFilter: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Inspection Characteristic Type'
@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED 
@ObjectModel.supportedCapabilities:
    [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel: {
    usageType: {
        dataClass: #META,
        sizeCategory: #S,
        serviceQuality: #C //as function substring is used but #A and #B must not contain functions

    },
    representativeKey: 'InspSpecCharacteristicType',
    resultSet.sizeCategory: #XS
}
@Metadata.ignorePropagatedAnnotations: true
define view I_InspSpecCharcType as select from dd07l

   association [0..*] to I_InspSpecCharcTypeText as _InspSpecCharcTypeText 
      on $projection.InspSpecCharacteristicType = _InspSpecCharcTypeText.InspSpecCharacteristicType
       
{
    @ObjectModel.text.association: '_InspSpecCharcTypeText'
    key cast ( substring( domvalue_l, 1, 1 ) as vdm_qchar_type_basic preserving type ) as InspSpecCharacteristicType

    /* Associations */
    ,_InspSpecCharcTypeText
 
}
where domname  = 'QCHAR_TYPE_BASIC' 
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_INSPSPECCHARCTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/