<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.vmssoftware.com/index.php?action=history&amp;feed=atom&amp;title=DISPLAY_FORM</id>
	<title>DISPLAY FORM - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.vmssoftware.com/index.php?action=history&amp;feed=atom&amp;title=DISPLAY_FORM"/>
	<link rel="alternate" type="text/html" href="https://wiki.vmssoftware.com/index.php?title=DISPLAY_FORM&amp;action=history"/>
	<updated>2026-05-02T08:08:37Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>https://wiki.vmssoftware.com/index.php?title=DISPLAY_FORM&amp;diff=1491&amp;oldid=prev</id>
		<title>Jane.doe: Created page with &quot;&#039;&#039;&#039;DISPLAY_FORM&#039;&#039;&#039; is a F$GETQUI() function that returns information about a specific print form or the next form definition in a wildcard operation. A print form is a set...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.vmssoftware.com/index.php?title=DISPLAY_FORM&amp;diff=1491&amp;oldid=prev"/>
		<updated>2019-11-26T10:22:39Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;DISPLAY_FORM&amp;#039;&amp;#039;&amp;#039; is a &lt;a href=&quot;/F$GETQUI()&quot; title=&quot;F$GETQUI()&quot;&gt;F$GETQUI()&lt;/a&gt; function that returns information about a specific print form or the next form definition in a wildcard operation. A print form is a set...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;DISPLAY_FORM&amp;#039;&amp;#039;&amp;#039; is a [[F$GETQUI()]] function that returns information about a specific print form or the next form definition in a wildcard operation. A print form is a set of printing characteristics such as page length, margin, page setup, type of paper stock, etc. Print forms are set up with the DEFINE/FORM command.&lt;br /&gt;
&lt;br /&gt;
=Format=&lt;br /&gt;
F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;, &amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[#Item|item]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;,[[#Object Id|object-id]],&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;[[#Flags|flags]]&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
==Item==&lt;br /&gt;
Corresponds to a [[$GETQUI output item codes|$GETQUI system service output item code]]. The following items are valid for DISPLAY_FORM:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;col&amp;quot; | Item&lt;br /&gt;
! colspan=&amp;quot;col&amp;quot; | Return Type&lt;br /&gt;
! colspan=&amp;quot;col&amp;quot; | Information Returned&lt;br /&gt;
! colspan=&amp;quot;col&amp;quot; | Example&lt;br /&gt;
|-&lt;br /&gt;
| FORM_DESCRIPTION || style=&amp;quot;text-align:center;&amp;quot; | String || The text string that describes the specified form to users and operators.&lt;br /&gt;
| &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_DESCRIPTION&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = &amp;quot;System-defined default&amp;quot;&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_FLAGS || style=&amp;quot;text-align:center;&amp;quot; | Integer || The processing options that have been selected for the specified form. The integer represents a bit field. To find the settings of each bit in the field, use one of the following items in place of FORM_FLAGS:&lt;br /&gt;
| &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_FLAGS&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = 2   Hex = 00000002  Octal = 00000000002&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_LENGTH || style=&amp;quot;text-align:center;&amp;quot; | Integer || The physical length of the specified form in lines. This item code is applicable only to output execution queues.&lt;br /&gt;
| &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_LENGTH&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = 66   Hex = 00000042  Octal = 00000000102&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_MARGIN_BOTTOM || style=&amp;quot;text-align:center;&amp;quot; | Integer || The bottom margin of the specified form in lines.&lt;br /&gt;
| &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_MARGIN_BOTTOM&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = 6   Hex = 00000006  Octal = 00000000006&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_MARGIN_LEFT || style=&amp;quot;text-align:center;&amp;quot; | Integer || The left margin of the specified form in characters.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_MARGIN_LEFT&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = 0   Hex = 00000000  Octal = 00000000000&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_MARGIN_RIGHT || style=&amp;quot;text-align:center;&amp;quot; | Integer || The right margin of the specified form in characters.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_MARGIN_RIGHT&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = 0   Hex = 00000000  Octal = 00000000000&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_MARGIN_TOP || style=&amp;quot;text-align:center;&amp;quot; | Integer || The top margin of the specified form in lines.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_MARGIN_TOP&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = 0   Hex = 00000000  Octal = 00000000000&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_NAME || style=&amp;quot;text-align:center;&amp;quot; | String || The name of the specified form or the mounted form associated with the specified job or queue.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_NAME&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = &amp;quot;DEFAULT&amp;quot;&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_NUMBER || style=&amp;quot;text-align:center;&amp;quot; | Integer || The number of the specified form.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_NUMBER&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = 0   Hex = 00000000  Octal = 00000000000&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_SETUP_MODULES || style=&amp;quot;text-align:center;&amp;quot; | String || The names of the text modules that are to be extracted from the device control library and copied to the printer before a file is printed on the specified form. This item code is meaningful only for output execution queues.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_SETUP_MODULES&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = &amp;quot;&amp;quot;&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_SHEET_FEED || style=&amp;quot;text-align:center;&amp;quot; | String || TRUE or FALSE to indicate whether the symbiont pauses at the end of each physical page so that another sheet of paper can be inserted.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_SHEET_FEED&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_STOCK || style=&amp;quot;text-align:center;&amp;quot; | String || The name of the paper stock on which the specified form is to be printed.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_STOCK&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = &amp;quot;DEFAULT&amp;quot;&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_TRUNCATE || style=&amp;quot;text-align:center;&amp;quot; | String || TRUE or FALSE to indicate whether the printer discards any characters that exceed the specified right margin.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_TRUNCATE&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = &amp;quot;TRUE&amp;quot;&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_WIDTH || style=&amp;quot;text-align:center;&amp;quot; | Integer || The width of the specified form.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_WIDTH&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = 132   Hex = 00000084  Octal = 00000000204&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| FORM_WRAP || style=&amp;quot;text-align:center;&amp;quot; | String || TRUE or FALSE to indicate whether the printer prints any characters that exceed the specified right margin on the following line.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ F = F$GETQUI(&amp;quot;DISPLAY_FORM&amp;quot;,&amp;quot;FORM_WRAP&amp;quot;,&amp;quot;DEFAULT&amp;quot;)&lt;br /&gt;
$ SHOW SYM F&lt;br /&gt;
  F = &amp;quot;FALSE&amp;quot;&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Object Id==&lt;br /&gt;
Corresponds to the $GETQUI system service QUI$SEARCH_NAME, QUI$_SEARCH_NUMBER, and QUI$_SEARCH_JOB_NAME input item codes. The object-id argument specifies either the name or the number of an object (for example, a specific queue name, job name, or form number) about which F$GETQUI is to return information. The asterisk (*) and the percent sign (%) wildcard characters are allowed.&lt;br /&gt;
&lt;br /&gt;
==Flags==&lt;br /&gt;
The following flags are allowed for DISPLAY_FORM: &lt;br /&gt;
* FREEZE_CONTEXT: when in wildcard mode, prevents advance of wildcard context to the next object. If you do not specify this flag, the context is advanced to the next object.&lt;br /&gt;
* WILDCARD establishes and saves a context. Because the context is saved, the next operation can be performed based on that context.&lt;/div&gt;</summary>
		<author><name>Jane.doe</name></author>
	</entry>
</feed>