I_ProdnAcctAssgmtObjTypeVH
Production Account Assignment Object Type
I_ProdnAcctAssgmtObjTypeVH is a Composite CDS View that provides data about "Production Account Assignment Object Type" in SAP S/4HANA. It reads from 1 data source (I_OrderType) and exposes 2 fields with key field OrderType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_OrderType | I_OrderType | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRODNAAMOBJTPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #COMPOSITE | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.representativeKey | OrderType | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Production Account Assignment Object Type | view | |
| Search.searchable | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderType | I_OrderType | OrderType | |
| OrderTypeName |
@AbapCatalog.sqlViewName: 'IPRODNAAMOBJTPVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY]
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #MASTER}
@VDM.viewType: #COMPOSITE
@AbapCatalog.preserveKey:true
@ObjectModel.representativeKey: 'OrderType'
@Consumption.ranked:true
@EndUserText.label: 'Production Account Assignment Object Type'
@Search.searchable: true
define view I_ProdnAcctAssgmtObjTypeVH as select from I_OrderType
{
@Search: {defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8}
@ObjectModel.text.element: 'OrderTypeName'
@UI.textArrangement: #TEXT_LAST
key I_OrderType.OrderType as OrderType,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
@Semantics.text: true
I_OrderType._Text[1:Language = $session.system_language].OrderTypeName as OrderTypeName
}
where
I_OrderType.OrderCategory = '10'
or I_OrderType.OrderCategory = '40'
or I_OrderType.OrderCategory = '05';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ORDERTYPE",
"I_ORDERTYPETEXT"
],
"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