z/OS ISPF Dialog Tag Language Guide and Reference
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


COPYR (Copyright)

z/OS ISPF Dialog Tag Language Guide and Reference
SC19-3620-00

The COPYR tag adds copyright text to the generated panel or message member.

Syntax

Read syntax diagramSkip visual syntax diagram
>>-<COPYR>--+----------------+--+----------+-------------------><
            '-copyright-text-'  '-</COPYR>-'   

Parameters

copyright-text
The copyright-text is limited to 66 bytes. It is automatically formatted as a panel comment with a "/* " in front and a " */" following the supplied text.

Comments

The COPYR tag adds copyright information to the panel.

The COPYR tag must be placed before the first PANEL, HELP, or MSGMBR definition within the DTL source file that is to contain the copyright information.

You can use multiple COPYR tags. Each tag creates one comment line, which is placed after the )END panel statement, or the last message in the message member, in the order found in the DTL source.

The copyright-text is added to each subsequent panel or message member generated from the same DTL source file member. If the PREP conversion option has been specified, the copyright is not part of the final panel because comments are not processed by the ISPPREP utility.

Restrictions

None.

Processing

None.

Examples

Here is source file markup that contains two copyright lines that are placed after the )END panel statement. Figure 1 shows a portion of the ISPF format panel containing the formatted result.
<!doctype dm system>
<!-- COPYR tag example - PANEL tag -->

<varclass name=vc1 type='char 10'>
<varclass name=vc2 type='char 6'>
<varlist>
<vardcl name=lst1 varclass=vc1>
<vardcl name=lst2 varclass=vc2>
</varlist>

<copyr>Copyright statement 1
<copyr>Copyright statement 2

<panel name=copyrt1 depth=19 width=50>
This is panel Copyrt1

<LSTFLD >
<LSTGRP headline=yes>
<LSTCOL colwidth=10 datavar=lst1 usage=in varclass=vc1 line=1
        required=yes autotab=yes align=end help=h1 msg=abcd101>COL1
<LSTCOL colwidth=6  datavar=lst2 usage=in varclass=vc2 line=2
        required=yes autotab=yes align=end help=h1 msg=abcd101>COL2
</LSTGRP>
</LSTFLD>
<cmdarea>
</panel>
Figure 1. Copyright statement added to a panel
⋮
)END
/* Copyright statement 1 */
/* Copyright statement 2 */

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014