Skip to content

Unmanaged association support for Change tracking #159

Closed
@vishalsharma190596

Description

@vishalsharma190596

Hi Team,

We are using the Change tracking plugin for a production application and need your support to handle the requirements below.

This is how our current Entities look like where the Change tracking works well.

entity CustomerTracker : managed {
    key ID                             : String;
        customerName          : String;
        progress                     : Composition of many CustomerProgress
                                                                  on progress.cm = $self;
}
entity CustomerProgress : cuid, managed {
        cm                                : Association to CustomerTracker;
        progressDate               : Date @changelog;
}

Now we want to introduce another key field in CustomerTracker entity to store the solution area so we can track the same Customers with different Solution areas. Below are the changes with the solution area.

entity CustomerTracker : managed {
    key ID                             : String;
    key solution                    : String;
        customerName           : String;
        progress                      : Composition of many CustomerProgress
                                             on  progress.customerId = ID
                                             and progress.solution   = solution;
}
entity CustomerProgress : cuid, managed {
        customerId                   : String;
        solution                        : String;
        ct                                : Association to CustomerTracker;
        progressDate               : Date @changelog;
}

With this change, the app works well but it is not show any Changes in the Change Tracking Facet.

Thanks & Regards,
Vishal Sharma

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions