I_SftyCertProcessingStatusText
Sfty Cert Processing Status - Text
I_SftyCertProcessingStatusText is a Basic CDS View that provides data about "Sfty Cert Processing Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Name, Language, SftyCertProcessingStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISFTYPROCGSTSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Sfty Cert Processing Status - Text | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Search.searchable | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Name | domname | ||
| KEY | Language | ddlanguage | ||
| KEY | SftyCertProcessingStatus | |||
| SftyCertProcessingStatusText | ddtext |
@AbapCatalog.sqlViewName: 'ISFTYPROCGSTSTXT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Sfty Cert Processing Status - Text'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED
@Search.searchable: true
@UI.presentationVariant: [ { sortOrder: [ {by: 'SftyCertProcessingStatus', direction: #ASC } ] } ]
define view I_SftyCertProcessingStatusText
as select from dd07t
{
key domname as Name,
@Semantics.language: true
key ddlanguage as Language,
@ObjectModel.text.element: ['SftyCertProcessingStatusText']
key cast( domvalue_l as ptwdsftycertprocessingstatus ) as SftyCertProcessingStatus,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.7, ranking: #LOW }
@Semantics.text: true
ddtext as SftyCertProcessingStatusText
}
where
dd07t.domname = 'PTWDSFTYCERTPROCESSINGSTATUS'
and as4local = 'A'
and as4vers = '0000'
and dd07t.ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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