I_CustomerStatusTxt
Customer Status Text
I_CustomerStatusTxt is a Basic CDS View that provides data about "Customer Status Text" in SAP S/4HANA. It reads from 1 data source (tj30) and exposes 4 fields with key fields Language, StatusProfile, Status. Part of development package BEI_BASE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tj30 | _StatusCode | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | ICUSTSTATUSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Customer Status Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | _StatusText | spras | |
| KEY | StatusProfile | tj30 | stsma | |
| KEY | Status | tj30 | estat | |
| BusinessPartnerStatusName | _StatusText | txt30 |
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'ICUSTSTATUSTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Customer Status Text'
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_CustomerStatusTxt
as select from tj30 as _StatusCode
left outer to many join tj30t as _StatusText on _StatusCode.stsma = _StatusText.stsma
and _StatusCode.estat = _StatusText.estat
{
@Semantics.language: true
key _StatusText.spras as Language,
key _StatusCode.stsma as StatusProfile,
key _StatusCode.estat as Status,
@Semantics.text: true
_StatusText.txt30 as BusinessPartnerStatusName
} where _StatusText.spras = $session.system_language
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