I_PPS_BooleanValueVH
PPS Boolean Value
I_PPS_BooleanValueVH is a Basic CDS View that provides data about "PPS Boolean Value" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field PPSBooleanValue.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPSBOOLVALVH | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.representativeKey | PPSBooleanValue | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | PPS Boolean Value | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PPSBooleanValue | |||
| PPSBooleanValueText | ddtext |
@AbapCatalog.sqlViewName: 'IPPSBOOLVALVH'
@ObjectModel.dataCategory: #VALUE_HELP
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.representativeKey: 'PPSBooleanValue'
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'PPS Boolean Value'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { usageType: { serviceQuality: #C,
sizeCategory: #S,
dataClass: #META }}
@VDM.viewType: #BASIC
define view I_PPS_BooleanValueVH
as select from dd07t
{
key cast( left (domvalue_l,1) as char1 preserving type ) as PPSBooleanValue,
ddtext as PPSBooleanValueText
}
where
dd07t.domname = 'PPS_D_BOOLEAN_VALUES'
and dd07t.as4local = 'A'
and as4vers = '0000'
and dd07t.ddlanguage = $session.system_language
//group by
// ddlanguage,
// valpos,
// domvalue_l,
// ddtext
/*+[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