The title pretty much says it all.
basic panel, default input field, whenever i type 'exit' in it
it just receives ' ' (blank).
any other word works.
did i miss something in the manual? is it a known thing?
Panel cannot receive 'exit' as input?
- Pedro
- Posts: 686
- Joined: Thu Jul 31, 2008 9:59 pm
- Skillset: ISPF
- Referer: google
- Location: Silicon Valley
Re: Panel cannot receive 'exit' as input?
EXIT is a ISPF dialog command. It normally results in your application being stopped and maybe RC=8. Possibly you have something that ignores the return code and still shows your panel.
If you want to process EXIT in your application, you have to define it as PASSTHRU in your application command table.
Or maybe you can detect it in the )PROC section of your panel:
If you want to process EXIT in your application, you have to define it as PASSTHRU in your application command table.
Or maybe you can detect it in the )PROC section of your panel:
Code: Select all
)PROC
IF (&ZCMD = EXIT)
&MYCMD = EXIT
&ZCMD =
Pedro Vera
-
- Posts: 16
- Joined: Wed Oct 19, 2022 11:52 am
- Skillset: Much programming, very hi-tech, many wow.
(Total newb to anything z/os) - Referer: The expert forum
Re: Panel cannot receive 'exit' as input?
Roger, and thank you.
I've tried a few more. like START.
Funny thing though, is that some work, most don't.
PASSTHROUGH. got it.
Learned a new skill right there
I've tried a few more. like START.
Funny thing though, is that some work, most don't.
PASSTHROUGH. got it.
Learned a new skill right there

-
- Similar Topics
- Replies
- Views
- Last post
-
- 2
- 2974
-
by willy jensen
View the latest post
Wed Jan 04, 2023 2:17 pm
-
- 9
- 3416
-
by samb01
View the latest post
Thu Oct 14, 2021 1:29 pm
-
- 2
- 1267
-
by yarnseeker
View the latest post
Thu May 13, 2021 9:50 pm
-
- 11
- 3670
-
by Pedro
View the latest post
Tue Dec 27, 2022 11:24 am
-
- 23
- 4361
-
by collinsm
View the latest post
Thu Sep 22, 2022 5:29 am