P_CustRetLastModified

DDL: P_CUSTRETLASTMODIFIED SQL: PCRTLASTMODIFIED Type: view CONSUMPTION

P_CustRetLastModified is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentBasic) and exposes 2 fields with key field CustomerReturn.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentBasic I_SalesDocumentBasic from

Annotations (6)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName PCRTLASTMODIFIED view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CustomerReturn SalesDocument
LastChangeDateTime LastChangeDateTime
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'PCRTLASTMODIFIED'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #CONSUMPTION
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

define view P_CustRetLastModified
  as select from I_SalesDocumentBasic
{
  key SalesDocument as CustomerReturn,
  LastChangeDateTime
}
where
  SDDocumentCategory = 'H';