I_IHBGroupType
Group Type Definition
I_IHBGroupType is a Basic CDS View that provides data about "Group Type Definition" in SAP S/4HANA. It reads from 1 data source (/pf1/db_grp_type) and exposes 10 fields with key field IHBGroupUUID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /pf1/db_grp_type | /pf1/db_grp_type | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_IHBGroupTypeText | _IHBGroupTypeText | $projection.IHBGroupUUID = _IHBGroupTypeText.IHBGroupUUID |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Group Type Definition | view | |
| VDM.viewType | #BASIC | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IHBGroupUUID | group_uuid | ||
| IHBBankArea | bank_area | |||
| IHBGroupType | group_type | |||
| InhouseBankGroupID | group_id | |||
| IHBObjectTotalChangedDateTime | total_change_stmp | |||
| IHBObjectCreatedDateTime | created_at | |||
| IHBObjectCreatedByUser | created_by | |||
| IHBObjectChangedDateTime | changed_at | |||
| IHBObjectChangedByUser | changed_by | |||
| _IHBGroupTypeText | _IHBGroupTypeText |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Group Type Definition'
@ObjectModel.
usageType: {
serviceQuality: #C,
sizeCategory: #M,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
define view entity I_IHBGroupType
as select from /pf1/db_grp_type
association [0..*] to I_IHBGroupTypeText as _IHBGroupTypeText on $projection.IHBGroupUUID = _IHBGroupTypeText.IHBGroupUUID
{
key group_uuid as IHBGroupUUID,
bank_area as IHBBankArea,
group_type as IHBGroupType,
group_id as InhouseBankGroupID,
@Semantics.systemDateTime.lastChangedAt: true
total_change_stmp as IHBObjectTotalChangedDateTime,
@Semantics.systemDateTime.createdAt: true
created_at as IHBObjectCreatedDateTime,
@Semantics.user.createdBy: true
created_by as IHBObjectCreatedByUser,
@Semantics.systemDateTime.localInstanceLastChangedAt: true
changed_at as IHBObjectChangedDateTime,
@Semantics.user.lastChangedBy: true
changed_by as IHBObjectChangedByUser,
_IHBGroupTypeText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PF1/DB_GRP_TYPE"
],
"ASSOCIATED":
[
"I_IHBGROUPTYPETEXT"
],
"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