Ward Able, Grant
unread,May 4, 2020, 7:53:33 AM5/4/20Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ispf-...@nd.edu
Hi ISPF-ers,
A lot of the code below may seem rather simplistic to the more experienced of you, so please go easy on me!
I have built a table (in my tests it contains 4 rows).
I display the data and it shows me the four rows.
I select 2 of these rows & I am able to process the first just fine, but when I drop down to the statement to re-display the table, in order to process any further entries (as per ztdsels), I get an error and it blows my REXX exec away. (see error below the REXX code snippet).
Any help/suggestions (including how I have coded this!) will be greatly appreciated.
do while RC = 0
ISPEXEC "TBDISPL "deft" PANEL(RBCHNL01) "
if ((RC = 8) | (zcmd = 'CAN')) then leave ii
ISPEXEC "VGET (ztdsels)"
if ztdsels = 0 then
do
ispexec addpop
ISPEXEC 'DISPLAY PANEL(RBCHNL03)'
zrc = rc
ispexec rempop
if zrc = 8 then signal LetsBlowThisJoint
else call svrdsp
end
chgsels = ztdsels
do loopip = 1 to chgsels
peer = left(peer||COPIES(' ',256),256)
parse var peer P1 34 P2 96 P3 156 P4 214 P5
ISPEXEC "VPUT (QM,chnl,ciph,auth,P1,P2,P3,P4,P5)" PROFILE
ISPEXEC "DISPLAY PANEL(RBCHNL02) "
if ((RC = 8) | (zcmd = 'CAN')) then iterate loopip
else do
ISPEXEC "VGET (QM,chnl,ciph,auth,P1,P2,P3,P4,P5)" PROFILE
peer = "'"||P1||P2||P3||P4||P5||"'"
call Create_update_MQSC_statements
end
if loopip = chgsels then leave loopip
ispexec "TBDISPL "deft
end
end
******************************************************************************
* ISPT050 *
* *
* Table panel unavailable *
* Unable to process reinvocation. Enter HELP for more information. *
* *
* Current dialog statement: *
* TBDISPL RBCHTABL *
* *
* Enter HELP command for further information regarding this error. *
* Press ENTER key to terminate the dialog. *
******************************************************************************
Regards – Grant.
.
DTCC Public (White)
DTCC DISCLAIMER: This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify us immediately and delete the email and any attachments from your system. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.