I_MKT_TargetGroupTypeText
Marketing: Target Group Type Text
I_MKT_TargetGroupTypeText is a Basic CDS View that provides data about "Marketing: Target Group Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields LanguageCode, TargetGroupType. Part of development package CUAN_CDS_TARGET_GROUP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMKT_TG_TYPET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Marketing: Target Group Type Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | TargetGroupType | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LanguageCode | |||
| KEY | TargetGroupType | |||
| DomainValue | dd07t | domvalue_l | ||
| TargetGroupTypeName | ddtext |
@AbapCatalog.sqlViewName: 'IMKT_TG_TYPET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Marketing: Target Group Type Text'
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'TargetGroupType'
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_MKT_TargetGroupTypeText
as select from dd07t
{
@Semantics.language
key cast( dd07t.ddlanguage as spras preserving type ) as LanguageCode,
key cast( cast(dd07t.domvalue_l as abap.char(2)) as cuan_tg_type preserving type) as TargetGroupType,
@Analytics.hidden: true
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Semantics.text
ddtext as TargetGroupTypeName
}
where
domname = 'CUAN_TG_TYPE'
and as4local = 'A'
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