I_WorkPermitTypeText
Work Permit Type - Text
I_WorkPermitTypeText is a Basic CDS View that provides data about "Work Permit Type - Text" in SAP S/4HANA. It reads from 1 data source (ptwpermittypetxt) and exposes 4 fields with key fields Language, MaintenancePlanningPlant, WorkPermitType. Part of development package VDM_EAM_WCM_PERMIT_TO_WORK.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ptwpermittypetxt | ptwpermittypetxt | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWRKPMTTYPETXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Search.searchable | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Work Permit Type - Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | MaintenancePlanningPlant | iwerk | ||
| KEY | WorkPermitType | workpermittype | ||
| WorkPermitTypeDescription | ptwwrkpmttypetext |
@AbapCatalog.sqlViewName: 'IWRKPMTTYPETXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #META}
@Search.searchable: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Work Permit Type - Text'
@ObjectModel.dataCategory:#TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_WorkPermitTypeText
as select from ptwpermittypetxt
{
@UI.hidden: true
@Semantics.language:true
key spras as Language,
key iwerk as MaintenancePlanningPlant,
key workpermittype as WorkPermitType,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text:true
ptwwrkpmttypetext as WorkPermitTypeDescription
}
where
spras = $session.system_language
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