CICS 11 - Different ways of placing a cursor on the screen

Different ways of placing a cursor on the screen.
  1.  Static
  2. Dynamic
  3. Relative
Static Cursor Positioning
Static cursor positioning with IC in the map design.

Ex:
DFHMDF POS=(3,16)
ATTRIB=(UNPROT,FSET,IC)
LENGTH=8

Dynamic Cursor positioning   
Dynamic cursor positioning by moving -1 to length field and also cursor option in send map command


Ex:
MOVE -1 TO THE LENGTH FIELD.
EXEC CICS SEND
MAP('MP123')
MAPSET('MS123')
CURSOR(80)
END-EXEC.


Relative Cursor positioning
Relative cursor positioning by cursor with value in the send map command.


Ex:
CURSOR option with a value relative to zero (position 1,1 is zero) .

Want In detail about the placing a cursor on the screen,Click the below video






Previous
Next Post »