I_CustConsignmentProcessType
Customer Consignment Process Type
I_CustConsignmentProcessType is a Basic CDS View (Dimension) that provides data about "Customer Consignment Process Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field CustomerConsignmentProcessType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CustConsignmentProcTypeText | _CustConsignmentProcText | $projection.CustomerConsignmentProcessType = _CustConsignmentProcText.CustomerConsignmentProcessType |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICSGNMTPTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Customer Consignment Process Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | CustomerConsignmentProcessType | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| VDM.viewType | #BASIC | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustomerConsignmentProcessType | |||
| _CustConsignmentProcText | _CustConsignmentProcText |
@AbapCatalog.sqlViewName: 'ICSGNMTPTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Customer Consignment Process Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: 'CustomerConsignmentProcessType'
@ObjectModel.resultSet: { sizeCategory: #XS }
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities:[
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#ANALYTICAL_DIMENSION,
#SQL_DATA_SOURCE
]
@VDM.viewType: #BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_CustConsignmentProcessType
as select from dd07l
association [0..*] to I_CustConsignmentProcTypeText as _CustConsignmentProcText on $projection.CustomerConsignmentProcessType = _CustConsignmentProcText.CustomerConsignmentProcessType
{
@ObjectModel.text.association: '_CustConsignmentProcText'
key cast(domvalue_l as custcsgnmtproctype) as CustomerConsignmentProcessType,
_CustConsignmentProcText
}
where
domname = 'CUSTCSGNMTPROCTYPE'
and as4local = 'A'
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