I_EXTERNALASSORTMENTMODULE

CDS View

UUID, Change Date/Time for Ext. Product Assgmt to Store

I_EXTERNALASSORTMENTMODULE is a CDS View in S/4HANA. UUID, Change Date/Time for Ext. Product Assgmt to Store. It contains 2 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ExternalStoreListingTP view_entity inner TRANSACTIONAL Product Assignment to Store by External Source

Fields (2)

KeyField CDS FieldsUsed in Views
LastChangeDate LastChangeDate 1
LastChangeDateTime LastChangeDateTime 1
@AbapCatalog.sqlViewName: 'IEXTASMNAME'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@EndUserText.label: 'UUID, Change Date/Time for Ext. Product Assgmt to Store'

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM: {
  viewType: #BASIC,

  lifecycle: {
    contract: {
      type: #PUBLIC_LOCAL_API
    }
  }
}
@ObjectModel: {
    usageType: {
        serviceQuality: #A,
        sizeCategory: #XL,
        dataClass: #MASTER
   }
}
@AccessControl: {
  authorizationCheck: #CHECK
}

define view I_ExternalAssortmentModule
  as select from rfm_asm_extern
{
  key module_guid     as AssortmentModuleUUID,
      last_changed_at as LastChangeDateTime,
      TSTMP_TO_DATS( last_changed_at, $session.user_timezone, $session.client, 'NULL' ) as LastChangeDate
}