I_CONFIGNCHARCGROUPALLOC

CDS View

Confign Charc Group Charc Allocation

I_CONFIGNCHARCGROUPALLOC is a CDS View in S/4HANA. Confign Charc Group Charc Allocation. It contains 11 fields. 6 CDS views read from this table.

CDS Views using this table (6)

ViewTypeJoinVDMDescription
C_ConfignCharcGroupAlloc view from CONSUMPTION Configuration Characteristic Group Alloc
I_ConfignCharcGroupAllocTP view from TRANSACTIONAL OBSOLETE: Confign Charc Grp Alloc TP
I_ConfignCharcGrpAllocCount view from BASIC Number of characteristics per Group
I_ConfignCharcGrpAllocForDate view from COMPOSITE OBSOLETE: Conf Charc Grp Alloc for KyDte
R_VarCnfCharcGroupAllocTP_2 view_entity from TRANSACTIONAL Characteristic Allocation
R_VarConfignCharcGroupAlloc view_entity from COMPOSITE OBSOLETE: Confign Charc Grp Cstic Alloc

Fields (11)

KeyField CDS FieldsUsed in Views
KEY ChangeNumber ChangeNumber,ChangeNumberForEdit 2
KEY CharcInternalID CharacteristicInternalID,CharcInternalID,CharcInternalIDForEdit 4
KEY ConfignCharacteristicGroup ConfignCharacteristicGroup,ConfignCharcGroupForEdit 5
CreatedByUser CreatedByUser 3
CreationDate CreationDate 2
CreationDateTime CreationDateTime 2
LastChangeDate LastChangeDate 2
LastChangeDateTime LastChangeDateTime 2
LastChangedByUser LastChangedByUser 3
SortingNumber SortingNumber 4
TimeIntervalNumber TimeIntervalNumber 3
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IVCHHLGRPCSTIC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.representativeKey: 'ConfignCharacteristicGroup'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

@EndUserText.label: 'Confign Charc Group Charc Allocation'
define view I_ConfignCharcGroupAlloc
  as select from vch_hl_grp_cstic as Alloc
    inner join   vch_hl_grp       as Grp on  Grp.group_id = Alloc.group_id
                                         and Grp.adzhl    = Alloc.adzhl
  
  {
  key     Alloc.group_id              as ConfignCharacteristicGroup,
  key     Grp.changeno                as ChangeNumber,
  key     Alloc.cstic_id              as CharcInternalID,

          Alloc.adzhl                 as TimeIntervalNumber,
          Alloc.sort_key              as SortingNumber,
          @Semantics.user.createdBy
          Alloc.created_by            as CreatedByUser,
          @Semantics.systemDate.createdAt
          Alloc.created_at            as CreationDate,
          @Semantics.systemDateTime.createdAt
          case when Alloc.created_at_datetime is not initial then Alloc.created_at_datetime
               else cast( dats_tims_to_tstmp( Alloc.created_at, cast( '120000' as abap.tims),
                                        'UTC', $session.client, 'NULL') as vdm_creationdatetime )
            end         as CreationDateTime,
          @Semantics.user.lastChangedBy
          Alloc.changed_by            as LastChangedByUser,
          @Semantics.systemDate.lastChangedAt
          Alloc.changed_at            as LastChangeDate,
          @Semantics.systemDateTime.lastChangedAt
          case when Alloc.changed_at_datetime is not initial then Alloc.changed_at_datetime
               else cast( dats_tims_to_tstmp( Alloc.changed_at, cast( '120000' as abap.tims),
                                        'UTC', $session.client, 'NULL' ) as vdm_lastchangedon )
            end            as LastChangeDateTime
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"VCH_HL_GRP",
"VCH_HL_GRP_CSTIC"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/