Hello,
We are migrating a client from 6.1.2 to 7.1.1. In their 6.1.2 environment they have a script that creates deferred operations to generate an event for process generation using classes from the VI.DB.DeferredOperations namespace. Here is the code snippet:
Dim newEffDate As DateTime = resEffectiveDate.AddHours(1.0) Dim saveTask As DeferredOperations.DeferredJobGenTask saveTask = New DeferredOperations.DeferredJobGenTask("SAVE_LATER", params) Dim op As DeferredOperations.DeferredOperation op = New DeferredOperations.DeferredOperation(obj, saveTask, newEffDate) op.Save()
However, v7.1.1 does not have the DeferredOperation and DeferredJobGenTask classes. Is there an alternative approach to get this done in v7.1.1?
This is similar to the forum post below where the OP is trying to create deferred operations to save objects instead of generating events:
Thanks in advance,
Febin