-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.json
More file actions
1698 lines (1698 loc) · 137 KB
/
input.json
File metadata and controls
1698 lines (1698 loc) · 137 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "COR101",
"legacy_cc": "C601",
"title_en": "Phoenix Self-Service for Employees (COR101)",
"title_fr": "Libre-service de Phénix pour les employés (COR101)",
"product_code": "C601-000-OSC-I-21-12-2015",
"desc_en": "Phoenix is the Government of Canada's pay and benefits application, with self-service features for employees and managers. This online self-paced course provides a practical overview of the Phoenix self-service functions available to employees to help ensure the accurate processing of pay. Participants will learn how to use these functions to quickly and efficiently perform a variety of essential routine tasks. Topics include: · managing direct deposit information and voluntary deductions\n· managing coverage under the Public Service Health Care Plan\n· updating employee-to-manager relationships\n· reporting time\n· viewing payroll statements",
"desc_fr": "Phénix, l'application de paye et d'avantages sociaux du gouvernement du Canada, comprend des fonctions libre-service pour les employés et les gestionnaires. Ce cours en ligne à rythme libre donne un aperçu pratique des fonctions libre-service de Phénix mises à la disposition des employés pour aider à assurer un traitement exact de la paye. Les participants découvriront comment utiliser ces fonctions pour exécuter rapidement et efficacement diverses tâches régulières. Sujets traités : · gérer les renseignements sur le dépôt direct et les retenues facultatives;\n· gérer la garantie au titre du Régime de soins de santé de la fonction publique;\n· mettre à jour le nom de son gestionnaire;\n· déclarer ses heures de travail;\n· consulter ses relevés de paye.",
"intended_audience_details": null,
"hours_online": 1,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2015-12-21",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": "knowledge",
"mandatory_training": "required training by tbs",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "other",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": "atlantic_canada_opportunities_agency,canada_school_of_public_service,canadian_dairy_commission,canadian_grain_commission,civilian_review_and_complaints_commission_for_the_rcmp,correctional_service_canada,office_of_the_ombudsman_for_the_department_of_national_defence_and_the_canadian_armed_forces,employment_and_social_development_canada,fisheries_and_oceans_canada,immigration_and_refugee_board_of_canada,innovation_science_and_economic_development_canada,military_police_complaints_commission_of_canada,national_film_board,parks_canada,parole_board_of_canada,patented_medicine_prices_review_board_canada,privy_council_office,public_prosecution_service_of_canada,public_services_and_procurement_canada,transportation_safety_board_of_canada,treasury_board_of_canada_secretariat,veterans_review_and_appeal_board,other",
"recommended_by": "agriculture_and_agri_food_canada",
"recommended_oth": null,
"topics": "government_operations,leadership",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": "operational_effectiveness",
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": null
},
{
"id": "COR102",
"legacy_cc": "C602",
"title_en": "Phoenix Manager Self-Service (COR102)",
"title_fr": "Libre-service de Phénix pour gestionnaires (COR102)",
"product_code": "C602-000-OSC-I-21-12-2015",
"desc_en": "Phoenix is the Government of Canada's pay and benefits application, with self-service features for employees and managers. This online self-paced course provides an overview of the self-service functions that the Phoenix system offers to managers with signing authority under section 34 of the Financial Administration Act. Participants will benefit from demonstrations on how to use the different functions available to managers to quickly and efficiently perform common tasks related to work schedules and time management. Topics include: · reviewing, assigning and creating work schedules\n· viewing and reporting time entries\n· reviewing and resolving time entry exceptions\n· approving payable time",
"desc_fr": "Phénix, l'application de paye et d'avantages sociaux du gouvernement du Canada, comprend des fonctions libre-service pour les employés et les gestionnaires. Ce cours en ligne à rythme libre donne un aperçu des fonctions de libre-service de Phénix destinées aux gestionnaires disposant de pouvoirs de signature en vertu de l'article 34 de la Loi sur la gestion des finances publiques. Les participants assisteront à des démonstrations sur la façon d'utiliser les différentes fonctions offertes aux gestionnaires, qui permettent notamment d'exécuter rapidement et efficacement des tâches courantes liées aux horaires de travail et à la gestion du temps. Sujets traités : · examiner, assigner et créer des horaires de travail;\n· afficher et consigner les heures déclarées;\n· examiner et résoudre les exceptions relatives aux heures déclarées;\n· approuver les heures payables.",
"intended_audience_details": null,
"hours_online": 1,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2015-12-21",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": "knowledge",
"mandatory_training": "required training by tbs",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "managers,other",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": "agriculture_and_agri_food_canada,atlantic_canada_opportunities_agency,canada_school_of_public_service,canadian_dairy_commission,canadian_grain_commission,other,civilian_review_and_complaints_commission_for_the_rcmp,correctional_service_canada,office_of_the_ombudsman_for_the_department_of_national_defence_and_the_canadian_armed_forces,employment_and_social_development_canada,fisheries_and_oceans_canada,innovation_science_and_economic_development_canada,military_police_complaints_commission_of_canada,parks_canada,parole_board_of_canada,privy_council_office,public_prosecution_service_of_canada,public_services_and_procurement_canada,treasury_board_of_canada_secretariat,veterans_affairs_canada,veterans_review_and_appeal_board",
"recommended_by": "transportation_safety_board_of_canada",
"recommended_oth": null,
"topics": "government_operations,leadership",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": "operational_effectiveness",
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": null
},
{
"id": "COR103",
"legacy_cc": "C603",
"title_en": "Phoenix Navigation Overview (COR103)",
"title_fr": "Aperçu de la navigation dans Phénix (COR103)",
"product_code": "C603-000-OSC-I-21-12-2015",
"desc_en": "Phoenix is the Government of Canada's pay and benefits application, with self-service features for employees and managers. This online self-paced course provides new users with an overview of how to use the Phoenix Pay System and navigate through the application. Participants will learn about the various features that can help them to access their pay information more efficiently. Topics include: · logging in and out of the Phoenix Pay System\n· using toolbar items and menus\n· adding favourites\n· personalizing home pages",
"desc_fr": "Phénix, l'application de paye et d'avantages sociaux du gouvernement du Canada, comprend des fonctions libre-service pour les employés et les gestionnaires. Ce cours en ligne à rythme libre donne un aperçu des fonctions du système de paye Phénix pour permettre à ses nouveaux utilisateurs de s'orienter dans l'application. Les participants apprendront à utiliser les diverses fonctionnalités qui leur permettront d'avoir accès plus efficacement à l'information concernant leur paye. Sujets traités : · ouvrir et fermer une session dans Phénix;\n· utiliser la barre d'outils et les menus;\n· ajouter des favoris;\n· personnaliser la page d'accueil.",
"intended_audience_details": null,
"hours_online": 2,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": false,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2015-12-21",
"archived_date_proposed": "1900-01-01",
"status": "suspended",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "other government of canada department",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": "knowledge",
"mandatory_training": "other government of canada department",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "functional_specialists,employees",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": "atlantic_canada_opportunities_agency,canadian_dairy_commission,civilian_review_and_complaints_commission_for_the_rcmp,employment_and_social_development_canada,fisheries_and_oceans_canada,military_police_complaints_commission_of_canada,veterans_review_and_appeal_board,other",
"recommended_by": "global_affairs_canada",
"recommended_oth": null,
"topics": "government_operations,leadership",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": "operational_effectiveness",
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": null
},
{
"id": "COR104",
"legacy_cc": "C604",
"title_en": "Phoenix Overview for Compensation Advisors (COR104)",
"title_fr": "Aperçu de Phénix pour les conseillers en rémunération (COR104)",
"product_code": "C604-000-OSC-I-21-12-2015",
"desc_en": "Phoenix is the Government of Canada's pay and benefits application, with self-service features for employees and managers. This online self-paced course provides an overview of the Phoenix system for compensation advisors by explaining how the application integrates human resources and compensation data to produce payroll results. Participants will explore Phoenix from a compensation perspective, including the timing and impact of payroll updates on payroll operations. Topics include: · identifying key components and features of Phoenix\n· clarifying roles and responsibilities in the administration of payroll data\n· understanding compensation activities in Phoenix\n· identifying compensation activity triggers\n· describing compensation-related Phoenix inputs and outputs",
"desc_fr": "Phénix, l'application de paye et d'avantages sociaux du gouvernement du Canada, comprend des fonctions libre-service pour les employés et les gestionnaires. Ce cours en ligne à rythme libre, destiné aux conseillers en rémunération, donne un aperçu du système Phénix en expliquant la façon dont l'application intègre les données sur les ressources humaines et la rémunération pour produire les résultats de la paye. Les participants découvriront Phénix sous l'angle de la rémunération, en se penchant notamment sur le calendrier des mises à jour de la paye et ses répercussions sur les opérations de la paye. Sujets traités : · connaître les composantes et les caractéristiques clés de Phénix;\n· clarifier les rôles et les responsabilités relatives à la gestion des données de la paye;\n· comprendre les activités de rémunération dans Phénix;\n· cibler les éléments déclencheurs des activités de rémunération;\n· décrire les entrées et les sorties de données liées à la rémunération dans Phénix.",
"intended_audience_details": "This course is intended for Compensation Advisors.",
"hours_online": 2,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": false,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2015-12-21",
"archived_date_proposed": "1900-01-01",
"status": "suspended",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "other government of canada department",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": "knowledge",
"mandatory_training": "required training by tbs",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "functional_specialists",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": "atlantic_canada_opportunities_agency,canadian_dairy_commission,fisheries_and_oceans_canada,privy_council_office,veterans_review_and_appeal_board",
"recommended_by": "employment_and_social_development_canada,global_affairs_canada",
"recommended_oth": null,
"topics": "government_operations,leadership",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": "operational_effectiveness",
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": null
},
{
"id": "COR105",
"legacy_cc": "C605",
"title_en": "Demystifying Your Pay Stub (COR105)",
"title_fr": "Démystifier vos talons de paie (COR105)",
"product_code": "C605-000-OSC-I-04-11-2020",
"desc_en": "Understanding the terminology, payments and deductions on federal government pay stubs can sometimes be confusing. This online self-paced course helps to decipher the information displayed on pay stubs made available through Phoenix or the Compensation Web Applications (CWA). Participants will learn to interpret common pay factors, resolve issues, and access centralized pay information via MyGCPay. Topics include: - understanding the information on a Compensation Web Applications (CWA) pay stub\n- understanding the information on a Phoenix pay stub\n- finding centralized pay information using the MyGCPay application",
"desc_fr": "Il peut parfois être ardu de comprendre la terminologie, les paiements et les déductions qui figurent sur les talons de paye du gouvernement fédéral. Ce cours en ligne à rythme libre permet de déchiffrer les renseignements figurant sur les talons de paye qui sont rendus accessibles dans Phénix ou dans les Applications Web de la rémunération (AWR). Les participants apprendront à interpréter les facteurs courants liés à la paye, à résoudre des problèmes connexes et à accéder à des renseignements centralisés sur la paye au moyen de MaPayeGC. Sujets traités : - comprendre les renseignements figurant sur les talons de paye versés dans les AWR;\n- comprendre les renseignements figurant sur les talons de paye versés dans Phénix;\n- accéder à des renseignements centralisés sur la paye au moyen de MaPayeGC.",
"intended_audience_details": null,
"hours_online": 0.8,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2020-11-04",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": "knowledge",
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "employees",
"intended_audience_oth": null,
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": null
},
{
"id": "COR106",
"legacy_cc": "G131",
"title_en": "Having Constructive Performance Conversations (COR106)",
"title_fr": "Avoir des conversations constructives sur le rendement (COR106)",
"product_code": "G131-000-ILP-I-12-09-2011",
"desc_en": "Open discussions between managers and their team members are an important element of managing performance and preserving workplace well-being. This course helps to develop the skills necessary to navigate difficult performance conversations with empathy and assertiveness, and influence the attainment of common and practical management goals. Through the use of feedback and role-playing exercises, participants will learn practical techniques for creating a safe and open environment in the workplace for the discussion of difficult topics. Topics include: • creating a safe environment for discussions about performance\n• delivering difficult messages clearly and effectively\n• preparing for and managing constructive performance conversations\n• developing the feedback, empathy, assertiveness and listening skills required to engage employees in the process of managing performance Notes: This course is recommended for managers seeking to learn how to have constructive performance conversations. It is intended to teach them how to make these conversations less stressful and more productive while ensuring that all parties are treated fairly and with respect.",
"desc_fr": "La tenue de discussions ouvertes entre les gestionnaires et les membres de leur équipe est un élément important de la gestion du rendement et du mieux-être en milieu de travail. Ce cours aide à acquérir les compétences nécessaires pour gérer les conversations difficiles sur le rendement avec empathie et assurance et favoriser l'atteinte d'objectifs communs et pratiques en matière de gestion. Les participants, au moyen de jeux de rôles et de rétroaction, apprendront des techniques visant à créer un climat ouvert et sûr pour discuter de sujets délicats dans le milieu de travail. Sujets traités : • créer un climat sûr propice à la discussion sur le rendement;\n• transmettre un message délicat de façon claire et efficace;\n• se préparer à avoir des conversations constructives sur le rendement et gérer ces conversations;\n• acquérir les compétences permettant de faire participer l'employé au processus de gestion du rendement, soit la capacité de donner de la rétroaction, l'empathie, l'assurance et l'écoute. Remarques : Ce cours est recommandé aux gestionnaires qui veulent apprendre comment tenir des conversations constructives sur le rendement. Les gestionnaires découvriront comment rendre ces conversations moins stressantes et plus productives tout en s'assurant que toutes les parties sont traitées avec équité et respect.",
"intended_audience_details": null,
"hours_online": 0,
"hours_inclass": 3.5,
"days_inclass": 0,
"is_displayed": false,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": true,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2021-12-17",
"archived_date_proposed": "1900-01-01",
"status": "suspended",
"course_type": "course suspension",
"delivery_method": "in person classroom instructor-led training",
"registration_type": null,
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": "skill",
"mandatory_training": "other government of canada department",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "executives,managers,supervisors",
"intended_audience_oth": null,
"mandatory_training_fed": "immigration_refugees_and_citizenship_canada,veterans_review_and_appeal_board",
"recommended_by": "agriculture_and_agri_food_canada,canada_revenue_agency,canadian_intergovernmental_conference_secretariat,canadian_nuclear_safety_commission,canadian_space_agency,employment_and_social_development_canada,federal_economic_development_agency_for_southern_ontario,global_affairs_canada,health_canada,national_research_council_canada,parks_canada,public_health_agency_of_canada,public_safety_canada,public_services_and_procurement_canada,veterans_affairs_canada,national_defence",
"recommended_oth": null,
"topics": "leadership,working_with_others",
"topic_main": "leadership",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": "operational_effectiveness",
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": "managing_teams",
"topic_project_management": null,
"topic_govt_operation": null,
"course_prerequisite": null
},
{
"id": "COR107",
"legacy_cc": "G132",
"title_en": "Managing Unsatisfactory Performance (COR107)",
"title_fr": "Gérer le rendement insatisfaisant (COR107)",
"product_code": "G132-000-ILP-I-08-09-2011",
"desc_en": "Managers need to be equipped to confidently deal with unsatisfactory employee performance within their teams. This course examines a range of tools, skills and techniques designed to help managers carry out positive employee performance management, including practical options for addressing culpable and non-culpable behaviours. Participants will familiarize themselves with the performance management cycle and learn how to assess performance and conduct performance interviews. Topics include: · identifying unsatisfactory performance\n· providing effective feedback\n· conducting a performance interview\n· assessing accountability issues\n· applying the performance management decision-making process",
"desc_fr": "Les gestionnaires doivent posséder les outils nécessaires pour gérer avec assurance le rendement insatisfaisant des employés au sein de leurs équipes. Ce cours présente divers outils, aptitudes et techniques conçus pour permettre aux gestionnaires de gérer le rendement des employés de façon positive, notamment des options pratiques pour gérer les comportements fautifs et non fautifs. Les participants se familiariseront avec le cycle de gestion du rendement et apprendront à évaluer le rendement et à mener une discussion sur le rendement. Sujets traités : · cibler le rendement insuffisant;\n· fournir de la rétroaction efficace;\n· mener une discussion sur le rendement;\n· évaluer les questions de responsabilité;\n· appliquer le processus décisionnel pour la gestion du rendement.",
"intended_audience_details": null,
"hours_online": 0,
"hours_inclass": 3,
"days_inclass": 1,
"is_displayed": true,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": true,
"use_standard_learner": true,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2011-09-08",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "virtual instructor-led training",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": "skill",
"mandatory_training": "other government of canada department",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "supervisors,managers",
"intended_audience_oth": null,
"mandatory_training_fed": "employment_and_social_development_canada,veterans_affairs_canada,veterans_review_and_appeal_board",
"recommended_by": "agriculture_and_agri_food_canada,canadian_intergovernmental_conference_secretariat,canadian_nuclear_safety_commission,canadian_space_agency,global_affairs_canada,national_film_board,national_research_council_canada,natural_sciences_and_engineering_research_canada,parks_canada,public_services_and_procurement_canada",
"recommended_oth": null,
"topics": "leadership,working_with_others,government_operations",
"topic_main": "leadership",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": "operational_effectiveness",
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": "managing_teams",
"topic_project_management": null,
"topic_govt_operation": "policy_and_regulation",
"course_prerequisite": null
},
{
"id": "COR108",
"legacy_cc": "G133",
"title_en": "Developing Performance Agreements and Learning Plans (COR108)",
"title_fr": "Préparer une entente de rendement et un plan d'apprentissage(COR108)",
"product_code": "G133-000-ILP-I-12-03-2012",
"desc_en": "The focal point of performance management is the performance agreement, which spells out the work expectations for each employee. This course is designed to help managers develop proper performance agreements and meaningful learning objectives for their employees. Participants will review the performance management cycle, learn techniques to initiate conversations with their employees, and explore different methods to help them develop the competencies they need to perform at the required level. Topics include: • reviewing the performance management cycle\n• understanding the key leadership competencies\n• developing learning plans\n• having significant conversations with employees\n• applying the SMART method (specific, measurable, attainable, relevant and trackable)",
"desc_fr": "L'entente de rendement, qui énonce les attentes professionnelles à l'égard de chaque employé, est au cœur de la gestion du rendement. Ce cours vise à aider les gestionnaires à préparer une entente de rendement appropriée et à établir des objectifs d'apprentissage pertinents pour leurs employés. Les participants examineront le cycle de gestion du rendement, apprendront des techniques pour amorcer le dialogue avec leurs employés et exploreront différentes méthodes qui aideront ces derniers à acquérir les compétences dont ils ont besoin pour fournir le rendement souhaité. Sujets traités : • examiner le cycle de gestion du rendement;\n• comprendre les compétences clés en leadership;\n• préparer un plan d'apprentissage;\n• avoir des conversations efficaces avec les employés;\n• appliquer la méthode SMART (spécifique, mesurable, atteignable, réaliste, temporel).",
"intended_audience_details": null,
"hours_online": 0,
"hours_inclass": 7.5,
"days_inclass": 0,
"is_displayed": false,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": true,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2021-12-17",
"archived_date_proposed": "1900-01-01",
"status": "suspended",
"course_type": "course suspension",
"delivery_method": "in person classroom instructor-led training",
"registration_type": null,
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": "skill",
"mandatory_training": "other government of canada department",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "managers,supervisors",
"intended_audience_oth": null,
"mandatory_training_fed": "veterans_review_and_appeal_board",
"recommended_by": "agriculture_and_agri_food_canada,employment_and_social_development_canada,federal_economic_development_agency_for_southern_ontario,global_affairs_canada,national_film_board,parks_canada,public_services_and_procurement_canada",
"recommended_oth": null,
"topics": "leadership,government_operations",
"topic_main": "leadership",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": "operational_effectiveness,managing_teams",
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": null
},
{
"id": "COR109",
"legacy_cc": "G140",
"title_en": "Performance Management for the Government of Canada (COR109)",
"title_fr": "Gestion du rendement pour le gouvernement du Canada (COR109)",
"product_code": "G140-000-OSC-I-04-06-2013",
"desc_en": "Creating and sustaining a culture of high performance in the Government of Canada is key to ensuring the delivery of high-quality programs and services to Canadians. This online self-paced course, which is mandatory for managers and supervisors with performance management responsibilities, provides the information they need to fulfill their various roles and implement performance management principles and practices. In preparation for an online certification test, participants will study the basic concepts of performance management and related time-specific requirements, identify different types of behaviour, and learn how to apply best practices and effective techniques through useful, real-life exercises. Topics include: · introducing the Performance Management Annual Cycle\n· establishing performance expectations\n· understanding how to do a performance review\n· finalizing a performance assessment",
"desc_fr": "La création et le maintien d'une culture favorisant un rendement élevé au gouvernement du Canada permettent d'assurer la prestation d'excellents programmes et services à la population canadienne. Ce cours en ligne à rythme libre, qui fait partie de la formation indispensable des gestionnaires et des superviseurs responsables de la gestion du rendement, fournit l'information nécessaire pour s'acquitter de ce rôle et mettre en œuvre des principes et des pratiques de gestion du rendement. En prévision d'un examen de certification en ligne, les participants étudieront les notions de base de la gestion du rendement, les exigences liées aux délais et différents types de comportements, en plus d'apprendre à appliquer des pratiques exemplaires et des techniques éprouvées au moyen d'exercices utiles et concrets. Sujets traités : · explorer le cycle annuel de la gestion du rendement;\n· établir des attentes en matière de rendement;\n· comprendre comment produire une évaluation de rendement;\n· conclure l'évaluation de rendement.",
"intended_audience_details": null,
"hours_online": 1.5,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": true,
"date_actioned": "2013-06-04",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": "knowledge",
"mandatory_training": "required training by tbs",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "supervisors,managers",
"intended_audience_oth": null,
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "leadership,government_operations",
"topic_main": "leadership",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": "managing_teams,operational_effectiveness",
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "policy_and_regulation",
"course_prerequisite": null
},
{
"id": "COR110",
"legacy_cc": "G244",
"title_en": "Labour Relations in the Federal Public Sector (COR110)",
"title_fr": "Relations de travail dans le secteur public fédéral (COR110)",
"product_code": "G244-000-ILP-I-06-07-2011",
"desc_en": "It is essential that managers and human resources specialists in the federal public sector be well equipped to deal with labour relations matters. This online self-paced course presents the fundamentals of labour relations in the federal public sector, including rules and best practices to follow when managing employees. Participants will study the policy and legislative frameworks that govern labour relations and gain a better understanding of the rights, obligations, roles and responsibilities of management, employees and bargaining agents. Topics include: - interpreting and applying collective agreements\n- distinguishing between disciplinary and non-disciplinary matters\n- handling unsatisfactory performance, probation and medical incapacity\n- understanding grievances and dispute resolution Notes: This course represents the common core learning in labour relations for managers and human resources specialists.",
"desc_fr": "Il est essentiel que les gestionnaires et les spécialistes des ressources humaines dans le secteur public fédéral soient bien outillés pour traiter les nombreuses questions touchant les relations de travail. Ce cours en ligne à rythme libre présente les fondements des relations de travail dans le secteur public fédéral ainsi que les règles à suivre et les bonnes pratiques à adopter en gestion de personnel. Les participants étudieront les cadres législatif et politique qui régissent les relations de travail, et comprendront mieux les droits, les obligations, le rôle et les responsabilités de la direction, ainsi que ceux des employés et des agents négociateurs. Sujets traités : - interprétation et application des conventions collectives;\n- distinction entre les questions disciplinaires et les questions non disciplinaires;\n- gestion du rendement insuffisant, période de stage et incapacité médicale;\n- règlement des griefs et résolution des conflits. Remarques : Ce cours constitue l'apprentissage commun de base en relations de travail pour les gestionnaires et les spécialistes des ressources humaines.",
"intended_audience_details": null,
"hours_online": 3,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2011-07-06",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": "skill",
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "supervisors,other",
"intended_audience_oth": "directors",
"mandatory_training_fed": "canada_economic_development_for_quebec_regions,correctional_service_canada,employment_and_social_development_canada,financial_transactions_and_reports_analysis_centre_of_canada,department_of_justice_canada,patented_medicine_prices_review_board_canada,veterans_review_and_appeal_board,other",
"recommended_by": "canadian_intergovernmental_conference_secretariat,canadian_space_agency,federal_economic_development_agency_for_southern_ontario,military_police_complaints_commission_of_canada,parks_canada,public_prosecution_service_of_canada,public_services_and_procurement_canada,transportation_safety_board_of_canada",
"recommended_oth": null,
"topics": "government_operations,working_with_others",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": "managing_teams",
"topic_project_management": null,
"topic_govt_operation": "human_resources,policy_and_regulation",
"course_prerequisite": null
},
{
"id": "COR111",
"legacy_cc": "H200",
"title_en": "Basics of Staffing in the Public Service (COR111)",
"title_fr": "Les fondements de la dotation dans la fonction publique (COR111)",
"product_code": "H200-000-OSC-I-03-12-2018",
"desc_en": "When looking to add new skills and competencies to their team, managers must first plan their staffing criteria and select the right staffing options. This online self-paced course reviews the legislative framework that governs staffing in the federal public service and explores staffing requirements, merit criteria, staffing options and other factors influencing the choice of staffing process. Participants will learn about the vision of staffing in the public service, the delegation of staffing authorities, how appointment processes are conducted, the key players involved, and how staffing interacts with the other human resources disciplines. Topics include: · staffing within the legislative framework · staffing strategically according to predetermined goals · establishing staffing and merit criteria · planning and executing a staffing process · assessing the staffing types, options and factors influencing the choice of staffing process Notes: This course is intended for human resources advisors, managers and anyone else who is interested in learning about staffing in the public service. It consists of two content modules followed by an exam, which serves to assess and validate the knowledge acquired. Participants must finish all three modules to complete this course. This course has been redesigned to amalgamate the former H200-1,\nH200-2 and H200-3 courses into a single learning activity and registration process. This course makes frequent reference to the terms and conditions listed in\nthe Public Service Employment Act (PSEA) since most federal public service\norganizations are subject to this Act.",
"desc_fr": "Les gestionnaires qui souhaitent intégrer de nouvelles habiletés et compétences dans leur équipe doivent d'abord planifier leurs critères de dotation et choisir les options de dotation appropriées. Ce cours en ligne à rythme libre aborde le cadre législatif qui régit la dotation dans la fonction publique fédérale et traite des exigences en matière de dotation, des critères de mérite, des options de dotation ainsi que des autres facteurs qui influencent le choix du processus de dotation. Les participants en apprendront sur la vision à l'égard de la dotation au sein de la fonction publique, la délégation des pouvoirs de dotation, la façon dont les processus de nomination se déroulent, les acteurs clés et les liens qui existent entre la dotation et les autres disciplines des ressources humaines. Sujets traités : · doter des postes dans les limites du cadre législatif; · doter des postes de façon stratégique, selon des objectifs prédéterminés; · établir des critères de dotation et de mérite; · planifier et mettre en œuvre un processus de dotation; · évaluer les types de mesures de dotation, les options et les facteurs qui influencent le choix du processus de dotation. Remarques : Ce cours s'adresse aux conseillers en ressources humaines, aux gestionnaires et à toute autre personne qui souhaite en apprendre sur la dotation dans la fonction publique. Il se compose de deux modules de contenu suivis d'un examen, qui sert à évaluer et à valider les connaissances acquises. Les participants doivent terminer les trois modules pour réussir le cours. Ce cours a été remanié pour regrouper les anciens cours H200-1, H200-2 et H200-3 en une seule activité d'apprentissage et un seul processus d'inscription. Ce cours fait souvent référence aux modalités énoncées dans la Loi sur l'emploi dans la fonction publique (LEFP), puisque la plupart des organisations de la fonction publique fédérale y sont assujetties.",
"intended_audience_details": null,
"hours_online": 3.3,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2022-02-28",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": null,
"mandatory_training": "required training by tbs",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "employees,managers,functional_specialists",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": "canada_school_of_public_service",
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources,service_delivery,business_and_finance",
"course_prerequisite": null
},
{
"id": "COR114",
"legacy_cc": "G247",
"title_en": "Collective Agreements and Terms and Conditions of Employment for Managers (COR114)",
"title_fr": "Conventions collectives et conditions d'emploi à l'intention des gestionnaires (COR114)",
"product_code": "G247-000-ILV-09-12-2020",
"desc_en": "It is essential that managers in the federal public sector understand their roles and responsibilities towards respecting collective agreements and terms and conditions of employment. This course provides managers with a comprehensive overview of collective agreements and the terms and conditions of employment, including the information they need to correctly respond to questions about employee rights and obligations in the workplace. Participants will gain a better understanding of the day-to-day application of collective agreements and their impact on human resources management decisions. Topics include: · outlining the structure and content of collective agreements · applying the rules and principles for interpreting collective agreements · adapting the application of terms and conditions of employment to support work-life balance · clarifying the scope of managers' delegated authority in applying the provisions of collective agreements Notes: It is strongly recommended that learners complete Labour Relations in the Federal Public Sector (COR110) before registering for this course, which represents the common core learning in labour relations for managers and human resources specialists.",
"desc_fr": "Il est essentiel que les gestionnaires dans le secteur public fédéral comprennent leur rôle et leurs responsabilités à l'égard du respect des conventions collectives et des conditions d'emploi. Ce cours fournit aux gestionnaires un survol complet des conventions collectives et des conditions d'emploi, incluant l'information nécessaire pour répondre correctement aux questions sur les droits et les obligations des employés au travail. Les participants comprendront mieux l'application des conventions collectives et l'incidence de celles-ci sur les décisions en gestion des ressources humaines. Sujets traités : · présenter la structure et le contenu des conventions collectives; · appliquer les règles et les principes permettant d'interpréter les conventions collectives; · adapter l'application des conditions d'emploi pour favoriser la conciliation travail-vie; · clarifier la portée des pouvoirs délégués des gestionnaires dans l'application des conventions collectives. Remarques : Avant de s'inscrire à ce cours-ci, il est fortement recommandé de suivre le cours en ligne Relations de travail dans le secteur public fédéral (COR110), qui constitue l'apprentissage commun de base en relations de travail pour les gestionnaires et les spécialistes des ressources humaines.",
"intended_audience_details": null,
"hours_online": 0,
"hours_inclass": 3,
"days_inclass": 1,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": true,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2022-01-24",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "virtual instructor-led training",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": "awareness",
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "managers,supervisors",
"intended_audience_oth": null,
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations,working_with_others,wellbeing",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": "workload_management",
"topic_diversity": null,
"topic_work_with_others": "managing_teams",
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": "cor110_labour_relations_principles_and_practices_for_managers"
},
{
"id": "COR119",
"legacy_cc": "H105",
"title_en": "HR-to-Pay Stabilization Learning Sessions (COR119)",
"title_fr": "Séances d'apprentissage sur la stabilisation des RH à la paye (COR119)",
"product_code": "H105-000-EVO-I-02-08-2019",
"desc_en": "Stabilizing HR-to-pay transactions offers an opportunity to process new transactions more quickly and eliminate the backlog in the government's pay system. This course for human resources professionals and compensation specialists focuses on different operational and functional topics specific to Phoenix. Participants will review key HR-to-pay stabilization concepts and challenges and take part in a moderated question-and-answer period with subject matter experts. Topics include: • reviewing key HR-to-pay stabilization concepts • highlighting Phoenix-specific operations and functions • understanding implementation timelines and methodologies • examining case studies and references Notes: This course is offered through a partnership with the Canada School of Public Service, the Treasury Board of Canada Secretariat, and the HR-to-pay stabilization integrated teams from Public Services and Procurement Canada.",
"desc_fr": "La stabilisation des transactions des RH à la paye est l'occasion de traiter plus rapidement les nouvelles transactions et d'éliminer l'arriéré dans le système de paye du gouvernement. Ce cours, qui s'adresse aux professionnels des ressources humaines et aux spécialistes de la rémunération, met l'accent sur différentes questions opérationnelles et fonctionnelles propres à Phénix. Les participants examineront les notions clés et les défis liés à la stabilisation des RH et ils prendront part à une période de questions animée avec des experts en la matière. Sujets traités : • examiner les notions clés liées à la stabilisation des RH à la paye; • mettre en lumière les opérations et les fonctionnalités propres à Phénix; • comprendre les échéanciers et les méthodes de mise en œuvre; • examiner des études de cas et des références. Remarques : Ce cours est offert grâce à un partenariat entre l'École de la fonction publique du Canada, le Secrétariat du Conseil du Trésor du Canada et les équipes intégrées de la stabilisation des RH à la paye de Services publics et Approvisionnement Canada.",
"intended_audience_details": null,
"hours_online": 0,
"hours_inclass": 1.5,
"days_inclass": 0,
"is_displayed": false,
"is_recommended": false,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2019-08-02",
"archived_date_proposed": "2022-08-12",
"status": "archived",
"course_type": "curriculum review exercise",
"delivery_method": "virtual instructor-led training",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": null,
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "employees",
"intended_audience_oth": null,
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources,business_and_finance,values_and_ethics",
"course_prerequisite": null
},
{
"id": "COR120",
"legacy_cc": "H205",
"title_en": "Inclusive Hiring Practices for a Diverse Workforce (COR120)",
"title_fr": "Pratiques d'embauche inclusives pour un effectif diversifié (COR120)",
"product_code": "H302-000-OSC-X-26-09-2018",
"desc_en": "As Canada's largest employer, the Public Service of Canada has a responsibility to reflect the diversity of the Canadian people and to be representative of the people it serves. This online self-paced course presents best practices and staffing strategies for conducting an inclusive and bias-free hiring process. Participants will learn about the importance of a diverse workforce and the impact that unconscious bias and other barriers can have when recruiting new talent. • recognizing the importance of diversity and inclusion in the federal public service\n• understanding the impact of unconscious bias in the hiring process\n• acknowledging potential barriers in order to attenuate or eliminate them\n• identifying tools and strategies for conducting fair, inclusive and accessible staffing processes\nThis course is expected to launch in the late fall of 2021. Related courses: • Understanding Unconscious Bias (W005)\n• Overcoming Your Own Unconscious Biases (W006)\n• Overcoming Unconscious Bias in the Workplace (W007)",
"desc_fr": "À titre de plus grand employeur au Canada, la fonction publique du Canada a la responsabilité de refléter la diversité de la population canadienne et d'être représentative des personnes qu'elle sert. Ce cours en ligne à rythme libre présente les pratiques et les stratégies exemplaires de dotation pour mener un processus d'embauche inclusif et sans biais. Les participants apprendront sur l'importance d'un effectif diversifié et l'impact que les biais et préjugés inconscients et autres obstacles peuvent avoir lors du recrutement de personnes de talent. Sujets traités : •\treconnaître l'importance de la diversité et de l'inclusion dans la fonction publique fédérale;\n•\tcomprendre l'impact des biais et préjugés inconscients au cours du processus d'embauche;\n•\treconnaître les obstacles potentiels afin de les atténuer ou de les éliminer;\n•\tprésenter des outils et des stratégies pour mener des processus de dotation équitables, inclusifs et accessibles. Remarques : Ce cours est destiné aux gestionnaires subdélégués, aux spécialistes en ressources humaines et aux autres personnes participant à un processus d'embauche. Cours connexes : • Compréhension des préjugés inconscients (W005)\n• Surmonter vos propres préjugés inconscients (W006)\n• Dépasser les préjugés inconscients au travail (W007)",
"intended_audience_details": "This course is intended for sub-delegated managers, human resources professionals, and other individuals who are involved in a hiring process.",
"hours_online": 2,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2021-07-14",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": null,
"learning_outcomes": "knowledge",
"mandatory_training": "required training by tbs",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "employees",
"intended_audience_oth": null,
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations,diversity_inclusion_and_indigenous_reconciliation",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": "respectful_workplace",
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": null
},
{
"id": "COR121",
"legacy_cc": "H300",
"title_en": "Introduction to Integrated Business and Human Resources Planning (COR121)",
"title_fr": "Introduction à la planification intégrée des activités et des ressources humaines(COR121)",
"product_code": "H301-000-OSC-I-09-12-2019",
"desc_en": "Integrated business and human resources planning enables the management of talent that organizations need to successfully deliver programs and services to Canadians. This online self-paced course presents the principles and concepts behind integrated business and human resources planning (IBHRP) in the federal public service. Participants will learn about the benefits of human resources planning, key considerations for integrated planning, and workforce management strategies that can help achieve business objectives. Topics include: - defining IBHRP\n- identifying common challenges of IBHRP\n- reviewing the legal accountabilities, roles and responsibilities of key players\n- managing talent through workforce management strategies\n- reviewing the legislative framework",
"desc_fr": "La planification intégrée des activités et des ressources humaines permet de gérer les talents dont les organisations ont besoin pour offrir avec succès des programmes et des services aux Canadiens. Ce cours en ligne à rythme libre présente les principes et les notions à la base de la planification intégrée des activités et des ressources humaines (PIARH) au sein de la fonction publique fédérale. Les participants découvriront les avantages de la planification des ressources humaines, les principales considérations relatives à la planification intégrée ainsi que les stratégies de gestion de l'effectif pouvant appuyer l'atteinte des objectifs de l'organisation. Sujets traités : - définir la PIARH;\n- déterminer les défis courants liés à la PIARH;\n- examiner les rôles et les responsabilités, notamment sur le plan juridique, des intervenants clés;\n- gérer les talents au moyen de stratégies de gestion de l'effectif;\n- examiner le cadre législatif.",
"intended_audience_details": null,
"hours_online": 3,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2019-09-30",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": null,
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "managers,functional_specialists",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources,business_and_finance,service_delivery",
"course_prerequisite": null
},
{
"id": "COR122",
"legacy_cc": "H301",
"title_en": "The 5 Essential Steps to Integrated Business and Human Resources Planning (COR122)",
"title_fr": "Les 5 étapes essentielles de la planification intégrée et des ressources humaines (COR122)",
"product_code": "H302-000-OSC-X-26-09-2018",
"desc_en": "Effective staffing requires a plan that involves all of the stakeholders who work to respond to the human resources needs of an organization. This online self-paced course explores integrated business and human resources planning (IBHRP) and introduces a five-step human resources planning model designed to support it. Participants will review the roles of the various stakeholders involved in resource utilization and examine the relationship between planning and the different human resource disciplines. Topics include: - identifying the inputs and outputs of IBHRP\n- defining the roles of different stakeholders in the planning processes\n- outlining the steps in the IBHRP process Notes: This course is intended for human resources advisors; however, registration remains open to all learners.",
"desc_fr": "Pour prendre des mesures de dotation efficaces, il faut établir un plan qui fait appel à tous les intervenants qui ont pour mission de répondre aux besoins en matière de ressources humaines d'une organisation. Ce cours en ligne à rythme libre explore la planification intégrée des activités et des ressources humaines (PIARH) et présente un modèle de planification des ressources humaines en cinq étapes conçu pour l'appuyer. Les participants passeront en revue les rôles des divers intervenants concernés par l'utilisation des ressources et ils examineront la relation entre la planification et les différentes disciplines des ressources humaines. Sujets traités : - connaître les intrants et les extrants de la PIARH;\n- définir les rôles des différents intervenants dans le cadre des processus de planification;\n- décrire les étapes du processus de PIARH. Remarques : Ce cours est destiné aux conseillers en ressources humaines, mais tous les apprenants peuvent s'y inscrire.",
"intended_audience_details": null,
"hours_online": 3,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": true,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2019-12-16",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": "knowledge",
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "managers,functional_specialists",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources,business_and_finance,service_delivery",
"course_prerequisite": "cor121_introduction_to_integrated_business_and_human_resources_planning"
},
{
"id": "COR123",
"legacy_cc": "P025",
"title_en": "Self-Study: The Work Force Adjustment Directive (COR123)",
"title_fr": "Autoformation : la Directive sur le réaménagement des effectifs (COR123)",
"product_code": "P025-000-OSC-I-17-05-2012",
"desc_en": "A work force adjustment occurs when the services of one or more indeterminate employees will no longer be required beyond a specified date. This online self-paced course provides an overview of the Work Force Adjustment Directive, outlining what it is, when it applies, and how to use it. Participants will review their roles, responsibilities, rights, and obligations under the directive and learn about additional resources that are available. Topics include: - understanding the Work Force Adjustment Directive\n- defining a reasonable job offer under the directive\n- making work force adjustment decisions in line with the directive\n- outlining the roles and responsibilities of key stakeholders\n- providing support to affected employees",
"desc_fr": "Un réaménagement des effectifs se produit lorsque les services d'un ou de plusieurs employés nommés pour une période indéterminée ne seront plus requis au-delà d'une certaine date. Ce cours en ligne à rythme libre offre un aperçu de la Directive sur le réaménagement des effectifs, expliquant notamment ce en quoi elle consiste, les circonstances dans lesquelles elle s'applique et la façon de l'utiliser. Les participants examineront leurs rôles, leurs responsabilités, leurs droits et leurs obligations au titre de la Directive et se familiariseront avec d'autres ressources à leur disposition. Sujets traités : - comprendre la Directive sur le réaménagement des effectifs;\n- définir une offre d'emploi raisonnable au titre de la Directive;\n- prendre des décisions relatives au réaménagement des effectifs en conformité avec la Directive;\n- définir les rôles et responsabilités des intervenants clés;\n- offrir du soutien aux employés touchés.",
"intended_audience_details": "HR Specialists, Managers, Directors",
"hours_online": 1,
"hours_inclass": 0,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": false,
"is_classroom_to_virtual": false,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2012-05-17",
"archived_date_proposed": "1900-01-01",
"status": "suspended",
"course_type": "curriculum review exercise",
"delivery_method": "online self-paced",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": "knowledge",
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "other",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": null,
"topic_project_management": null,
"topic_govt_operation": "human_resources,policy_and_regulation",
"course_prerequisite": null
},
{
"id": "COR124",
"legacy_cc": "P705",
"title_en": "Collective Agreements and Terms and Conditions of Employment for Human Resources Specialists (COR124)",
"title_fr": "Conventions collectives et conditions d'emploi à l'intention des spécialistes en ressources humaines (P705)(COR124)",
"product_code": "P705-000-ILV-I-09-12-2020",
"desc_en": "It is essential that human resources professionals in the federal public\nsector understand their roles and responsibilities towards respecting collective\nagreements and terms and conditions of employment. This course provides\nlabour relations advisors and human resources specialists with a comprehensive overview of collective agreements and the terms and conditions of employment, including the information they need to correctly respond to questions about employee rights and obligations in the workplace. Participants will gain a better understanding of the day-to-day application of collective agreements and their impact on human resources management decisions. Topics include: · outlining the structure and content of collective agreements · understanding the rules and principles for interpreting collective agreements · applying flexibility in terms and conditions of employment to support work-life balance · clarifying the scope of managers' delegated authority in applying the provisions of collective agreements Aditionnal Notes: It is strongly recommended that learners complete Labour Relations in the Federal Public Sector (COR110) before registering to this course, which represents the common core learning in labour relations for managers and human resources specialists.",
"desc_fr": "Il est essentiel que les professionnels en ressources humaines dans le secteur public fédéral comprennent leur rôle et leurs responsabilités à l'égard du respect des conventions collectives et des conditions d'emploi. Ce cours fournit aux conseillers en relations de travail et aux spécialistes en ressources humaines un survol complet des conventions collectives et des conditions d'emploi, incluant l'information nécessaire pour répondre correctement aux questions sur les droits et les obligations des employés au travail. Les participants comprendront mieux l'application des conventions collectives et l'incidence de celles-ci sur les décisions en gestion des ressources humaines. Sujets traités : · présenter la structure et le contenu des conventions collectives; · comprendre les règles et les principes d'interprétation des conventions collectives; · appliquer les assouplissements aux conditions d'emploi en appui à la conciliation travail-vie; · clarifier la portée des pouvoirs délégués des gestionnaires dans l'application des conventions collectives. Notes supplémentaires: Avant de s'inscrire à ce cours-ci, il est fortement suggéré de suivre le cours en ligne Relations de travail dans le secteur public fédéral (COR110), car celui-ci constitue l'apprentissage commun de base en relations de travail pour les gestionnaires et les spécialistes des ressources humaines.",
"intended_audience_details": "Labour Relations Specialists",
"hours_online": 0,
"hours_inclass": 6,
"days_inclass": 1,
"is_displayed": true,
"is_recommended": false,
"is_course_prerequisite": true,
"is_classroom_to_virtual": false,
"use_standard_learner": true,
"is_content_copyright": true,
"mandatory_training_tbs": false,
"date_actioned": "2022-04-14",
"archived_date_proposed": "1900-01-01",
"status": "active",
"course_type": "new course",
"delivery_method": "virtual instructor-led training",
"registration_type": "self-registration",
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": "knowledge",
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "functional_specialists",
"intended_audience_oth": null,
"mandatory_training_fed": null,
"recommended_by": null,
"recommended_oth": null,
"topics": "government_operations",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,
"topic_leadership": null,
"topic_wellbeing": null,
"topic_diversity": null,
"topic_work_with_others": "managing_teams",
"topic_project_management": null,
"topic_govt_operation": "human_resources",
"course_prerequisite": "cor110_labour_relations_principles_and_practices_for_managers"
},
{
"id": "COR128",
"legacy_cc": "P731",
"title_en": "The Strategic Human Resources Practitioner (COR128)",
"title_fr": "Le conseiller stratégique en ressources humaines (COR128)",
"product_code": "P731-000-ILP-I-08-12-2014",
"desc_en": "To best support their clients, human resources (HR) practitioners need to provide managers with strategic advice when assisting them in making decisions about HR matters. This course aims to deepen the HR practitioner's understanding of what constitutes strategic advice and how it impacts human resources decisions. Participants will learn about tools and techniques that can help them apply a strategic perspective to support the management of human resources in their organization. Topics include: • defining strategic behaviour and the strategic role of HR advisors\n• applying a strategic HR perspective\n• developing options with risk management tools\n• providing strategic advice\n• following up with clients and managers",
"desc_fr": "Afin de soutenir au mieux leurs clients, les conseillers en ressources humaines (RH) doivent fournir des conseils stratégiques aux gestionnaires lorsqu'ils les aident à prendre des décisions concernant les RH. Ce cours vise à aider les conseillers en RH à mieux saisir en quoi consistent les conseils stratégiques ainsi que l'influence de ces conseils sur les décisions concernant les RH. Les participants apprendront à utiliser des outils et des techniques qui les aideront à adopter une perspective stratégique afin d'appuyer la gestion des RH dans leur organisation. Sujets traités : • définir le rôle et les comportements stratégiques des conseillers en RH;\n• adopter une perspective stratégique en matière de RH;\n• créer des options à l'aide des outils de gestion des risques;\n• fournir des conseils stratégiques;\n• faire un suivi auprès des clients et des gestionnaires.",
"intended_audience_details": null,
"hours_online": 0,
"hours_inclass": 15,
"days_inclass": 0,
"is_displayed": true,
"is_recommended": true,
"is_course_prerequisite": false,
"is_classroom_to_virtual": true,
"use_standard_learner": false,
"is_content_copyright": false,
"mandatory_training_tbs": false,
"date_actioned": "2021-12-17",
"archived_date_proposed": "1900-01-01",
"status": "suspended",
"course_type": "course suspension",
"delivery_method": "in person classroom instructor-led training",
"registration_type": null,
"provider": "csps",
"bus_line": "gc and public sector skills",
"functional_specialist": "human resources professionals",
"learning_outcomes": "skill",
"mandatory_training": "no",
"curriculum_architecture_placement": "corporate skills",
"corp_skills_sub_category": "human resources",
"transferable_skills_sub_category": null,
"digital_and_data_category": null,
"public_sector_category": null,
"healthy_workplace_sub_category": null,
"intended_audience": "functional_specialists",
"intended_audience_oth": "human_resources_professionals",
"mandatory_training_fed": null,
"recommended_by": "employment_and_social_development_canada,global_affairs_canada,canada_revenue_agency,public_prosecution_service_of_canada",
"recommended_oth": null,
"topics": "government_operations,leadership",
"topic_main": "government_operations",
"topic_communication": null,
"topic_digital": null,