Engineering Requirements Management

 View Only
  • 1.  RegEx question

    Posted Tue June 22, 2021 02:56 PM

    Hello c:

    Could you help me please?,

    I´m new working with Doors and with RegEx and I have a little problem.

    I have an attribute that storage comments (c_Review_Comment) that content comments about some requirement like issue, recommendation, observation, ... and when the topic is checked normally we close it with the Doors option "ALL_ACTIONS_DONE" .

    My problem is that sometimes the time forget to close it and left the comment open, I would like to create a filter using a regex that could filter in the attribute "c_Review_Comment" all the comments that are not empty and also that not finished with "ALL_ACTIONS_DONE"

    at the moment this is my RegEX:

    c_Review_Comment is not empty AND NOT (Attribute 'c_Review_Comment' contains 'ALL_ACTIONS_DONE\n$')

    When I apply it individually each filter works but when I try to concatenate it doesn´t work.

    Thanks a lot!





    #Support
    #DOORS
    #Sustainability
    #SupportMigration
    #EngineeringRequirementsManagement


  • 2.  RE: RegEx question

    Posted Tue June 22, 2021 07:24 PM

    I had this configuration at my doors filter section:

    attribute: c_Review_Comment

    Condition: Contains

    Checkbox checked: Match case and Regular Expression





    #EngineeringRequirementsManagement
    #DOORS
    #SupportMigration
    #Support
    #Sustainability


  • 3.  RE: RegEx question

    Posted Tue June 22, 2021 08:15 PM

    Later of working hard and learn more about doors this is teh final script:

    (((c_This_is_a == nonfunctional_requirement) OR (c_This_is_a == functional_requirement)) AND (((c_Verification_method includes SyIT_SYSY) OR (c_Verification_method includes SyIT)) OR (c_Verification_method includes SyT))) AND (c_Maturity != invalid)





    #Sustainability
    #EngineeringRequirementsManagement
    #SupportMigration
    #Support
    #DOORS