<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Hello ServiceNow Community! in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555760#M7138</link>
    <description>&lt;P&gt;Also&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/1124180"&gt;@KanamRamu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;To pick up small jobs/use cases and build real experience, leverage the official&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.servicenow.com/community" target="_blank"&gt;ServiceNow Community&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;forums to solve real-world user problems.&lt;/LI&gt;&lt;LI&gt;Engage in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.servicenow.com/community/servicenow-org-nonprofit/bd-p/sig-sn-dot-org-nonprofitforum-board" target="_blank"&gt;ServiceNow.org Nonprofit Community&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to identify NGOs seeking platform support&lt;/LI&gt;&lt;LI&gt;Spend 1-2 hours a day on the ServiceNow Developer Forum answering technical queries and discussing platform challenges.&lt;/LI&gt;&lt;LI&gt;Set up a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developer.servicenow.com/" rel="noopener noreferrer" target="_blank"&gt;Personal Developer Instance (PDI)&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to test solutions, build custom applications, or create custom widgets. You can use these PDI projects as evidence of your skills when talking to prospective clients.&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Mon, 08 Jun 2026 14:54:43 GMT</pubDate>
    <dc:creator>Tanushree Maiti</dc:creator>
    <dc:date>2026-06-08T14:54:43Z</dc:date>
    <item>
      <title>Hello ServiceNow Community!</title>
      <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3554891#M7116</link>
      <description>&lt;P&gt;Hi everyone! &lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm Kanam Ramu, currently pursuing a B.Tech in Computer Science and Engineering (CSE). I have completed the ServiceNow Certified System Administrator (CSA) and Certified Application Developer (CAD) certifications and am currently revising and strengthening my ServiceNow fundamentals.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm passionate about ServiceNow Application Development and excited to connect, learn, and contribute to the ServiceNow Community.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking forward to engaging with you all! &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jun 2026 02:02:01 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3554891#M7116</guid>
      <dc:creator>KanamRamu</dc:creator>
      <dc:date>2026-06-06T02:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ServiceNow Community!</title>
      <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555005#M7121</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/1124180"&gt;@KanamRamu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Welcome to the ServiceNow Community, and congratulations on completing your CSA and CAD certifications. That is a very good foundation, especially if you are planning to grow in ServiceNow Application Development.&lt;/P&gt;&lt;P&gt;Since you are revising your fundamentals, my suggestion is to learn ServiceNow development from both a technical view and a business view. In real projects, it is not enough to know only the syntax. You should also understand why a script is needed, what business problem it solves, and whether the same requirement can be handled using OOTB configuration before writing custom code.&lt;/P&gt;&lt;P&gt;For example, start with Business Rules. Technically, a Business Rule is a server-side script that runs when a record is inserted, updated, deleted, displayed, or queried. But from a business view, a Business Rule is used to enforce backend rules and maintain data quality. For example, when an incident is marked as resolved, you may want to automatically populate the resolved date, validate mandatory backend fields, update related records, or trigger some server-side logic. That is where Business Rules become useful.&lt;/P&gt;&lt;P&gt;Try to understand the difference between Before, After, Async, and Display Business Rules. A Before Business Rule is usually used when you want to update or validate the same record before it is saved. An After Business Rule is useful when the record is already saved and you want to update related records or trigger follow-up processing. An Async Business Rule is useful when the logic does not need to block the user, such as background processing or integration-related work. A Display Business Rule is often used to prepare server-side data and send it to the client side using g_scratchpad.&lt;/P&gt;&lt;P&gt;Similarly, learn Client Scripts from the user-experience point of view. Technically, Client Scripts run in the browser using APIs like g_form. But from a business view, Client Scripts help guide the user while filling the form. For example, you can make a field mandatory based on another field, hide fields that are not relevant, show messages, validate input before submission, or auto-populate values to reduce user effort.&lt;/P&gt;&lt;P&gt;For hands-on practice, take a simple incident form example. If the user selects Category as “Software,” use an onChange Client Script to show or make software-related fields mandatory. If the user tries to submit the form without business justification, use an onSubmit Client Script to stop submission and show a message. This helps you understand how client-side logic improves form usability.&lt;/P&gt;&lt;P&gt;After that, learn server-side scripting using Script Includes and GlideRecord. Script Includes are very important because they allow you to write reusable server-side logic. In real projects, you should avoid repeating the same logic in multiple Business Rules or Client Scripts. Instead, write reusable logic in a Script Include and call it wherever needed.&lt;/P&gt;&lt;P&gt;Also learn GlideAjax. This is very important because sometimes a Client Script needs information from the server. For example, when a user selects a requester, you may want to fetch the requester’s department, manager, location, or asset details from the server. Instead of writing heavy logic directly on the client side, you can use GlideAjax to call a client-callable Script Include and return only the required value.&lt;/P&gt;&lt;P&gt;A good learning approach would be:&lt;/P&gt;&lt;P&gt;First, understand the business requirement.&lt;/P&gt;&lt;P&gt;Example: “When a laptop request is submitted, check whether the requester is eligible, validate the cost center, route approval to the manager, and create fulfillment tasks.”&lt;/P&gt;&lt;P&gt;Then break it technically:&lt;/P&gt;&lt;P&gt;Use Catalog Item variables to collect user input.&lt;BR /&gt;Use Client Script or UI Policy to control form behavior.&lt;BR /&gt;Use Flow Designer for approvals and task creation.&lt;BR /&gt;Use Business Rule only if backend validation or record automation is required.&lt;BR /&gt;Use Script Include if the same logic must be reused.&lt;BR /&gt;Use GlideAjax if the client side needs server-side data.&lt;BR /&gt;Use ACLs to secure the data.&lt;BR /&gt;Use reports or dashboards to track process performance.&lt;/P&gt;&lt;P&gt;This is how real ServiceNow development works. You do not directly jump into scripting. You first check whether the requirement can be handled using OOTB configuration, Flow Designer, UI Policies, Data Policies, Assignment Rules, Notifications, or ACLs. Custom scripting should be used only when configuration is not enough.&lt;/P&gt;&lt;P&gt;For practice, I would suggest building small use cases in your PDI:&lt;/P&gt;&lt;P&gt;1. Create a custom table for asset request tracking.&lt;BR /&gt;2. Add fields like requested for, asset type, priority, business justification, approval status, and assigned group.&lt;BR /&gt;3. Create Client Scripts to control field visibility and validation.&lt;BR /&gt;4. Create Business Rules to auto-populate backend values and validate data.&lt;BR /&gt;5. Create a Script Include for reusable validation logic.&lt;BR /&gt;6. Use GlideAjax to fetch requester details from the server.&lt;BR /&gt;7. Create a Flow Designer flow for approval and task creation.&lt;BR /&gt;8. Add ACLs to control who can read, write, and approve records.&lt;BR /&gt;9. Create reports to show pending requests, approved requests, and rejected requests.&lt;/P&gt;&lt;P&gt;If you learn this way, you will not only understand ServiceNow scripting, but also how to think like a real ServiceNow developer or consultant.&lt;/P&gt;&lt;P&gt;My simple advice is: do not learn Business Rules, Client Scripts, Script Includes, and Flow Designer as separate topics only. Learn how they work together to solve a business process.&lt;/P&gt;&lt;P&gt;That practical understanding will help you a lot in projects, interviews, and community contributions.&lt;/P&gt;&lt;P&gt;All the best for your ServiceNow journey. Looking forward to seeing your learning and contributions in the community.&lt;/P&gt;&lt;P&gt;Please mark this as Helpful if it helps.&lt;/P&gt;&lt;P&gt;If this addresses your question, please mark this response as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Accepted Solution&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TejaswiniY_0-1780779521171.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/518853iB5950F4249ECE8F1/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="TejaswiniY_0-1780779521171.png" alt="TejaswiniY_0-1780779521171.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or mark has&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helpful&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TejaswiniY_1-1780779521174.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/518854i2C944F197563B1D4/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="TejaswiniY_1-1780779521174.png" alt="TejaswiniY_1-1780779521174.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;if you find it helpful.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;TejaswiniY&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jun 2026 20:59:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555005#M7121</guid>
      <dc:creator>TejaswiniY</dc:creator>
      <dc:date>2026-06-06T20:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ServiceNow Community!</title>
      <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555021#M7124</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/1124180"&gt;@KanamRamu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Firstly Congratulations for completing the CSA and CAD Certifications. Meanwhile you can also look at this too. It will be very helpful.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.servicenow.com/docs/r/yokohama/api-reference/scripts/c_Script.html" target="_blank"&gt;https://www.servicenow.com/docs/r/yokohama/api-reference/scripts/c_Script.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks and regards&lt;/P&gt;
&lt;P&gt;Sai Venkatesh&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2026 01:46:13 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555021#M7124</guid>
      <dc:creator>SAI VENKATESH</dc:creator>
      <dc:date>2026-06-07T01:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ServiceNow Community!</title>
      <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555228#M7129</link>
      <description>&lt;P&gt;Hi Mam,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your detailed guidance and encouragement. My fundamentals are fairly good, but I'm finding it a bit difficult to build a complete project on my own. So, I plan to first revise the core concepts like Client Scripts, Business Rules, Script Includes, GlideAjax, and Flow Designer, and then start building projects step by step as you suggested.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your advice about understanding the business requirement first and using OOTB features before scripting was really helpful. I'll definitely follow that approach while practicing in my PDI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you once again for your valuable guidance and support!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2026 01:36:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555228#M7129</guid>
      <dc:creator>KanamRamu</dc:creator>
      <dc:date>2026-06-08T01:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ServiceNow Community!</title>
      <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555652#M7133</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/1124180"&gt;@KanamRamu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are most welcome.&lt;/P&gt;&lt;P&gt;That is a good approach. Start with small use cases instead of jumping directly into a complete project. Pick one requirement, build it step by step, and connect Client Scripts, Business Rules, Script Includes, GlideAjax, and Flow Designer gradually.&lt;/P&gt;&lt;P&gt;Also, always check whether the requirement can be done with OOTB configuration before writing custom scripts. This mindset will help you design better solutions in real projects.&lt;/P&gt;&lt;P&gt;Keep practicing in your PDI, and the complete project-building confidence will come naturally.&lt;/P&gt;&lt;P&gt;All the best for your ServiceNow learning journey!&lt;/P&gt;&lt;P&gt;Please mark this as Helpful if it helps.&lt;/P&gt;&lt;P&gt;If this addresses your question, please mark this response as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Accepted Solution&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Yaramala_0-1780925701385.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/519077i3C3C6821216F57E6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Yaramala_0-1780925701385.png" alt="Yaramala_0-1780925701385.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or mark has&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helpful&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Yaramala_1-1780925701389.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/519078iF2310176E99B7D70/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Yaramala_1-1780925701389.png" alt="Yaramala_1-1780925701389.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;if you find it helpful.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;TejaswiniY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2026 13:35:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555652#M7133</guid>
      <dc:creator>Yaramala</dc:creator>
      <dc:date>2026-06-08T13:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ServiceNow Community!</title>
      <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555660#M7134</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;ahoy&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/1124180"&gt;@KanamRamu&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Welcome to the Platform of platforms!&lt;/STRONG&gt;&amp;nbsp;&lt;SPAN class="lia-unicode-emoji"&gt;&lt;span class="lia-unicode-emoji" title=":rocket:"&gt;🚀&lt;/span&gt; CSA and CAD is a very good start,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;let me take this opportunity to share following resources with you:&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;FONT size="5"&gt;&lt;A href="https://www.servicenow.com/community/servicenow-university/ct-p/sn-university" target="_blank" rel="noopener"&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;ServiceNow University&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GlideFather_0-1780925889093.png" style="width: 999px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/519081iA6C9FE23D51CB067/image-size/large?v=v2&amp;amp;px=999" role="button" title="GlideFather_0-1780925889093.png" alt="GlideFather_0-1780925889093.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL class=""&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;SPAN class=""&gt;&lt;A href="https://learning.servicenow.com/lxp/en/general/get-started-with-servicenow-university?id=learning_course_prev&amp;amp;course_id=e2c77b409711e2d05b0b7ec11153af24" target="_blank" rel="noopener noreferrer"&gt;Get Started with ServiceNow University&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Learn about ServiceNow and earn&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;badges, points, certificates&lt;/STRONG&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;and improve&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;A href="https://learning.servicenow.com/lxp/en/get-started-with-servicenow-university-resources/getting-started-with?id=kb_article_view&amp;amp;sysparm_article=KB0012916" target="_blank" rel="noopener noreferrer"&gt;&lt;STRONG&gt;your rank&lt;/STRONG&gt;&lt;/A&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Most courses are&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;free&lt;/STRONG&gt;, only a few are paid.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Start with the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;&lt;A href="https://learning.servicenow.com/lxp/en/now-platform/welcome-to-servicenow?id=learning_course_prev&amp;amp;course_id=92e0b5fb97d742506eedb30e6253afd0" target="_blank" rel="noopener noreferrer"&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;Welcome to ServiceNow&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;STRONG&gt;&amp;nbsp;"&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;training, it's fun and gives you your first certificate!&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;The&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://learning.servicenow.com/lxp/en/now-platform/certified-system-administrator-csa-learning-path?id=learning_path_prev&amp;amp;path_id=cc4919c6dbdeb700760a710439961966" target="_blank" rel="noopener noreferrer"&gt;&lt;STRONG&gt;Certified System Administrator (CSA)&lt;/STRONG&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;certificate is a good start, it's useful for almost any ServiceNow role.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Trainings at the SN University provide temporary lab instances with pre-installed plugins and apps.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;FONT size="5"&gt;&lt;A href="https://learning.servicenow.com/lxp/en/pages/career-journey?id=journey" target="_blank" rel="noopener noreferrer"&gt;ServiceNow Career Journeys&lt;/A&gt;&amp;nbsp;&amp;amp;&amp;nbsp;&lt;A href="https://learning.servicenow.com/lxp/en/pages/now-learning-get-certified?id=amap_home" target="_blank" rel="noopener noreferrer"&gt;ServiceNow Career Paths&lt;/A&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GlideFather_1-1780925889094.png" style="width: 999px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/519082iE1FC7F33D5048210/image-size/large?v=v2&amp;amp;px=999" role="button" title="GlideFather_1-1780925889094.png" alt="GlideFather_1-1780925889094.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Pick a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ServiceNow Career Path&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;that matches your interests.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;We’ll help you start at the right level based on your skills.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;A&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ServiceNow Credential&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;gives you industry recognition.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;It proves your investment and boosts your professional value.&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;FONT size="5"&gt;&lt;A href="https://developer.servicenow.com/dev.do#!/learn/learning-plans/zurich" target="_blank" rel="noopener noreferrer"&gt;Learning Plans&lt;/A&gt;&amp;nbsp;at the&amp;nbsp;&lt;A href="https://developer.servicenow.com/dev.do" target="_blank" rel="noopener noreferrer"&gt;Developer Portal&lt;/A&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GlideFather_2-1780925889094.png" style="width: 999px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/519080iBA6E9513EF51D56B/image-size/large?v=v2&amp;amp;px=999" role="button" title="GlideFather_2-1780925889094.png" alt="GlideFather_2-1780925889094.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL class=""&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Request your&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Personal Developer Instance (PDI),&lt;/STRONG&gt;&amp;nbsp;your own ServiceNow sandbox to practice safely.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;You can try almost everything for free (except a few advanced features like AI).&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Explore&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;guides, tutorials, blogs, and documentation&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to learn more.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Short and self-paced modules.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Best practices, references,&amp;nbsp;&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;STRONG&gt;Good luck and have fun!&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="lia-unicode-emoji"&gt;&lt;span class="lia-unicode-emoji" title=":crossed_fingers:"&gt;🤞&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-unicode-emoji"&gt;&lt;span class="lia-unicode-emoji" title=":flexed_biceps:"&gt;💪&lt;/span&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2026 13:38:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555660#M7134</guid>
      <dc:creator>GlideFather</dc:creator>
      <dc:date>2026-06-08T13:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ServiceNow Community!</title>
      <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555759#M7137</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/1124180"&gt;@KanamRamu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In PDI ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;In PDI , I did practice normal component testing like client script, notification, script includes etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;End to end project I did try - E-bonding project with all possible different methods. Which gave me Clear concept about integration with development.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You also try to follow community use cases, and try those&amp;nbsp; in your PDI.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jun 2026 14:53:39 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555759#M7137</guid>
      <dc:creator>Tanushree Maiti</dc:creator>
      <dc:date>2026-06-08T14:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ServiceNow Community!</title>
      <link>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555760#M7138</link>
      <description>&lt;P&gt;Also&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/1124180"&gt;@KanamRamu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;To pick up small jobs/use cases and build real experience, leverage the official&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.servicenow.com/community" target="_blank"&gt;ServiceNow Community&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;forums to solve real-world user problems.&lt;/LI&gt;&lt;LI&gt;Engage in the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.servicenow.com/community/servicenow-org-nonprofit/bd-p/sig-sn-dot-org-nonprofitforum-board" target="_blank"&gt;ServiceNow.org Nonprofit Community&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to identify NGOs seeking platform support&lt;/LI&gt;&lt;LI&gt;Spend 1-2 hours a day on the ServiceNow Developer Forum answering technical queries and discussing platform challenges.&lt;/LI&gt;&lt;LI&gt;Set up a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developer.servicenow.com/" rel="noopener noreferrer" target="_blank"&gt;Personal Developer Instance (PDI)&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to test solutions, build custom applications, or create custom widgets. You can use these PDI projects as evidence of your skills when talking to prospective clients.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Mon, 08 Jun 2026 14:54:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/hello-servicenow-community/m-p/3555760#M7138</guid>
      <dc:creator>Tanushree Maiti</dc:creator>
      <dc:date>2026-06-08T14:54:43Z</dc:date>
    </item>
  </channel>
</rss>

