P_BadDebtReserveDocCategory

DDL: P_BADDEBTRESERVEDOCCATEGORY SQL: PBADDEBTRSVDC Type: view COMPOSITE

P_BadDebtReserveDocCategory is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 4 fields with key fields DocumentCategory, Language.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText I_DomainFixedValueText from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PBADDEBTRSVDC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DocumentCategory DomainValue
KEY Language Language
DocumentCategoryText DomainText
_Language _Language
@AbapCatalog.sqlViewName: 'PBADDEBTRSVDC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
@VDM.private: true
@VDM.viewType: #COMPOSITE
define view P_BadDebtReserveDocCategory
  as select from I_DomainFixedValueText
{
      @UI.hidden: true
      @ObjectModel.text.element: 'DocumentCategoryText'
  key DomainValue as DocumentCategory,

      @UI.hidden: true
  key Language,

      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      DomainText  as DocumentCategoryText,

      /* Associations */
      _Language

}
where
      SAPDataDictionaryDomain = 'FARP_BDR_DOCUMENT_CATEGORY'
  and Language                = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[
"I_DOMAINFIXEDVALUETEXT"
],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/