Field Details: coll_special_case_type

Back to Fields
Basic Information
Field Name: coll_special_case_type
Source Table: evolved_records
Version: 1
Expression Type: jinja
Output Type: TEXT
Status: Active
Created: 2025-10-16 04:31:29
Updated: 2025-10-16 04:31:29
Metadata
Display Name: Special Case Type
Categories: COLLECTIONS
Group: Special Cases
Usage
Used in Summary: Yes
Used in Template: No

Description

No description available

Expression

            {% if not coll_is_special_case %}
                "NOT_APPLICABLE"
            {% elif raw_data.transaction_type == "DEATH_CASE" or raw_data.subcategory == "RURAL_DEATH" or raw_data.subcategory == "URBAN_DEATH" %}
                "DEATH_CASE"
            {% elif raw_data.transaction_type == "SETTLEMENT" or raw_data.subcategory == "RURAL_SETTLEMENT" or raw_data.subcategory == "URBAN_SETTLEMENT" %}
                "SETTLEMENT"
            {% else %}
                "OTHER"
            {% endif %}
            
Dependencies
  • coll_is_special_case