Circulars
An error occurred while processing the template.
Template inclusion failed (for parameter value "_TEMPLATE_CONTEXT_/37301/37341/20097/NAVIGATION-MACRO-FTL"): Unable to find FreeMarker template with ID _TEMPLATE_CONTEXT_/37301/37341/20097/NAVIGATION-MACRO-FTL ---- FTL stack trace ("~" means nesting-related): - Failed at: #include "${templatesPath}/NAVIGATION... [in template "37301#37343#600896" at line 4, column 1] ----
1<div class="row responsive">
2 <div class="col-lg-12 pb-4 side-nav print-exclude desktop-left-nav">
3 <p class="back pt-3"><a href="javascript:history.go(-1);"><img src="/o/irdai-theme/images/svg/icons/back-cta-chevron.svg" alt="back" title="back"> Back</a></p>
4<#include "${templatesPath}/NAVIGATION-MACRO-FTL" />
5
6<#if !entries?has_content>
7 <#if themeDisplay.isSignedIn()>
8 <div class="alert alert-info">
9 <@liferay.language key="there-are-no-menu-items-to-display" />
10 </div>
11 </#if>
12<#else>
13 <#assign
14 portletDisplay = themeDisplay.getPortletDisplay()
15
16 navbarId = "navbar_" + portletDisplay.getId()
17 />
18
19 <div id="${navbarId}">
20 <div aria-label="<@liferay.language key='site-pages' />" class="nav navbar-nav navbar-site claim-menu-list show" role="menubar">
21 <#assign navItems = entries />
22
23
24
25 <#list navItems as navItem>
26 <#assign showChildrenNavItems = (displayDepth != 1) && navItem.hasBrowsableChildren() />
27
28 <#if navItem.isBrowsable() || showChildrenNavItems>
29 <#assign
30 nav_item_attr_has_popup = ""
31 nav_item_caret = ""
32 nav_item_css_class = "lfr-nav-item nav-item"
33 nav_item_href_link = ""
34 nav_item_link_css_class = "nav-link text-truncate"
35 />
36
37 <#if showChildrenNavItems>
38 <#assign nav_item_attr_has_popup = "aria-haspopup='true'" />
39 <#assign nav_item_caret>
40 <span class="lfr-nav-child-toggle px-1 ml-auto">
41 <@clay["icon"] symbol="angle-right" />
42 </span>
43 </#assign>
44 <#assign
45 nav_item_css_class = "${nav_item_css_class} dropdown"
46 nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"
47 />
48 </#if>
49
50 <#if navItem.isBrowsable()>
51 <#assign nav_item_href_link = "href='${navItem.getURL()}'" />
52 </#if>
53
54 <#if navItem.isChildSelected() || navItem.isSelected()>
55 <#assign
56 nav_item_css_class = "${nav_item_css_class} selected active"
57 />
58 </#if>
59
60 <p class="${nav_item_css_class} text-wrap" id="layout_${portletDisplay.getId()}_${navItem.getLayoutId()}" role="presentation">
61 <a aria-labelledby="layout_${portletDisplay.getId()}_${navItem.getLayoutId()}" ${nav_item_attr_has_popup} ${nav_item_href_link} ${navItem.getTarget()} role="menuitem" class="text-truncate">
62 <span class="text-truncate"><@liferay_theme["layout-icon"] layout=navItem.getLayout() /> ${navItem.getName()} </span>
63 </a>
64 ${nav_item_caret}
65</p>
66 <#if showChildrenNavItems>
67
68 <ul class="claim-list">
69 <@buildChildrenNavItems2
70 displayDepth=displayDepth
71 navItem=navItem
72 />
73
74 </ul>
75 </#if>
76
77
78 </#if>
79 </#list>
80
81
82
83
84 </div>
85 </div>
86
87 <#macro buildChildrenNavItems2
88 displayDepth
89 navItem
90 navItemLevel = 2
91 >
92 <#assign
93 portletDisplay = themeDisplay.getPortletDisplay()
94 />
95
96 <#list navItem.getChildren() as childNavigationItem>
97 <#assign
98 nav_child_css_class = ""
99 nav_item_caret = ""
100 sub_menu_heading_css_class = ""
101 />
102
103 <#if childNavigationItem.isChildSelected() || childNavigationItem.isSelected()>
104 <#assign
105 nav_child_css_class = "active selected"
106 />
107 </#if>
108
109 <#if childNavigationItem.hasBrowsableChildren() && ((displayDepth == 0) || (navItemLevel < displayDepth))>
110
111 <#assign nav_item_caret>
112 <span <span class="lfr-nav-child-toggle px-1 ml-auto float-right">
113 <@clay["icon"] symbol="angle-right" />
114 </span>
115 </#assign>
116
117 </#if>
118
119 <li class="${nav_child_css_class} text-wrap" id="layout_${portletDisplay.getId()}_${childNavigationItem.getLayoutId()}" role="presentation">
120 <#if childNavigationItem.isBrowsable()>
121 <a aria-labelledby="layout_${portletDisplay.getId()}_${childNavigationItem.getLayoutId()}" href="${childNavigationItem.getURL()}" ${childNavigationItem.getTarget()} role="menuitem"> ${childNavigationItem.getName()}
122
123 </a>
124 ${nav_item_caret}
125 <#else>
126 <a href="javascript:void(0)"> ${childNavigationItem.getName()}</a>
127 </#if>
128 </li>
129 <#if childNavigationItem.hasBrowsableChildren() && ((displayDepth == 0) || (navItemLevel < displayDepth))>
130 <ul class="claim-list">
131 <@buildChildrenNavItems2
132 displayDepth=displayDepth
133 navItem=childNavigationItem
134 navItemLevel=(navItemLevel + 1)
135 />
136 </ul>
137 </#if>
138
139 </#list>
140 </#macro>
141
142
143
144 <@liferay_aui.script use="liferay-navigation-interaction">
145 var navigation = A.one('#${navbarId}');
146
147 Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = '.navbar-site';
148 Liferay.Data.NAV_LIST_SELECTOR = '.navbar-site';
149
150 if (navigation) {
151 navigation.plug(Liferay.NavigationInteraction);
152 }
153 </@>
154</#if>
155 </div>
156 </div>
157
158 <div class="row responsive">
159 <div class="col-lg-12 side-nav print-exclude mobile-left-nav">
160<#include "${templatesPath}/NAVIGATION-MACRO-FTL" />
161
162<#if !entries?has_content>
163 <#if themeDisplay.isSignedIn()>
164 <div class="alert alert-info">
165 <@liferay.language key="there-are-no-menu-items-to-display" />
166 </div>
167 </#if>
168<#else>
169 <#assign
170 portletDisplay = themeDisplay.getPortletDisplay()
171
172 navbarId = "navbar_" + portletDisplay.getId()
173 />
174
175 <div id="${navbarId}">
176
177
178<div class="dropdown mobile-left-nav">
179<button class="btn btn-default dropdown-toggle w-100 text-left" type="button" data-toggle="dropdown"><span class="fa fa-bars mr-2"></span>Select Menu
180 </button>
181 <ul class="dropdown-menu">
182
183 <#assign navItems = entries />
184 <#list navItems as navItem>
185 <#assign showChildrenNavItems = (displayDepth != 1) && navItem.hasBrowsableChildren() />
186
187 <#if navItem.isBrowsable() || showChildrenNavItems>
188 <#assign
189 nav_item_attr_has_popup = ""
190 nav_item_caret = ""
191 nav_item_css_class = "lfr-nav-item nav-item"
192 nav_item_href_link = ""
193 nav_item_link_css_class = "nav-link"
194 tes=""
195 />
196
197 <#if showChildrenNavItems>
198 <#assign nav_item_attr_has_popup = "aria-haspopup='true'" />
199 <#assign nav_item_caret>
200 <span class="lfr-nav-child-toggle px-1 ml-auto">
201 <@clay["icon"] symbol="angle-down" />
202 </span>
203 </#assign>
204 <#assign
205 nav_item_css_class = "${nav_item_css_class} dropdown"
206 nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"
207 />
208 </#if>
209
210 <#if navItem.isBrowsable()>
211 <#assign nav_item_href_link = "href='${navItem.getURL()}'" />
212 </#if>
213
214 <#if navItem.isChildSelected() || navItem.isSelected()>
215 <#assign
216 nav_item_css_class = "${nav_item_css_class} selected active"
217
218 />
219 </#if>
220 <#if showChildrenNavItems>
221 <#assign nav_item_link_css_class="dropdown-submenu"
222 test="test"/>
223 </#if>
224 <li class="${nav_item_link_css_class}">
225 <a tabindex="-1" ${nav_item_href_link} ${navItem.getTarget()} class=" " >
226 <span class="text-truncate" title="${navItem.getName()}"><@liferay_theme["layout-icon"] layout=navItem.getLayout() /> ${navItem.getName()}</span>
227
228 </a>
229 ${nav_item_caret}
230 <#if showChildrenNavItems>
231
232 <ul class="dropdown-menu">
233 <@buildChildrenNavItems
234 displayDepth=displayDepth
235 navItem=navItem
236 />
237 </ul>
238
239 </#if>
240 </li>
241
242
243 </#if>
244 </#list>
245 </ul>
246 </div>
247
248 <#macro buildChildrenNavItems
249 displayDepth
250 navItem
251 navItemLevel = 2
252 >
253 <#assign
254 portletDisplay = themeDisplay.getPortletDisplay()
255 />
256 <#list navItem.getChildren() as childNavigationItem>
257 <#assign
258 nav_child_css_class = ""
259 nav_item_caret = ""
260 sub_menu_heading_css_class = ""
261 />
262
263 <#if childNavigationItem.isChildSelected() || childNavigationItem.isSelected()>
264 <#assign
265 nav_child_css_class = "active selected"
266 />
267 </#if>
268
269 <#if childNavigationItem.hasBrowsableChildren() && ((displayDepth == 0) || (navItemLevel < displayDepth))>
270 <#assign
271 nav_item_caret = '<i class="fas fa-chevron-right"></i>'
272 sub_menu_heading_css_class = ""
273 />
274
275 </#if>
276
277 <li class="${nav_child_css_class}" id="layout_${portletDisplay.getId()}_${childNavigationItem.getLayoutId()}" role="presentation">
278 <#if childNavigationItem.isBrowsable()>
279 <a aria-labelledby="layout_${portletDisplay.getId()}_${childNavigationItem.getLayoutId()}" class=" dropdown-item ${sub_menu_heading_css_class} " href="${childNavigationItem.getURL()}" ${childNavigationItem.getTarget()} role="menuitem"> ${childNavigationItem.getName()}
280
281 </a>
282 <span class="dropdown-toggle" data-toggle="dropdown">
283 ${nav_item_caret}
284 </span>
285 <#else>
286 <span class="dropdown-item font-weight-semi-bold navigation-menu__submenu">${childNavigationItem.getName()}</span>
287 </#if>
288
289 <#if childNavigationItem.hasBrowsableChildren() && ((displayDepth == 0) || (navItemLevel < displayDepth))>
290 <ul class="dropdown-menu submenu">
291 <@buildChildrenNavItems
292 displayDepth=displayDepth
293 navItem=childNavigationItem
294 navItemLevel=(navItemLevel + 1)
295 />
296 </ul>
297 </#if>
298 </li>
299 </#list>
300
301 </#macro>
302
303
304 <@liferay_aui.script use="liferay-navigation-interaction">
305 var navigation = A.one('#${navbarId}');
306
307 Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = '.navbar-site';
308 Liferay.Data.NAV_LIST_SELECTOR = '.navbar-site';
309
310 if (navigation) {
311 navigation.plug(Liferay.NavigationInteraction);
312 }
313 </@>
314</#if>
315 </div>
316 </div>
317
318
319
320 <style>
321 @media (max-width: 768px) {
322 .desktop-left-nav {
323 display: none;
324 }
325 .mobile-left-nav {
326 display: block;
327 }
328 .mobile-left-nav ul.dropdown-menu.show {
329 position: relative !important;
330 max-width: 100% !important;
331 width: 100% !important;
332 transform: translate3d(0px, 0px, 0px) !important;
333 }
334 .mobile-left-nav ul.dropdown-menu.show > li > a {
335 width: 94%;
336 float: left;
337 }
338 .mobile-left-nav ul.dropdown-menu.show > li {
339 clear: both;
340 }
341 .mobile-left-nav ul.dropdown-menu.show li > ul > li::before{
342 content: "";
343 width: 8px;
344 height: 8px;
345 background: #95b2c5;
346 border-radius: 3px;
347 display: block;
348 position: relative;
349 top: 22px;
350 }
351
352 }
353
354 @media (min-width: 768px) {
355 .desktop-left-nav {
356 display: block;
357 }
358 .mobile-left-nav {
359 display: none;
360 }
361 }
362 .caret {
363 width: 0;
364 height: 0;
365 display: inline-block;
366 border: 10px solid transparent;
367 }
368 .caret.down{
369 border-top-color: black;
370 }
371 .mobile-left-nav li.dropdown-submenu > ul {
372 display: block;
373 position: relative;
374 border: none;
375 box-shadow: none;
376 padding-left: 40px;
377 background: #fbfbfb;
378 width: 100%;
379 max-width: 100%;
380 padding-top: 0;
381 max-height: max-content;
382 }
383
384 .mobile-left-nav li a span.text-truncate {
385 max-width: 80%;
386 float: left;
387 }
388 .mobile-left-nav li {
389 padding-top: 0;
390 padding-bottom: 0;}
391 </style>
Circulars
No files found here
Archive / Non Archive | |||||||
---|---|---|---|---|---|---|---|
|
Non-Archived | To All Licensed Individual & Corporate Surveyors & Loss Assessors, Jan 2013 | 17-01-2013 | To All Licensed Individual & Corporate Surveyors & Loss Assessors, Jan 2013 | IRDA/SUR/MISC/CIR/010/01/2013 | ||
|
Non-Archived | Certificate of Registration issued under Section 3 read with Section 3A | 07-04-2015 | Certificate of Registration issued under Section 3 read with Section 3A of the Insurance Act, 1938 | IRDA/F&A/CIR/GLD/062/04/2015 | ||
|
Non-Archived | Financial Statements and other related returns for the FY 2014-15 | 07-04-2015 | Financial Statements and other related returns for the FY 2014-15 | IRDAI/F&A/CIR/FA/059/03/2015 | ||
|
Non-Archived | Settlement of Claims under Group Insurance Policies | 08-04-2015 | To the CEOs of all the Life Insurers | IRDA/Life/2014/129 | ||
|
Non-Archived | Submission of Office Filing applications through Business Analytics Project | 22-04-2015 | Submission of Office Filing applications through Business Analytics Project (BAP) - Non-Life Module | IRDA/NL/CIR/OFF/OOO/075/04/2015 | +1 more | |
|
Non-Archived | Handling of Complaints/ Grievances from Policyholders | 24-04-2015 | Handling of Complaints/ Grievances from Policyholders | IRDA/Life/ Cir/GRV/084/04/2015 | ||
|
Non-Archived | Submission of ARA, AAAR and Reinsurance Returns | 24-04-2015 | Submission of ARA, AAAR and Reinsurance Returns | IRDA/Actl/BAP/Cir/066/2015-16 | ||
|
Non-Archived | Withdrawal of Deposit under Section 7 of Insurance Act, 1938 | 30-04-2015 | Withdrawal of Deposit under Section 7 of Insurance Act, 1938 | IRDAI/F&I/CIR/INV/093/04/2015 | ||
|
Non-Archived | Submission of Returns for Life through Business Analytics Project (BAP) | 11-05-2015 | Submission of Returns for Life through Business Analytics Project (BAP) | IRDA/LIFE/CIR/MISC/104/05/2015 | +1 more | |
|
Non-Archived | Submission of New Products for Non-Life (except Health) through Business An | 13-05-2015 | Submission of New Products for Non-Life (except Health) through Business Analytics Project (BAP) | IRDA/NL/CIR/ADV/105/05/2015 | ||
|
Non-Archived | Submission of data in BAP Health Insurance Module -reg. | 15-05-2015 | Submission of data in BAP Health Insurance Module -reg. | IRDAI/HEALTH/GEN/BAPHAELTH/1/2015-16 | ||
|
Non-Archived | GUIDELINES ON ISSUANCE OF PREMIUM ACKNOWLEDGEMENTS | 18-05-2015 | GUIDELINES ON ISSUANCE OF PREMIUM ACKNOWLEDGEMENTS | IRDA/LIFE/MISC/CIR/106/05/2015 | ||
|
Non-Archived | Submission of Office Filing applications through Business Analytics Project, May 2015 | 26-05-2015 | Submission of Office Filing applications through Business Analytics Project (BAP) – Health Module. | IRDA/HLT/GEN/BAP/OFFICE FILING/68/2015-1 | ||
|
Non-Archived | Filing of Health Insurance Products through BAP F & U Health Insurance Modu | 26-05-2015 | Filing of Health Insurance Products through BAP F & U Health Insurance Module- reg. | IRDA/HEALTH/GEN/BAPHEALTH/2/2015-16 | ||
|
Non-Archived | Handling of the unclaimed amounts pertaining to the policyholders | 29-05-2015 | Handling of the unclaimed amounts pertaining to the policyholders | IRDA/F&A/CIR/CLD/114/05/2015 | ||
|
Non-Archived | Submission of Life Insurance Products/ Riders through Business Analytics Pr | 29-05-2015 | Submission of Life Insurance Products/ Riders through Business Analytics Project (BAP) | IRDA/ACT/CIR/BAP/108/05/2015 | ||
|
Non-Archived | Appointment of Surveyors and Loss Assessors | 15-07-2015 | Appointment of Surveyors and Loss Assessors | IRDA/NL/Cir/Misc/129/07/2015 | ||
|
Non-Archived | Handling of the unclaimed amounts pertaining to the policyholders., Jul 2015 | 27-07-2015 | Handling of the unclaimed amounts pertaining to the policyholders. | IRDA/F&I/CIR/CPM/134/07/2015 | ||
|
Non-Archived | Obtaining Annuity Options from the Policy holders | 04-08-2015 | Obtaining Annuity Options from the Policy holders | IRDA/LIFE/CIR/MISC/140/8/2015 | ||
|
Non-Archived | MASTER CIRCULAR ON INSURANCE ADVERTISEMENTS | 19-08-2015 | MASTER CIRCULAR ON INSURANCE ADVERTISEMENTS | IRDAI/LIFE/CIR/MISC/147/08/2015 | +1 more | |
|
Non-Archived | Submission of returns for F&A Life through the Business Analytics Project | 04-09-2015 | Submission of returns for F&A Life through the Business Analytics Project (BAP) Module | IRDA/F&A/CIR/GLD/161/09/2015 | ||
|
Non-Archived | Clarification on the name of Insurance Marketing Firm | 21-09-2015 | Clarification on the name of Insurance Marketing Firm | IRDA/INT/IMF/CIR/ORD/171/09/2015 | ||
|
Non-Archived | Discharge Voucher in settlement of claim | 24-09-2015 | Discharge Voucher in settlement of claim | IRDA/NL/CIR/Misc/173/09/2015 | ||
|
Non-Archived | Master Circular on Anti Money Laundering/Counter- Financing of Terrorism | 29-09-2015 | Master Circular on Anti Money Laundering/Counter- Financing of Terrorism (AML/CFT)-Guidelines for Life Insurers | IRDAI/SDD/GDL/CIR/175/09/2015 | ||
|
Non-Archived | GUIDELINES ON CLAIM PROCESSING FOR GROUP LIFE INSURANCE POLICIES UNDER | 15-10-2015 | GUIDELINES ON CLAIM PROCESSING FOR GROUP LIFE INSURANCE POLICIES UNDER LENDER-BORROWER GROUP INSURANCE SCHEMES. | IRDA/Life/Cir/GDL/179/10/2015 | ||
|
Non-Archived | Non Compliance of award of Insurance Ombudsman or Order of MACT or Consumer | 03-11-2015 | Non compliance of award of Insurance Ombudsman or Order of MACT or Consumer Fora. | IRDA/CAD/CIR/MISC/194/11/2105 | ||
|
Non-Archived | Motor Third Party Premium rates for e-carts (A3/A4), e-rickshaws (C1(b)) | 04-11-2015 | Motor Third Party Premium rates for e-carts (A3/A4), e-rickshaws (C1(b)) and Passenger premium for Motorised two wheeler Carrying Passengers for Hire or Reward(C4) | IRDA/NL/CIRI/MOTP/196/11/2015 | +1 more | |
|
Non-Archived | Issues pertaining to issuance of Electronic Motor Policies | 06-11-2015 | Issues pertaining to issuance of Electronic Motor Policies | IRDA/INT/CIRC/INSRE/197/11/2015 | ||
|
Non-Archived | Benefit illustration/s in Advertisements of Life Insurance Products | 23-11-2015 | Benefit illustration/s in Advertisements of Life Insurance Products | IRDAI/LIFE/CIR/ADV/209/11/2015 | ||
|
Non-Archived | Guidelines on Insurance Claims for losses due to Flood in the state of Tami | 07-12-2015 | Guidelines on Insurance Claims for losses due to Flood in the state of Tamil Nadu, Puducherry and neighbouring districts of Andhra Pradesh | IRDA/NL/RI/MISC/15-16/37 | ||
|
Non-Archived | Registration and submission of information to CBDT for compliance with | 22-12-2015 | Registration and submission of information to CBDT for compliance with obligations under Foreien Account Tax Compliance Act (FATCAI/ Common Reporting Standards(CRS) | IRDA/F&A/Cir/GLD/222/12/2015 | ||
|
Non-Archived | Reporting of Compliance regarding Indian Ownership and Control | 23-12-2015 | Reporting of Compliance regarding Indian Ownership and Control | IRDA/F&A/CIR/CPM/224/12/2015 | ||
|
Non-Archived | Extension of date for continuance of existing Micro Insurance Products | 29-12-2015 | Extension of date for continuance of existing Micro Insurance Products | IRDA/LIFE/CIR/Min/225/12/2015 | ||
|
Non-Archived | Online system for registration / renewal of broking licenses | 01-01-2016 | Online system for registration / renewal of broking licenses | IRDA/INT/2016 | +1 more | |
|
Non-Archived | Filing of Micro Insurance Products subsequent to the implementation of IRDA | 08-01-2016 | Filing of Micro Insurance Products subsequent to the implementation of IRDAI (Micro Insurance) Regulations, 2015 | IRDA/LIFE/CIR/MIN/007/01/2016 | ||
|
Non-Archived | Approach in case of non-compliance of IRDAs (lnsurance Broker) Reguations, | 18-01-2016 | Approach in case of non-compliance of IRDAs (lnsurance Broker) Reguations, 2015 | IRDA/INT/MISC/ORD/014/01/2016 | ||
|
Non-Archived | Issues pertaining to opening of offices in IFSC, GIFT City, Gujarat. | 28-01-2016 | Issues pertaining to opening of offices in IFSC, GIFT City, Gujarat. | IRDA/NL/CIR/MISC/019/01/2016 | ||
|
Non-Archived | Online Training for Renewal of Licence | 01-02-2016 | Online Training for Renewal of Licence | IRDA/BRK/MISC/CIR/018/01/2016 | ||
|
Non-Archived | Industrial All Risks (IAR) Policy | 10-02-2016 | Industrial All Risks (IAR) Policy | IRDA/NL/CIR/F&U/025/2016 | ||
|
Non-Archived | CIRCULAR | 10-02-2016 | CIRCULAR | IRDA/NL/CIR/MISC/024/02/2016 | ||
|
Non-Archived | Sourcing of Motor Business through Agents and Intermediaries. | 10-02-2016 | Sourcing of Motor Business through Agents and Intermediaries. | IRDA/NL/CIR/MISC/024/02/2016 | ||
|
Non-Archived | Submission of returns for F&A Non-Life through the BAP Module. | 12-02-2016 | Submission of returns for F&A Non-Life through the Business Analytics Project (BAP) Module. | IRDA/F&A/MISC/CIR/026/02/2016 | ||
|
Non-Archived | Clarifications on IRDAI (Registration of Corporate Agents) Regulations, 201 | 16-02-2016 | Clarifications on IRDAI (Registration of Corporate Agents) Regulations, 2015 | IRDA/CAGTS/CIR/LCE/029/02/2016 | ||
|
Non-Archived | Uploading the sIA data on iTrex (Insurance Transaction Exchange) Server | 22-02-2016 | Uploading the sIA data on iTrex (Insurance Transaction Exchange) Server | IRDA/INT/CIR/INSRE/032/02/2016 | +1 more | |
|
Non-Archived | Deferment of date of enforcement of Reg 28(9) of IRDAI(Registration and Ope | 01-03-2016 | Deferment of date of enforcement of Reg 28(9) of IRDAI(Registration and Operations of Branch offices of Foreign Reinsurers other than Lloyd’s) Regulations, 2015 | IRDA/NL/CIR/RIN/036/02/2016 | ||
|
Non-Archived | Implementation of Indian Accounting Standards (Ind AS) in insurance sector | 01-03-2016 | Implementation of Indian Accounting Standards (Ind AS) in insurance sector | IRDA/ F&A/ CIR/IFRS/038/03/2016 | ||
|
Non-Archived | Clarifications on IRDAI (Registration of Insurance Marketing Firm) | 02-03-2016 | Clarifications on IRDAI (Registration of Insurance Marketing Firm) Regulations, 2015 | IRDA/TPA/ORD/MISC/040/03/2016 | ||
|
Non-Archived | Offering Existing General Insurance Products that are in Compliance with | 10-03-2016 | Offering Existing General Insurance Products that are in Compliance with IRDAI (Micro Insurance) Regulations, 2015 as General Micro Insurance Products | IRDA/LIFE/CIR/MIN/045/03/2016 | ||
|
Non-Archived | Guidelines on Point of Sales Person – Non-life & Health Insurers – Addition | 14-03-2016 | Guidelines on Point of Sales Person – Non-life & Health Insurers – Addition of Products | IRDA/INT/GDL/ORD/047/03/2016 | ||
|
Non-Archived | Panel of Actuaries – Expression of interest | 14-03-2016 | Panel of Actuaries – Expression of interest | IRDAI/ACT/MISC/MISC/048/03/2016 | ||
|
Non-Archived | Dismantling of Indian Motor Third Party Declined Risk Pool (IMTPDRP) | 16-03-2016 | Dismantling of Indian Motor Third Party Declined Risk Pool (IMTPDRP) for Commercial vehicle (Act only Insurance) | IRDA/NL/CIR/MISC/051/03/2016 | ||
|
Non-Archived | Panel of Actuaries - Expression of Interest | 24-03-2016 | Panel of Actuaries - Expression of Interest | IRDA/ACT/CIR/MIS/057/03/2016 | ||
|
Non-Archived | Circular as per the provisions of IRDAI (TPA – Health Services) | 28-03-2016 | Circular as per the provisions of IRDAI (Third Party Administrators – Health Services) Regulations, 2016 | IRDA/TPA/REG/CIR/059/03/2016 | +1 more | |
|
Non-Archived | Non-Compliance of Award of Insurance OMBUDSMAN. | 01-04-2016 | Non-Compliance of Award of Insurance OMBUDSMAN. | IRDAI/CAD/CIR/MISC/063/03/2016 | ||
|
Non-Archived | IRDA (Preparation of Financial Statements and Auditors Report of Insurance | 04-04-2016 | IRDA (Preparation of Financial Statements and Auditors Report of Insurance Companies) Regulations, 2002 | IRDA/F&A/CIR/CPM/056/03/2016 | ||
|
Non-Archived | Extension for uploading of status of KYC related details for Insurance | 06-04-2016 | Extension for uploading of status of KYC related details for Insurance Policies on Insurance Transactions Exchange (iTrex). | IRDA/INT/CIR/INSRE/066/04/2016 | ||
|
Non-Archived | Accounting Treatment of Enhanced Provision of Pension Scheme | 18-04-2016 | Accounting Treatment of Enhanced Provision of Pension Scheme | IRDA/F&A/CIR/ACTS/077/04/2016 | ||
|
Non-Archived | Placement of Reinsurance on global basis along with foreign parent /subsidi | 27-04-2016 | Placement of Reinsurance on global basis along with foreign parent /subsidiaries/ group companies | IRDA/NL/CIR/RIN/078/04/2016 | ||
|
Non-Archived | Allowance of up to 5% limit on Gross Vehicle Weight (GVW), May 2016 | 13-05-2016 | Allowance of up to 5% limit on Gross Vehicle Weight (GVW) | IRDAI/NL/CIRC/MISC/095/05/2016 | ||
|
Non-Archived | Stranded/grounded vessels on the Indian coast- Insurance Claims | 26-05-2016 | Stranded/grounded vessels on the Indian coast- Insurance Claims | IRDA/NL/GDL/MISC/105/05/2016 | +1 more | |