I_PrepaymentInvalidContracts
Prepayment Agreement invalid contracts
I_PrepaymentInvalidContracts is a Basic CDS View that provides data about "Prepayment Agreement invalid contracts" in SAP S/4HANA. It reads from 3 data sources (/accgo/t_cakitm, /accgo/t_cak_typ, wbhk) and exposes 3 fields.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| /accgo/t_cakitm | ContractItem | from |
| /accgo/t_cak_typ | tctype | inner |
| wbhk | TradingContract | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMTINV | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Prepayment Agreement invalid contracts | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| TradingContract | /accgo/t_cakitm | tkonn | ||
| TradingContractItem | /accgo/t_cakitm | tposn | ||
| IsRejected |
@AbapCatalog.sqlViewName: 'IPPMTINV'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType : #BASIC
@ObjectModel.usageType.sizeCategory : #L
@ObjectModel.usageType.serviceQuality : #A
@ObjectModel.usageType.dataClass : #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations : true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Prepayment Agreement invalid contracts'
define view I_PrepaymentInvalidContracts as select from /accgo/t_cakitm as ContractItem
inner join wbhk as TradingContract
on TradingContract.tkonn = ContractItem.tkonn
inner join /accgo/t_cak_typ as tctype
on tctype.tctyp = TradingContract.tctyp
{
ContractItem.tkonn as TradingContract,
ContractItem.tposn as TradingContractItem,
cast( 'X' as boole_d preserving type) as IsRejected
}
where pymnt_type is not initial
or pymnt_terms is not initial
or pymnt_type is not initial
or pymnt_date is not initial
or tctype.contract_type = 'I'
or tctype.contract_type = 'R'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/ACCGO/T_CAKITM",
"/ACCGO/T_CAK_TYP",
"WBHK"
],
"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