View previous topic :: View next topic |
Author |
Message |
senthilpalanivel Beginner
Joined: 22 Jul 2003 Posts: 7 Topics: 6 Location: Bangalore
|
Posted: Fri Feb 27, 2004 5:29 pm Post subject: To copy the information from the panel |
|
|
Hi
Is there any company to copy the information from the panel.
Say when i enter 3.4, and say tempd.**.**, it will throw all the datatest with first level qualifier tempd.
Now i want to copy all the dataset information(dataset names) into my private dataset for analysis purposes.
Is there any way of doing it...can be either rexx program or tso command..
Please can anybody help me in solving this problem..
thank
sen |
|
Back to top |
|
 |
superk Advanced

Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Fri Feb 27, 2004 5:54 pm Post subject: |
|
|
Did you try using the PRINT (option P) from the same panel to output the list to a dataset?
For the record, the PRINT command works in any panel to harcopy the contents to a dataset. |
|
Back to top |
|
 |
ofer71 Intermediate
Joined: 12 Feb 2003 Posts: 358 Topics: 4 Location: Israel
|
Posted: Sat Feb 28, 2004 12:16 am Post subject: |
|
|
In 3.4, you can use the SAVE command.
O.
________
marijuana news
Last edited by ofer71 on Sat Feb 05, 2011 11:16 am; edited 1 time in total |
|
Back to top |
|
 |
senthilpalanivel Beginner
Joined: 22 Jul 2003 Posts: 7 Topics: 6 Location: Bangalore
|
Posted: Mon Mar 01, 2004 12:33 pm Post subject: |
|
|
Basically i need to copy the records(informations) from the panel- 3rd party tool.
Is there any command to copy the records to dsn..
Moreover i tried to use PRINT command, and i give the dataset name, its throwing message "NUMBER OF RECORD PROCESSED WAS 0'...
Please can you help me out
Note: i dont know the panel or table name... |
|
Back to top |
|
 |
superk Advanced

Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Mon Mar 01, 2004 1:39 pm Post subject: |
|
|
OK.
This is a portion of the ISPF Option 3.4 menu:
Menu RefList RefMode Utilities Help
Data Set List Utility
Option ===>
blank Display data set list P Print data set list
V Display VTOC information PV Print VTOC information
Enter one or both of the parameters below:
Dsname Level . . . TPPAT07.TEST*
Volume serial . .
Data set list options
Initial View . . . 2 1. Volume Enter "/" to select option
>#1. Notice the option "P Print data set list" at the top. Let's press ENTER first:
DSLIST - Data Sets Matching TPPAT07.TEST* Row 1 of 3
Command ===> Scroll ===> PAGE
Command - Enter "/" to select action Tracks %Used XT Device
-------------------------------------------------------------------------------
TPPAT07.TEST.#1 1 100 1 3390
TPPAT07.TEST.#2 1 100 1 3390
TPPAT07.TEST.#3 1 100 1 3390
>#2. Now that I have my list, I can press END and go back to the ISPF Option 3.4 Main Menu, and now enter P:
Menu RefList RefMode Utilities Help
Data Set List Utility
Option ===> P
blank Display data set list P Print data set list
V Display VTOC information PV Print VTOC information
Enter one or both of the parameters below:
Dsname Level . . . TPPAT07.TEST*
Volume serial . .
Data set list options
Initial View . . . 2 1. Volume Enter "/" to select option
>#3. The message "Data set list printed" appears in the top-right corner. Now, logoff TSO, making sure to keep your list dataset 'yourid.SPFn.LIST'. Then, log back into TSO. Browse 'yourid.SPFn.LIST' and it should look like this:
1 Listing of Data Sets Beginning with TPPAT07.TEST*
DATA SET NAME VOLUME ORG RECFM
---------------------------------------------------------------------
TPPAT07.TEST.#1 MTSOG1 PS FB
TPPAT07.TEST.#2 MTSO01 PS FB
TPPAT07.TEST.#3 MTSOG2 PS FB
>#4. Now, from the same dataset list as shown in step #2 above, enter SAVE and press enter:
DSLIST - Data Sets Matching TPPAT07.TEST* Data set list saved
Command ===> SAVE Scroll ===> PAGE
Command - Enter "/" to select action Tracks %Used XT Device
------------------------------------------------------------------------------
TPPAT07.TEST.#1 1 100 1 3390
TPPAT07.TEST.#2 1 100 1 3390
TPPAT07.TEST.#3 1 100 1 3390
>#5. You'll see the message "Data set list saved" in the upper right corner. Again, logoff and save 'yourid.SPFn.LIST'.
>#6. This time, use option 3.4 to list the datasets. Now, instead of entering SAVE, try entering PRINT. The message this time will be "Physical screen printed". Notice that only the portion of the panel currently displayed will be printed. You can scroll down and enter PRINT for each screen until you reach the bottom. |
|
Back to top |
|
 |
|
|