I_PPS_PrtlInvoiceIndicatorText
Partial Invoice Indicator - Text
I_PPS_PrtlInvoiceIndicatorText is a Basic CDS View that provides data about "Partial Invoice Indicator - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields SAPDataDictionaryDomain, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.technicalName | IPPSPRTLINVTEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Partial Invoice Indicator - Text | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPDataDictionaryDomain | domname | ||
| KEY | Language | ddlanguage | ||
| PartialInvoiceDistributionName | ddtext |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Analytics.technicalName: 'IPPSPRTLINVTEXT'
@ObjectModel: {
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING,
dataCategory: #TEXT
}
@EndUserText.label: 'Partial Invoice Indicator - Text'
@VDM.lifecycle.contract.type :#PUBLIC_LOCAL_API
//@JIRA-KEY<S4PPA-5452>
define view entity I_PPS_PrtlInvoiceIndicatorText
as select from dd07t
{
key domname as SAPDataDictionaryDomain,
// @ObjectModel.text: { element: 'DomainText' }
//Cast domvalue_L to match the GFN fields details
key case domvalue_l
when '' then cast ( '0' as twrkz )
else cast( domvalue_l as twrkz )
end as PartialInvoiceDistribution,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
ddtext as PartialInvoiceDistributionName
}
where
domname = 'TWRKZ'
and ddlanguage = $session.system_language
and as4local = 'A'
/*+[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