I_InvgCsMActivityProcessTypeT
Basic View for Process Type Text
I_InvgCsMActivityProcessTypeT is a Basic CDS View that provides data about "Basic View for Process Type Text" in SAP S/4HANA. It reads from 1 data source (crmc_proc_type_t) and exposes 3 fields with key fields InvgCsMActivityProcessTypeCode, InvgCsMLanguageCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmc_proc_type_t | crmc_proc_type_t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IICMACTYPROCTYT | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Basic View for Process Type Text | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InvgCsMActivityProcessTypeCode | process_type | ||
| KEY | InvgCsMLanguageCode | langu | ||
| InvgCsMActivityProcessTypeText | p_description |
@AbapCatalog.sqlViewName: 'IICMACTYPROCTYT'
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Basic View for Process Type Text'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_InvgCsMActivityProcessTypeT
as select from crmc_proc_type_t
{
key process_type as InvgCsMActivityProcessTypeCode,
key langu as InvgCsMLanguageCode,
p_description as InvgCsMActivityProcessTypeText
}
where
langu = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMC_PROC_TYPE_T"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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