During file checkout from Clearcase i want the CQ to list the CQ ID specific to the user .
For this i am tring to modify config.plbut it is listing all the bugs but not the one specific to the suer .
i used the below configuration .
$s = &DefineCQSchema(NAME=>"MainSchema",
ENTITY_LIST => "EnhancementRequest",
RESTRICTIONS => "STANDARD");
$s->ChangeFieldMap(OWNER => "Owner",STATE => "State",
ID => "id", #Note: ID shouldn't need to change
HEADLINE => "Headline",
PRIORITY => "Priority",
######### SEVERITY => "Severity",
RATL_MASTERSHIP => "ratl_mastership",
# Other mappable names
QUERY_STATES => "Submitted,Assigned,Opened",
MODIFY => "modify"
);
$s->SetQuery("STANDARD",
"<STATE> in <QUERY_STATES>",
"<OWNER> eq <*USER*>");
$s->SetResultSet("STANDARD",
"<ID>,<STATE>,<PRIORITY>,<HEADLINE>",
"%s %-9.9s %1.1s %1.1s %-45.45s");
Please let me know where i am going wrong