We have discovered a problem when updating Purchase Price on a Purchase Part.
When we are matching the supplier invoice to a purchase order and want to update the Purchase Price, vendor part no and description clears on the purchase part.
In the API-method “Purchase_Part_Supplier_API.Modify_Supplier_Part_Info” we can see that these columns are present but it seems to replace with an empty value.since it seems to get NULL value from procedure “Purchase_Order_API.Modify_Part_Price” that´s calling this method:
Purchase_Part_Supplier_API.Modify_Supplier_Part_Info(contract_,
part_no_,
vendor_no_,
new_price_,
NULL,
discount_,
old_additional_cost_amount_ + add_cost_amount_,
NULL,
inv_curr_code_,
NULL,
NULL);
Is this a standard bug or have anyone noticed this behaviour?