JANUS DISPXT: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
No edit summary
Line 1: Line 1:
{{DISPLAYTITLE:JANUS DISPXT}}
<!--{{DISPLAYTITLE:JANUS DISPXT}}-->
<span class="pageSubtitle"><section begin="desc" />DISPXT<section end="desc" /></span>
<span class="pageSubtitle">Display loaded translate tables</span>


.im jdisxt .im jandom
This command displays either a list of all loaded translate tables or the contents of the single translate table that you specify. Translate tables are used to convert received input or transmitted output on Janus connections.
==Syntax==
<p class="syntax">JANUS DISPXT [xtable]</p>
<p class="code">JANUS DISPXT command syntax</p>
 
Where:
 
<var class="term">xtable</var> identifies a translate table to be displayed. If no table name is specified, all currently loaded translate tables are displayed.
 
Each translate table consists of a pair of tables of hexadecimal values, one table for ASCII to EBCDIC translation and one for EBCDIC to ASCII.
 
The default translation table is named <code>STANDARD</code>. You can see the mappings in that table with:
 
<p class="code"> JANUS DISPXT STANDARD</p>
 
For ease of viewing and editing the default table, you might want to create a procedure like the following:
 
<p class="code"> DELETE PROC -2
USE PROC -2
JANUS DISPXT STANDARD
E -2
...
</p>
 
For information about loading translate tables, see <var>[[JANUS LOADXT]]</var>.
 
See: [[List_of_Janus_commands|Janus command list]]


[[Category:Janus commands|JANUS DISPXT]]
[[Category:Janus commands|JANUS DISPXT]]

Revision as of 14:11, 27 March 2013

Display loaded translate tables

This command displays either a list of all loaded translate tables or the contents of the single translate table that you specify. Translate tables are used to convert received input or transmitted output on Janus connections.

Syntax

JANUS DISPXT [xtable]

JANUS DISPXT command syntax

Where:

xtable identifies a translate table to be displayed. If no table name is specified, all currently loaded translate tables are displayed.

Each translate table consists of a pair of tables of hexadecimal values, one table for ASCII to EBCDIC translation and one for EBCDIC to ASCII.

The default translation table is named STANDARD. You can see the mappings in that table with:

JANUS DISPXT STANDARD

For ease of viewing and editing the default table, you might want to create a procedure like the following:

DELETE PROC -2 USE PROC -2 JANUS DISPXT STANDARD E -2 ...

For information about loading translate tables, see JANUS LOADXT.

See: Janus command list