Field Details: coll_emi_capping_amount

Back to Fields
Basic Information
Field Name: coll_emi_capping_amount
Source Table: evolved_records
Version: 1
Expression Type: jinja
Output Type: FLOAT
Status: Active
Created: 2025-10-16 04:31:29
Updated: 2025-10-16 04:31:29
Metadata
Display Name: EMI Capping Amount
Categories: COLLECTIONS
Group: Legacy Metrics
Usage
Used in Summary: Yes
Used in Template: No

Description

No description available

Expression

            {% if raw_data.emi_amt_upto_emi_ovd_capping is defined %}
                {{ raw_data.emi_amt_upto_emi_ovd_capping }}
            {% elif raw_data.emi_amount is defined %}
                {% set emi = raw_data.emi_amount|default(0) %}
                {% set overdue_months = (coll_days_overdue / 30)|round|int %}
                {{ emi * (overdue_months + 1) }}
            {% else %}
                0
            {% endif %}
            
Dependencies
  • coll_days_overdue