제출 대상 속성 구성
개정 가능한 규제 기관 제출 유형 또는 개정 불가능 제출 유형에 대해 제출 대상 속성을 구성할 수 있습니다. 이렇게 하려면 다음 단계를 완료하십시오.
1. 품질 컨텍스트를 만듭니다.
2. 유틸리티 > 인력 및 소재 관리에서 규제 기관 유형의 장소를 작성합니다.
3. 장소의 대체 식별자를 지정합니다.
4. 라이브러리, 조직 또는 사이트의 유틸리티 > 객체 초기화 규칙 관리에서 규제 기관 제출 유형에 대한 객체 초기화 규칙을 작성합니다. 기존 객체 초기화 규칙 XML 파일을 다운로드하고 편집할 수도 있습니다.
5. 규칙 필드의 속성 값에는 id의 값으로 submittedToReference를, algorithm의 값으로 com.ptc.qualitymanagement.masterdata.entity.util.PersonOrPlaceAlternatedIdentifierRuleAlgorithm을 추가합니다. 속성에는 인수가 둘인데, 하나는 규제 기관의 대체 식별자 인수이고, 또 다른 하나는 규제 기관이 들어있는 컨텍스트의 경로입니다. 속성 제약 조건을 정의할 경우 사용자는 제출 대상 속성의 값을 지정할 수 없습니다. 이 값은 객체 초기화 규칙에 따라 생성됩니다. 속성 제약 조건이 정의돼 있지 않다면 제출 대상 속성의 값을 지정하거나 객체 초기화 규칙에 따라 생성되는 값을 사용할 수 있습니다.
<AttributeValues objType="com.ptc.qualitymanagement.regmstr.RegulatorySubmission">
<!-- Instantiate the "submittedToReference" OIR for Regulatory Agency -->
<AttrValue id="submittedToReference" algorithm="com.ptc.qualitymanagement.masterdata.entity.util.PersonOrPlaceAlternatedIdentifierRuleAlgorithm">
<!-- First argument is the alternative identifier for the intended Regulatory Agency. -->
<Arg>FDA</Arg>
<!-- Second argument is the container path for which the intended Regulatory Agency lives. -->
<Arg>/wt.inf.container.OrgContainer=Demo Organization/wt.inf.library.WTLibrary=DivA</Arg>
</AttrValue>
<!-- Attribute constraints to ensure the attribute is immutable on the UI. Attribute will show as "(generate)", instead of giving a user input. -->
<AttrConstraint id="submittedToReference" algorithm="com.ptc.core.rule.server.impl.GatherAttributeConstraints" ignore="false" force="false" final="false">
<Value algorithm="com.ptc.core.rule.server.impl.GetServerAssignedConstraint"></Value>
<Value algorithm="com.ptc.core.rule.server.impl.GetImmutableConstraint"></Value>
</AttrConstraint>

<!-- Attribute constraint to automatically populate the user input field. This will not restrict the user from changing the value. -->
<AttrConstraint id="submittedToReference" algorithm="com.ptc.core.rule.server.impl.GatherAttributeConstraints">
<Value algorithm="com.ptc.core.rule.server.impl.GetServerPreGeneratedValue"/>
</AttrConstraint>
</AttributeValues>
6. XML 파일을 업데이트한 후 객체 초기화 규칙 관리에서 적절한 유형의 규제 기관 제출에 파일을 업로드합니다.
관련 항목
도움이 되셨나요?