Skip to main content
Solved

Astea: removing SAs from Items

  • December 10, 2024
  • 9 replies
  • 52 views

bskallerud
Sidekick (Customer)
Forum|alt.badge.img+11

We are trying to find a way to remove SAs from Items (as part of deactivation and deletion of employee data). We need these removed:

 Is there a process for this?

Best answer by ktolkacevic

One option……

select ipx.item_id
,it.bpart_id
,it.serial_no
,ipx.unique_id
,ipx.person_id
,case when it.item_status = '3' then 'inventory_item' when it.item_status = '1' then 'item_installed' when it.item_status = '8' then 'removed_item' end as 'bc_name'
from item_person_xref ipx
join item it on ipx.item_id=it.item_id
where ipx.person_id='seal'

 

<root>
  <session email="" alias="">
    <state bc_name="item_installed">
      <action name="data-update">
        <main>
          <row>
            <item_id>7588857</item_id>
          </row>
        </main>
        <item_sa_xref>
          <row number="1" delete="true">
            <item_id>7588857</item_id>
            <unique_id>341</unique_id>
            <person_id>seal</person_id>
          </row>
        </item_sa_xref>
      </action>
    </state>
  </session>
</root>

View original
Did this topic help you find an answer to your question?

9 replies

ktolkacevic
Hero (Customer)
Forum|alt.badge.img+9
  • Hero (Customer)
  • 55 replies
  • Answer
  • December 10, 2024

One option……

select ipx.item_id
,it.bpart_id
,it.serial_no
,ipx.unique_id
,ipx.person_id
,case when it.item_status = '3' then 'inventory_item' when it.item_status = '1' then 'item_installed' when it.item_status = '8' then 'removed_item' end as 'bc_name'
from item_person_xref ipx
join item it on ipx.item_id=it.item_id
where ipx.person_id='seal'

 

<root>
  <session email="" alias="">
    <state bc_name="item_installed">
      <action name="data-update">
        <main>
          <row>
            <item_id>7588857</item_id>
          </row>
        </main>
        <item_sa_xref>
          <row number="1" delete="true">
            <item_id>7588857</item_id>
            <unique_id>341</unique_id>
            <person_id>seal</person_id>
          </row>
        </item_sa_xref>
      </action>
    </state>
  </session>
</root>


Phil Seifert
Ultimate Hero (Employee)
Forum|alt.badge.img+23
  • Ultimate Hero (Employee)
  • 1296 replies
  • December 10, 2024

Hi Bjørn,

Do you mean if there is an automated mechanism to do this in the application other than going through each item and removing them individually?  No, standard application does not do this.

There is an import: item_installed_maint-item_sa_xref which is used to define the SA’s on the item but there is not one for removing them.  I note this import is a manual API and perhaps a delete import can be made from this as a basis.

From the looks of it, Kyle’s API above may do what you need.  Thanks, Kyle!


bskallerud
Sidekick (Customer)
Forum|alt.badge.img+11
  • Author
  • Sidekick (Customer)
  • 206 replies
  • December 10, 2024

Thanks, Kyle


Phil Seifert
Ultimate Hero (Employee)
Forum|alt.badge.img+23
  • Ultimate Hero (Employee)
  • 1296 replies
  • December 10, 2024

Hi Kyle,

Your API deletes BOTH records as expected so I might enhance it a little to use a BO Search key to select the specific ID’s to delete in case someone only wishes to delete some of the records not all of them on the item person xref.

However, this is useful and again thanks!


ktolkacevic
Hero (Customer)
Forum|alt.badge.img+9
  • Hero (Customer)
  • 55 replies
  • December 10, 2024

BOTH records?

Should only delete one record from the Item SA xfer table using the item_ID, unique_id, and person_id

 

<root>
  <session email="" alias="">
    <state bc_name="item_installed">
      <action name="data-update">
        <main>
          <row>
            <item_id>7588857</item_id>
          </row>
        </main>
        <item_sa_xref>
          <row number="1" delete="true">
            <item_id>7588857</item_id>
            <unique_id>341</unique_id>
            <person_id>seal</person_id>
          </row>
        </item_sa_xref>
      </action>
    </state>
  </session>
</root>


Phil Seifert
Ultimate Hero (Employee)
Forum|alt.badge.img+23
  • Ultimate Hero (Employee)
  • 1296 replies
  • December 10, 2024

I ran this via the Interactive API:

<root>
  <session email="" alias="">
    <state bc_name="item_installed">
      <action name="data-update">
        <main>
          <row>
            <item_id>92174</item_id>
          </row>
        </main>
        <item_sa_xref>
          <row number="1" delete="true">
            <item_id>92174</item_id>
            <unique_id>3793</unique_id>
            <person_id>905</person_id>
          </row>
        </item_sa_xref>
      </action>
    </state>
  </session>
</root>

 

There were two records, one for person 905 and another for person 902.  (I had a DB copy I could test it on our support environment).

Result was:

 


bskallerud
Sidekick (Customer)
Forum|alt.badge.img+11
  • Author
  • Sidekick (Customer)
  • 206 replies
  • December 10, 2024

Thanks you guys!


ktolkacevic
Hero (Customer)
Forum|alt.badge.img+9
  • Hero (Customer)
  • 55 replies
  • December 10, 2024

It only deleted one record for me

 

 


Phil Seifert
Ultimate Hero (Employee)
Forum|alt.badge.img+23
  • Ultimate Hero (Employee)
  • 1296 replies
  • December 10, 2024

Ok, I am checking with someone else who might have deleted the 902 record which I was not aware in between when I confirmed I had the data and then running the API.

Thank you for confirming your results.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings