I_PrepaymentPrncplReducnText

DDL: I_PREPAYMENTPRNCPLREDUCNTEXT SQL: IPPMGPRIREDTXT Type: view COMPOSITE

Prepayment Pricipal Reduction Text

I_PrepaymentPrncplReducnText is a Composite CDS View that provides data about "Prepayment Pricipal Reduction Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields PrepaymentAgrmtDomainCode, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t Domain from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPPMGPRIREDTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
EndUserText.label Prepayment Pricipal Reduction Text view
ObjectModel.resultSet.sizeCategory #XS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PrepaymentAgrmtDomainCode dd07t domvalue_l Principal Reduction
KEY Language
PrepaymentAgrmtDomainText dd07t ddtext Principal Reduction Description
@AbapCatalog.sqlViewName: 'IPPMGPRIREDTXT'
@AbapCatalog.compiler.compareFilter         : true
@AbapCatalog.preserveKey                    : true
@ClientHandling.algorithm                   : #SESSION_VARIABLE
@AccessControl.authorizationCheck           : #NOT_REQUIRED
@VDM.viewType                               : #COMPOSITE
@ObjectModel:{
    usageType:{
    sizeCategory: #S,
    dataClass: #CUSTOMIZING,
    serviceQuality: #A
    }
}
@Metadata.ignorePropagatedAnnotations       : true
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true
@EndUserText.label: 'Prepayment Pricipal Reduction Text'
@ObjectModel.resultSet.sizeCategory: #XS

define view I_PrepaymentPrncplReducnText
  as select from dd07t as Domain
{
       @Search.defaultSearchElement: true
       @Search.ranking: #HIGH
       @Search.fuzzinessThreshold: 0.8
       @EndUserText.label: 'Principal Reduction'
       @ObjectModel.text.element: ['PrepaymentAgrmtDomainText']
  key  Domain.domvalue_l           as PrepaymentAgrmtDomainCode,
 
       @Semantics.language:true
       @UI.hidden: true
  key  cast( ddlanguage as spras ) as Language,
  
       @Semantics.text: true
       @Search.defaultSearchElement: true
       @Search.ranking: #MEDIUM
       @Search.fuzzinessThreshold: 0.8
       @EndUserText.label: 'Principal Reduction Description'
       Domain.ddtext               as PrepaymentAgrmtDomainText
}
where
      Domain.as4local   = 'A'
  and Domain.domname    = 'PPMGAG_D_PRINCIPALREDUCTION'
  and Domain.ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/