You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »

Overview

Documents editing, tracking of changes, and workflows.

Information about Editing and Tracking Change

The mapping tool supports a variety of actions to edit map records, add notes, assign advice, etc.  All of the "map objects" (see Domain Model) are audited, meaning all changes to these objects are recorded with each commit.  Thus assignment of a new code, movement through the worfklow, addition of advice, and any other changes are recorded.  All prior states of map records can be searched and retrieved as needed.

Tracking Changes

There is no log of changes, per se, but each prior state of a map object can be viewed and read.  In the "mapped concept view" in the application, the prior history of a map record is shown, with the last state of each map record for a particular concept (within the focus project) being displayed.  Currently, there is no interface for seeing all of the incremental changes to a map record, though something like that would be fairly straightforward (but probably too fine-grained to be useful).

If editing causes any undesirable changes, admin tools can be developed to recover any prior state of a map record. 

Note, prior states of objects not audited cannot be recovered.  This is most important when considering changes in terminology content due to loading new versions, processing deltas (e.g. "drip feed") and tree position recomputation.  This is intentional to improve performance and limit the number of archived states.  Terminology objects include version information so auditing a change in version would cause an entire copy of the terminology to be recorded in the audit trails - this is the main reason they are not audited.

Origin ids

Map records undergo a complex workflow in which individual specialists edit their own copies of the record and submit them for comparison.  When conflicts are detected, new records owned by the corresponding lead are created and at that time, all current states for all the records are available for review by the lead.  A mechanism is used to connect the specialists' records to the lead record, called "origin ids".  When a record is created from another record (or collection of records), the origin ids of that record and that record's id itself are added as origin ids of the later record. What this means is that for any workflow, records retain information about the prior records that were used ultimately to generate them.   Thus the chain of "provenance" is recorded and can be searched.

At the moment, there are no services to query or use origin ids in sophisticated ways, however the tracking of what records lead to what other records is faithfully preserved and can be reported on.  Consider the following chain of events

  • A new concept C1 enters the workflow.
  • Two specialists each edit this concept leading to two map records M1 and M2.
  • Upon comparison, suppose there is a conflict.  This results in a lead-assigned map record M3 that has M1 and M2 as origins.
  • Later, the lead resolves the conflict and the record gets submitted for publication.
  • In this event, the specialists' records are removed (M1 and M2) and the lead's conflict resolution record (M3) gets a workflow status change to PUBLISHED.
  • Now, say in a future editing cycle an error is discovered in the lead-resolved record and another lead edits this record on the "fix error" path.
  • In this event a 4th record M4 is created and assigned to the editor and gets origin ids M1, M2, and M3.
  • Upon being completed, the record is submitted for review where another record M5 is created and assigned to the lead reviewing the error correction.  this record will have M1, M2, M3, and M4 as origin ids.  
  • Any subsequent changes will repeat the prior few steps, adding additional origins.   In this way, the complete history of the editing of this case can be tracked back and all information about workflow and changes can be recovered. 

Workflow Concepts

Following are the standard "workflow paths" that a record can follow while it is being edited. 

  • Non-legacy path
    • For unmapped, in scope concepts where we have no information about starting records
  • Legacy/Semi-automated path - UNIMPLEMENTED
    • For unmapped, in scope concepts where we have some information about starting records
  • Fix error path
    • For previously mapped and marked as PUBLISHED or READY_FOR_PUBLICATION where an error in target code, advice, or other information has been identified
  • QA path
    • For previously mapped and marked as PUBLISHED or READY_FOR_PUBLICATION that meet some QA criteria.
  • Consensus management path - UNIMPLEMENTED
    • For non-legacy or legacy path cases that need consensus review because they are particularly complicated.

Workflow Tracking Record

This domain object represents the complete known state of the workflow, including information about:

  • Assigned user count
  • Assigned users and workflow statuses
  • Concept terminologyId, terminology, version, and default preferred name
  • Map project id
  • Map records
  • Workflow path

  • Summary workflow status - an aggregation of statuses of the underlying map records.

Workflow Actions 

The workflow model is built around actions that affect the various workflows in a variety of ways.

  • ASSIGN_FROM_SCRATCH

    • Create and assign a record when no records for it exist yet.
  • ASSIGN_FROM_INITIAL_RECORD
    • Assign a record based on an existing record (e.g. for when correcting an error)
  • UNASSIGN
    • Return assigned work to the pool
  • SAVE_FOR_LATER 
    • Indicate that changes are in progress on a record.
  • FINISH_EDITING
    • Finalize work on a record.
  • PUBLISH
    • Send a finished record to publication
  • CANCEL
    • Cancels an editing operation on a record with no other changes (e.g. puts a "fix error path" map record back to a PUBLICATION status for REVISION).
  • CREATE_QA_RECORD 
    • Used by workflows that need to create records that are not yet assigned (e.g. QA records)


Workflow Paths

The mapping tool supports a number of different workflows that have different actions and state transition diagrams.  The currently supported (and planned) workflows include:

  • NON_LEGACY_PATH
    • Used when dual independent review is desired and there is no candidate starting point for the map.
  • LEGACY_PATH
    • Used when dual independent review is desired and there is a candidate starting point for the map.
  • FIX_ERROR_PATH
    • Used for fixing errors among published or ready for publication records.
  • REVIEW
    • Used when single review is desired and there may or may not be a starting point for the map.
  • QA_PATH
    • Used for addressing reported QA errors
  • CONSENSUS_PATH
    • Used for "consensus management" process - similar to non legacy path.
       

Workflow Status

Some workflow status values are reused by different paths and some are specific to certain workflow paths.

  • CONFLICT_DETECTED - when a conflict between two EDITING_DONE records is detected, the EDITING_DONE records are set to this.

  • CONFLICT_IN_PROGRESS - when a lead has started editing a conflict but not yet finished

  • CONFLICT_NEW - created when a conflict is detected

  • CONFLICT_RESOLVED - when a conflict is resolved but has not yet been sent to publication

  • CONSENSUS_IN_PROGRESS - unimplemented

  • CONSENSUS_NEEDED - unimplemented

  • CONSENSUS_NEW - unimplemented

  • EDITING_DONE - when a specialist clicks "Finished" on the editing screen
  • EDITING_IN_PROGRESS - when a specialist clicks "save for later"
  • NEW - when a specialist is assigned a record but has not made any changes yet.
  • PUBLISHED - published record
  • QA_IN_PROGRESS - when a specialist clicks "save for later" when editing a QA record
  • QA_NEEDED - created when QA is put into the workflow
  • QA_NEW - when QA work is assigned to a specialist
  • QA_RESOLVED - when a specialist is finished editing a QA record (but not yet ready to send to publication)
  • READY_FOR_PUBLICATION - when an edited/resolved record is sent back for publiction, the terminal status for editing
  • REVIEW_IN_PROGRESS - when a lead has "saved for later" a REVIEW_NEW record. 
  • REVIEW_NEEDED - created when a specialist is finished working on a record in the REVIEW or FIX_ERROR path
  • REVIEW_NEW - when a lead is reviewing a specialists' work that was done on the REVIEW or FIX_ERROR path
  • REVIEW_RESOLVED - when a lead is finished work on a review or fix error record.
  • REVISION - when a PUBLISHED record is being edited, it gets changed to this status
  • READY_FOR_PUBLICATION - when comparison finds two specialists' records are equivalent, or when a lead resolves a conflict.

Workflow Path Documentation

The supported workflow paths are described in detail here.

Non-legacy Workflow Path

The Non-Legacy Workflow Path describes the process by which a concept is mapped independently by two specialists, with conflicts arising resolved by the lead.

INITIAL STATE:

  • A tracking record for the concept to be mapped has been created by Compute Workflow.
  • No map records exist for this concept and project.

FINAL STATE:

  • No tracking record exists for this concept and project.
  • A single map record marked READY_FOR_PUBLICATION exists.

 

Workflow Status CombinationActionResultTrigger

The combinations of map records that exist for a given
workflow state.
Each combination is listed on a new line.
Where multiple
records exist for a single combination, they
are linked with a plus sign (+),
e.g.
EDITING_DONE + EDITING_IN_PROGRESS.
The current user's record (if any) is marked in bold.

The legal actions that can be
requested for each workflow
status combination.
Description of map records added, modified, or deleted as a result
of the requested action. 
User action in Mapping Tool resulting in requested action.
Specialist Level Work: User's record marked in bold

[NO RECORDS – INITIAL STATE ]
NEW
EDITING_IN_PROGRESS
EDITING_DONE

ASSIGN_FROM_SCRATCHRecord created with NEW status.User clicks Assign Concept on Available Work widget
NEWSAVE_FOR_LATERSpecialist's record saved without validation and
set to EDITING_IN_PROGRESS.
Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved and marked EDITING_DONE. 
Specialist clicks Finish from Map Record editing page.
UNASSIGNSpecialist's record deleted.Specialist clicks Unassign on Assigned Work widget.
EDITING_IN_PROGRESSSAVE_FOR_LATERSpecialist's record saved without validation. No workflow modification.Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved and marked EDITING_DONE. 

Specialist clicks Finish from either:

  • Map Record editing page, or
  • Assigned Work widget.
UNASSIGNSpecialist's record deleted.Specialist clicks Unassign on Assigned Work widget.
EDITING_DONESAVE_FOR_LATERSpecialist's record saved without validation. No workflow modification.Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved. No workflow modification. 
Specialist clicks Finish from Map Record editing page.
UNASSIGNSpecialist's record deleted.Specialist clicks Unassign on Assigned Work widget.

NEW + NEW
NEW + EDITING_IN_PROGRESS
NEW + EDITING_DONE

SAVE_FOR_LATERSpecialist's record saved without validation and
set to EDITING_IN_PROGRESS.

Specialist clicks Save For Later on Map Record editing page.

FINISH_EDITING

Specialist's record validated. If record valid:

  • If EDITING_DONE record exists:
    • Compare this record to EDITING_DONE record.
    • If conflict detected, set both records to CONFLICT_DETECTED
    • If conflict not detected
      • Set user's record to READY_FOR_PUBLICATION
      • Delete second CONFLICT_DETECTED record
      • Delete tracking record
  • IF EDITING_DONE record does not exist:
    • set user's record to EDITING_DONE

Specialist clicks Finish from Map Record editing page.

 

UNASSIGNSpecialist's record deleted.Specialist clicks Unassign on Assigned Work widget.

EDITING_IN_PROGRESS + NEW
EDITING_IN_PROGRESS + EDITING_IN_PROGRESS
EDITING_IN_PROGRESS + EDITING_DONE

SAVE_FOR_LATERSpecialist's record saved without validation. No workflow change.Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITING

Specialist's record validated. If record valid:

  • If EDITING_DONE record exists:
    • Compare this record to EDITING_DONE record.
    • If conflict detected, set both records to CONFLICT_DETECTED
    • If conflict not detected
      • Set user's record to READY_FOR_PUBLICATION
      • Delete second CONFLICT_DETECTED record
      • Delete tracking record
  • IF EDITING_DONE record does not exist:
    • set user's record to EDITING_DONE

Specialist clicks Finish from either:

  • Map Record editing page, or
  • Assigned Work widget
UNASSIGNSpecialist's record deleted.Specialist clicks Unassign on Assigned Work widget

EDITING_DONE + NEW
EDITING_DONE + EDITING_IN_PROGRESS

SAVE_FOR_LATERSpecialist's record saved without validation. No workflow change.Specialist clicks Save For Later on Map Record editing page
FINISH_EDITINGSpecialist's record validated. If validation successful, record saved.

Specialist clicks Finish from Map Record editing page.

UNASSIGNSpecialist's record deleted.User clicks Unassign on Assigned Work widget
CONFLICT_DETECTED + CONFLICT_DETECTED

 



SAVE_FOR_LATER

Specialist's record saved without validation. No workflow change.User clicks Save for Later on Map Record editing page.
FINISH_EDITING

Specialist's record validated. If validation successful, compare this
record to second CONFLICT_DETECTED record:

  • If conflict detected, save record. No workflow modification
  • If conflict not detected
    • Set user's record to READY_FOR_PUBLICATION
    • Delete second CONFLICT_DETECTED record
    • Delete tracking record
User clicks Finish on Map Record editing page. 
UNASSIGN

Specialist's record deleted.
Remaining CONFLICT_DETECTED record set to EDITING_DONE. 

Specialist clicks Unassign on Assigned Work widget 
ASSIGN_FROM_SCRATCHRecord created with CONFLICT_NEW statusLead clicks Assign Conflict from Available Work widget.
Lead Level Work: User's record is marked in bold

CONFLICT_DETECTED
+ CONFLICT_DETECTED
+ CONFLICT_NEW

SAVE_FOR_LATERLead's record saved without validation
and marked CONFLICT_IN_PROGRESS.
Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITING

Lead's record validated. If validation successful, lead's record
saved and marked CONFLICT_RESOLVED

Lead clicks Finish from Compare Records editing page.

UNASSIGNLead's record deleted.Lead clicks Unassign on Assigned Work widget.

CONFLICT_DETECTED
+ CONFLICT_DETECTED
+ CONFLICT_IN_PROGRESS

SAVE_FOR_LATERLead's record saved without validation. No workflow change.Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITINGLead's record validated. If validation successful, lead's record
saved and marked CONFLICT_RESOLVED

Lead clicks Finish from either:

  • Compare Records editing page
  • Assigned Work widget
UNASSIGNLead's record deletedLead clicks Unassign on Assigned Work widget.

CONFLICT_DETECTED
+ CONFLICT_DETECTED
+ CONFLICT_RESOLVED




SAVE_FOR_LATERLead's record saved without validation. No workflow change.Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITINGLead's record validated. If validation successful, lead's record
saved and marked CONFLICT_RESOLVED

Lead clicks Finish from Compare Records editing page.

PUBLISH

Lead's record set to READY_FOR_PUBLICATION.
Records marked CONFLICT_DETECTED deleted.
Tracking record deleted.

LEADS TO FINAL STATE.

Lead clicks Publish from Assigned Work widget.
UNASSIGNLead's record deleted.Lead clicks Unassign on Assigned Work widget.

Description of workflow combinations

This section describes each possible combination of workflow statuses attached to a tracking record for a concept and project.

Status 1Status 2Status 3Explanation
NEW  

One specialist has claimed the concept, but has not begun editing

EDITING_IN_PROGRESS  One specialist has begun editing, and has saved work.
EDITING_DONE  One specialist has completed editing.
NEWNEW Two specialists have claimed the concept, but neither have begun editing.
NEWEDITING_IN_PROGRESS Two specialists have claimed the concept. The first has not begun editing; the second has saved editing work.
NEWEDITING_DONE Two specialists have claimed the concept. The first has not begun editing; the second has completed editing.
EDITING_IN_PROGRESSEDITING_IN_PROGRESS Two specialists are both still editing records.
EDITING_IN_PROGRESSEDITING_DONE One specialist has finished editing the record and the other is still editing.
EDITING_DONEEDITING_DONE Exists only temporarily until conflict analysis occurs, at which point either a conflict is detected and the status changes, or a conflict is not detected and these records are removed.
CONFLICT_DETECTEDCONFLICT_DETECTED Two specialists have completed work, and mappings are in conflict. Requires lead review.
CONFLICT_DETECTEDCONFLICT_DETECTEDCONFLICT_NEWA lead has claimed a conflict for review, but has not begun editing.
CONFLICT_DETECTEDCONFLICT_DETECTEDCONFLICT_IN_PROGRESSA lead has begun resolving a conflict, and has saved work.
CONFLICT_DETECTEDCONFLICT_DETECTEDCONFLICT_RESOLVEDA lead has finished reviewing a conflict.

Legacy Workflow Path

UNIMPLEMENTED


Consensus Workflow Path

UNIMPLEMENTED


Fix Error Workflow Path

The Fix Error Workflow Path describes the process by which a concept with publication-ready mappings is inserted into the workflow by a specialist or lead for re-editing.  The edited record is then reviewed by a lead.

INITIAL STATE:

  • No tracking record exists for this concept and project.
  • A single publication-ready (PUBLISHED, READY_FOR_PUBLICATION) map record exists for this concept and project.

FINAL STATE:

  • No tracking record exists for this concept and project.
  • A single map record marked READY_FOR_PUBLICATION exists.

 

Workflow Status CombinationActionResultTrigger

The combinations of map records that exist for a given
workflow state.
Each combination is listed on a new line.
Where multiple
records exist for a single combination, they
are linked with a plus sign (+),
e.g.
EDITING_DONE + EDITING_IN_PROGRESS.
The current user's record (if any) is marked in bold.

The legal actions that can be
requested for each workflow
status combination.
Description of map records added, modified, or deleted as a result
of the requested action. 
User action in Mapping Tool resulting in requested action.
Specialist Level Work: User's record marked in bold

READY_FOR_PUBLICATION
PUBLICATION 

INITIAL STATE: No tracking record

ASSIGN_FROM_INITIAL_RECORD

Map record marked PUBLISHED or READY_FOR_PUBLICATION is
marked REVISION.
Record created with NEW status.

User clicks Edit Record on either:

  • Project Records page
  • Concept Records page
REVISION + NEWSAVE_FOR_LATERSpecialist's record saved without validation and
set to EDITING_IN_PROGRESS.
Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved and marked REVIEW_NEEDED.
Specialist clicks Finish from Map Record editing page.
UNASSIGNSpecialist's record deleted.
Record marked REVISION marked as previous workflow state
(either PUBLISHED or READY_FOR_PUBLICATION) 
Specialist clicks Unassign on Assigned Work widget.
REVISION + EDITING_IN_PROGRESSSAVE_FOR_LATERSpecialist's record saved without validation. No workflow modification.Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved and marked REVIEW_NEEDED.

Specialist clicks Finish from either:

  • Map Record editing page, or
  • Assigned Work widget.
UNASSIGNSpecialist's record deleted.
Record marked REVISION marked as previous workflow state
(either PUBLISHED or READY_FOR_PUBLICATION)
Specialist clicks Unassign on Assigned Work widget.
REVISION + REVIEW_NEEDEDSAVE_FOR_LATERSpecialist's record saved without validation. No workflow modification.Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved. No workflow modification. 
Specialist clicks Finish from Map Record editing page.
UNASSIGNSpecialist's record deleted.
Record marked REVISION marked as previous workflow state
(either PUBLISHED or READY_FOR_PUBLICATION)
Specialist clicks Unassign on Assigned Work widget.
ASSIGN_FROM_SCRATCHRecord created with REVIEW_NEW statusLead clicks Assign on Available Work widget
Lead Level Work: User's record is marked in bold

REVISION
+ REVIEW_NEEDED
+ REVIEW_NEW

SAVE_FOR_LATERLead's record saved without validation
and marked REVIEW_IN_PROGRESS.
Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITING

Lead's record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

Lead clicks Finish from Compare Records editing page.

UNASSIGNLead's record deleted.Lead clicks Unassign on Assigned Work widget.

REVISION
+
REVIEW_NEEDED
+ REVIEW_IN_PROGRESS

SAVE_FOR_LATERLead's record saved without validation. No workflow change.Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITINGLead's record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

Lead clicks Finish from either:

  • Compare Records editing page
  • Assigned Work widget
UNASSIGNLead's record deletedLead clicks Unassign on Assigned Work widget.

REVISION
+
REVIEW_NEEDED
+ REVIEW_RESOLVED



SAVE_FOR_LATERLead's record saved without validation. No workflow change.Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITINGLead's record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

Lead clicks Finish from Compare Records editing page.

PUBLISH

Lead's record set to READY_FOR_PUBLICATION.
Record marked REVIEW_NEEDED deleted.
Record marked REVISION deleted.
Tracking record deleted.

LEADS TO FINAL STATE.

Lead clicks Publish from Assigned Work widget.
UNASSIGNLead's record deleted.Lead clicks Unassign on Assigned Work widget.

Description of workflow combinations

This section describes each possible combination of workflow statuses attached to a tracking record for a concept and project.

Status 1Status 2Status 3Explanation
REVISIONNEW 

One specialist has claimed the concept from the publication-ready map records, but has not begun editing

REVISIONEDITING_IN_PROGRESS One specialist has begun editing, and has saved work.
REVISIONREVIEW_NEEDED One specialist has completed editing.
REVISIONREVIEW_NEEDEDREVIEW_NEWA lead has claimed specialist's work for review, but has not begun editing.
REVISIONREVIEW_NEEDEDREVIEW_IN_PROGRESSA lead has begun reviewing the specialist's work, and has saved work.
REVISIONREVIEW_NEEDEDREVIEW_RESOLVEDA lead has finished reviewing the specialist's work.

Review Project Workflow Path

The Review Project Workflow Path describes the process by which a concept is mapped by a single specialist, whose work is then reviewed by a Lead.

INITIAL STATE:

  • A tracking record for the concept to be mapped has been created by Compute Workflow.
  • No map records exist for this concept and project.

FINAL STATE:

  • No tracking record exists for this concept and project.
  • A single map record marked READY_FOR_PUBLICATION exists.

 

Workflow Status CombinationActionResultTrigger

The combinations of map records that exist for a given
workflow state.
Each combination is listed on a new line.
Where multiple
records exist for a single combination, they
are linked with a plus sign (+),
e.g.
EDITING_DONE + EDITING_IN_PROGRESS.
The current user's record (if any) is marked in bold.

The legal actions that can be
requested for each workflow
status combination.
Description of map records added, modified, or deleted as a result
of the requested action. 
User action in Mapping Tool resulting in requested action.
Specialist Level Work: User's record marked in bold

[NO RECORDS – INITIAL STATE ]

ASSIGN_FROM_SCRATCHRecord created with NEW status.User clicks Assign Concept on Available Work widget
NEWSAVE_FOR_LATERSpecialist's record saved without validation and
set to EDITING_IN_PROGRESS.
Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved and marked REVIEW_NEEDED. 
Specialist clicks Finish from Map Record editing page.
UNASSIGNSpecialist's record deleted.Specialist clicks Unassign on Assigned Work widget.
EDITING_IN_PROGRESSSAVE_FOR_LATERSpecialist's record saved without validation. No workflow modification.Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved and marked REVIEW_NEEDED. 

Specialist clicks Finish from either:

  • Map Record editing page, or
  • Assigned Work widget.
UNASSIGNSpecialist's record deleted.Specialist clicks Unassign on Assigned Work widget.
REVIEW_NEEDEDSAVE_FOR_LATERSpecialist's record saved without validation. No workflow modification.Specialist clicks Save For Later on Map Record editing page.
FINISH_EDITINGSpecialist's record validated. If validation successful, specialist's record
saved. No workflow modification. 
Specialist clicks Finish from Map Record editing page.
UNASSIGNSpecialist's record deleted.Specialist clicks Unassign on Assigned Work widget.
ASSIGN_FROM_SCRATCHRecord created with REVIEW_NEW statusLead clicks Assign on Available Work widget
Lead Level Work: User's record is marked in bold

REVIEW_NEEDED + REVIEW_NEW

SAVE_FOR_LATERLead's record saved without validation
and marked REVIEW_IN_PROGRESS.
Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITING

Lead's record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

Lead clicks Finish from Compare Records editing page.

UNASSIGNLead's record deleted.Lead clicks Unassign on Assigned Work widget.

REVIEW_NEEDED + REVIEW_IN_PROGRESS

SAVE_FOR_LATERLead's record saved without validation. No workflow change.Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITINGLead's record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

Lead clicks Finish from either:

  • Compare Records editing page
  • Assigned Work widget
UNASSIGNLead's record deletedLead clicks Unassign on Assigned Work widget.

REVIEW_NEEDED + REVIEW_RESOLVED



SAVE_FOR_LATERLead's record saved without validation. No workflow change.Lead clicks Save for Later on Compare Records editing page.
FINISH_EDITINGLead's record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

Lead clicks Finish from Compare Records editing page.

PUBLISH

Lead's record set to READY_FOR_PUBLICATION.
Record marked REVIEW_NEEDED deleted.
Tracking record deleted.

LEADS TO FINAL STATE.

Lead clicks Publish from Assigned Work widget.
UNASSIGNLead's record deleted.Lead clicks Unassign on Assigned Work widget.

Description of workflow combinations

This section describes each possible combination of workflow statuses attached to a tracking record for a concept and project.

Status 1Status 2Explanation
NEW 

One specialist has claimed the concept, but has not begun editing

EDITING_IN_PROGRESS One specialist has begun editing, and has saved work.
REVIEW_NEEDED One specialist has completed editing.
REVIEW_NEEDEDREVIEW_NEWA lead has claimed specialist's work for review, but has not begun editing.
REVIEW_NEEDEDREVIEW_IN_PROGRESSA lead has begun reviewing the specialist's work, and has saved work.
REVIEW_NEEDEDREVIEW_RESOLVEDA lead has finished reviewing the specialist's work.

 


QA Workflow Path

The QA Workflow Path describes the process by which a concept with publication-ready mappings is inserted into the workflow by an admin or through the QA report process.  The concept is available to either specialists or leads, and requires only one-step review before being marked publication-ready.

INITIAL STATE:

  • No tracking record exists for this concept and project.
  • A single publication-ready (PUBLISHED, READY_FOR_PUBLICATION) map record exists for this concept and project.

FINAL STATE:

  • No tracking record exists for this concept and project.
  • A single map record marked READY_FOR_PUBLICATION exists.

 

Workflow Status CombinationActionResultTrigger

The combinations of map records that exist for a given
workflow state.
Each combination is listed on a new line.
Where multiple
records exist for a single combination, they
are linked with a plus sign (+),
e.g.
EDITING_DONE + EDITING_IN_PROGRESS.
The current user's record (if any) is marked in bold.

The legal actions that can be
requested for each workflow
status combination.
Description of map records added, modified, or deleted as a result
of the requested action. 
User action in Mapping Tool resulting in requested action.
Specialist or Lead Work: User's record is marked in bold

READY_FOR_PUBLICATION
PUBLICATION 

INITIAL STATE: No tracking record

CREATE_QA_RECORD

Map record marked PUBLISHED or READY_FOR_PUBLICATION is
marked REVISION.
Record created with QA_NEEDED status, owner set to "qa"

User clicks Edit Record on either:

  • Project Records page
  • Concept Records page
REVISION + QA_NEEDEDUNASSIGN

NOT YET IMPLEMENTED

Will remove the QA record and return the REVISION record to its earlier
PUBLISHED or READY_FOR_PUBLICATION status 

N/A

REVISION
+ QA_NEEDED
+ REVIEW_NEW

SAVE_FOR_LATERUser's record saved without validation
and marked REVIEW_IN_PROGRESS.
User clicks Save for Later on Compare Records editing page.
FINISH_EDITING

Users record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

User clicks Finish from Compare Records editing page.

UNASSIGNUser's record deleted.User clicks Unassign on Assigned Work widget.

REVISION
+ QA_NEEDED
+ REVIEW_IN_PROGRESS

SAVE_FOR_LATERUser's record saved without validation. No workflow change.User clicks Save for Later on Compare Records editing page.
FINISH_EDITINGUser's record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

User clicks Finish from either:

  • Compare Records editing page
  • Assigned Work widget
UNASSIGNUser's record deletedUser clicks Unassign on Assigned Work widget.

REVISION
+ QA_NEEDED
+ REVIEW_RESOLVED



SAVE_FOR_LATERUser's record saved without validation. No workflow change.User clicks Save for Later on Compare Records editing page.
FINISH_EDITINGUser's record validated. If validation successful, lead's record
saved and marked REVIEW_RESOLVED

User clicks Finish from Compare Records editing page

PUBLISH

User's record set to READY_FOR_PUBLICATION.
Record marked REVIEW_NEEDED deleted.
Record marked REVISION deleted.
Tracking record deleted.

LEADS TO FINAL STATE.

User clicks Publish from Assigned Work widget.
UNASSIGNUser's record deleted.User clicks Unassign on Assigned Work widget.

Description of workflow combinations

This section describes each possible combination of workflow statuses attached to a tracking record for a concept and project.

Status 1Status 2Status 3Explanation
REVISIONQA_NEEDED 

Concept with publication-ready mapping has been marked for QA

REVISIONQA_NEEDEDREVIEW_NEWUser has claimed the concept marked for QA, but has not begun editing.
REVISIONQA_NEEDEDREVIEW_IN_PROGRESSUser has begun QA editing, and has saved work.
REVISIONQA_NEEDEDREVIEW_RESOLVEDUser has completed QA editing.

 

 

 

  • No labels