<?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>topic Re: SLA Development in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520248#M106390</link>
    <description>&lt;P&gt;can anyone help on this please. its urgent requiremnt have to submit today.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jun 2025 11:23:08 GMT</pubDate>
    <dc:creator>jaswanth222</dc:creator>
    <dc:date>2025-06-05T11:23:08Z</dc:date>
    <item>
      <title>SLA Development</title>
      <link>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520230#M106387</link>
      <description>&lt;P&gt;Hello Everyone, i have an urgent requirement. i'm creating an adhoc code in qliksense. i have 2 tables which is CSAT and Knowledge table in that table sys_created_on is the common field, i want to use that column for sla development. i have created an adhoc code but facing issue with the synthetic keys. please find the below script for reference. can anyone please help me on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;Customer_Survey_Transformed:&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;instance as Instance,&lt;BR /&gt;instance_task_id as Instance_task_id,&lt;BR /&gt;metric_question as Metric_Question,&lt;BR /&gt;actual_value as Actual_value,&lt;BR /&gt;string_value as String_Value,&lt;BR /&gt;sys_created_on as Created_On,&lt;BR /&gt;metric_metric_type as Metric_Type,&lt;BR /&gt;instance_task_id_assignment_group as Assignment_Group,&lt;BR /&gt;MonthName(Date(floor(sys_created_on))) as Created_On_Month,&lt;BR /&gt;If(Date(Floor(sys_created_on))&amp;gt;= Date#('$(vLastMonthStart)','YYYY-MM-DD') AND Date(FLOOR(sys_created_on)) &amp;lt;= Date#('$(vLastMonthEnd)','YYYY-MM-DD'), 1,0) as Created_On_Last_Month,&lt;BR /&gt;IF(Floor(sys_created_on)&amp;gt;=Floor(MonthStart(Today())) AND Floor(sys_created_on)&amp;lt;=Floor(MonthEnd(Today())),1,0) as Created_On_This_Month,&lt;BR /&gt;//IF(Floor(sys_created_on)&amp;gt;=Floor(MonthStart(Today())) and Floor(sys_created_on)&amp;lt;=Floor(Today()),1,0) as Created_On_This_Month,&lt;BR /&gt;IF(Floor(sys_created_on)&amp;gt;=Floor(monthstart(addmonths(Today(),-13))) and Floor(sys_created_on)&amp;lt;=Floor(Today()),1,0) as Created_On_13Month;&lt;/P&gt;&lt;P&gt;SELECT&lt;BR /&gt;instance,&lt;BR /&gt;`instance_task_id`,&lt;BR /&gt;`sys_created_on`,&lt;BR /&gt;`metric_question`,&lt;BR /&gt;`actual_value`,&lt;BR /&gt;`string_value`,&lt;BR /&gt;`metric_metric_type`,&lt;BR /&gt;`instance_task_id_assignment_group`&lt;BR /&gt;FROM `prod`.`dif_itsm_analytics_modelonly`.`asmt_metric_result`;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;CSAT_metric_table_temp:&lt;BR /&gt;Load *&lt;BR /&gt;Resident Customer_Survey_Transformed;&lt;BR /&gt;drop table Customer_Survey_Transformed;&lt;BR /&gt;rename table CSAT_metric_table_temp to Customer_Survey_Transformed;&lt;BR /&gt;&lt;BR /&gt;NoConcatenate&lt;BR /&gt;CSAT_metric_table_temp:&lt;BR /&gt;Load *,&lt;BR /&gt;if (not(Instance_task_id=''), Capitalize(Instance_task_id) &amp;amp; '-2246-5065',null()) as Key_Id&lt;BR /&gt;Resident Customer_Survey_Transformed&lt;BR /&gt;where wildmatch([String_Value], 'Very Satisfied','Satisfied','Dissatisfied','Very Dissatisfied');&lt;/P&gt;&lt;P&gt;drop table Customer_Survey_Transformed;&lt;BR /&gt;Rename table CSAT_metric_table_temp to Customer_Survey_Transformed;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NoConcatenate&lt;BR /&gt;KB_Knowledge_Table:&lt;BR /&gt;Load&lt;BR /&gt;sys_created_on as Created_On,&lt;BR /&gt;num(rating) as Rating,&lt;BR /&gt;number as Number,&lt;BR /&gt;workflow_state as workflow_state,&lt;BR /&gt;kb_knowledge_base as Kb_Knowledge_Base,&lt;BR /&gt;can_read_user_criteria as can_read_user_criteria,&lt;BR /&gt;IF(IsNull(can_read_user_criteria),1,0) as can_read_user_criteria_flag,&lt;BR /&gt;If(Not Isnull(num(rating)) and num(rating)&amp;gt;=3,1,0) as Rating_Flag;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;SELECT&lt;BR /&gt;`sys_created_on`,&lt;BR /&gt;rating,&lt;BR /&gt;`number`,&lt;BR /&gt;`workflow_state`,&lt;BR /&gt;`kb_knowledge_base`,&lt;BR /&gt;`can_read_user_criteria`&lt;BR /&gt;From prod.dif_itsm_analytics_modelonly.kb_knowledge;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;NoConcatenate&lt;BR /&gt;KB_Knowledge_Table_temp:&lt;BR /&gt;Load *&lt;BR /&gt;Resident KB_Knowledge_Table;&lt;BR /&gt;drop table KB_Knowledge_Table;&lt;BR /&gt;rename table KB_Knowledge_Table_temp to KB_Knowledge_Table;&lt;BR /&gt;&lt;BR /&gt;NoConcatenate&lt;BR /&gt;KB_Knowledge_Table_temp:&lt;BR /&gt;Load *,&lt;BR /&gt;if (not(Number=''), Capitalize(Number) &amp;amp; '-2246-5065',null()) as Key_Id&lt;BR /&gt;Resident KB_Knowledge_Table;&lt;/P&gt;&lt;P&gt;drop table KB_Knowledge_Table;&lt;BR /&gt;Rename table KB_Knowledge_Table_temp to KB_Knowledge_Table;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jaswanth222_0-1749117032763.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/181070iCF25EF252FE072E1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jaswanth222_0-1749117032763.png" alt="jaswanth222_0-1749117032763.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 09:51:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520230#M106387</guid>
      <dc:creator>jaswanth222</dc:creator>
      <dc:date>2025-06-05T09:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: SLA Development</title>
      <link>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520248#M106390</link>
      <description>&lt;P&gt;can anyone help on this please. its urgent requiremnt have to submit today.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 11:23:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520248#M106390</guid>
      <dc:creator>jaswanth222</dc:creator>
      <dc:date>2025-06-05T11:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: SLA Development</title>
      <link>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520252#M106392</link>
      <description>&lt;P&gt;It is because the fields exist in both tables and a in Qlik you can only link on a single field.&lt;/P&gt;&lt;P&gt;Depending on your end goal you have a few options&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Alise the field on one table to remove the link.&lt;/LI&gt;&lt;LI&gt;Create a new key which is a concatenate of the two fields&lt;/LI&gt;&lt;LI&gt;build a link table to sit in between&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Thu, 05 Jun 2025 12:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520252#M106392</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2025-06-05T12:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: SLA Development</title>
      <link>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520256#M106394</link>
      <description>&lt;P&gt;i have tried to concatenate both tabls by using link table at the edge of the script then it is not getting any result&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 13:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/SLA-Development/m-p/2520256#M106394</guid>
      <dc:creator>jaswanth222</dc:creator>
      <dc:date>2025-06-05T13:29:13Z</dc:date>
    </item>
  </channel>
</rss>

