<?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: MS project xml import in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/MS-project-xml-import/m-p/666043#M1064779</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ugh, forget it, hadn't run the script, idiot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Sep 2014 11:29:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-10T11:29:21Z</dc:date>
    <item>
      <title>MS project xml import</title>
      <link>https://community.qlik.com/t5/QlikView/MS-project-xml-import/m-p/666042#M1064778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've created a really basic MS project 2007 file and saved it as XML and imported the XML in to QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script looks like it's imported as expected, but there's no tables or fields.&amp;nbsp; I was expecting to be able to add an object and select fields from the various tables that would have been created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone point me in the right direction please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's an excerpt of the script:&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;// Start of [Project1.xml] LOAD statements&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;'ExtendedAttributes/ExtendedAttribute':&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;LOAD FieldID,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldName,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SecondaryPID,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %Key_Project_59FE1CDD36903AAC&amp;nbsp;&amp;nbsp;&amp;nbsp; // Key to parent table: Project&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;FROM &lt;C&gt; (XmlSimple, Table is [Project/ExtendedAttributes/ExtendedAttribute]);&lt;/C&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;WorkingTime:&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;LOAD FromTime,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ToTime,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %Key_WeekDay_02B90FFE85635485&amp;nbsp;&amp;nbsp;&amp;nbsp; // Key to parent table: Project/Calendars/Calendar/WeekDays/WeekDay&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;FROM &lt;C&gt; (XmlSimple, Table is [Project/Calendars/Calendar/WeekDays/WeekDay/WorkingTimes/WorkingTime]);&lt;/C&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;WeekDay:&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;LOAD DayType,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DayWorking,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %Key_Calendar_FD9CE055B3853312,&amp;nbsp;&amp;nbsp;&amp;nbsp; // Key to parent table: Project/Calendars/Calendar&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %Key_WeekDay_02B90FFE85635485&amp;nbsp;&amp;nbsp;&amp;nbsp; // Key for this table: Project/Calendars/Calendar/WeekDays/WeekDay&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;FROM &lt;C&gt; (XmlSimple, Table is [Project/Calendars/Calendar/WeekDays/WeekDay]);&lt;/C&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;Calendar:&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;LOAD UID,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsBaseCalendar,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BaseCalendarUID,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %Key_Project_59FE1CDD36903AAC,&amp;nbsp;&amp;nbsp;&amp;nbsp; // Key to parent table: Project&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %Key_Calendar_FD9CE055B3853312&amp;nbsp;&amp;nbsp;&amp;nbsp; // Key for this table: Project/Calendars/Calendar&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;FROM &lt;C&gt; (XmlSimple, Table is [Project/Calendars/Calendar]);&lt;/C&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;Task:&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;LOAD UID,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Type,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsNull,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreateDate,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WBS,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OutlineNumber,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OutlineLevel,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Priority,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Start,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Finish,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Duration,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DurationFormat,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Work,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ResumeValid,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EffortDriven,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Recurring,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OverAllocated,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Estimated,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Milestone,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Summary,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Critical,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsSubproject,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsSubprojectReadOnly,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExternalTask,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EarlyStart,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EarlyFinish,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LateStart,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LateFinish,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartVariance,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FinishVariance,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WorkVariance,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FreeSlack,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TotalSlack,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FixedCost,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FixedCostAccrual,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PercentComplete,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PercentWorkComplete,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cost,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OvertimeCost,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OvertimeWork,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActualDuration,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActualCost,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActualOvertimeCost,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActualWork,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActualOvertimeWork,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RegularWork,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemainingDuration,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemainingCost,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemainingWork,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemainingOvertimeCost,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RemainingOvertimeWork,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACWP,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CV,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ConstraintType,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CalendarUID,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LevelAssignments,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LevelingCanSplit,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LevelingDelay,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LevelingDelayFormat,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IgnoreResourceCalendar,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HideBar,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Rollup,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BCWS,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BCWP,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PhysicalPercentComplete,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EarnedValueMethod,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsPublished,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommitmentType,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ConstraintDate,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %Key_Project_59FE1CDD36903AAC&amp;nbsp;&amp;nbsp;&amp;nbsp; // Key to parent table: Project&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif;"&gt;FROM &lt;C&gt; (XmlSimple, Table is [Project/Tasks/Task]);&lt;/C&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 10:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MS-project-xml-import/m-p/666042#M1064778</guid>
      <dc:creator />
      <dc:date>2014-09-10T10:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: MS project xml import</title>
      <link>https://community.qlik.com/t5/QlikView/MS-project-xml-import/m-p/666043#M1064779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ugh, forget it, hadn't run the script, idiot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 11:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MS-project-xml-import/m-p/666043#M1064779</guid>
      <dc:creator />
      <dc:date>2014-09-10T11:29:21Z</dc:date>
    </item>
  </channel>
</rss>

