Batch Loader displays fail message when uploading mass data in PLMA

オフライン

I am trying to update PLMA with values in the field which are currently blank using a primary key in a Tab delimited Text file.

I am getting an autogenerated template in Batch loader

<Item type='Part' action='edit'>
<item_number>@1</item_number>
<_stuff_master_uid>@2</_stuff_master_uid>
</Item>

I can verify the data, but when I try to load, it gives me a fail result

Error message: 

SOAP-ENV:Server.MissingCriteriaException

Aras.Server.Core.MissingCriteriaException

Can I get guidance on why am I getting the error message ?

Parents Reply
  • オフライン in reply to Parth

    I have 1 more use-case with which I need to resolve- 

    I need to ADD new vendor to Table of Content PID table - under AVL Tab.

    I have information of PID, AVL name in my csv template. What should be my AML template in batchloader ?

    I am attaching a picture of what and where vendor needs to be added -

Children
  • オフライン in reply to Parth

    Hi

    You have use below AML query. Changes needed in bold.

    AVL should be the name of the AVL relationship. 

    avl_name should be the name of the AVL name property

    @1 -- PID Number

    @2 -- AVL Name in Excel

    <AML>
    <Item action ="add" type="AVL">
    <avl_name>@2</avl_name>
    <source_id>
    <Item action ="get" type="Part" where="[Part].item_number='@1'">
    <source_id>
    </AML>