17. September 2012 15:12
//Einfügen von Anzahl Gebinde
CLEAR(gNoofCont);
IF ("Sales Line"."Unit of Measure Code"= 'STÜCK') THEN BEGIN
gNoofCont := "Sales Line".Quantity;
gNoofCont2 := FORMAT(gNoofCont,0,'<Precision,0:2><Standard format,0>'+' STÜCK');
END ELSE BEGIN
gNoofCont := ROUND( "Sales Line".Quantity / "Sales Line"."Filling Quantity",1);
gNoofCont2 := FORMAT(gNoofCont,0,'<Precision,0:2><Standard format,0>'+' STÜCK');
END;
END;