하위 화면 규칙 클래스 샘플

이 클래스는 기본 카테고리 페이지 내의 하위 화면(또는 확장 가능 목록)을 나타냅니다. 여기에는 제공된 가족 구성원에 대한 수입 레코드 목록이 포함되어 있습니다. businessObjectID에는 이 클래의 주어진 인스턴스 오브젝트에 정보가 포함되어 있는 개인의 concernRoleID가 들어 있습니다. 런타임 시에 기본 화면의 목록에서 한 개인이 선택되면 concernRoleID가 하위 화면에 대한 UIM으로 전달됩니다. 그러면 기본 페이지에 대한 XML 검색에 필요한 determinationID, 카테고리, 날짜 등 표준 정보뿐 아니라

attributeName = familyMemberFullIncomeList
businessObjectID = concernRoleID of chosen person

찾고 있는 attributeName 및 businessObjectID를 통해 시스템을 조회합니다.

<Class
 extends="DefaultCaseSubscreenDisplay"
 extendsRuleSet="DefaultProductDecisionDetailsRuleSet"
 name="CaseParticipantFullIncomeClass"
>
  
  <!-- Filled with the Persons concernRoleID -->
  <Attribute name="businessObjectID">
    <Annotations>
      <Display/>
    </Annotations>
    ...
  </Attribute>
  
  <Attribute name="participantFullName">
    <Annotations>
      <Display/>
    </Annotations>
    ...
  </Attribute>
  
  <Attribute name="participantIncomeList">
    <Annotations>
      <Display/>
    </Annotations>
    ...
  </Attribute>
</Class>