linhofbiker Beginner
Joined: 12 Aug 2005 Posts: 30 Topics: 10
|
Posted: Fri Dec 12, 2008 2:53 pm Post subject: 3270 hardware orders in data of ispf table |
|
|
I want to change the color in an ISPF table field by placing hardware orders in the data, but it will not work this way:
Code: |
sccid.='<<< CCID not found'
do i=1 to ccid.0
ccid=substr(ccid.i,1,10)
if substr(ccid.i,33,1)='Y' then,
vccid=substr(ccid.i,14,1)' 'substr(ccid.i,33,40)
/* trying to replace the space with a 3270 extended hardware order */
else
/*vccid=substr(ccid.i,14,1)' 'substr(ccid.i,33,40)*/
vccid=substr(ccid.i,14,1)'[color=red]2902c20fc0f0[/color]'x||substr(ccid.i,33,40)
sccid.ccid=vccid
end
|
I want to replace the 2nd byte of variable vccid with an attribute byte
this is part of the result:
Code: |
Row 22 to 26 of 26
SCROLL ===> CSR
impact==>| |<==within window?
CCID# | | CCID status
- - - - - - - - | | - - - - - - - - - - - -
C081100314 4[color=red]..B.{[/color]0N,FIX 2,open,pendin
BCBS PER : C0505123
C081100821 <<< CCID not found
904-905-2154 DC6:5 C0378 C0505211
C081100523 4 Y,FIX 2,open,approved
|
The orders have become part of the data. How do I do this? |
|