ZIM Auxiliary Relationships

ZIM’s Auxiliary Relationships are predefined relationships to associate Data Dictionary objects thus speeding Zim applications development.

The Predefined Relationships

NAMEMEANING
EntFieldsIt’s a relationship between EntitySets and their associated Fields.
RelFieldsIt’s a relationship between Relationships with fields and their associated Fields.
DocFieldsIt’s a relationship between Documents with fields and their associated Fields.
EntRolesIt’s a relationship between EntitySets and their associated Roles.
RelRolesIt’s a relationship between Relationships and their associated Roles.
FormFormFieldsIt’s a relationship between Forms and their associated FormFields.
DispDispFormsIt’s a relationship between Displays and the Forms belonging to these Displays.
MenuFormFieldsIt’s a relationship between Menus and their associated FormFields.

Remarks

When a new Zim database is first created, the above auxiliary relationships are also automatically created to be used in Zim development.

Example

To find all fields belonging to the entity sets “Customers” and “Invoices”:

find Ents EntFields Fields where Ents.EntName in ("Customers", "Invoices") -> sMySet

Check whether there are any relationships with fields:

find Rels RelFields Fields
if $SetCount = 0
    out "No Relationships with Fields"
endif

Field WdgType

A numeric code indicating the “class” (field or widget type) of the associated form field.

Valid Values

WdgType = {30 where FT = “0”, 31 where FT = “1”,

A numeric value ranging from 1 to the maximum available widgets according to the table below:

CodeMeaning
1Label
2Entry Field
3ToggleButton
4PushButton
5Menu Item
6Frame
7ListBox
8ComboBox
9OptionBox
10Picture
11Graphic
12Divider
13ScrollBar
14UserMessage
17OLE Object
19TabControl
20TabPage
21GridControl
22Calendar
23Camera
24TreeView
25Signature
26BarCode
27ProgressBar
28TreeView Node
29ListView
30Video
31WebPage

Field WdgCallbacks

The callback events an object can raise.

Valid Values

An integer code combining the following values:

Code

Meaning

0

No callback events are raised.

1

When the object is modified (MODIFIED).

2

When a click is applied to the object (CLICK).

4

When a double-click is applied to the object (DOUBLECLICK).

8

When a right-click is applied to the object (RIGHTCLICK).

16

When an ActiveX object raises a callback event (ACTIVEX).

32

When a click occurs on the header of the object (HEADER).

64

When the object gets the focus (GOTFOCUS).

128

When the object loses focus (LOSTFOCUS).

256

When the object loses focus after being modified (LOSTFOCUSMODIFIED).

Remarks

Only resizable windows can have menus.

Example: If the object has to raise a GotFocus event and a Click event, the WdgCallbacks would contain (2 + 64) = 66.

Field WdgCSS

Provides extra information about the object being used.

Valid Values

A character string, up to 512 characters long either blank or in JSON format.

Remarks

The WdgCSS values for the objects involved present either a blank value or a free-format JSON syntax containing additional information about the object. This extra information may be Data Dictionary fields valid only to the particular object or implemented for future use.

Example

{"icon": "c:/images/zx.ico", "smallincrement":30}

ZIM:X allows JSON data format to be retrieved by the means of the $FindJSON function if the above value would be stored in FFs.WdgCSS:

LIST FFs FORMAT $FindJSON(WdgCSS, "smallincrement")
30

See Also

$FindJSON

Field WdgAppearance

The “appearance” of an object.

Valid Values

An integer code combining the following values:

Code

Meaning

0

All clear. No settings.

1

The window has a caption.

2

The window is resizeable.

4

The window allows minimization.

8

The window allows maximization.

16

The modal behavior.

32

The window has scrollbars.

64

This window is always on top.

128

The auto-size attribute.

256

The window can be moved.

512

This window allows Microsoft Windows windows to be on top.

1024

This window allows operating system windows to be on top.

2048

The window has a status bar.

4096

The window has a system menu.

8192

This window may be clipped (become a child window) to its parent.

16384

The window has the close button.

Remarks

Only resizable windows can have menus.

Example: If the window has a caption, is resizable and has a close button, the value would be (1 + 2 + 16384) = 16387.

Field Index

Indicates whether an index is to be maintained on the field.

Valid Values

As shown in the table below:

CodeMeaning
No(DEFAULT) The field is not to be indexed
YesThe field is to be indexed
UniqueThe field is to be indexed, and each value found in the field must be unique

Remarks

Index is ignored for fields that belong to documents.

Field RemoteName

The name of the database table on the database server, if different than the EntitySet name. RemoteName is normally used when there is a naming incompatibility between Zim and the database server.

Remarks

The name of the database table on the database server

Field DocPerUser

Whether this Document is defined to be per user.

Valid Values

“yes” or “no” (the default value is “no”).

Remarks

Normally, Documents are located in a place pointed by its FileName field. However, with DocPerUser set to “yes”, the corresponding document has the following behaviour:

. They are handled by the current session and their information is lost after the session finishes;

. They are located in the $WorkPath directory;

. They don’t exist at the beginning of the session and must explicitly be generated on the fly by the application.

Note: In previous versions of Zim, per user Documents were indicated by the “)” mark in the FileNome of the document. In Zim 8 and up, the DocPerUser field must be set to “yes” and the “)” mask must be there as well for compatibity issues. In future versions, this mark will be removed.

 

pt_BRPortuguese