I_PurchaseOrgVH
Responsible Purchase Org value help
I_PurchaseOrgVH is a Basic CDS View that provides data about "Responsible Purchase Org value help" in SAP S/4HANA. It reads from 1 data source (t024e) and exposes 2 fields with key field ResponsiblePurchaseOrg.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t024e | t024e | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPURCHASEORGVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Responsible Purchase Org value help | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ResponsiblePurchaseOrg | ekorg | Purchase Org | |
| PurchasingOrganizationName | ekotx | Description |
@AbapCatalog.sqlViewName: 'IPURCHASEORGVH'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #CUSTOMIZING
}
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Responsible Purchase Org value help'
define view I_PurchaseOrgVH
as select from t024e
{
@EndUserText.label: 'Purchase Org'
key ekorg as ResponsiblePurchaseOrg,
@Semantics.text: true
@EndUserText.label: 'Description'
ekotx as PurchasingOrganizationName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T024E"
],
"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