Describe when someone would need this information. For example "when connecting to wi-fi for the first time".

Ich kann es weder am Produkt noch über die Ameise ändern.

cid:image001.png@01D1761C.1BE920C0



Step-by-step guide

Execute the following Script on the Database:


USE eazybusiness;
UPDATE tArtikel
	SET tArtikel.cLagerAktiv = lagerinformationen.cLagerAktiv,
		tArtikel.cLagerKleinerNull = lagerinformationen.cLagerKleinerNull
FROM dbo.tArtikel
JOIN
(
	SELECT	dbo.tArtikel.kArtikel,
			MAX(kindartikel.cLagerAktiv) AS cLagerAktiv,
			MIN(kindartikel.cLagerKleinerNull) AS cLagerKleinerNull
	FROM tArtikel
	JOIN tArtikel AS kindartikel ON tArtikel.kArtikel = kindartikel.kVaterArtikel
	GROUP BY tArtikel.kArtikel
) AS lagerinformationen ON tArtikel.kArtikel = lagerinformationen.kArtikel;




You may also want to use visual panels to communicate related information, tips or things users need to be aware of.

Related articles

Related articles appear here based on the labels you select. Click to edit the macro and add or change labels.

Related issues