P_ClfnSdmInobIncons
Helper View for INOB Inconsistency SDM
P_ClfnSdmInobIncons is a Basic CDS View that provides data about "Helper View for INOB Inconsistency SDM" in SAP S/4HANA. It reads from 3 data sources (inob, kssk, tcla) and exposes 5 fields. Part of development package NGC_CORE_DB.
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Helper View for INOB Inconsistency SDM | view | |
| ClientHandling.algorithm | #AUTOMATED | view | |
| AbapCatalog.sqlViewName | PSDMINOBINC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
// Classification Helper View for INOB Inconsistency SDM
@EndUserText.label: 'Helper View for INOB Inconsistency SDM'
@ClientHandling.algorithm: #AUTOMATED
@AbapCatalog: {
sqlViewName: 'PSDMINOBINC',
compiler.compareFilter: true
}
@AccessControl.authorizationCheck: #NOT_ALLOWED
@VDM: {
private: true,
viewType: #BASIC,
lifecycle.contract.type: #NONE
}
@ObjectModel: {
usageType.sizeCategory: #L,
usageType.serviceQuality: #X,
usageType.dataClass: #TRANSACTIONAL
}
// Statuses:
// 01 - Existent line in KSSK without existent line in INOB
// 02 - Everything is ok, no conversion required
define view P_ClfnSdmInobIncons
as select from kssk
inner join tcla on kssk.klart = tcla.klart and tcla.multobj = 'X'
left outer join inob on kssk.objek = inob.cuobj
{
kssk.objek as kssk_objek,
kssk.mafid as kssk_mafid,
kssk.klart as kssk_klart,
kssk.clint as kssk_clint,
kssk.adzhl as kssk_adzhl,
case
when inob.objek is null
then '01'
else '02'
end as sdm_status
} where kssk.mafid = 'O'
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