1) Add a new field on the Item table, called "default quantity. "
2) Modify the No. field OnValidate trigger on the Purchase Line and Sales Line table, and do something like this:
IF Type = Type::Item THEN
BEGIN
IF Item.GET("No.") THEN
VALIDATE(Quantity, Item."Default Quantity"
END;
Answers
2) Modify the No. field OnValidate trigger on the Purchase Line and Sales Line table, and do something like this:
But, if there were a standard config for it, then... :)
Thanks