I_EXTERNALASSORTMENTMODULE
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)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_ExternalStoreListingTP | view_entity | inner | TRANSACTIONAL | Product Assignment to Store by External Source |
Fields (2)
| Key | Field | CDS Fields | Used 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
}