ok guys so i apologize if this post isnt specific enough, having trouble adding images but here goes. i doing a challenge in my tn3270 emulator; heres the challenge........
Add an option to invoke the Data Set List Utility (usually accessed by option 3 from the main ISPF panel followed by option 4) from your slimmed-down ISPF panel. Your new panel must tell the user what option to enter to use this feature -- "D" or "DS" would be good options, though you can make it something different if you choose. The Data Set List Utility panel must open correctly from your panel when the appropriate command is entered. Place your new option after the existing options, just above the EXIT option.
so i've created the new stripped down ispf panel and it looks something like this;
% .******************
% .* .*
% .* $2 %Edit .*
% .* $3 %Utility .*
% .* $6 %Command .*
% .* $SD %SDSF .*
% * $DS %
% .* $X %eXit .*
% .* .*
% .******************
)PROC
&ZSEL = TRANS ( TRUNC (&ZCMD,'.')
2,'PGM(ISREDIT) PARM(P,ISREDM01) SCRNAME(EDIT)'
3,'PANEL(ISRUTIL) SCRNAME(UTIL)'
6,'PGM(ISRPTC) SCRNAME(CMD)'
SD,'PGM(ISFISP) NOCHECK NEWAPPL(ISF) SCRNAME(SDSF)'
X,'EXIT'
im not sure about how to go about adding this option so im looking for advice, i received criticism for my last post not being posted right but im new to all this so my apologies in advanced. if theres something im not posting right or info im leaving out ill gladly change this.