I_SpecificationLastChange

DDL: I_SPECIFICATIONLASTCHANGE SQL: ISPCLASTCHANGED Type: view BASIC Package: VDM_PLMB_SPC_BAS

Specification Last Change

I_SpecificationLastChange is a Basic CDS View that provides data about "Specification Last Change" in SAP S/4HANA. It reads from 1 data source (ehsbc_tmstmp) and exposes 4 fields with key field SpecificationInternalID. Part of development package VDM_PLMB_SPC_BAS.

Data Sources (1)

SourceAliasJoin Type
ehsbc_tmstmp ehsbc_tmstmp from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISPCLASTCHANGED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Specification Last Change view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SpecificationInternalID recn
SpecificationLastChangeDate upddate
SpecificationLastChangeTime updtime
SpecLastChangeDateTime
@AbapCatalog.sqlViewName: 'ISPCLASTCHANGED'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@ClientHandling.algorithm: #SESSION_VARIABLE

@AccessControl.authorizationCheck: #PRIVILEGED_ONLY

@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #MASTER

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC

@EndUserText.label: 'Specification Last Change'
define view I_SpecificationLastChange
  as select from ehsbc_tmstmp
{
  key recn                                                                 as SpecificationInternalID,

      upddate                                                              as SpecificationLastChangeDate,
      updtime                                                              as SpecificationLastChangeTime,

      cast( concat( upddate, updtime ) as /plmb/spc_head_change_datetime ) as SpecLastChangeDateTime
}