I_SPECIFICATIONLASTCHANGE
Specification Last Change
I_SPECIFICATIONLASTCHANGE is a CDS View in S/4HANA. Specification Last Change. It contains 1 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_ProdSpecificationLastChange | view | from | BASIC | Product Specification Last Change |
| I_ProdSpecNonHistoric | view | inner | COMPOSITE | Product Specification Non Historic |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| SpecLastChangeDateTime | ProdSpecRootLastChgDteTmeTxt | 1 |
@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
}