I have a requirement where the property is a value list and is containing local list, now we have two sets of local lists one for newly created cases and an old list for the existing cases.
Need some help on how to achieve this, since there is no specialize by circumstance for properties.
@gamir You can refer to datapage in the property.. in turn datapage to datatable and data transform or data transform alone to populate the values.(parameter to datapage is pxcreatedatetime of case.. if its before cut off date old value list to be populated, if its after cut off date then new value list should be populated )
or if its very small list , you can also do it in pre datatransform by checking pxcreatedatetime of case.
@gamir I would suggest to make use of a data table(apart from required columns also add an EffectiveDateTime column) to store the old new values retrieved via a parameterized(EffectiveDateTime) datapage.
This is a valid approach but since the list only changes once in a while we are looking for any other alternative where we can have option of only altering the local list in the property it self.
@gamir Couldn’t achieve it through the existing property, created a new property with new set of dropdown and used DT to set the old property, so as to not replace the old property where ever it is being used.