How to load historic baselines?

Former Member
Former Member

Given a timestamp, is it possible to view all items as they looked at that time?

Is it possible to load historic items in the client and be able to navigate to the corresponding historic related items and item_properties?

Is it possible to load historic item structures given a timestamp via the IOM?

I have laborated with the attributes queryType and queryDate and I can load historic items, and their item_properties get the correct historic version given that the item_property is set as fixed. I have not however got the attributes to work with relations. I always get the current set of relations.

Perhaps I am missing something obvious? Does Aras provide a general baseline feature so that the user can inspect everything as it looked at a historic point in time?

Parents
  • Hello,

    Could you provide the AML that you're using to get the relationships? By using AML like below, I'm seeing only the Part BOMs specific to the released Part at the date I'm querying for.

    <AML>
      <Item type="Part" action="get" queryType="Released" queryDate="2019-04-22T17:37:00">
        <item_number>MP0101</item_number>
        <Relationships>
          <Item type="Part BOM" action="get" select="id,related_id(item_number)"/>
        </Relationships>
      </Item>
    </AML>

    Chris

    Christopher Gillis

    Aras Labs Software Engineer

Reply
  • Hello,

    Could you provide the AML that you're using to get the relationships? By using AML like below, I'm seeing only the Part BOMs specific to the released Part at the date I'm querying for.

    <AML>
      <Item type="Part" action="get" queryType="Released" queryDate="2019-04-22T17:37:00">
        <item_number>MP0101</item_number>
        <Relationships>
          <Item type="Part BOM" action="get" select="id,related_id(item_number)"/>
        </Relationships>
      </Item>
    </AML>

    Chris

    Christopher Gillis

    Aras Labs Software Engineer

Children
No Data