C_AssortmentModuleTP

DDL: C_ASSORTMENTMODULETP Type: view_entity CONSUMPTION Package: RFM_MANAGE_ASSTMT_MODULES

Assortment Module

C_AssortmentModuleTP is a Consumption CDS View that provides data about "Assortment Module" in SAP S/4HANA. It reads from 1 data source (I_ExplicitAssortmentModuleTP) and exposes 11 fields with key field AssortmentModuleUUID. It is exposed through 1 OData service (UI_RFM_MNG_ASSTMT_MODULES). It is used in 1 Fiori application: Manage Assortment Modules. Part of development package RFM_MANAGE_ASSTMT_MODULES.

Data Sources (1)

SourceAliasJoin Type
I_ExplicitAssortmentModuleTP I_ExplicitAssortmentModuleTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Assortment Module view
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions true view
ObjectModel.representativeKey AssortmentModuleUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RFM_MNG_ASSTMT_MODULES UI_RFM_MNG_ASSTMT_MODULES V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F4892 Manage Assortment Modules Transactional An application to manage assortment modules.

Manage Assortment Modules

Business Role: Assortment Specialist - Retail

With this feature, you can select up to 1,000 products at a time to assign them to an assortment module version, including its follow-on versions.

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID AssortmentModuleUUID
AssortmentModuleName AssortmentModuleName
LastChangeDateTime LastChangeDateTime
LastChangedByUserName LastChangedByUserName
VersionValidityStartDate _CurrentVersion ValidityStartDate
VersionValidityEndDate _CurrentVersion ValidityEndDate
ValidityEndDate _MaxVersionValidityEnd ValidityEndDate
virtualUICT_CanBeTerminatedboolean
NumberOfFutureVersions _NrOfFutureVersions NumberOfFutureVersions
NumberOfUserAssignments _NrOfAssortmentUsers NumberOfUserAssignments
_User _User
@EndUserText.label: 'Assortment Module'
@AccessControl.authorizationCheck: #MANDATORY
@Metadata.allowExtensions: true
@ObjectModel: {
    representativeKey: 'AssortmentModuleUUID',
    semanticKey: ['AssortmentModuleName'],
    usageType : {
      serviceQuality: #C,
      sizeCategory: #M,
      dataClass: #MASTER
    }
  }
@AccessControl: {
  privilegedAssociations: ['_User']
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #CONSUMPTION
@VDM.usage.type: [#TRANSACTIONAL_PROCESSING_SERVICE]
define root view entity C_AssortmentModuleTP
  provider contract transactional_query
  as projection on I_ExplicitAssortmentModuleTP
  {
  key     AssortmentModuleUUID,

          @ObjectModel.text.element: ['AssortmentModuleObjectDesc']
          @Consumption.valueHelpDefinition: [{
            entity.name:    'I_ExplicitAssortmentModuleVH',
            entity.element: 'AssortmentModuleName'
          }]
          AssortmentModuleName,

          @Semantics.systemDate.lastChangedAt: true
          LastChangeDateTime,

          @Semantics.user.lastChangedBy: true
          LastChangedByUserName,

          @Semantics.businessDate.from: true
          _CurrentVersion.ValidityStartDate as VersionValidityStartDate,

          @Semantics.businessDate.to: true
          _CurrentVersion.ValidityEndDate   as VersionValidityEndDate,

          @Semantics.businessDate.to: true
          _MaxVersionValidityEnd.ValidityEndDate,

          @ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_RFM_ASM_CANBETERMINATD_FRMT'
  virtual UICT_CanBeTerminated : boolean,

          _NrOfFutureVersions.NumberOfFutureVersions,

          _NrOfAssortmentUsers.NumberOfUserAssignments,

          _Text                                                :  redirected to composition child C_AssortmentModuleTextTP,

          _AssortmentUser_2                 as _AssortmentUser : redirected to C_AsstmtMdlUserToAsstmtMdlTP,

          _Version                                             : redirected to C_AssortmentModuleVersionTP,

          @Semantics.text: true
          _Text.AssortmentModuleObjectDesc  as AssortmentModuleObjectDesc : localized,

          _User
}