Interface ISFdmuRunCustomAddonJob

The currently running migration job. This object holds array of Tasks.

Export

Interface

ISFdmuRunCustomAddonJob

Hierarchy

  • ISFdmuRunCustomAddonJob

Properties

Methods

Properties

The migration Tasks related to this Job.

Memberof

ISFdmuRunCustomAddonJob

Methods

  • Finds the sobject by the provided field path, then returns the Task, associated with this sobject. This method can help you to locate and access the source/target records which contain the desired field.

    Returns

    Returns the Task and the field name, for example { task: [Task of Text2__c], field: 'Name' }

    Memberof

    ISFdmuRunCustomAddonJob

    Parameters

    • fieldPath: string

      The full field path to the field, e.g. Account.Test1__r.Text2__r.Name. In this case the method will find the sobject referenced by the lookup field Text2__c. So you will be able to access the records of this sobject including the desired Name field.

    Returns {
        field: string;
        task: ISFdmuRunCustomAddonTask;
    }

Generated using TypeDoc  |  SFDMU Help Center  |  View on Github