Making fields Requirement fields required QC/ALM 11
Question ID: 104783
0
0

In QC 11 there is no checkbox in the customization menu to make fields required when a requirement is submitted. How can I make fields other that the ones that are defaultly required show up as required?

Marked as spam
Posted by (Questions: 98, Answers: 0)
Asked on January 3, 2013 9:20 pm
73 views
Answers (3)
0
Private answer

Here is the subroutine called Sub SetFieldApp(FieldName, Vis, Req, PNo, VOrder)
To show a field as 'Required' replace with 'True'
SetFieldApp ''BG_USER_01'', True, True, 0, 0

if not False
SetFieldApp ''BG_USER_01'', True, False, 0, 0

Marked as spam
Posted by (Questions: 0, Answers: 2)
Answered on December 15, 2015 4:54 pm
0
Sub SetFieldApp( FieldName, Vis, Req, PNo, VOrder ) 'Sets a field's appearance With Bug_Fields(FieldName) .IsVisible = Vis .IsRequired = Req .PageNo = PNo .ViewOrder = VOrder End With End Sub Then do this.. SetFieldApp ''BG_USER_01'', True, True, 0, 0
( at December 15, 2015 4:56 pm)
1
Private answer

The proper way to do this in QC 11 is by selecting the requirement types under customization then for each requirement type, select the system fields tab or user defined fields tab, then select or un-select the Required check box. You will need to perform this for each requirement type.

Marked as spam
Posted by (Questions: 100, Answers: 5)
Answered on April 3, 2013 9:42 pm
0
Private answer

Paste the following code into Workflow code in the Req_New and Req_MoveTo subroutines. Replace the ''RQ_USER_02'' with the field that you want to be required.

Req_Fields.field(''RQ_USER_02'').IsRequired=True

Marked as spam
Posted by (Questions: 0, Answers: 364)
Answered on January 3, 2013 9:23 pm
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top