C_AssortmentModuleVersionTP

DDL: C_ASSORTMENTMODULEVERSIONTP Type: view_entity CONSUMPTION

Assortment Module Version

C_AssortmentModuleVersionTP is a Consumption CDS View that provides data about "Assortment Module Version" in SAP S/4HANA. It reads from 1 data source (I_ExplicitAsstmtMdlVersionTP) and exposes 10 fields with key field AssortmentModuleVersionUUID. It is exposed through 1 OData service (UI_RFM_MNG_ASSTMT_MODULES). It is used in 1 Fiori application: Manage Assortment Modules.

Data Sources (1)

SourceAliasJoin Type
I_ExplicitAsstmtMdlVersionTP I_ExplicitAsstmtMdlVersionTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Assortment Module Version view
AccessControl.authorizationCheck #CHECK view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey AssortmentModuleVersionUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER 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 (10)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleVersionUUID AssortmentModuleVersionUUID
ValidityStartDate ValidityStartDate
ValidityEndDate ValidityEndDate
AssortmentModuleUUID AssortmentModuleUUID
LastChangeDateTime LastChangeDateTime
LastChangedByUserName LastChangedByUserName
IsExpired IsExpired
AssortmentModuleVersionDescILL AssortmentModuleVersionDescILL
_ModuleredirectedtoC_AssortmentModuleTP
_User _User
@EndUserText.label: 'Assortment Module Version'
@AccessControl.authorizationCheck: #CHECK
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
    representativeKey: 'AssortmentModuleVersionUUID',
    semanticKey: ['AssortmentModuleVersionUUID'],
    usageType: {
        serviceQuality: #C,
        sizeCategory: #M,
        dataClass: #MASTER
   }
}
@AccessControl: {
  privilegedAssociations: ['_User']
}
@VDM.viewType: #CONSUMPTION
@VDM.usage.type: [#TRANSACTIONAL_PROCESSING_SERVICE]
define root view entity C_AssortmentModuleVersionTP
  provider contract transactional_query
  as projection on I_ExplicitAsstmtMdlVersionTP
{
          @ObjectModel.text.element: ['AssortmentModuleVersionDescILL']
  key     AssortmentModuleVersionUUID,

          ValidityStartDate,
          ValidityEndDate,
          AssortmentModuleUUID,
          LastChangeDateTime,

          @Semantics.user.lastChangedBy: true
          @Semantics.user.id: true
          LastChangedByUserName,

          @ObjectModel.filter.transformedBy: 'ABAP:CL_RFM_ASM_ISEXPIRED_TRANSFORM'
          IsExpired,

          @Semantics.text: true
          AssortmentModuleVersionDescILL,

          _Product : redirected to C_ProductToAssortmentMdlVersTP,

          _Text    : redirected to composition child C_AssortmentMdlVersionTextTP,

          _Module  : redirected to C_AssortmentModuleTP,

          _User
}