I_SrvcDocCreditStatusText
Credit Status of Service Trans - Text
I_SrvcDocCreditStatusText is a Basic CDS View that provides data about "Credit Status of Service Trans - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields SrvcDocCreditStatus, Language. It has 2 associations to related views. Part of development package CRMS4_CREDIT_MGMT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_SrvcDocCreditStatus | _SrvcDocCreditStatus | $projection.SrvcDocCreditStatus = _SrvcDocCreditStatus.SrvcDocCreditStatus |
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Credit Status of Service Trans - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SrvcDocCreditStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISERVCRDTSTSTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SrvcDocCreditStatus | |||
| KEY | Language | |||
| DomainValue | domvalue_l | |||
| SrvcDocCreditStatusText | ddtext | |||
| _SrvcDocCreditStatus | _SrvcDocCreditStatus | |||
| _Language | _Language |
@EndUserText.label: 'Credit Status of Service Trans - Text'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'SrvcDocCreditStatus',
usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING},
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SEARCHABLE_ENTITY ],
modelingPattern: #LANGUAGE_DEPENDENT_TEXT
}
@Search.searchable: true
@Metadata: {
ignorePropagatedAnnotations: true
}
@ClientHandling: {
algorithm: #SESSION_VARIABLE
}
@AbapCatalog: {
sqlViewName: 'ISERVCRDTSTSTEXT',
compiler.compareFilter: true,
preserveKey: true
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK"] }*/
define view I_SrvcDocCreditStatusText
as select from dd07t
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ] }*/
association [1..1] to I_SrvcDocCreditStatus as _SrvcDocCreditStatus on $projection.SrvcDocCreditStatus = _SrvcDocCreditStatus.SrvcDocCreditStatus
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_SrvcDocCreditStatus'
key cast ( domvalue_l as crms4_stat_credit_h ) as SrvcDocCreditStatus,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( ddlanguage as spras preserving type ) as Language,
@Analytics.hidden: true
@Consumption.hidden: true
domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
ddtext as SrvcDocCreditStatusText,
_SrvcDocCreditStatus,
_Language
}
where
domname = 'CRMS4_STAT_CREDIT_H'
and as4local = 'A'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA