Difference between revisions of "ESDC Onboarding/Dev"

From wiki
Jump to navigation Jump to search
 
(21 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{#css:
 
{{#css:
<!-- Styling for the columns -->
+
 
 +
<!-- LAYOUT -->
 
.section{
 
.section{
 
max-width: 100%;
 
max-width: 100%;
 
line-height: 1.6;
 
line-height: 1.6;
margin-bottom: 60px;
+
margin-bottom: 40px;
 
}
 
}
  
Line 27: Line 28:
 
}
 
}
  
<!-- Mobile UI styling -->
+
.card {
 +
position: relative;
 +
display: flex;
 +
flex-direction: column;
 +
min-width: 0;
 +
word-wrap: break-word;
 +
background-clip: border-box;
 +
padding: 0 1.5rem 0 1.5rem;
 +
}
 +
 
 +
.card-body {
 +
flex: 1 1 auto;
 +
padding: 10px;
 +
}
 +
 
 +
<!-- LAYOUT... MOBILE -->
 
@media (max-width: 576px) {
 
@media (max-width: 576px) {
 
.col-sm-12 { flex: 0 0 100%; max-width: 100%; }
 
.col-sm-12 { flex: 0 0 100%; max-width: 100%; }
.card { padding-top: 22px !important; padding-bottom: 12px !important; }
+
.card { padding-top: 22px !important; padding-bottom: 12px !important; padding-left: 10px !important; }
 
.card-body { padding: 0 !important; }
 
.card-body { padding: 0 !important; }
.section { margin-left: -10px; margin-bottom: 20px; }
+
.section { margin-left: -10px; margin-bottom: 30px; }
 
.section p { padding-top: 10px; }
 
.section p { padding-top: 10px; }
.navContainer { padding-bottom: -1rem !important; }
 
.checkbox { color: white !important; }
 
 
}
 
}
  
<!-- Tablet UI styling -->
+
<!-- LAYOUT... TABLET -->
 
@media screen and (min-width: 576px) {
 
@media screen and (min-width: 576px) {
 
.col-md-4 { flex: 0 0 30%; max-width: 30%; }
 
.col-md-4 { flex: 0 0 30%; max-width: 30%; }
Line 44: Line 58:
 
.col-md-8 { flex: 0 0 66%; max-width: 66%; }
 
.col-md-8 { flex: 0 0 66%; max-width: 66%; }
 
.col-md-10 { flex: 0 0 80%; max-width: 80%; }
 
.col-md-10 { flex: 0 0 80%; max-width: 80%; }
.section { margin-left: 10px; }
+
.card-body { padding: 0 !important; }
 +
.section { margin-left: -10px; margin-bottom: 30px; }
 
.section p { padding-top: 10px; }
 
.section p { padding-top: 10px; }
 
}
 
}
  
<!-- Desktop UI styling -->
+
<!-- LAYOUT... DESKTOP -->
 
@media screen and (min-width: 992px) {
 
@media screen and (min-width: 992px) {
 
.col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
 
.col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
Line 59: Line 74:
 
}
 
}
  
<!-- Font styling -->
+
<!-- TEXT FORMATTING -->
h1, h2 {
+
h1, h2 { font-family: 'Helvetica', sans-serif !important; }
font-family: 'Helvetica', sans-serif !important;
 
}
 
 
 
h2 {
 
font-weight: 700;
 
border-bottom:none;
 
}
 
 
 
a {
 
text-decoration: underline;
 
}
 
  
.bold {
+
h2 { font-weight: 700; border-bottom: none; }
font-weight: 700;
 
}
 
 
 
<!-- Nav Menu Styling -->
 
.navMenu {
 
list-style:none;
 
}
 
  
.navContainer {
+
a { text-decoration: underline; }
overflow: auto;
 
width: 100%;
 
white-space:nowrap;
 
background-color: #F5F5F5;
 
border-bottom: 5px solid #AF3C43;
 
}
 
  
.navContainer::-webkit-scrollbar, .tabContainer::-webkit-scrollbar {
+
.bold { font-weight: 700; }
color: rgba(0,0,0,0);
 
}
 
  
.tabContainer {
+
<!-- NAVIGATION -->
overflow: auto;
+
.navMenu { list-style: none; }
width: 100%;
 
white-space:nowrap;
 
padding-bottom:0px !important;
 
}
 
  
 
.navMenu li {
 
.navMenu li {
Line 109: Line 94:
 
}
 
}
  
.navContainer .navMenu li {
+
.navMenu li a { text-decoration: none; }
margin-bottom: 8px;
+
 
}
+
.navMenu li:hover:not(.active) { background-color: #CECECE; border-radius: 10px; }
 +
 
 +
<!-- NAVIGATION... CONTAINERS -->
 +
.navContainer { overflow: auto; width: 100%; white-space: nowrap; background-color: #F5F5F5; border-bottom: 5px solid #6D4E86; }
  
.navMenu li a {
+
.tabContainer { overflow: auto; width: 100%; white-space: nowrap; padding-bottom: 0px !important; }
text-decoration: none;
 
}
 
  
.navMenu li:hover:not(.active) {
+
.navContainer .navMenu li { margin-bottom: 8px; }
background-color: #CECECE;
 
border-radius:10px;
 
}
 
  
.primary-btn a, .btn-info a, .arrow.up:hover {
+
.navContainer::-webkit-scrollbar, .tabContainer::-webkit-scrollbar { color: rgba(0,0,0,0); background-color: #F5F5F5; height: 5px; }
color: white !important;
 
text-decoration:none;
 
}
 
  
 +
<!-- NAVIGATION... BUTTONS -->
 
.primary-btn {
 
.primary-btn {
 
padding:8px 24px !important;
 
padding:8px 24px !important;
Line 135: Line 116:
 
}
 
}
  
.primary-btn:hover {
+
.primary-btn a, .arrow.up:hover { color: white !important; text-decoration: none; }
background-color: #00131c !important;
+
 
}
+
.primary-btn:hover { background-color: #00131c !important; }
  
.primary-btn.active, .primary-btn.active:hover {
+
.primary-btn.active, .primary-btn.active:hover { background-color: #F5F5F5 !important; }
background-color: #F5F5F5 !important;
 
}
 
  
.primary-btn.active a {
+
.primary-btn.active a { color: black !important; }
color: black !important;
 
}
 
  
<!-- Checklist styling -->
+
<!-- CHECKLIST -->
.checklistCont {
+
.checklistblock { border: 0px; margin: 1.5rem 0 1.5rem 0; }
border: 0px;
 
margin: 1.5rem 0 1.5rem 0;
 
}
 
  
 
.checkbox {
 
.checkbox {
 
display:inline-block;
 
display:inline-block;
color: white !important;
+
padding: 0.1rem 0.4rem 0.1rem 0.4rem !important;
background-color:#6D4E86;
+
border: solid 1px black;
 
margin-right: 10px;
 
margin-right: 10px;
padding: 0px 8px 0px 8px;
+
float: left;
 
}
 
}
  
.mw-parser-output .external {
+
.mw-parser-output .external { background: none; padding-right: 0; }
background:none;
 
padding-right:0;
 
}
 
  
.mw-collapsible {
+
.mw-collapsible { margin-bottom: 5px; }
margin-bottom: 5px;
 
}
 
  
.card {
+
<!-- BACK TO TOP -->
position: relative;
 
display: flex;
 
flex-direction: column;
 
min-width: 0;
 
word-wrap: break-word;
 
background-clip: border-box;
 
padding: 0 1.5rem 0 1.5rem;
 
}
 
 
 
.card-body {
 
flex: 1 1 auto;
 
padding: 12px;
 
}
 
 
 
<!-- Back to top Button styling -->
 
 
.btn-backtotop {
 
.btn-backtotop {
border: 1px solid #CECECE;
+
color: #666666; font-size: 1rem; font-weight: 400;  
border-radius: 1.5rem;
+
text-align: center; vertical-align: middle; line-height: 1.5; white-space: nowrap;  
background-color: #F5F5F5;
+
border: 1px solid transparent; border-radius: 0.35rem; background-color: #F5F5F5;  
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
+
user-select: none; padding: 0.375rem 0.75rem; box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
color: #666666;
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;  
font-weight: 600;  
 
 
}
 
}
  
.btn-backtotop .icon {
+
.btn-backtotop .icon { margin-right: 5px; }
margin-right: 5px;  
 
}
 
  
.btn-backtotop:hover {
+
.btn-backtotop:hover { color: white; background-color: #DDBFF5; }
color: white;
 
background-color: #002D42;  
 
}
 
  
.btn-backtotop a:hover {
+
.btn-backtotop a:hover { color: white; text-decoration: none; }
color: white;
 
text-decoration: none;
 
}
 
 
 
.fixed {
 
position:fixed;
 
bottom:5px;
 
right:5px;
 
}
 
 
 
.arrow {
 
border: solid black;
 
border-width: 0 3px 3px 0;
 
display: inline-block;
 
padding: 3px;
 
width: 5px;
 
height:5px;
 
position:relative;
 
top:5px;
 
}
 
 
 
.up {
 
transform: rotate(-135deg);
 
-webkit-transform: rotate(-135deg);
 
}
 
 
 
<!-- More Button styling -->
 
.btn {
 
font-weight: 400;
 
text-align: center;
 
white-space: nowrap;
 
vertical-align: middle;
 
user-select: none;
 
border: 1px solid transparent;
 
padding: 0.375rem 0.75rem;
 
font-size: 1rem;
 
line-height: 1.5;
 
border-radius: 0.35rem;
 
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
 
}
 
  
.btn-info {
+
.fixed { position: fixed; bottom: 5px; right: 5px; }
color: #fff;
 
background-color: #26374A;
 
border-color: #26374A;
 
box-shadow: none;
 
}
 
  
.btn-info:hover {
+
.arrow {  
color: #fff;
+
color: red; display: inline-block; position: relative;
background-color: #00131c;
+
border: solid black; border-width: 0 3px 3px 0;
border-color: #00131c;  
+
width: 5px; height: 5px; padding: 3px; top: 5px;  
 
}
 
}
  
.btn-info:focus, .btn-info.focus {
+
.up {transform: rotate(-135deg); -webkit-transform: rotate(-135deg); }
box-shadow: none, 0 0 0 0.2rem rgba(38, 154, 188, 0.5);  
 
}
 
 
 
.btn-info.disabled, .btn-info:disabled {
 
color: #333000;
 
background-color: #F5F5F5;
 
border-color: #F5F5F5;
 
margin-bottom: 12px;
 
}
 
  
 
}}
 
}}
== <span style="color:#AF3C43">Under Construction</span> ==
+
== <span style="color:#6D4E86">Under Construction</span> ==
  
 
<div class="nav" role="navigation" id="top">
 
<div class="nav" role="navigation" id="top">
Line 277: Line 171:
 
<div class="tabContainer">
 
<div class="tabContainer">
 
<ul class="navMenu">
 
<ul class="navMenu">
<li class="primary-btn lang"> [[Accueil_et_intégration_EDSC|Francais]] </li>  
+
<li class="primary-btn lang">[[Accueil_et_intégration_EDSC|Francais]]</li>  
<li class="primary-btn active"> [https://wiki.gccollab.ca/ESDC_Onboarding Home]</li>
+
<li class="primary-btn active">[https://wiki.gccollab.ca/ESDC_Onboarding Home]</li>
<li class="primary-btn"> [[ESDC_Onboarding/Executive|Executive]] </li>  
+
<li class="primary-btn">[[ESDC_Onboarding/Executive|Executives]] </li>  
<li class="primary-btn"> Student(Coming Soon)</li>  
+
<li class="primary-btn">Students (TBD)</li>  
 
</ul>
 
</ul>
 
</div>
 
</div>
Line 286: Line 180:
 
<div class="navContainer">
 
<div class="navContainer">
 
<ul class="navMenu">
 
<ul class="navMenu">
<span class="bold"> On this page </span>
+
<span class="bold">On this page:</span>
<li> [[ESDC_Onboarding#expect|What to expect]]</li>
+
<li>[[ESDC_Onboarding#expect|What to expect...]]</li>
<li> [[ESDC_Onboarding#onboarding|What is Onboarding?]]</li>
+
<li>[[ESDC_Onboarding#onboarding|What is Onboarding?]]</li>
<li> [[ESDC_Onboarding#checklist|Pre-Arrival Checklist]]</li>
+
<li>[[ESDC_Onboarding#checklist|Pre-Arrival Checklist]]</li>
 
</ul>  
 
</ul>  
 
</div>
 
</div>
Line 295: Line 189:
 
</div>
 
</div>
  
<div class="section col-sm-12 col-lg-8" id="expect">
+
<div class="section col-sm-12 col-lg-10" id="expect">
 
== What to expect as a new ESDC employee ==
 
== What to expect as a new ESDC employee ==
  
Line 302: Line 196:
 
<p>Whether you have been offered a position with ESDC or are curious about joining the department, this website explains what to expect and how to prepare for your new role.</p>
 
<p>Whether you have been offered a position with ESDC or are curious about joining the department, this website explains what to expect and how to prepare for your new role.</p>
  
<p><strong>We can’t wait for you to join our team!</strong></p>
+
<p>We can’t wait for you to join our team!</p><!-- ROX exclamation point is enough for emphasis -->
 
</div>
 
</div>
  
<div class="section col-sm-12 col-lg-8" id="onboarding">
+
<div class="section col-sm-12 col-lg-10" id="onboarding">
 
== What is Onboarding? ==
 
== What is Onboarding? ==
  
Line 313: Line 207:
 
</div>  
 
</div>  
  
<div class="section col-sm-12 col-lg-8" id="checklist">
+
<div class="section col-sm-12 col-lg-10" id="checklist">
 
== Pre-Arrival Checklist - Are you ready for your first day? ==<!-- ROX Modified text to lead to subpages. Reason: To remove one of the sections below. Subpage links covered in menu. -->
 
== Pre-Arrival Checklist - Are you ready for your first day? ==<!-- ROX Modified text to lead to subpages. Reason: To remove one of the sections below. Subpage links covered in menu. -->
  
<p>Our pre-arrival onboarding content contains general guidance that applies to most employees’ working arrangements. It also includes several specialized sections, such as information for incoming [[ESDC_Onboarding/Executive|Executives]].</p>
+
<p>Our pre-arrival onboarding content contains general guidance that applies to most employees’ working arrangements. It also includes several specialized sections, such as information for incoming [[ESDC_Onboarding/Executive|Executives]].</p>
+
<p>We are actively developing new content for other segments of our workforce. Be sure to check back regularly.</p>
+
<p>We are actively developing new content for other segments of our workforce. Be sure to check back regularly.</p>
  
<div class="checklistCont col-sm-12 col-md-10 col-lg-10">
+
<div class="checklistblock col-sm-12 col-lg-10">
+
<div class="card">
<div class="card">
 
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Discuss with your Hiring Manager ===
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Discuss with your Hiring Manager ===
 +
<div class="card-body mw-collapsible mw-collapsed">
  
<div class="mw-collapsible mw-collapsed">
+
<p>Your hiring manager (or equivalent liaison) has likely already contacted you to communicate the preliminary job offer and arrange a start date. This person will be the primary resource assigned to support your pre-arrival onboarding activities.</p>
<div class="card-body">
 
 
 
<p>Your hiring manager (or equivalent liaison) has likely already contacted you to communicate the preliminary job offer and arrange a start date. This person will be the primary resource assigned to support your pre-arrival onboarding activities.</p>
 
  
 
*<strong>Talk to the hiring manager about the details of your work arrangement</strong>, such as hours of work and work location. Find out if you will be working remotely, in-person or through a hybrid model.
 
*<strong>Talk to the hiring manager about the details of your work arrangement</strong>, such as hours of work and work location. Find out if you will be working remotely, in-person or through a hybrid model.
Line 337: Line 228:
 
*For any <strong>other questions or concerns</strong> not covered on this site, do not hesitate to contact your hiring manager.
 
*For any <strong>other questions or concerns</strong> not covered on this site, do not hesitate to contact your hiring manager.
  
</div>
+
</div>  
</div>
+
</div>
 
</div>
 
  
<div class="card greybg">
+
<div class="card greybg">
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Monitor your e-mail for official documents ===
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Monitor your e-mail for official documents ===
 +
<div class="card-body mw-collapsible mw-collapsed">
  
<div class="mw-collapsible mw-collapsed">
+
<p>At some point during your hiring process, you should have provided your ESDC contact with a primary e-mail address. Monitor this e-mail regularly for important messages.</p>
<div class="card-body ">
 
  
<p>At some point during your hiring process, you should have provided your ESDC contact with a primary e-mail address. Monitor this e-mail regularly for important messages.</p>
+
<p>The following list includes some examples of communications and documents you should receive before your arrival. Depending on your physical work arrangement, some of these items may not apply to you. When in doubt, <strong>ask your hiring manager</strong>.</p>
 
 
<p>The following list includes some examples of communications and documents you should receive before your arrival. Depending on your physical work arrangement, some of these items may not apply to you. When in doubt, <strong>ask your hiring manager</strong>.</p>
 
  
 
*Letter of offer package from your manager
 
*Letter of offer package from your manager
Line 362: Line 249:
 
**Job description
 
**Job description
  
</div>
+
</div>
</div>
+
</div><!-- ROX Removed the button section to subpages. Reason: Menu and section content covers it. Seems extra. -->
 
</div><!-- ROX Removed the button section to subpages. Reason: Menu and section content covers it. Seems extra. -->
 
  
<div class="card">
+
<div class="card">
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Getting your technology (IT) equipment and network access ===
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Getting your technology (IT) equipment and network access ===
+
<div class="card-body mw-collapsible mw-collapsed">
<div class="mw-collapsible mw-collapsed">
 
<div class="card-body">
 
  
<p>Whether you will be working remotely, in-person or through a hybrid model, your hiring manager (or equivalent liaison) will coordinate with you to ensure you receive the tools and equipment you need to carry out your work.</p>
+
<p>Whether you will be working remotely, in-person or through a hybrid model, your hiring manager (or equivalent liaison) will coordinate with you to ensure you receive the tools and equipment you need to carry out your work.</p>
  
<p>If you foresee the need for special equipment, or any other circumstance that may affect your ability to carry out your regular duties, please discuss it with your hiring manager as soon as possible.</p>
+
<p>If you foresee the need for special equipment, or any other circumstance that may affect your ability to carry out your regular duties, please discuss it with your hiring manager as soon as possible.</p>
  
<p>Once you obtain your IT equipment, follow the enclosed instructions to finish setting up your computer and access the ESDC corporate network. Ensure you have a stable internet connection if accessing the network remotely.</p>
+
<p>Once you obtain your IT equipment, follow the enclosed instructions to finish setting up your computer and access the ESDC corporate network. Ensure you have a stable internet connection if accessing the network remotely.</p>
  
 
==== Technical support ====
 
==== Technical support ====
  
<p>If you are having trouble setting up your workstation or logging onto the network, contact your hiring manager. They may open a service ticket on your behalf or ask you to contact the National Service Desk directly.</p>
+
<p>If you are having trouble setting up your workstation or logging onto the network, contact your hiring manager. They may open a service ticket on your behalf or ask you to contact the National Service Desk directly.</p>
  
<p>In the event you already have your computer, the National Service Desk toll-free number is on the login screen. Service times may vary depending on request volume so ensure your hiring manager is aware of the technical issue(s). They may be able to support you directly.</p>
+
<p>In the event you already have your computer, the National Service Desk toll-free number is on the login screen. Service times may vary depending on request volume so ensure your hiring manager is aware of the technical issue(s). They may be able to support you directly.</p>
  
 
==== Personal external storage devices are not permitted ====
 
==== Personal external storage devices are not permitted ====
  
<p>Please be advised that you should <strong>never connect personal external data storage devices</strong> such as USB keys, mobile phones, or any other external storage device to your ESDC workstation computers or laptops, even for charging purposes. Your hiring manager may direct you to additional resources on our corporate IT security policy.</p>
+
<p>Please be advised that you should <strong>never connect personal external data storage devices</strong> such as USB keys, mobile phones, or any other external storage device to your ESDC workstation computers or laptops, even for charging purposes. Your hiring manager may direct you to additional resources on our corporate IT security policy.</p>
  
</div>
+
</div>
</div>
+
</div>
 
</div>
 
  
<div class="card greybg">
+
<div class="card greybg">
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Get to know ESDC and other aspects of your employment ===
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Get to know ESDC and other aspects of your employment ===
+
<div class="card-body mw-collapsible mw-collapsed"><!-- ROX Combined Other with Dept info-->
<div class="mw-collapsible mw-collapsed">
+
<div class="card-body"><!-- ROX Combined Other with Dept info-->
 
 
 
==== Departmental Information ====
 
==== Departmental Information ====
  
 +
<div class="row">
 +
<div class="col-sm-12 col-md-4">
 
*[https://www.canada.ca/en/employment-social-development/corporate/portfolio.html Employment and Social Development]
 
*[https://www.canada.ca/en/employment-social-development/corporate/portfolio.html Employment and Social Development]
**[https://www.canada.ca/en/employment-social-development/corporate/portfolio/labour.html Labour Program]
+
*[https://www.canada.ca/en/employment-social-development/corporate/portfolio/labour.html Labour Program]
**[https://www.canada.ca/en/employment-social-development/corporate/portfolio/service-canada.html Service Canada]
+
*[https://www.canada.ca/en/employment-social-development/corporate/portfolio/service-canada.html Service Canada]
**[https://www.canada.ca/en/employment-social-development/corporate/portfolio.html Read more about the portfolios and programs]
 
 
*[https://www.canada.ca/en/employment-social-development/corporate/reports/departmental-results/2017-2018/mandate-role.html Mandate]
 
*[https://www.canada.ca/en/employment-social-development/corporate/reports/departmental-results/2017-2018/mandate-role.html Mandate]
 
*[https://www.canada.ca/en/employment-social-development/corporate/reports/departmental-plan.html Departmental Plans]
 
*[https://www.canada.ca/en/employment-social-development/corporate/reports/departmental-plan.html Departmental Plans]
 
*[https://www.canada.ca/en/employment-social-development/corporate/organizational-structure.html Read about our Leaders]
 
*[https://www.canada.ca/en/employment-social-development/corporate/organizational-structure.html Read about our Leaders]
 +
</div>
 +
 +
<div class="col-sm-12 col-md-4">
 
*[https://www.canada.ca/en/government/publicservice/wellness-inclusion-diversity-public-service/health-wellness-public-servants/mental-health-workplace/resources-employees-mental-health-workplace.html Mental Health]  
 
*[https://www.canada.ca/en/government/publicservice/wellness-inclusion-diversity-public-service/health-wellness-public-servants/mental-health-workplace/resources-employees-mental-health-workplace.html Mental Health]  
 
*[https://www.canada.ca/en/government/publicservice/covid-19.html COVID 19]
 
*[https://www.canada.ca/en/government/publicservice/covid-19.html COVID 19]
 
*[https://www.tbs-sct.gc.ca/pol/doc-eng.aspx?id=25049 Values & Ethics]
 
*[https://www.tbs-sct.gc.ca/pol/doc-eng.aspx?id=25049 Values & Ethics]
 +
</div>
 +
</div>
  
 
==== Diversity & Inclusion ====
 
==== Diversity & Inclusion ====
  
<p>The Department is [https://www.canada.ca/en/government/publicservice/wellness-inclusion-diversity-public-service/diversity-inclusion-public-service2.html committed to having a skilled, inclusive and diversified workforce], which is representative of the population we serve.</p>
+
<p>The Department is [https://www.canada.ca/en/government/publicservice/wellness-inclusion-diversity-public-service/diversity-inclusion-public-service2.html committed to having a skilled, inclusive and diversified workforce], which is representative of the population we serve.</p>
  
<p>We encourage all employees to <strong>complete or review their self-identification form</strong> in myEMS (PeopleSoft) and to voluntarily identify, as applicable, to one or more of the four (4) employment equity designated groups (i.e. visible minorities, Indigenous peoples, persons with disabilities and women and/or the LGBTQ2+ community, a group that is not currently part of the Employment Equity Act). This form will be available <strong>once you have your ESDC network access</strong>.</p>
+
<p>We encourage all employees to <strong>complete or review their self-identification form</strong> in myEMS (PeopleSoft) and to voluntarily identify, as applicable, to one or more of the four (4) employment equity designated groups (i.e. visible minorities, Indigenous peoples, persons with disabilities and women and/or the LGBTQ2+ community, a group that is not currently part of the Employment Equity Act). This form will be available <strong>once you have your ESDC network access</strong>.</p>
  
<p>At ESDC, we believe that everyone deserves the same opportunities, chance at success, and ability to participate fully in society without barriers. We look forward to working with you to achieve this vision and to ensure all our employees and our executives reach their full potential.</p>
+
<p>At ESDC, we believe that everyone deserves the same opportunities, chance at success, and ability to participate fully in society without barriers. We look forward to working with you to achieve this vision and to ensure all our employees and our executives reach their full potential.</p>
  
 
==== Accessibility ====
 
==== Accessibility ====
  
<p>In June 2019, the [https://www.canada.ca/en/employment-social-development/programs/accessible-people-disabilities/act-infographic.html#section0 Accessible Canada Act] received Royal Assent. The Act establishes a framework to create a barrier-free Canada by proactively identifying, removing and preventing barriers to accessibility. It will also ensure that people with disabilities will no longer need to fight barriers to accessibility on an individual basis. With this legislation in place, millions of Canadians with disabilities can rely on the Government of Canada to remove the barriers that hinder their full participation in society. Learn more about [https://www.canada.ca/en/employment-social-development/programs/accessible-people-disabilities.html accessibility at ESDC].</p>
+
<p>In June 2019, the [https://www.canada.ca/en/employment-social-development/programs/accessible-people-disabilities/act-infographic.html#section0 Accessible Canada Act] received Royal Assent. The Act establishes a framework to create a barrier-free Canada by proactively identifying, removing and preventing barriers to accessibility. It will also ensure that people with disabilities will no longer need to fight barriers to accessibility on an individual basis. With this legislation in place, millions of Canadians with disabilities can rely on the Government of Canada to remove the barriers that hinder their full participation in society. Learn more about [https://www.canada.ca/en/employment-social-development/programs/accessible-people-disabilities.html accessibility at ESDC].</p>
  
 
==== Compensation & Benefits ====
 
==== Compensation & Benefits ====
  
<div class="row">
+
<div class="row">
<div class="col-sm-12 col-md-4 col-lg-4">
+
<div class="col-sm-12 col-md-4 col-lg-4">
 +
*<span class="bold">Pay</span>
 +
**[https://www.canada.ca/en/treasury-board-secretariat/topics/pay.html Pay for the public service]
 +
**[https://www.tpsgc-pwgsc.gc.ca/remuneration-compensation/services-paye-pay-services/paye-information-pay/paye-talon-stub-pay-eng.html How public service pay works]
 +
**[https://www.tbs-sct.gc.ca/pubs_pol/hrpubs/coll_agre/rates-taux-eng.asp Rates of pay for public service employees]
 +
**[https://www.canada.ca/en/treasury-board-secretariat/services/collective-agreements/occupational-groups.html Occupational groups]
 +
**[https://www.tpsgc-pwgsc.gc.ca/remuneration-compensation/services-paye-pay-services/paye-information-pay/calendrierpaye-paycalendar-eng.html Pay dates]
 +
</div>
 +
 
 +
<div class="col-sm-12 col-md-4 col-lg-4">
 +
*<span class="bold">Benefits</span>
 +
**[https://www.canada.ca/en/treasury-board-secretariat/topics/benefit-plans/plans/disability-insurance-plan.html Disability Insurance Plan]
 +
**[https://www.canada.ca/en/treasury-board-secretariat/topics/benefit-plans/plans/dental-care-plan.html Public Service Dental Care Plan]
 +
**[https://www.canada.ca/en/treasury-board-secretariat/topics/benefit-plans/plans/health-care-plan.html Public Service Health Care Plan]
 +
**[https://www.canada.ca/en/treasury-board-secretariat/topics/benefit-plans/plans/management-insurance-plan.html Public Service Management Insurance Plan] (*Only applies to Executives, excluded, and unrepresented employees)
 +
**[https://www.canada.ca/en/treasury-board-secretariat/topics/pension-plan.html Public Service Pension Plan, including the Supplementary Death Benefit]
 +
</div>
 +
 
 +
<div class="col-sm-12 col-md-4 col-lg-4">
 
*<span class="bold">Collective Agreements</span>
 
*<span class="bold">Collective Agreements</span>
 
**[https://www.tbs-sct.gc.ca/agreements-conventions/index-eng.aspx Collective Agreements]
 
**[https://www.tbs-sct.gc.ca/agreements-conventions/index-eng.aspx Collective Agreements]
Line 436: Line 339:
 
**[https://www.tpsgc-pwgsc.gc.ca/remuneration-compensation/services-paye-pay-services/paye-information-pay/vie-life/vie-conge-life-leave/index-eng.html Taking leave]
 
**[https://www.tpsgc-pwgsc.gc.ca/remuneration-compensation/services-paye-pay-services/paye-information-pay/vie-life/vie-conge-life-leave/index-eng.html Taking leave]
 
**[https://www.tpsgc-pwgsc.gc.ca/remuneration-compensation/services-paye-pay-services/paye-information-pay/vie-life/vie-conge-life-leave/conge-paye-holiday-pay-eng.html Statutory holiday pay]
 
**[https://www.tpsgc-pwgsc.gc.ca/remuneration-compensation/services-paye-pay-services/paye-information-pay/vie-life/vie-conge-life-leave/conge-paye-holiday-pay-eng.html Statutory holiday pay]
</div>
+
</div>
 +
</div>
 +
 +
==== Download the MyESDC mobile app ====
  
<div class="col-sm-12 col-md-4 col-lg-4">
+
<p>The MyESDC App provides important Government of Canada information to public servants, members of the public who may be interested in working for Employment and Social Development Canada (ESDC), or anyone who is interested in knowing more about the department in general.</p>
*<span class="bold">Benefits</span>
 
**[https://www.canada.ca/en/treasury-board-secretariat/topics/benefit-plans/plans/disability-insurance-plan.html Disability Insurance Plan]
 
**[https://www.canada.ca/en/treasury-board-secretariat/topics/benefit-plans/plans/dental-care-plan.html Public Service Dental Care Plan]
 
**[https://www.canada.ca/en/treasury-board-secretariat/topics/benefit-plans/plans/health-care-plan.html Public Service Health Care Plan]
 
**[https://www.canada.ca/en/treasury-board-secretariat/topics/benefit-plans/plans/management-insurance-plan.html Public Service Management Insurance Plan] (*Only applies to Executives, excluded, and unrepresented employees)
 
**[https://www.canada.ca/en/treasury-board-secretariat/topics/pension-plan.html Public Service Pension Plan, including the Supplementary Death Benefit]
 
</div>
 
 
<div class="col-sm-12 col-md-4 col-lg-4">
 
*<span class="bold">Pay</span>
 
**[https://www.canada.ca/en/treasury-board-secretariat/topics/pay.html Pay for the public service]
 
**[https://www.tpsgc-pwgsc.gc.ca/remuneration-compensation/services-paye-pay-services/paye-information-pay/paye-talon-stub-pay-eng.html How public service pay works]
 
**[https://www.tbs-sct.gc.ca/pubs_pol/hrpubs/coll_agre/rates-taux-eng.asp Rates of pay for public service employees]
 
**[https://www.canada.ca/en/treasury-board-secretariat/services/collective-agreements/occupational-groups.html Occupational groups]
 
**[https://www.tpsgc-pwgsc.gc.ca/remuneration-compensation/services-paye-pay-services/paye-information-pay/calendrierpaye-paycalendar-eng.html Pay dates]
 
</div>
 
</div>
 
 
==== Download the MyESDC mobile app ====
 
  
<p>The MyESDC App provides important Government of Canada information to public servants, members of the public who may be interested in working for Employment and Social Development Canada (ESDC), or anyone who is interested in knowing more about the department in general.</p>
+
<p>The app can be downloaded from the [https://play.google.com/store/apps/details?id%com.esdc_emg&hl%en_CA&gl%US Google Play Store] and the [https://apps.apple.com/ca/app/myesdc-monedsc/id1567270052 Apple App Store] for Android and Apple mobile devices respectively.</p>
  
<p>The app can be downloaded from the [https://play.google.com/store/apps/details?id%com.esdc_emg&hl%en_CA&gl%US Google Play Store] and the [https://apps.apple.com/ca/app/myesdc-monedsc/id1567270052 Apple App Store] for Android and Apple mobile devices respectively.</p>
+
</div>
+
</div>
</div>
 
</div>
 
 
</div>
 
  
<div class="card">
+
<div class="card">
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Explore (and join!) our networks and communities ===
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Explore (and join!) our networks and communities ===
 +
<div class="card-body mw-collapsible mw-collapsed">
 
 
<div class="mw-collapsible mw-collapsed">
+
<p>Here is a list of ESDC employee networks you can join when you begin working. While not all networks have an external web presence, you can find more information about each of them on our internal department site (iService) once you have access to the system. A comprehensive list with each network’s contact information is also available.</p>
<div class="card-body">
 
 
<p>Here is a list of ESDC employee networks you can join when you begin working. While not all networks have an external web presence, you can find more information about each of them on our internal department site (iService) once you have access to the system. A comprehensive list with each network’s contact information is also available.</p>
 
  
<div class="row">
+
<div class="row">
<div class="col-sm-12 col-md-4">
+
<div class="col-sm-12 col-md-4">
 
==== National Networks ====
 
==== National Networks ====
  
Line 490: Line 371:
 
*Transformation Engagement Team  
 
*Transformation Engagement Team  
 
*Youth Mandate for Greater Involvement (YMAGIN)  
 
*Youth Mandate for Greater Involvement (YMAGIN)  
</div>
+
</div>
  
<div class="col-sm-12 col-md-4">
+
<div class="col-sm-12 col-md-4">
 
==== Regional Networks ====
 
==== Regional Networks ====
  
Line 498: Line 379:
 
*EDSC Managers' Community  
 
*EDSC Managers' Community  
 
*Team Leader Community of Practice
 
*Team Leader Community of Practice
</div>
+
</div>
</div>
+
</div>
+
</div>
+
</div>
</div>
+
</div>
 
</div>
 
  
<div class="card greybg">
+
<div class="card greybg">
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Our social media presence and employee conduct ===
 
=== <span class="checkbox" aria-hidden="true">&#10004;</span>Our social media presence and employee conduct ===
+
<div class="card-body mw-collapsible mw-collapsed">
<div class="mw-collapsible mw-collapsed">
+
<div class="card-body">
+
<p>Our department has a vibrant presence on social media. We encourage you to follow and connect with us!</p>
+
<p>Our department has a vibrant presence on social media. We encourage you to follow and connect with us!</p>
+
<p><strong>As public servants, when using social media during our personal time we should:</strong></p>
 
<p><strong>As public servants, when using social media during our personal time we should:</strong></p>
 
  
 
*Not criticize the Government of Canada, ESDC or its policies.
 
*Not criticize the Government of Canada, ESDC or its policies.
Line 520: Line 397:
 
*Respect confidentiality and privacy.
 
*Respect confidentiality and privacy.
 
*Never sign your personal messages with your departmental title.
 
*Never sign your personal messages with your departmental title.
+
<p>Refer to [https://www.tbs-sct.gc.ca/pol/doc-eng.aspx?id%27907#secF.1 Guideline on Acceptable Network and Device Use] for more information on social media usage guidelines for public servants.</p>
+
<p>Refer to [https://www.tbs-sct.gc.ca/pol/doc-eng.aspx?id%27907#secF.1 Guideline on Acceptable Network and Device Use] for more information on social media usage guidelines for public servants.</p>
  
<div class="row">
+
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-2">
+
<div class="col-sm-12 col-md-12 col-lg-2">
<strong><p>Twitter</p></strong>
+
<strong><p>Twitter</p></strong>
 
*[https://twitter.com/ESDC_GC @ESDC_GC]
 
*[https://twitter.com/ESDC_GC @ESDC_GC]
 
*[https://twitter.com/ServiceCanada_E @ServiceCanada_E]
 
*[https://twitter.com/ServiceCanada_E @ServiceCanada_E]
 
*[https://twitter.com/AccessibleGC @AccessibleGC]
 
*[https://twitter.com/AccessibleGC @AccessibleGC]
 
*[https://twitter.com/stp_pts?lang%en @STP_PTS]
 
*[https://twitter.com/stp_pts?lang%en @STP_PTS]
</div>
+
</div>
+
<div class="col-sm-12 col-md-12 col-lg-2">
+
<div class="col-sm-12 col-md-12 col-lg-2">
<strong><p>Facebook</p></strong>
+
<strong><p>Facebook</p></strong>
 
*[https://www.facebook.com/ESDC.GC/ Employment and Social Development Canada]
 
*[https://www.facebook.com/ESDC.GC/ Employment and Social Development Canada]
 
*[https://facebook.com/AccessibleGC/ Accessible Canada]
 
*[https://facebook.com/AccessibleGC/ Accessible Canada]
 
*[https://www.facebook.com/LeadersToday/ Leaders Today]
 
*[https://www.facebook.com/LeadersToday/ Leaders Today]
 
*[https://www.facebook.com/pages/Seniors-in-Canada-A%C3%AEn%C3%A9s-au-Canada/1471831713076413?ref%hl Seniors in Canada]
 
*[https://www.facebook.com/pages/Seniors-in-Canada-A%C3%AEn%C3%A9s-au-Canada/1471831713076413?ref%hl Seniors in Canada]
</div>
+
</div>
+
<div class="col-sm-12 col-md-12 col-lg-2">
+
<div class="col-sm-12 col-md-12 col-lg-2">
<strong><p>YouTube</p></strong>
+
<strong><p>YouTube</p></strong>
 
*[https://www.youtube.com/user/HRSDCanada ESDC]
 
*[https://www.youtube.com/user/HRSDCanada ESDC]
 
*[https://www.youtube.com/user/ServiceCanadaE/videos Service Canada]
 
*[https://www.youtube.com/user/ServiceCanadaE/videos Service Canada]
</div>
+
</div>
+
<div class="col-sm-12 col-md-12 col-lg-2">
+
<div class="col-sm-12 col-md-12 col-lg-2">
<strong><p>LinkedIn</p></strong>
+
<strong><p>LinkedIn</p></strong>
 
*[http://ow.ly/XBs2R ESDC]
 
*[http://ow.ly/XBs2R ESDC]
 
*[http://ow.ly/XBs7d Service Canada]
 
*[http://ow.ly/XBs7d Service Canada]
</div>
+
</div>
+
<div class="col-sm-12 col-md-12 col-lg-2">
+
<div class="col-sm-12 col-md-12 col-lg-2">
<strong><p>Instagram</p></strong>
+
<strong><p>Instagram</p></strong>
 
*[https://www.instagram.com/esdc.edsc/ ESDC]
 
*[https://www.instagram.com/esdc.edsc/ ESDC]
 
*[https://www.instagram.com/leaderstoday/ Leaders Today (@leaderstoday)]
 
*[https://www.instagram.com/leaderstoday/ Leaders Today (@leaderstoday)]
</div>
+
</div>
</div>
+
</div>
  
</div>
+
</div>
</div>
+
</div>
+
</div>
</div>
 
 
</div>
 
 
 
 
</div>
 
</div>
  
 
<!-- Back to top button -->
 
<!-- Back to top button -->
[[ESDC_Onboarding#top|<div class="btn btn-backtotop fixed"><span class="arrow up"></span></div>]]
+
[[ESDC_Onboarding#top|<div class="btn-backtotop fixed"><span class="arrow up"></span></div>]]
  
 
[[fr:Accueil_et_intégration_EDSC]]
 
[[fr:Accueil_et_intégration_EDSC]]
 
__NOEDITSECTION__
 
__NOEDITSECTION__
 
__NOTOC__
 
__NOTOC__

Latest revision as of 12:24, 20 October 2021

Under Construction

What to expect as a new ESDC employee

Employment and Social Development Canada (ESDC), the fourth-largest department within the Government of Canada, has four ministers and over 36,000 public service employees who work to improve the standard of living and quality of life for all Canadians by supporting the development of a highly skilled labour force and promoting an efficient and inclusive labour market.

Whether you have been offered a position with ESDC or are curious about joining the department, this website explains what to expect and how to prepare for your new role.

We can’t wait for you to join our team!

What is Onboarding?

Onboarding is the process of integrating new employees into the workplace, beginning with the acceptance of the initial job offer and continuing through the first 6 to 12 months of employment. It includes activities such as training and mentoring, as well as providing all pertinent information on internal policies, work processes and established cultural norms.

While most onboarding activities take place after you begin working, the Pre-Arrival Checklist outlines several important steps you can follow leading up to your first day.

Pre-Arrival Checklist - Are you ready for your first day?

Our pre-arrival onboarding content contains general guidance that applies to most employees’ working arrangements. It also includes several specialized sections, such as information for incoming Executives.

We are actively developing new content for other segments of our workforce. Be sure to check back regularly.

Discuss with your Hiring Manager

Your hiring manager (or equivalent liaison) has likely already contacted you to communicate the preliminary job offer and arrange a start date. This person will be the primary resource assigned to support your pre-arrival onboarding activities.

  • Talk to the hiring manager about the details of your work arrangement, such as hours of work and work location. Find out if you will be working remotely, in-person or through a hybrid model.
  • Stay in regular contact with your manager if there is a long period between the job offer and the start date.
  • It may be too early to know if you need workplace accommodation but take the time to speak to your new manager about the workplace and any potential workplace accommodation.
  • Workspace setups will vary on a case-by-case basis, but if you foresee the need for special equipment to carry out your duties, please discuss it with your hiring manager as soon as possible.
  • Before your first day, make sure you have clear instructions about what to do and have the required contact information for your arrival should it be virtual or in-person.
  • For any other questions or concerns not covered on this site, do not hesitate to contact your hiring manager.

Monitor your e-mail for official documents

At some point during your hiring process, you should have provided your ESDC contact with a primary e-mail address. Monitor this e-mail regularly for important messages.

The following list includes some examples of communications and documents you should receive before your arrival. Depending on your physical work arrangement, some of these items may not apply to you. When in doubt, ask your hiring manager.

  • Letter of offer package from your manager
  • Instructions for obtaining your IT equipment from your manager or a delegated IT technician
  • Network access information
  • Reference materials related to your role and organization:
    • Phone list
    • Organizational chart with titles
    • Staff lists and/or other contact lists
    • Voicemail and email instructions
    • Job description

Getting your technology (IT) equipment and network access

Whether you will be working remotely, in-person or through a hybrid model, your hiring manager (or equivalent liaison) will coordinate with you to ensure you receive the tools and equipment you need to carry out your work.

If you foresee the need for special equipment, or any other circumstance that may affect your ability to carry out your regular duties, please discuss it with your hiring manager as soon as possible.

Once you obtain your IT equipment, follow the enclosed instructions to finish setting up your computer and access the ESDC corporate network. Ensure you have a stable internet connection if accessing the network remotely.

Technical support

If you are having trouble setting up your workstation or logging onto the network, contact your hiring manager. They may open a service ticket on your behalf or ask you to contact the National Service Desk directly.

In the event you already have your computer, the National Service Desk toll-free number is on the login screen. Service times may vary depending on request volume so ensure your hiring manager is aware of the technical issue(s). They may be able to support you directly.

Personal external storage devices are not permitted

Please be advised that you should never connect personal external data storage devices such as USB keys, mobile phones, or any other external storage device to your ESDC workstation computers or laptops, even for charging purposes. Your hiring manager may direct you to additional resources on our corporate IT security policy.

Get to know ESDC and other aspects of your employment

Departmental Information

Diversity & Inclusion

The Department is committed to having a skilled, inclusive and diversified workforce, which is representative of the population we serve.

We encourage all employees to complete or review their self-identification form in myEMS (PeopleSoft) and to voluntarily identify, as applicable, to one or more of the four (4) employment equity designated groups (i.e. visible minorities, Indigenous peoples, persons with disabilities and women and/or the LGBTQ2+ community, a group that is not currently part of the Employment Equity Act). This form will be available once you have your ESDC network access.

At ESDC, we believe that everyone deserves the same opportunities, chance at success, and ability to participate fully in society without barriers. We look forward to working with you to achieve this vision and to ensure all our employees and our executives reach their full potential.

Accessibility

In June 2019, the Accessible Canada Act received Royal Assent. The Act establishes a framework to create a barrier-free Canada by proactively identifying, removing and preventing barriers to accessibility. It will also ensure that people with disabilities will no longer need to fight barriers to accessibility on an individual basis. With this legislation in place, millions of Canadians with disabilities can rely on the Government of Canada to remove the barriers that hinder their full participation in society. Learn more about accessibility at ESDC.

Compensation & Benefits

Download the MyESDC mobile app

The MyESDC App provides important Government of Canada information to public servants, members of the public who may be interested in working for Employment and Social Development Canada (ESDC), or anyone who is interested in knowing more about the department in general.

The app can be downloaded from the Google Play Store and the Apple App Store for Android and Apple mobile devices respectively.

Explore (and join!) our networks and communities

Here is a list of ESDC employee networks you can join when you begin working. While not all networks have an external web presence, you can find more information about each of them on our internal department site (iService) once you have access to the system. A comprehensive list with each network’s contact information is also available.

National Networks

  • Association of Professional Executives
  • Black Engagement and Advancement Team
  • Employee Pride Network
  • Employees with Disabilities Network
  • ESDC Speakers Bureau
  • ESDC Visible Minorities Network
  • Indigenous Employees’ Circle (IEC)
  • The Student Network
  • Transformation Engagement Team
  • Youth Mandate for Greater Involvement (YMAGIN)

Regional Networks

  • Administrative Professionals Network (APN)
  • EDSC Managers' Community
  • Team Leader Community of Practice

Our social media presence and employee conduct

Our department has a vibrant presence on social media. We encourage you to follow and connect with us!

As public servants, when using social media during our personal time we should:

  • Not criticize the Government of Canada, ESDC or its policies.
  • Uphold the political neutrality and impartiality of the federal public service.
  • Respect confidentiality and privacy.
  • Never sign your personal messages with your departmental title.

Refer to Guideline on Acceptable Network and Device Use for more information on social media usage guidelines for public servants.