Duration 5 Days 30 CPD hours This course is intended for This course is designed for programmatic developers looking to write programmatic customizations to both business logic and UI layers using Apex and Visualforce. You should have a good understanding of core object-oriented programming concepts and experience building declarative solutions on the Salesforce Platform. This course is also a great foundation builder if you're looking to earn your Salesforce Platform Developer I credential. IMPORTANT: Students are expected to follow the steps detailed in the Computer Set-up Guide for this class if you'll be using your own computer when attending a virtual or in-person class. Overview Learn modern tools for developing on the Salesforce Platform using Visual Studio Code, the Salesforce Extension Pack, and the Salesforce CLI. Write business logic customizations using Apex triggers and classes; those customizations will use SOQL and DML. Design programmatic solutions that take advantage of declarative customizations. Describe how your trigger code works within the basics of the Save Order of Execution. Describe some of the fundamental aspects of designing programs on a multi-tenant platform. Write Visualforce markup and code to customize the user interface. Use the built-in testing framework to test Apex and Visualforce. Learn how to customize and design applications programmatically on the Salesforce Platform. In this 5-day class, our platform experts will introduce you to Apex (Salesforce?s programming language) and Visualforce markup, so you can customize your Salesforce applications using code and explore how Apex interacts with declarative customizations on the platform. Learn how to retrieve, manipulate, and store data programmatically in data objects (sObjects), write and test custom logic, write Visualforce pages to customize your user interface, and deploy your solutions to another environment. Get an overview of the declarative automation tools available on the platform and a brief introduction to the Lightning Component framework. Plus, explore the nuances of working on a multi-tenant platform so you can extend the platform to meet business demands. Declarative Automation Create Formula Fields Create Roll-Up Summary Fields Understand Record Types Review Other Automation Tools Build a Data Model on the Salesforce Platform Programming with Apex Describe Key Aspects of Apex That Differentiate It from Other Languages, Such as Java and C# Describe Why Apex Transactions and Governor Limits Must Be Considered When Writing Apex Execute Simple Apex Use the sObject Data Type, the Primitive Data Types, and Basic Control Statements in Apex Using SOQL and SOSL to Retrieve Your Org?s Data Write a Basic Query Using Salesforce?s Query Language, SOQL Process the Result of a Query in Apex Create a Query Dynamically at Run-Time Use SOQL to Query Parent-Child Relationships Describe a Relationship Query Write a Query That Traverses a Child-to-Parent Relationship Write a Query That Traverses a Parent-to-Child Relationship Use SOSL to Search Data Using DML to Manipulate Your Org?s Data List the Differences Between the Ways You Can Invoke DML Operations Write Apex to Invoke DML Operations and Handle DML Errors Deployment What Is Deployment? Deploy Code Using Change Sets Use the Ant Migration Tool Review Managed and Unmanaged Packages Explore Salesforce DX Trigger Essentials Describe What a Trigger Is Used For Describe the Syntax of a Trigger Definition Use Trigger Context Variables Apex Class Essentials Describe How Apex Classes Are Used Define an Apex Class Determine What Data an Apex Class Can Access The Save Order of Execution, Apex Transactions, and Platform Events Describe Key Points in the Order of Execution Describe How Triggers Fit Into and Can Be Impacted by the Order of Execution Describe the Lifecycle of an Apex Transaction Describe the Memory Lifecycle for Static Attributes Use Platform Events for Immediate Error Logging Apex Testing Describe the Apex Testing Framework Create Test Data Write and Run an Apex Test Test Best Practices Strategies for Designing Efficient Apex Solutions Describe Best Practices for Writing Code That Is Easy to Maintain and Extend Write Triggers and Classes That Assume Batches of Data as Input Write Code That Works Efficiently with the Database, Both in Querying and Using DML Trigger Design Strategies List Declarative Mechanisms You Can Use to Implement Complex Business Logic, What Types of Problems They?re Best Used for, and Their Limitations Describe Ways in Which You Can Use Declarative Functionality to Improve Your Programmatic Solutions Working with Visualforce Create a Visualforce Page Reference a Standard Controller Launch a Visualforce Page Using a Custom Button Display Data from a Record in a Visualforce Page Reference Custom Controllers and Controller Extensions Work with List Controllers Visualforce Development Considerations and Testing Describe Common Limit Issues and Security Concerns Describe Strategies for Testing Visualforce Controllers Write Tests for Controller Constructors Write Tests for Action Methods, Getters, Setters, and Properties Lightning Components Create and Surface an Aura Component Create and Surface a Lightning Web Component Additional course details: Nexus Humans Salesforce Build Applications Programmatically on the Salesforce Platform (DEX450) training program is a workshop that presents an invigorating mix of sessions, lessons, and masterclasses meticulously crafted to propel your learning expedition forward. This immersive bootcamp-style experience boasts interactive lectures, hands-on labs, and collaborative hackathons, all strategically designed to fortify fundamental concepts. Guided by seasoned coaches, each session offers priceless insights and practical skills crucial for honing your expertise. Whether you're stepping into the realm of professional skills or a seasoned professional, this comprehensive course ensures you're equipped with the knowledge and prowess necessary for success. While we feel this is the best course for the Salesforce Build Applications Programmatically on the Salesforce Platform (DEX450) course and one of our Top 10 we encourage you to read the course outline to make sure it is the right content for you. Additionally, private sessions, closed classes or dedicated events are available both live online and at our training centres in Dublin and London, as well as at your offices anywhere in the UK, Ireland or across EMEA.
Duration 3 Days 18 CPD hours This course is intended for Developers who have some familiarity with serverless and experience with development in the AWS Cloud Overview In this course, you will learn to: Apply event-driven best practices to a serverless application design using appropriate AWS services Identify the challenges and trade-offs of transitioning to serverless development, and make recommendations that suit your development organization and environment Build serverless applications using patterns that connect AWS managed services together, and account for service characteristics, including service quotas, available integrations, invocation model, error handling, and event source payload Compare and contrast available options for writing infrastructure as code, including AWS CloudFormation, AWS Amplify, AWS Serverless Application Model (AWS SAM), and AWS Cloud Development Kit (AWS CDK) Apply best practices to writing Lambda functions inclusive of error handling, logging, environment re-use, using layers, statelessness, idempotency, and configuring concurrency and memory Apply best practices for building observability and monitoring into your serverless application Apply security best practices to serverless applications Identify key scaling considerations in a serverless application, and match each consideration to the methods, tools, or best practices to manage it Use AWS SAM, AWS CDK, and AWS developer tools to configure a CI/CD workflow, and automate deployment of a serverless application Create and actively maintain a list of serverless resources that will assist in your ongoing serverless development and engagement with the serverless community This course gives developers exposure to and practice with best practices for building serverless applications using AWS Lambda and other services in the AWS serverless platform. You will use AWS frameworks to deploy a serverless application in hands-on labs that progress from simpler to more complex topics. You will use AWS documentation throughout the course to develop authentic methods for learning and problem-solving beyond the classroom. Introduction Introduction to the application you will build Access to course resources (Student Guide, Lab Guide, and Online Course Supplement) Thinking Serverless Best practices for building modern serverless applications Event-driven design AWS services that support event-driven serverless applications API-Driven Development and Synchronous Event Sources Characteristics of standard request/response API-based web applications How Amazon API Gateway fits into serverless applications Try-it-out exercise: Set up an HTTP API endpoint integrated with a Lambda function High-level comparison of API types (REST/HTTP, WebSocket, GraphQL) Introduction to Authentication, Authorization, and Access Control Authentication vs. Authorization Options for authenticating to APIs using API Gateway Amazon Cognito in serverless applications Amazon Cognito user pools vs. federated identities Serverless Deployment Frameworks Overview of imperative vs. declarative programming for infrastructure as code Comparison of CloudFormation, AWS CDK, Amplify, and AWS SAM frameworks Features of AWS SAM and the AWS SAM CLI for local emulation and testing Using Amazon EventBridge and Amazon SNS to Decouple Components Development considerations when using asynchronous event sources Features and use cases of Amazon EventBridge Try-it-out exercise: Build a custom EventBridge bus and rule Comparison of use cases for Amazon Simple Notification Service (Amazon SNS) vs. EventBridge Try-it-out exercise: Configure an Amazon SNS topic with filtering Event-Driven Development Using Queues and Streams Development considerations when using polling event sources to trigger Lambda functions Distinctions between queues and streams as event sources for Lambda Selecting appropriate configurations when using Amazon Simple Queue Service (Amazon SQS) or Amazon Kinesis Data Streams as an event source for Lambda Try-it-out exercise: Configure an Amazon SQS queue with a dead-letter queue as a Lambda event source Writing Good Lambda Functions How the Lambda lifecycle influences your function code Best practices for your Lambda functions Configuring a function Function code, versions and aliases Try-it-out exercise: Configure and test a Lambda function Lambda error handling Handling partial failures with queues and streams Step Functions for Orchestration AWS Step Functions in serverless architectures Try-it-out exercise: Step Functions states The callback pattern Standard vs. Express Workflows Step Functions direct integrations Try-it-out exercise: Troubleshooting a Standard Step Functions workflow Observability and Monitoring The three pillars of observability Amazon CloudWatch Logs and Logs Insights Writing effective log files Try-it-out exercise: Interpreting logs Using AWS X-Ray for observability Try-it-out exercise: Enable X-Ray and interpret X-Ray traces CloudWatch metrics and embedded metrics format Try-it-out exercise: Metrics and alarms Try-it-out exercise: ServiceLens Serverless Application Security Security best practices for serverless applications Applying security at all layers API Gateway and application security Lambda and application security Protecting data in your serverless data stores Auditing and traceability Handling Scale in Serverless Applications Scaling considerations for serverless applications Using API Gateway to manage scale Lambda concurrency scaling How different event sources scale with Lambda Automating the Deployment Pipeline The importance of CI/CD in serverless applications Tools in a serverless pipeline AWS SAM features for serverless deployments Best practices for automation Course wrap-up Additional course details: Nexus Humans AWS Developing Serverless Solutions on AWS training program is a workshop that presents an invigorating mix of sessions, lessons, and masterclasses meticulously crafted to propel your learning expedition forward. This immersive bootcamp-style experience boasts interactive lectures, hands-on labs, and collaborative hackathons, all strategically designed to fortify fundamental concepts. Guided by seasoned coaches, each session offers priceless insights and practical skills crucial for honing your expertise. Whether you're stepping into the realm of professional skills or a seasoned professional, this comprehensive course ensures you're equipped with the knowledge and prowess necessary for success. While we feel this is the best course for the AWS Developing Serverless Solutions on AWS course and one of our Top 10 we encourage you to read the course outline to make sure it is the right content for you. Additionally, private sessions, closed classes or dedicated events are available both live online and at our training centres in Dublin and London, as well as at your offices anywhere in the UK, Ireland or across EMEA.
All of us experience times in our life when we feel stressed and out of control. By building resilience to manage stressful times more calmly through changing perception and attitude as well as getting adequate sleep, eating a nutrient rich diet and taking fresh air and exercise you will build your resilience and feel more in control. This course will provide you with guidelines to identify your stressors and ways of dealing with them so that you respond positively and calmly to what life throws at you.
This beginner's course exclusively delivers Python programming from basic to advanced. You will learn Python concepts in real-life programming examples by building real-world applications. Learn the syntax of Python language and understand the logic behind the programming process to create your Python programs successfully and master Python coding.
Self Esteem: Self Esteem Course Online A healthy representation of how you see yourself is a high self-esteem; after all, nothing is more important than how you see yourself when you need to be assertive, make executive decisions, or ask for what you want. Learn techniques that will drastically change how you feel about yourself and how you approach the world in order to get what you want by asking with confidence and without fear. Professional success requires the growth of self-esteem and assertiveness. However, without adequate training and guidance, it is impossible to advance in your career. In this regard, this Self Esteem: Self Esteem Course is ideal for you. Through this Self Esteem: Self Esteem Course, you will learn about self-confidence, the impact of negative thinking, communication skills, the importance of goal setting, the role of body language. After completing this Self Esteem: Self Esteem Course, you will be able to manage your self-esteem and assertiveness with excellence and professionalism. This Self Esteem: Self Esteem Course will provide you a solid understanding of self-esteem and assertiveness, which will help you advance in your career. Why choose this Self Esteem: Self Esteem Course from the School of Health Care? Self-paced course, access available from anywhere in the world. High-quality study materials that are easy to understand. Self Esteem: Self Esteem Course developed by industry experts. After each module, there will be an MCQ quiz to assess your learning. Assessment results are generated automatically and instantly. 24/7 support is available via live chat, phone call, or email. Free PDF certificate after completing the Self Esteem: Self Esteem Course. Main Course: Self Esteem Course Free Courses included with Self Esteem: Self Esteem Course Course 01: Level 7 Life Coaching Course 02: Dealing With Difficult People Course 03: Communication Skills Course Course 04: Level 5 Negotiation Skills Course [ Note: Free PDF certificate as soon as completing the Self Esteem: Self Esteem Course] Self Esteem: Self Esteem Course Online This Self Esteem: Self Esteem Course consists of 04 modules. Course Curriculum of Self Esteem: Self Esteem Course Module 01: Understanding Self Esteem Module 02: Understanding Assertiveness Module 03: Assertiveness in Communication Module 04: Assertiveness in Workplace Assessment Method of Self Esteem: Self Esteem Course After completing Self Esteem: Self Esteem Course, you will get quizzes to assess your learning. You will do the later modules upon getting 60% marks on the quiz test. Apart from this, you do not need to sit for any other assessments. Certification of Self Esteem: Self Esteem Course After completing the Self Esteem: Self Esteem Course, you can instantly download your certificate for FREE. The hard copy of the certification will also be delivered to your doorstep via post, which will cost £13.99. Who is this course for? Self Esteem: Self Esteem Course Online This Self Esteem: Self Esteem Course is suitable for anyone who wants to understand why Self Esteem and Assertiveness skills are important, how to develop and improve them, and how to advance their career. Including: Managers Team Leaders Office Executives Office Administrators Employees Business people Secretaries Receptionists Requirements Self Esteem: Self Esteem Course Online To enrol in this Self Esteem: Self Esteem Course, students must fulfil the following requirements: Good Command over English language is mandatory to enrol in our Self Esteem: Self Esteem Course. Be energetic and self-motivated to complete our Self Esteem: Self Esteem Course. Basic computer Skill is required to complete our Self Esteem: Self Esteem Course. If you want to enrol in our Self Esteem: Self Esteem Course, you must be at least 15 years old.
Dermaplaning is an increasingly popular beauty treatment that provides clients with smoother, glowing skin by removing dead skin cells and fine vellus hair. This Dermaplaning Skills Training Course offers you the essential knowledge to deliver this treatment with confidence. Whether you're already working in the beauty industry or are simply looking to expand your skill set, this course provides you with the fundamental techniques needed to perform dermaplaning safely and effectively, without the need for physical attendance. Throughout the course, you'll gain an in-depth understanding of the tools, methods, and aftercare procedures that are key to providing an excellent dermaplaning treatment. With a focus on both skin health and client safety, this training is designed to help you master the art of dermaplaning and integrate it into your existing beauty services. Join countless others who are enhancing their careers by mastering this sought-after treatment, and watch as clients leave your salon with radiant, fresh skin that speaks for itself. Key Features CPD Accredited FREE PDF + Hardcopy certificate Fully online, interactive course Self-paced learning and laptop, tablet and smartphone-friendly 24/7 Learning Assistance Discounts on bulk purchases Course Curriculum Module 01: Introduction to Dermaplaning Module 02: Tools and Equipment Module 03: Client Assessment and Consultation Module 04: Technique and Procedure Module 05: Aftercare and Post-Treatment Guidelines Module 06: Advanced Techniques and Treatment Combinations Learning Outcomes Perform precise dermaplaning techniques for optimal skin rejuvenation. Demonstrate proficiency in handling specialised tools and equipment. Conduct thorough client assessments to tailor treatments effectively. Execute post-treatment guidelines for enhanced client satisfaction. Apply advanced techniques and explore innovative treatment combinations. Master the art and science of dermaplaning for a radiant, smooth finish. Accreditation This course is CPD Quality Standards (CPD QS) accredited, providing you with up-to-date skills and knowledge and helping you to become more competent and effective in your chosen field. Certificate After completing this course, you will get a FREE Digital Certificate from Training Express. CPD 10 CPD hours / points Accredited by CPD Quality Standards Who is this course for? Skincare professionals seeking advanced techniques. Beauty enthusiasts eager to refine their skills. Spa and salon practitioners aiming to diversify their services. Estheticians looking to enhance their treatment repertoire. Individuals passionate about skincare and facial aesthetics. Cosmetologists eager to add dermaplaning to their expertise. Beauty therapists aspiring to offer specialised facial treatments. Anyone with a keen interest in mastering dermaplaning techniques. Career path Skincare Specialist Spa Therapist Beauty Consultant Aesthetician Salon Manager Facialist Certificates Digital certificate Digital certificate - Included Once you've successfully completed your course, you will immediately be sent a FREE digital certificate. Hard copy certificate Hard copy certificate - Included Also, you can have your FREE printed certificate delivered by post (shipping cost £3.99 in the UK). For all international addresses outside of the United Kingdom, the delivery fee for a hardcopy certificate will be only £10. Our certifications have no expiry dates, although we do recommend that you renew them every 12 months.
The Archaeological Fieldwork Techniques Course offers a deep dive into the fascinating world of archaeology, focusing on the essential methods used by archaeologists in the field. From surveying techniques to excavation procedures, this course will help you grasp the key principles that guide archaeological investigations. Whether you're a history enthusiast or a professional looking to expand your knowledge, you'll learn how to apply fieldwork methods to uncover and interpret archaeological sites with precision. Through this course, you will gain a solid understanding of the various tools and techniques that archaeologists use in their work. You will explore the processes involved in excavating artefacts, recording findings, and analysing data. This course is perfect for anyone with a keen interest in the history of human cultures and the scientific approach to unearthing their past. Prepare to engage in a journey of discovery and learn the fundamentals that form the backbone of archaeological exploration. With each module, you'll gain valuable insights that will equip you to approach archaeological fieldwork with confidence and clarity. Key Features CPD Accredited FREE PDF + Hardcopy certificate Fully online, interactive course Self-paced learning and laptop, tablet and smartphone-friendly 24/7 Learning Assistance Discounts on bulk purchases Course Curriculum Module 01: Introduction to Archaeological Fieldwork Module 02: Preliminary Research & Surveying Module 03: Excavation Techniques Module 04: Artefact Analysis & Conservation Module 05: Field Recording & Documentation Module 06: Working with Specialised Sites Module 07: Modern Technology in Archaeology Learning Outcomes: Develop proficient surveying techniques for archaeological exploration. Master excavation skills to uncover historical artefacts with precision. Analyse and conserve artefacts, preserving their historical significance. Demonstrate meticulous field recording and documentation practices. Navigate specialised archaeological sites with confidence and expertise. Integrate modern technology effectively into archaeological fieldwork. Accreditation This course is CPD Quality Standards (CPD QS) accredited, providing you with up-to-date skills and knowledge and helping you to become more competent and effective in your chosen field. Certificate After completing this course, you will get a FREE Digital Certificate from Training Express. CPD 10 CPD hours / points Accredited by CPD Quality Standards Who is this course for? Aspiring archaeologists and history enthusiasts. Students pursuing degrees in archaeology or related fields. Museum and heritage professionals seeking additional expertise. Field researchers and scholars expanding their skill set. Educators aiming to enhance their archaeological knowledge. History and anthropology students seeking practical field experience. Geographers interested in cultural landscape studies. Anyone with a passion for uncovering the mysteries of the past. Career path Archaeologist Museum Curator Heritage Site Manager Cultural Resource Manager Field Researcher Environmental Consultant Certificates Digital certificate Digital certificate - Included Once you've successfully completed your course, you will immediately be sent a FREE digital certificate. Hard copy certificate Hard copy certificate - Included Also, you can have your FREE printed certificate delivered by post (shipping cost £3.99 in the UK). For all international addresses outside of the United Kingdom, the delivery fee for a hardcopy certificate will be only £10. Our certifications have no expiry dates, although we do recommend that you renew them every 12 months.
Prepare for success with the Microsoft PL-900 Certification Course, covering the fundamentals of Power Platform, including Power BI, Power Apps, Power Automate, Power Virtual Agents, and related topics such as Dataverse, AI Builder, Connectors, Dynamics 365, Teams, Security, and Administration. Suitable for beginners with no prerequisites.
This course explores little known ways that emotional intelligence can be used in the workplace by investigating what it is and what it is not. It covers the main models of emotional intelligence and what they mean but more importantly how they can be practically applied at work.
Navigating the world of mortgages can feel like a maze of terminology and regulations, but with the right guidance, it’s a lot easier to find your way. The Mortgage Advice Essentials Course provides the knowledge and understanding necessary for anyone looking to grasp the basics of mortgage advice. Whether you're considering a career in the field or simply looking to expand your understanding, this course breaks down key concepts like mortgage products, financial regulations, and the mortgage application process. With clear explanations, it ensures you're equipped to understand how to assist clients in choosing the right mortgage options. This course doesn’t require you to step out of your home, yet it offers a thorough understanding of what the mortgage advice industry entails. From learning about interest rates to understanding different mortgage types, you’ll discover how to evaluate a client’s needs and recommend appropriate options. The course is designed for those looking to gain a solid foundation in mortgage advice, with up-to-date insights into current market trends and the financial factors that influence mortgage decisions. Ready to dive into the world of mortgages? This course provides the essential building blocks for your journey. Key Features CPD Accredited FREE PDF + Hardcopy certificate Fully online, interactive course Self-paced learning and laptop, tablet and smartphone-friendly 24/7 Learning Assistance Discounts on bulk purchases Course Curriculum Module 1: Introduction to Mortgage Advice Module 2: Mortgage Types and Structures Module 3: Mortgage Market Analysis Module 4: Mortgage Advice and Recommendations Module 5: Mortgage Documentation and Processes Module 6: Mortgage Protection and Insurance Module 7: Mortgage Regulations and Compliance Module 8: Professional Skills and Client Management Learning Outcomes: Analyse diverse mortgage types for client-specific recommendations. Demonstrate expertise in mortgage market analysis techniques. Navigate documentation processes with precision and efficiency. Develop and present comprehensive mortgage advisory strategies. Implement robust mortgage protection and insurance solutions. Ensure compliance with mortgage regulations through in-depth understanding. Accreditation This course is CPD Quality Standards (CPD QS) accredited, providing you with up-to-date skills and knowledge and helping you to become more competent and effective in your chosen field. Certificate After completing this course, you will get a FREE Digital Certificate from Training Express. CPD 10 CPD hours / points Accredited by CPD Quality Standards Who is this course for? Aspiring Mortgage Advisors Financial Services Professionals Individuals Seeking Financial Expertise Career Changers in Finance Banking and Finance Graduates Professionals Aiming for Regulatory Compliance Roles Individuals Entering the Mortgage Consultancy Field Anyone Eager to Master Client Management in Finance Career path Mortgage Advisor Financial Consultant Regulatory Compliance Officer Mortgage Analyst Banking Specialist Insurance Advisor Certificates Digital certificate Digital certificate - Included Once you've successfully completed your course, you will immediately be sent a FREE digital certificate. Hard copy certificate Hard copy certificate - Included Also, you can have your FREE printed certificate delivered by post (shipping cost £3.99 in the UK). For all international addresses outside of the United Kingdom, the delivery fee for a hardcopy certificate will be only £10. Our certifications have no expiry dates, although we do recommend that you renew them every 12 months.