Home Forum Nuclos Konfiguration Businessprozesse virtuelles Businessobjekt unter MS-SQL? virtuelles Businessobjekt unter MS-SQL?

#7292
Matthias Haake
Teilnehmer

Hallo.

Einfach eine VIEW definieren, die mindestens die folgenden Attribute besitzt:


CREATE VIEW [V_VE_Example]
AS
SELECT
x.INTID,

-- add more attributes here...

x.DATCHANGED,
x.STRCHANGED,
x.DATCREATED,
x.STRCREATED,
x.INTVERSION
FROM
T_EO_EXAMPLE [x]

Im Entitätenwizard dann eine neue Entität anlegen und die VIEW in der Klappbox „Virtuelle Entität“ auswählen.

Viele Grüße,
Matthias