Adding Columns to the Impact Matrix

Hi all,

Aside from adding the relevant lines to the  Express ECO ImpactMatrixGrid, is there something else I need to edit to add the columns? My new column is appearing as undefined.

Parents Reply Children
  • I got it working. I had to update 'Express ECO GetDataSource' as well to account for the additional property - here specifically, beginning at line 128 -

    String itemQueryAMLTemplate =
    "<AML>" +
    " <Item type='{0}' action='get' select='id, name, item_number, major_rev, state, keyed_name{3}, has_change_pending'>" +
    " <generation condition='is not null'>%</generation>" +
    " <Relationships>" +
    " <Item type='{1}' action='get' select='source_id, related_id(id, name, item_number, major_rev, state, keyed_name{4}), quantity, sort_order{5}'>" +
    " <OR>" +
    " <source_id condition='in'>{2}</source_id>" +
    " <AND>" +
    " <related_id condition='in'>{2}</related_id>";

    I added the has_change_pending property to the aml.

    Now it shows the values - 1 or 0 for the bool, just need to modify the return statements I believe to reflect more user friendly text.