I_SLSQTANSUBSQNTPROCFLOW

CDS View

Sales Quotation Subsequent Process Flow

I_SLSQTANSUBSQNTPROCFLOW is a CDS View in S/4HANA. Sales Quotation Subsequent Process Flow. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
A_SlsQtanSubsqntProcFlow view_entity from COMPOSITE Header Subsequent Process Flow

Fields (8)

KeyField CDS FieldsUsed in Views
KEY DocRelationshipUUID DocRelationshipUUID 1
KEY SalesQuotation SalesQuotation 1
CreationDate CreationDate 1
CreationTime CreationTime 1
LastChangeDate LastChangeDate 1
ProcessFlowLevel ProcessFlowLevel 1
SubsequentDocument SubsequentDocument 1
SubsequentDocumentCategory SubsequentDocumentCategory 1
@EndUserText.label: 'Sales Quotation Subsequent Process Flow'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}

@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #B,
     sizeCategory:   #XL
   },
   supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
}
@Metadata.ignorePropagatedAnnotations: true

define view entity I_SlsQtanSubsqntProcFlow as select from I_SalesDocumentSubsqntProcFlow as SubsequentProcFlow
  
association [1..1] to I_SalesQuotation      as _SalesQuotation on _SalesQuotation.SalesQuotation = $projection.SalesQuotation 

{
  key SubsequentProcFlow.SalesDocument as SalesQuotation,
  key SubsequentProcFlow.DocRelationshipUUID,
  
      SubsequentProcFlow.SubsequentDocument,
      SubsequentProcFlow.SubsequentDocumentCategory,
      
      SubsequentProcFlow.ProcessFlowLevel,

      @Semantics.systemDate.createdAt: true
      SubsequentProcFlow.CreationDate,
      @Semantics.systemTime.createdAt: true
      SubsequentProcFlow.CreationTime,
      @Semantics.systemDate.lastChangedAt: true
      SubsequentProcFlow.LastChangeDate,

      // For Access control

      @Consumption.hidden: true
      _SalesQuotation.SalesQuotationType,
      @Consumption.hidden: true
      _SalesQuotation.SalesOrganization,
      @Consumption.hidden: true
      _SalesQuotation.DistributionChannel,
      @Consumption.hidden: true
      _SalesQuotation.OrganizationDivision,

      // Associations

      _SalesQuotation
}
where
  SubsequentProcFlow.SDDocumentCategory = 'B'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SALESDOCUMENTSUBSQNTPROCFLOW",
"I_SALESQUOTATION"
],
"ASSOCIATED":
[
"I_SALESQUOTATION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/