<?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: Automatically generate a problem from priority 1 incident in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909661#M566587</link>
    <description>&lt;P&gt;You are welcome.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Kindly mark answer as correct / helpful if it solves your problem&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 11 Jun 2015 18:30:47 GMT</pubDate>
    <dc:creator>Deepak Ingale1</dc:creator>
    <dc:date>2015-06-11T18:30:47Z</dc:date>
    <item>
      <title>Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909652#M566578</link>
      <description>&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to generate a Problem Record when an incident is classified as a priority 1. &amp;nbsp; I've tried using a client script to call the oob create problem ui action, but I would like this to happen in the background. &amp;nbsp; Anybody have a script that does this?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jun 2015 15:08:01 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909652#M566578</guid>
      <dc:creator>cjhampton</dc:creator>
      <dc:date>2015-06-11T15:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909653#M566579</link>
      <description>&lt;P&gt;Create a Business Rule After Insert/Update&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;A href="http://wiki.servicenow.com/index.php?title=GlideRecord#Insert_Methods&amp;amp;gsc.tab=0" title="http://wiki.servicenow.com/index.php?title=GlideRecord#Insert_Methods&amp;amp;gsc.tab=0"&gt;GlideRecord - ServiceNow Wiki&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 15:11:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909653#M566579</guid>
      <dc:creator>saritha9</dc:creator>
      <dc:date>2015-06-11T15:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909654#M566580</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Create After Insert business rule&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;condition : current.priority &amp;nbsp; == 1;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;var gr = new GlideRecord('problem');&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;gr.initialize();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;gr.short_description = current.short_description;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;// &lt;STRONG&gt;you can set other fields also based on above code or can refere to create problem UI action code as well&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;if(gr.parent.nil())&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;{&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;gr.insert();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Do it in some demo instance or sandbox and check completely.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 15:19:41 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909654#M566580</guid>
      <dc:creator>Deepak Ingale1</dc:creator>
      <dc:date>2015-06-11T15:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909655#M566581</link>
      <description>&lt;P&gt;You can add modified code as follow&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;After insert / update business rule&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;condition :&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;current.incident_state != 7 &amp;amp;&amp;amp; current.problem_id.nil() &amp;amp;&amp;amp; current.priority == 1&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;var prob = new GlideRecord("problem");&lt;BR /&gt;prob.short_description = current.short_description;&lt;BR /&gt;prob.cmdb_ci = current.cmdb_ci;&lt;BR /&gt;prob.priority = current.priority;&lt;BR /&gt;prob.company = current.company;&lt;BR /&gt;prob.sys_domain = current.sys_domain;&lt;BR /&gt;var sysID = prob.insert();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;current.problem_id = sysID;&lt;BR /&gt;var mySysID = current.update();&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;gs.addInfoMessage("Problem " + prob.number + " created");&lt;BR /&gt;action.setRedirectURL(prob);&lt;BR /&gt;action.setReturnURL(current);&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 15:28:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909655#M566581</guid>
      <dc:creator>Deepak Ingale1</dc:creator>
      <dc:date>2015-06-11T15:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909656#M566582</link>
      <description>&lt;P&gt;First, let me just say thanks to all of you for your responses.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I've executed the business rule and it works great. &amp;nbsp; However, I don't see the linkage between the incident I am generating the problem from. &amp;nbsp; Is there something else I need to do here to build the linkages?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 15:40:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909656#M566582</guid>
      <dc:creator>cjhampton</dc:creator>
      <dc:date>2015-06-11T15:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909657#M566583</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="PRB.PNG"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/55916iC0BB28D039991BF4/image-size/large?v=v2&amp;amp;px=999" role="button" title="PRB.PNG" alt="PRB.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Could you please share screenshot where you are expecting to see problem record of incident form.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;It should be available &amp;nbsp; incident form.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 17:31:08 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909657#M566583</guid>
      <dc:creator>Deepak Ingale1</dc:creator>
      <dc:date>2015-06-11T17:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909658#M566584</link>
      <description>&lt;P&gt;Hi Curtis,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;OOB there is a UI action "create problem" which creates a problem ticket and relates to the incident. You can have a look on it and modify your code accordingly. Just replace the instance name with yours in the below link.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;A title="OURINSTANCENAME.service-now.com/sys_ui_action.do?sys_id=2f43c471c0a8006400a07440e49924c2&amp;amp;sysparm_view=&amp;amp;sysparm_record_target=&amp;amp;sysparm_record_row=1&amp;amp;sysparm_record_list=nameSTARTSWITHcreate+problem%5EORDERBYname&amp;amp;sysparm_record_rows=1" href="https://YOURINSTANCENAME.service-now.com/sys_ui_action.do?sys_id=2f43c471c0a8006400a07440e49924c2&amp;amp;sysparm_view=&amp;amp;sysparm_record_target=&amp;amp;sysparm_record_row=1&amp;amp;sysparm_record_list=nameSTARTSWITHcreate+problem%5EORDERBYname&amp;amp;sysparm_record_rows=1"&gt;https://YOURINSTANCENAME.service-now.com/sys_ui_action.do?sys_id=2f43c471c0a8006400a07440e49924c2&amp;amp;sysparm_view=&amp;amp;sysparm_record_target=&amp;amp;sysparm_record_row=1&amp;amp;sysparm_record_list=nameSTARTSWITHcreate+problem%5EORDERBYname&amp;amp;sysparm_record_rows=1&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 17:38:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909658#M566584</guid>
      <dc:creator>Pradeep Sharma</dc:creator>
      <dc:date>2015-06-11T17:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909659#M566585</link>
      <description>&lt;P&gt;I tried the code in demo instance &lt;A title="emo005.service-now.com/login.do" href="https://demo005.service-now.com/login.do"&gt;https://demo005.service-now.com/login.do&lt;/A&gt; and it worked perfect for me.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Problem record got linked to incident automatically.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 17:45:09 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909659#M566585</guid>
      <dc:creator>Deepak Ingale1</dc:creator>
      <dc:date>2015-06-11T17:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909660#M566586</link>
      <description>&lt;P&gt;Thanks Deepak. &amp;nbsp; I will try this and respond. &amp;nbsp; Thanks so much for the direction on this.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 18:24:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909660#M566586</guid>
      <dc:creator>cjhampton</dc:creator>
      <dc:date>2015-06-11T18:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909661#M566587</link>
      <description>&lt;P&gt;You are welcome.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Kindly mark answer as correct / helpful if it solves your problem&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 18:30:47 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909661#M566587</guid>
      <dc:creator>Deepak Ingale1</dc:creator>
      <dc:date>2015-06-11T18:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909662#M566588</link>
      <description>&lt;P&gt;i would think pretty hard about this before i did it...&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;in our business at least we tend to get multiple priority 1 tickets for each problem... for example if a switch goes down you could have a file server, an email server, and an app-server all do down at the same time.. these should all be on the same problem but should and probably will have their own pri 1 tickets....&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;while i understand the drive to do this... and automate problems .. the issue is creating a problem should be a deliberate act based on looking at the system by a person familiar with it saying that multiple incidents are related..&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jun 2015 21:10:41 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909662#M566588</guid>
      <dc:creator>randrews</dc:creator>
      <dc:date>2015-06-11T21:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909663#M566589</link>
      <description>&lt;P&gt;Hi Doug,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;All good points. &amp;nbsp; This is handled by process in this environment. &amp;nbsp; Only the Critical Incident Management Team can set the priority of an incident to 1. &amp;nbsp; Upon doing this their process is to always enter the Problem Management process.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thanks for the points,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Curtis&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Jun 2015 14:50:07 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909663#M566589</guid>
      <dc:creator>cjhampton</dc:creator>
      <dc:date>2015-06-12T14:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909664#M566590</link>
      <description>&lt;P&gt;Hi Curtis,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Even I agree with Doug, you should not have problem per incident.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;This is the case with our existing customer as well and we are trying to convince them on the same.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Jun 2015 14:59:19 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909664#M566590</guid>
      <dc:creator>Deepak Ingale1</dc:creator>
      <dc:date>2015-06-12T14:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909665#M566591</link>
      <description>&lt;P&gt;I agree as well Deepak. &amp;nbsp; In this environment, a "Master" ticket is created and only those can be set to priority 1. &amp;nbsp; Therefore you can have several incidents in the environment related to it, but only the master ticket drives the resolution of the Pri 1. &amp;nbsp; It is that ticket that will then generate a problem.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I think we are all in agreement, its just that these things are handled mostly by process here.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Curtis&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Jun 2015 15:01:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909665#M566591</guid>
      <dc:creator>cjhampton</dc:creator>
      <dc:date>2015-06-12T15:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909666#M566592</link>
      <description>&lt;P&gt;Thanks for the info!&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;One minor adjustment that we needed to make was to have the PRB created when:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;The incident was Inserted and Updated and the priority was updated and the priority is 1 - critical.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;We needed to do this because when we closed the PRB, it would update the associated Inc, which would then spawn another PRB.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 May 2016 16:03:29 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909666#M566592</guid>
      <dc:creator>Michael Bachme1</dc:creator>
      <dc:date>2016-05-05T16:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909667#M566593</link>
      <description>&lt;P&gt;I think what i see a lot is people attempting to use problem to drive the fix.. this is the wrong path and leads to problems not being as useful as they can/should be...&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;the BEST example IMHO is the itil manual that compares incidents to fire fighters they work during the emergency to fix the problem or minimize the impact...&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;problems OTOH are like the fire investigators.. they should ONLY be involved AFTER the fire is out and everything is settled.. they come in look at the damage and figure out what CAUSED the issue and how to avoid it in the future...&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;to many people &amp;lt;My company included&amp;gt; are busy trying to get problems open and started when they SHOULD be concentrating on the incident process and fixing the issue not the problem.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 May 2016 17:44:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909667#M566593</guid>
      <dc:creator>randrews</dc:creator>
      <dc:date>2016-05-05T17:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909668#M566594</link>
      <description>&lt;P&gt;That's a great analogy!&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 May 2016 17:48:09 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909668#M566594</guid>
      <dc:creator>Michael Bachme1</dc:creator>
      <dc:date>2016-05-05T17:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909669#M566595</link>
      <description>&lt;P&gt;In that analogy, what is the difference between Problem and Structured Problem Analysis (KT)?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 May 2016 13:47:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909669#M566595</guid>
      <dc:creator>Michael Bachme1</dc:creator>
      <dc:date>2016-05-10T13:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909670#M566596</link>
      <description>&lt;P&gt;i am a novice with the structured problem analysis.. but if i understand it correctly &amp;nbsp; Structured Problem Analysis is a methodology for finding the root cause of a problem or incident... so it simply provides guidelines on HOW &amp;nbsp; to get there and tracking getting there.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 May 2016 14:18:58 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/1909670#M566596</guid>
      <dc:creator>randrews</dc:creator>
      <dc:date>2016-05-10T14:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically generate a problem from priority 1 incident</title>
      <link>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/2947671#M1117995</link>
      <description>&lt;P&gt;i have the same problem. Unable to see the linkage of the problem in the inicident . Did you find the way to rectify this&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 08:11:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/automatically-generate-a-problem-from-priority-1-incident/m-p/2947671#M1117995</guid>
      <dc:creator>Dedeepya Reddy</dc:creator>
      <dc:date>2024-05-30T08:11:43Z</dc:date>
    </item>
  </channel>
</rss>

