सर्वेक्षक
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#503003" at line 5, column 1] ----
1<div class="container-fluid">
2<div class="row responsive">
3 <div class="col-lg-12 pb-4 side-nav print-exclude">
4 <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>
5<#include "${templatesPath}/NAVIGATION-MACRO-FTL" />
6
7<#if !entries?has_content>
8 <#if themeDisplay.isSignedIn()>
9 <div class="alert alert-info">
10 <@liferay.language key="there-are-no-menu-items-to-display" />
11 </div>
12 </#if>
13<#else>
14 <#assign
15 portletDisplay = themeDisplay.getPortletDisplay()
16
17 navbarId = "navbar_" + portletDisplay.getId()
18 />
19
20 <div id="${navbarId}">
21 <div aria-label="<@liferay.language key="site-pages" />" class="nav navbar-nav navbar-site claim-menu-list show" role="menubar">
22 <#assign navItems = entries />
23
24
25
26 <#list navItems as navItem>
27 <#assign showChildrenNavItems = (displayDepth != 1) && navItem.hasBrowsableChildren() />
28
29 <#if navItem.isBrowsable() || showChildrenNavItems>
30 <#assign
31 nav_item_attr_has_popup = ""
32 nav_item_caret = ""
33 nav_item_css_class = "lfr-nav-item nav-item"
34 nav_item_href_link = ""
35 nav_item_link_css_class = "nav-link text-truncate"
36 />
37
38 <#if showChildrenNavItems>
39 <#assign nav_item_attr_has_popup = "aria-haspopup='true'" />
40 <#assign nav_item_caret>
41 <span class="lfr-nav-child-toggle px-1 ml-auto">
42 <@clay["icon"] symbol="angle-right" />
43 </span>
44 </#assign>
45 <#assign
46 nav_item_css_class = "${nav_item_css_class} dropdown"
47 nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle"
48 />
49 </#if>
50
51 <#if navItem.isBrowsable()>
52 <#assign nav_item_href_link = "href='${navItem.getURL()}'" />
53 </#if>
54
55 <#if navItem.isChildSelected() || navItem.isSelected()>
56 <#assign
57 nav_item_css_class = "${nav_item_css_class} selected active"
58 />
59 </#if>
60
61 <p class="${nav_item_css_class} text-wrap" id="layout_${portletDisplay.getId()}_${navItem.getLayoutId()}" role="presentation">
62 <a aria-labelledby="layout_${portletDisplay.getId()}_${navItem.getLayoutId()}" ${nav_item_attr_has_popup} ${nav_item_href_link} ${navItem.getTarget()} role="menuitem" class="text-truncate">
63 <span class="text-truncate"><@liferay_theme["layout-icon"] layout=navItem.getLayout() /> ${navItem.getName()} </span>
64 </a>
65 ${nav_item_caret}
66</p>
67 <#if showChildrenNavItems>
68
69 <ul class="claim-list">
70 <@buildChildrenNavItems2
71 displayDepth=displayDepth
72 navItem=navItem
73 />
74
75 </ul>
76 </#if>
77
78
79 </#if>
80 </#list>
81
82
83
84
85 </div>
86 </div>
87
88 <#macro buildChildrenNavItems2
89 displayDepth
90 navItem
91 navItemLevel = 2
92 >
93 <#assign
94 portletDisplay = themeDisplay.getPortletDisplay()
95 />
96
97 <#list navItem.getChildren() as childNavigationItem>
98 <#assign
99 nav_child_css_class = ""
100 nav_item_caret = ""
101 sub_menu_heading_css_class = ""
102 />
103
104 <#if childNavigationItem.isChildSelected() || childNavigationItem.isSelected()>
105 <#assign
106 nav_child_css_class = "active selected"
107 />
108 </#if>
109
110 <#if childNavigationItem.hasBrowsableChildren() && ((displayDepth == 0) || (navItemLevel < displayDepth))>
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 </div>
नया क्या है
18-02-2025
New
20-01-2025
New
सूचना - भारतीय बीमा संस्थान (III) सर्वेयर प्री-लाइसेंसिंग परीक्षाओं के लिए योग्य प्रशिक्षु मार्च 2025 / Notice - Eligible Trainees for Insurance Institute of India (III) Surveyor Pre-Licensing Examinations Mar 2025
1.17 MB
सूचना - भारतीय बीमा संस्थान (III) सर्वेयर प्री-लाइसेंसिंग परीक्षाओं के लिए योग्य प्रशिक्षु मार्च 2025 / Notice - Eligible Trainees for Insurance Institute of India (III) Surveyor Pre-Licensing Examinations Mar 2025
10-01-2025
New
10-01-2025
New
10-01-2025
New
10-01-2025
New
23-10-2024
New
16-10-2024
New
अंतिम सूची - भारतीय बीमा संस्थान (III) सर्वेयर प्री-लाइसेंसिंग परीक्षाओं के लिए योग्य प्रशिक्षु दिसंबर 2024-नोटिस-16.10.2024 /Final List - Eligible Trainees for Insurance Institute of India (III) Surveyor Pre-Licensing Examinations Dec 2024-Notice
1.18 MB
भारतीय बीमा संस्थान (III) सर्वेयर प्री-लाइसेंसिंग परीक्षाओं के लिए योग्य प्रशिक्षु दिसंबर 2024-नोटिस-16.10.2024
01-10-2024
New
01.10.2024 भारतीय बीमा संस्थान (III) सर्वेयर प्री-लाइसेंसिंग परीक्षाओं के लिए योग्य प्रशिक्षु दिसंबर 2024-नोटिस /Eligible Trainees for Insurance Institute of India (III) Surveyor Pre-Licensing Examinations Dec 2024-Notice
1.17 MB
01.10.2024 भारतीय बीमा संस्थान (III) सर्वेयर प्री-लाइसेंसिंग परीक्षाओं के लिए योग्य प्रशिक्षु दिसंबर 2024-नोटिस
05-09-2024
New
12-08-2024
New
02-08-2024
New
19-07-2024
New
भारतीय बीमा संस्थान (III) सर्वेयर प्री-लाइसेंसिंग परीक्षाओं के लिए योग्य प्रशिक्षु सितंबर 2024-नोटिस-19.07.2024 / Eligible Trainees for Insurance Institute of India (III) Surveyor Pre-Licensing Examinations Sep 2024-Notice-19.07.2024
1.15 MB
भारतीय बीमा संस्थान (III) सर्वेयर प्री-लाइसेंसिंग परीक्षाओं के लिए योग्य प्रशिक्षु सितंबर 2024-नोटिस-19.07.2024
18-07-2024
New
01-07-2024
New
19-06-2024
New
11-06-2024
New
31-05-2024
New
29-05-2024
New
18-02-2025
New
05-09-2024
New
12-08-2024
New
02-08-2024
New
18-07-2024
New
19-06-2024
New
11-06-2024
New
31-05-2024
New
29-05-2024
New
FAQs
where to file online application for enrollment as trainee surveyor, fresh surveyor license, renewal, modification and for duplicate surveyor license?
on www.irdabap.org.in Bap portal.
Pre – requisite of computer to make compatible with BAP portal www.irdabap.org.in.
Field | Description |
Hardware - Personal Computer / Laptop | |
Processor | Intel processors Pentium 4 / i3 / i5 / i7 @ 1GHz or above |
RAM | 1 GB RAM or above (min 1GB recommended) |
Hard Disk | 80 GB or above HDD |
Ethernet Card | 10 / 100 Mbps Ethernet card |
Printer | Laser Jet |
Software | |
Operating System | Windows XP (with Service Pack2), Windows Vista, Windows 7, Mac OS v 10.5 |
Office Utility | MS- Office 2003 or above |
Browsers | Internet Explorer 8.0 and above, Apple Safari 5.0 (recommended IE 8.0) |
Java Runtime | JDK– 1.60 |
Adobe Acrobat Reader | 9.0 version |
how to determine the eligibility to become a surveyor/trainee surveyor?
(Amended as per IRDAI ( Surveyor) Regulation 2015) please refer Schedule I, Annexure 1 of IRDAI (Insurance Surveyors & loss Assessors) Regulation, 2015 on qualification criteria for enrollment and licensing of surveyor and loss assessors.
How to create/obtain user id and password?
(a) For enrollment, applicants can create their own user id on portal
(b) For exiting surveyor license holder may request for user id and password on surveyor@irda.gov.in
(c) For fresh corporate surveyor license – the applicant can create their user id and password
(d) For renewal of corporate surveyor license holder may request for user id and password on surveyor@irda.gpv.in
What happens if my user ID is deleted?
If your account is deleted, then you have to re-register yourself in the portal if you are a trainee. For already license holders- please contact IRDA.