I_OutputRequestItemBinaryData
Output Request Item Binary Data
I_OutputRequestItemBinaryData is a Basic CDS View that provides data about "Output Request Item Binary Data" in SAP S/4HANA. It reads from 1 data source (apoc_d_outputdat) and exposes 4 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| apoc_d_outputdat | apoc_d_outputdat | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Output Request Item Binary Data | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| OutputRequestItemBinaryDataID | id | |||
| OutputBinaryData | output_data | |||
| OutputBinaryDataIsNotAvailable | ||||
| MimeType |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Output Request Item Binary Data'
@VDM: { viewType: #BASIC }
@ObjectModel.usageType: { serviceQuality: #B, sizeCategory: #S, dataClass: #TRANSACTIONAL }
define view entity I_OutputRequestItemBinaryData as select from apoc_d_outputdat {
id as OutputRequestItemBinaryDataID,
output_data as OutputBinaryData,
cast( ' ' as boole_d preserving type) as OutputBinaryDataIsNotAvailable,
cast( 'application/pdf' as w3conttype ) as MimeType
}
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