Home Asset Management
Options

How do I map a DateTime field in the portal back to a property in a MP so that it replicates?

Raul_NoaRaul_Noa Customer IT Monkey ✭
I added 3 new DateTime properties to the Cireson software asset class extension management pack. Now I am modifying inetpub\CiresonPortal\CustomSpace\SoftwareAsset.js to include these properties. They are not mapping correctly, so there is no replication of these properties between the portal and console. What am I doing wrong? Here is my code:

name: 'Support Dates',
rows: [
{
columnFieldList: [
  { DataType: 'DateTime', PropertyDisplayName: 'End of Support', PropertyName: 'ANEndofService', ClassId: 'efa5f91a-a250-a61f-f2e3-6dfe79ee5d23' },
  { DataType: 'DateTime', PropertyDisplayName: 'End of Marketing', PropertyName: 'ANEndofMarketing', ClassId: 'efa5f91a-a250-a61f-f2e3-6dfe79ee5d23' },
  { DataType: 'DateTime', PropertyDisplayName: 'End of Life', PropertyName: 'ANEndofLife', ClassId: 'efa5f91a-a250-a61f-f2e3-6dfe79ee5d23' }
]
}
]

Best Answer

  • Options
    Raul_NoaRaul_Noa Customer IT Monkey ✭
    Answer ✓
    Case sensitive!! EndofLife vs EndOfLife

Answers

  • Options
    Raul_NoaRaul_Noa Customer IT Monkey ✭
    Answer ✓
    Case sensitive!! EndofLife vs EndOfLife
This discussion has been closed.