New Scope Type *
{% for value,label in [
('client','Client / PAN level'),
('business_unit','Business Unit level'),
('client_branch','Client Branch level'),
('registration','Registration level')
] %}
{{ label }}
{% endfor %}
Business Unit
Select Business Unit
{% for row in businesses %}
{{ row.business_name }}{% if row.trade_name %} — {{ row.trade_name }}{% endif %}
{% endfor %}
Client Branch
Select Client Branch
{% for row in branches %}
{{ row.branch_name }}{% if row.state %} — {{ row.state }}{% endif %}
{% endfor %}
Registration
Select Registration
{% for row in registrations %}
{% set registration_type = registration_type_by_id.get(row.id) %}
{{ registration_type.code if registration_type else 'Registration' }}
— {{ row.registration_number }}
{% if row.trade_name %} — {{ row.trade_name }}{% endif %}
{% endfor %}
{% if plan.catalogue.required_registration_type %}
Required by Service Catalogue: {{ plan.catalogue.required_registration_type }}
{% endif %}
This action does not change the Client, subscription ID, engagement IDs, due dates,
assignment team, tasks, evidence or review history.