문제

I am newbie in testing. Can you please suggest me some good tutorials of

  1. Quality Center
  2. Quick Test Professional
  3. RFT

Thanx in advance

다른 팁

For Quality Center, just read the documentation provided (see under help menu) it's a bit long, but pretty good, and covers the entire product and work methodologies.

필드와 TermStore 간의 링크가 올바르게 설정되지 않았을 것입니다.

정확한 값을 표시하려면 TermStore 필드 (TaxonomyField)에는 디스플레이하려는 TermStore 및 Termset의 ID가 들어 있습니다.그러나이 ID는 모든 서버에서 다릅니다.TAXONOMYFIELD를 사용할 때 필드가 해당 서버에 올바른 ID로 구성되어 있는지 확인해야합니다.

여기를 수행하는 방법에 대해 몇 가지 C #이 있습니다.SharePoint의 TermStore Manager의 속성 페이지 하단에있는 ID를 찾을 수 있습니다.

private void LinkMmdField(TaxonomyField field, LinkMmd linkinfo, TaxonomySession session)
{     
    TermStore termStore = session.TermStores[linkinfo.TermStoreName];
    Group group = termStore.Groups[linkinfo.TermGroupName];
    TermSet  termset = group.TermSets[linkinfo.TermSetName];

    if (termset != null)
    {
        field.SspId = termStore.Id;
        field.TermSetId = termset.Id;
        field.Update();
    }
}
.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top