View previous topic :: View next topic |
Author |
Message |
ravikumar_sri2001 Beginner
Joined: 06 Dec 2002 Posts: 117 Topics: 44 Location: Chennai,India
|
Posted: Thu Oct 20, 2005 7:06 am Post subject: ISPF help required |
|
|
Hi Gurus,
My requirement is,
Read a file and display some of the fields from the read record in one line and some of the fields in the next line, in the panel. All the records have to be displayed in this way in the panel. The LENGTH of each line is "133".
So there will be two lines in the panel for every single record. There will be a OPTION field in the every first line of two lines corresponds to a record. The user should be able to scroll using funtion keys (f7- backward, f8-forward). The user can logically delete a record the by putting "D" in the OPTION field. That is there is a STATUS field in the file which has to be updated value "DELETE". The panel will also have "command line". If the user enter command "UNDO" in the command line, then all the delete records, have to undeleted. That is STATUS field has to be updated with blank. Please let me know how to implement this.
Thanks,
Ravikumar. |
|
Back to top |
|
|
superk Advanced
Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
|
Back to top |
|
|
Bill Dennis Advanced
Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Thu Oct 20, 2005 7:48 am Post subject: |
|
|
This requires complex programming and some ISPF Dialog Manager knowledge. No one here can provide this application to you!
I you don't have ISPF Dialog experience, read the ISPF Examples manuals for a look at working examples. See how they Display data on panels. _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
|
ravikumar_sri2001 Beginner
Joined: 06 Dec 2002 Posts: 117 Topics: 44 Location: Chennai,India
|
Posted: Fri Oct 21, 2005 6:49 am Post subject: |
|
|
Hi Gurus,
In requirement, a detail line consits of 132 characters. How to create a panel with 132 characters ?. Is it possible to continue a detail line in order to display 132 characters.
Thanks,
Ravikumar. |
|
Back to top |
|
|
superk Advanced
Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Fri Oct 21, 2005 7:15 am Post subject: |
|
|
You can have 132-character panels only if your 3270 Terminal settings allow it. Otherwise, you have to split the data to fit into two rows of an 80-character width panel. |
|
Back to top |
|
|
Bill Dennis Advanced
Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Fri Oct 21, 2005 9:57 am Post subject: |
|
|
ISPF panel fields need start/end attribute bytes, so the longest field would really be 130 bytes on a model 5 terminal.
You could look into panels with scrollable areas. Your pgm moves the current pointer into the data when the user enters RIGHT or LEFT command. _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
|
|
|