I_CreditManagementSegment

DDL: I_CREDITMANAGEMENTSEGMENT SQL: ICREDMGMNTSEGM Type: view BASIC

Credit Management Segment

I_CreditManagementSegment is a Basic CDS View (Dimension) that provides data about "Credit Management Segment" in SAP S/4HANA. It reads from 1 data source (ukmcred_sgm0c) and exposes 7 fields with key field CreditSegment. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
ukmcred_sgm0c ukmcred_sgm0c from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_CreditManagementSegmentTxt _Text $projection.CreditSegment = _Text.CreditSegment
[1..1] I_Currency _Currency $projection.CreditSegmentCurrency = _Currency.Currency

Annotations (12)

NameValueLevelField
EndUserText.label Credit Management Segment view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AbapCatalog.sqlViewName ICREDMGMNTSEGM view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey CreditSegment view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CreditSegment
CreditSegmentCurrency
ExchangeRateType kurst
CrdtSgmtIsMainCreditSegment main_cred_sgmnt
CrdtSgmtIsAddedToMainSgmt main_credsgm_add
_Text _Text
_Currency _Currency
@EndUserText.label: 'Credit Management Segment'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@AbapCatalog.sqlViewName: 'ICREDMGMNTSEGM'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'CreditSegment'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET,
                                     #ANALYTICAL_DIMENSION,
                                     #EXTRACTION_DATA_SOURCE ]
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view I_CreditManagementSegment
  as select from ukmcred_sgm0c
  association [0..*] to I_CreditManagementSegmentTxt as _Text     on $projection.CreditSegment = _Text.CreditSegment
  association [1..1] to I_Currency                   as _Currency on $projection.CreditSegmentCurrency = _Currency.Currency

{
      @ObjectModel.text.association: '_Text'
  key cast( credit_sgmnt as farp_credit_segment preserving type ) as CreditSegment,
      cast( currency as farp_sgm_currency preserving type )       as CreditSegmentCurrency,
      //  limit_valid_chck,

      kurst                                                       as ExchangeRateType,
      main_cred_sgmnt                                             as CrdtSgmtIsMainCreditSegment,
      main_credsgm_add                                            as CrdtSgmtIsAddedToMainSgmt,
      _Text,
      _Currency
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UKMCRED_SGM0C"
],
"ASSOCIATED":
[
"I_CREDITMANAGEMENTSEGMENTTXT",
"I_CURRENCY"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/