When importing items into 2013 costing method column fails

jamesjayjamesjay Member Posts: 7
edited 2013-01-17 in NAV Three Tier
Good Day all

I am having a bit of an issue when trying to import via Row copy/paste into table 27 (Items) and it errors out with the costing method when we try paste any of the 5 options. Is there a way to solve this or do we have to manually select from the drop-down.

Thanks a lot.

Comments

  • mohana_cse06mohana_cse06 Member Posts: 5,504
    You can replicate this by manually entering new item and try to change to change the Costing Method, You will get error message (if you dont move your cursor to above/below line) as the record is not yet inserted and trying to Modify record in Codeunit 5804 function UpdateUnitCost

    Change the code as below in CU5804 UpdateUnitCost function and try..
    IF CalledByFieldNo <> 0 THEN BEGIN
        IF MODIFY(TRUE) THEN; //MPA
      END ELSE
        IF MODIFY THEN; //MPA
    
Sign In or Register to comment.