<?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 Want to create a landing page for incidents same as change when click on Create New in ServiceNow IDE, SDK, and Fluent forum</title>
    <link>https://www.servicenow.com/community/servicenow-ide-sdk-and-fluent/want-to-create-a-landing-page-for-incidents-same-as-change-when/m-p/3415684#M714</link>
    <description>&lt;P&gt;I have two types of incidents&lt;/P&gt;&lt;P&gt;one is Normal one&lt;BR /&gt;and second one is for someother type&lt;BR /&gt;when i click on create new incidents i want a landing page same as change where we can selecr standard and Normal change.&lt;/P&gt;&lt;P&gt;Is it possible to do&lt;/P&gt;&lt;P&gt;please let me know the solution&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Oct 2025 05:00:21 GMT</pubDate>
    <dc:creator>BokkalaS</dc:creator>
    <dc:date>2025-10-30T05:00:21Z</dc:date>
    <item>
      <title>Want to create a landing page for incidents same as change when click on Create New</title>
      <link>https://www.servicenow.com/community/servicenow-ide-sdk-and-fluent/want-to-create-a-landing-page-for-incidents-same-as-change-when/m-p/3415684#M714</link>
      <description>&lt;P&gt;I have two types of incidents&lt;/P&gt;&lt;P&gt;one is Normal one&lt;BR /&gt;and second one is for someother type&lt;BR /&gt;when i click on create new incidents i want a landing page same as change where we can selecr standard and Normal change.&lt;/P&gt;&lt;P&gt;Is it possible to do&lt;/P&gt;&lt;P&gt;please let me know the solution&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 05:00:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ide-sdk-and-fluent/want-to-create-a-landing-page-for-incidents-same-as-change-when/m-p/3415684#M714</guid>
      <dc:creator>BokkalaS</dc:creator>
      <dc:date>2025-10-30T05:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Want to create a landing page for incidents same as change when click on Create New</title>
      <link>https://www.servicenow.com/community/servicenow-ide-sdk-and-fluent/want-to-create-a-landing-page-for-incidents-same-as-change-when/m-p/3415694#M715</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831342"&gt;@BokkalaS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, that's possible and also&amp;nbsp;&lt;SPAN&gt;refer out of the box interceptor for Change Table&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Refer this link&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.servicenow.com/community?id=community_question&amp;amp;sys_id=d6aebe65db58dbc01dcaf3231f961901" target="_blank" rel="noopener noreferrer"&gt;How to direct to interceptors&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;BK&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 05:50:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ide-sdk-and-fluent/want-to-create-a-landing-page-for-incidents-same-as-change-when/m-p/3415694#M715</guid>
      <dc:creator>Bhavya11</dc:creator>
      <dc:date>2025-10-30T05:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Want to create a landing page for incidents same as change when click on Create New</title>
      <link>https://www.servicenow.com/community/servicenow-ide-sdk-and-fluent/want-to-create-a-landing-page-for-incidents-same-as-change-when/m-p/3415769#M716</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/831342"&gt;@BokkalaS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried your problem in my PDI and it is working fine for me please check below solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Navigate to All&amp;gt; UI Pages, create New&lt;/P&gt;&lt;P&gt;Name : incident_landing&lt;/P&gt;&lt;P&gt;In HTML add below code&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;?xml version="1.0" encoding="utf-8" ?&amp;gt;
&amp;lt;j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null"&amp;gt;

&amp;lt;div class="container"&amp;gt;
  &amp;lt;h2&amp;gt;Select Incident Type&amp;lt;/h2&amp;gt;
  &amp;lt;br/&amp;gt;
  &amp;lt;button class="btn btn-primary" onclick="redirectTo('normal')"&amp;gt;Normal Incident&amp;lt;/button&amp;gt;
  &amp;lt;button class="btn btn-info" onclick="redirectTo('special')"&amp;gt;Special Incident&amp;lt;/button&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;script&amp;gt;
function redirectTo(type) {
  if (type == 'normal')
    window.location = '/incident.do?sys_id=-1&amp;amp;amp;incident_type=normal';
  else
    window.location = '/incident.do?sys_id=-1&amp;amp;amp;incident_type=special';
}
&amp;lt;/script&amp;gt;

&amp;lt;/j:jelly&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarthakKashyap_0-1761808592404.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/479489i0002E9F0FD4CC299/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarthakKashyap_0-1761808592404.png" alt="SarthakKashyap_0-1761808592404.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Now you can create a new Module under Incident application:&lt;/P&gt;&lt;P&gt;Navigate to&amp;nbsp;&lt;STRONG&gt;sys_app_application_list&amp;nbsp;&lt;/STRONG&gt;table and open incident record and try to add new module under this please check link below&lt;/P&gt;&lt;P&gt;&lt;A href="https://yourInstance.service-now.com/sys_app_application.do?sys_id=dead1309c611228701e2bda7b4252474&amp;amp;sysparm_view=" target="_blank"&gt;https://yourInstance.service-now.com/sys_app_application.do?sys_id=dead1309c611228701e2bda7b4252474&amp;amp;sysparm_view=&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarthakKashyap_1-1761808742186.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/479490iDEA75D6B06A6FFC4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarthakKashyap_1-1761808742186.png" alt="SarthakKashyap_1-1761808742186.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Create new Module from related list and give any name and type as URL(from Arguments) and give the name of your UI Page that created above.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarthakKashyap_2-1761808794227.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/479491i1375EB3C24D425F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarthakKashyap_2-1761808794227.png" alt="SarthakKashyap_2-1761808794227.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarthakKashyap_3-1761808831528.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/479492iE3315F18CF2842A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarthakKashyap_3-1761808831528.png" alt="SarthakKashyap_3-1761808831528.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarthakKashyap_4-1761808845288.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/479493i255175C227DB3D0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarthakKashyap_4-1761808845288.png" alt="SarthakKashyap_4-1761808845288.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please mark my answer correct and helpful if this works for you&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sarthak&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 07:21:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ide-sdk-and-fluent/want-to-create-a-landing-page-for-incidents-same-as-change-when/m-p/3415769#M716</guid>
      <dc:creator>Sarthak Kashyap</dc:creator>
      <dc:date>2025-10-30T07:21:14Z</dc:date>
    </item>
  </channel>
</rss>

