C_BSOrdProcFlwJournalEntry

DDL: C_BSORDPROCFLWJOURNALENTRY Type: view CONSUMPTION Package: CRMS4_SOLUTION_ORDER_PROGRESS

Journal Entry Attrib for BSOrd Prgrs

C_BSOrdProcFlwJournalEntry is a Consumption CDS View that provides data about "Journal Entry Attrib for BSOrd Prgrs" in SAP S/4HANA. It reads from 1 data source (I_JournalEntry) and exposes 8 fields with key fields CompanyCode, FiscalYear, UI5NetworkGraphAttributeValue. It has 1 association to related views. Part of development package CRMS4_SOLUTION_ORDER_PROGRESS.

Data Sources (1)

SourceAliasJoin Type
I_JournalEntry I_JournalEntry from

Associations (1)

CardinalityTargetAliasCondition
[0..1] P_BusSolnOrdSubsqntDocTypeText _DocumentType _DocumentType.UI5NetworkGraphDescription = '+'

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CJLENTRATTRIB view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #CONSUMPTION view
EndUserText.label Journal Entry Attrib for BSOrd Prgrs view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
KEY FiscalYear FiscalYear
KEY UI5NetworkGraphAttributeValue AccountingDocument
DocumentDate DocumentDate
PostingDate PostingDate
OriginalReferenceDocument OriginalReferenceDocument
UI5NetworkGraphStatus
UI5NetworkGraphDescription
@AbapCatalog: {
    sqlViewName:            'CJLENTRATTRIB',
    compiler.compareFilter: true,
    preserveKey:            true
}

@AccessControl.authorizationCheck: #PRIVILEGED_ONLY

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType: {
    dataClass:      #MIXED,
    serviceQuality: #C,
    sizeCategory:   #XL
}

@VDM: {
    viewType: #CONSUMPTION
}

@EndUserText.label: 'Journal Entry Attrib for BSOrd Prgrs'

define view C_BSOrdProcFlwJournalEntry
  as select from I_JournalEntry
  association [0..1] to P_BusSolnOrdSubsqntDocTypeText as _DocumentType on _DocumentType.UI5NetworkGraphDescription = '+'
{
  key CompanyCode,
  key FiscalYear,
  key AccountingDocument                                                                   as UI5NetworkGraphAttributeValue,
      DocumentDate,
      PostingDate,
      OriginalReferenceDocument,
      cast('' as fac_network_graph_status )                                                as UI5NetworkGraphStatus,
      @Semantics.text: true
      _DocumentType[1: Language = $session.system_language].UI5NetworkGraphDescriptionName as UI5NetworkGraphDescription
}