I_PartialInvoiceIndicator
Partial Invoice Indicator Value Help
I_PartialInvoiceIndicator is a Basic CDS View that provides data about "Partial Invoice Indicator Value Help" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields SAPDataDictionaryDomain, PartialInvoiceDistribution.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRTINVC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | Partial Invoice Indicator Value Help | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPDataDictionaryDomain | domname | ||
| KEY | PartialInvoiceDistribution | |||
| PartialInvoiceDistributionName | ddtext |
@AbapCatalog.sqlViewName: 'IPRTINVC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Partial Invoice Indicator Value Help'
@VDM.lifecycle.contract.type :#PUBLIC_LOCAL_API
define view I_PartialInvoiceIndicator
as select from dd07t
{
key domname as SAPDataDictionaryDomain,
// @ObjectModel.text: { element: 'DomainText' }
//Cast domvalue_L to match the GFN fields details
key cast( domvalue_l as mmpur_req_d_partial_inv_dist ) as PartialInvoiceDistribution,
@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":
[],
"VERSION":0
}
}*/
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