I_CONFIGNCHARACTERISTICGROUP

CDS View

Configuration Characteristic Group

I_CONFIGNCHARACTERISTICGROUP is a CDS View in S/4HANA. Configuration Characteristic Group. It contains 13 fields. 9 CDS views read from this table.

CDS Views using this table (9)

ViewTypeJoinVDMDescription
C_ConfignCharacteristicGroup view from CONSUMPTION Configuration Characteristic Group
I_ConfignCharcGroupForKeyDate view from COMPOSITE OBSOLETE: Conf Charc Group for Key Date
I_ConfignCharcGroupTP view from TRANSACTIONAL OBSOLETE: Configuration Charc Grp TP
I_ConfignCharcGrpAllocForDate view inner COMPOSITE OBSOLETE: Conf Charc Grp Alloc for KyDte
I_ConfignCharcGrpDescForKeyDte view inner COMPOSITE OBSOLETE: Conf Charc Grp Desc for KeyDte
R_VarCnfCharcGroupTP_2 view_entity from TRANSACTIONAL Variant Confign Characteristic Group
R_VarConfignCharcGroupAlloc view_entity inner COMPOSITE OBSOLETE: Confign Charc Grp Cstic Alloc
R_VarConfignCharcGroupText view_entity inner COMPOSITE OBSOLETE: Variant Config Cstic Grp Descr
R_VarConfignCharcGroupTP view_entity from TRANSACTIONAL OBSOLETE: Variant Confign Charc Group

Fields (13)

KeyField CDS FieldsUsed in Views
KEY ChangeNumber ChangeNumber,ChangeNumberForEdit 5
KEY ConfignCharacteristicGroup ConfignCharacteristicGroup,ConfignCharcGroupForEdit 3
ConfignCharcGroupIsDefault ConfignCharcGroupIsDefault 3
CreatedByUser CreatedByUser 3
CreationDate CreationDate 2
CreationDateTime CreationDateTime 2
LastChangeDate LastChangeDate 2
LastChangeDateTime LastChangeDateTime 2
LastChangedByUser LastChangedByUser 3
TimeIntervalNumber TimeIntervalNumber 3
ValidityEndDate ValidityEndDate 3
ValidityStartDate ValidityStartDate 3
VarCnfUIExtensionUUID VarCnfUIExtensionUUID 2
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IVCHHLGRP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ObjectModel.modelCategory: #BUSINESS_OBJECT
@EndUserText.label: 'Configuration Characteristic Group'
/*+[hideWarning] { "IDS" :  [ "KEY_CHECK" ] } */

define view I_ConfignCharacteristicGroup
  as select from vch_hl_grp as Grp
{
  key       Grp.group_id              as ConfignCharacteristicGroup,
  key       Grp.changeno              as ChangeNumber,

            Grp.adzhl                 as TimeIntervalNumber,

            Grp.is_default            as ConfignCharcGroupIsDefault,
            @Semantics.businessDate.from
            Grp.valid_from            as ValidityStartDate,
            @Semantics.businessDate.to
            Grp.valid_to              as ValidityEndDate,
            @Semantics.user.createdBy
            Grp.created_by            as CreatedByUser,
            @Semantics.systemDate.createdAt
            Grp.created_at            as CreationDate,
            @Semantics.systemDateTime.createdAt:true
            case when Grp.created_at_datetime is not initial then Grp.created_at_datetime
                 else cast( dats_tims_to_tstmp( Grp.created_at, cast( '120000' as abap.tims),
                                          'UTC', $session.client, 'NULL') as vdm_creationdatetime )
              end         as CreationDateTime,
            @Semantics.user.lastChangedBy
            Grp.changed_by            as LastChangedByUser,
            @Semantics.systemDate.lastChangedAt
            Grp.changed_at            as LastChangeDate,
            @Semantics.systemDateTime.lastChangedAt:true
            case when Grp.changed_at_datetime is not initial then Grp.changed_at_datetime
                 else cast( dats_tims_to_tstmp( Grp.changed_at, cast( '120000' as abap.tims),
                                          'UTC', $session.client, 'NULL' ) as vdm_lastchangedon )
              end        as  LastChangeDateTime,
            Grp.extension_id          as VarCnfUIExtensionUUID


}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"VCH_HL_GRP"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/