I_OutputControlOutputType
Output Document Type
I_OutputControlOutputType is a Basic CDS View that provides data about "Output Document Type" in SAP S/4HANA. It reads from 1 data source (apoc_i_outp_type) and exposes 4 fields with key fields OutputControlApplObjectType, OutputDocumentType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| apoc_i_outp_type | apoc_i_outp_type | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_OCOutputTypeText | _Text | $projection.OutputDocumentType = _Text.OutputDocumentType and $projection.OutputControlApplObjectType = _Text.OutputControlApplObjectType |
| [0..1] | I_OutputControlApplObjectType | _OutputControlApplObjectType | $projection.OutputControlApplObjectType = _OutputControlApplObjectType.OutputControlApplObjectType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IOCOUTPUTTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.representativeKey | OutputDocumentType | view | |
| Search.searchable | true | view | |
| EndUserText.label | Output Document Type | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OutputControlApplObjectType | appl_obj_type | ||
| KEY | OutputDocumentType | output_type | ||
| _OutputControlApplObjectType | _OutputControlApplObjectType | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IOCOUTPUTTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@VDM.viewType: #BASIC
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #META,
representativeKey: 'OutputDocumentType'
}
@Search.searchable: true
@EndUserText.label: 'Output Document Type'
@UI.presentationVariant:[{sortOrder:[{by:'OutputControlApplObjectType',direction:#DESC}]}]
define view I_OutputControlOutputType
as select from apoc_i_outp_type
association [0..*] to I_OCOutputTypeText as _Text on $projection.OutputDocumentType = _Text.OutputDocumentType
and $projection.OutputControlApplObjectType = _Text.OutputControlApplObjectType
association [0..1] to I_OutputControlApplObjectType as _OutputControlApplObjectType on $projection.OutputControlApplObjectType = _OutputControlApplObjectType.OutputControlApplObjectType
{
@ObjectModel.foreignKey.association: '_OutputControlApplObjectType'
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH }
key appl_obj_type as OutputControlApplObjectType,
@ObjectModel.text.association: '_Text'
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH }
key output_type as OutputDocumentType,
//Association
_OutputControlApplObjectType,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"APOC_I_OUTP_TYPE"
],
"ASSOCIATED":
[
"I_OCOUTPUTTYPETEXT",
"I_OUTPUTCONTROLAPPLOBJECTTYPE"
],
"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