I_CrdtDcsnCheckStepResultText

DDL: I_CRDTDCSNCHECKSTEPRESULTTEXT Type: view BASIC

Result of Credit Check Step in Credit Decision Document

I_CrdtDcsnCheckStepResultText is a Basic CDS View that provides data about "Result of Credit Check Step in Credit Decision Document" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields CreditDecisionCheckStepResult, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IDCDCHCKRESULTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.representativeKey CreditDecisionCheckStepResult view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Result of Credit Check Step in Credit Decision Document view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CreditDecisionCheckStepResult
KEY Language ddlanguage
CrdtDcsnCheckStepResultName
_Language _Language
@AbapCatalog: { sqlViewName: 'IDCDCHCKRESULTT',
                compiler.compareFilter: true,
                preserveKey: true,
                buffering: { status: #ACTIVE,
                             type: #FULL }
              }
       
@ObjectModel: { dataCategory: #TEXT,
                usageType: { serviceQuality: #A,
                             sizeCategory:   #S,
                             dataClass:      #META
                           },
                semanticKey: ['Language', 'CreditDecisionCheckStepResult'],
                representativeKey: 'CreditDecisionCheckStepResult'
              }
                    
@VDM: { viewType:  #BASIC,
        lifecycle: { contract.type: #PUBLIC_LOCAL_API }                                                           
      }       
@AccessControl.authorizationCheck: #NOT_REQUIRED

//@Metadata.ignorePropagatedAnnotations: true


@ClientHandling: { algorithm: #SESSION_VARIABLE }

@EndUserText.label: 'Result of Credit Check Step in Credit Decision Document'

define view I_CrdtDcsnCheckStepResultText 
    as select from dd07t
    
//define view I_CrdtDcsnCheckStepResultText 

//    as select from dd07t as _domainText

//    inner join dd07l as _domain on _domainText.domvalue_l = _domain.domvalue_l

//                                and _domainText.domname = 'UKM_DCD_CHECK_STEP_RESULT'    

  // VDM Associations

  // Language

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
         
{
  // VDM Fields

  @ObjectModel: { text: { element: [ 'CrdtDcsnCheckStepResultName' ] } }
  key cast( SUBSTRING( domvalue_l, 1, 1 )  as ukm_dcd_check_step_010 /*preserving type */) as CreditDecisionCheckStepResult,

  @Semantics: { language: true }
  @ObjectModel: { foreignKey: { association: '_Language' } }
  key ddlanguage as Language,

  @Semantics: { text: true }
  cast( ddtext as ukm_dcd_check_step_result_txt preserving type ) as CrdtDcsnCheckStepResultName,
  // Exposed Associations

  _Language
    
} where domname = 'UKM_DCD_CHECK_STEP_RESULT'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/