Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
Regarding fetching all the data from ISPF table

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> SMS & VSAM
Author Message
amitava
Warnings : 1

Active User


Joined: 30 Oct 2005
Posts: 192
Location: India

PostPosted: Thu Mar 23, 2006 4:11 pm    Post subject: Regarding fetching all the data from ISPF table
Reply with quote

Hi All,
I am thinking of retrieving all the data I have stored in an ISPF table. For that I used TBSCAN and TBGET also. But I am nt getting any row. Look I want to retrieve all the data from that ISPF table.
I am attaching the sample statement I used for TBSCAN or TBGET. Please help me to say how to retrieve all the data from the ISPF table.

TBSCAN :- "tbscan" flxref "arglist(flxref)"
TBGET :- "tbget" flxref

Where flxref is the table-name.
Please help me....

Regards
Amitava
Back to top
View user's profile Send private message
References
superk

Moderator Team Head


Joined: 26 Apr 2004
Posts: 3296
Location: Charlotte,NC USA

PostPosted: Thu Mar 23, 2006 6:52 pm    Post subject: Re: Regarding fetching all the data from ISPF table
Reply with quote

I would do this:

Code:

Pseudo-code

TBOPEN flxref NOWRITE SHARE
TBTOP flxref
Do Until return-code is not equal to zero
    TBSKIP flxref NUMBER(+1) POSITION(tbcrp)
    TBGET flxref POSITION(tbcrp)
    Set the return-code value to the success of the TBGET
    VGET the row variables and process as needed
End the loop
TBCLOSE flxref
Back to top
View user's profile Send private message
amitava
Warnings : 1

Active User


Joined: 30 Oct 2005
Posts: 192
Location: India

PostPosted: Fri Mar 24, 2006 9:31 am    Post subject:
Reply with quote

Thanx a lot superk..... You dnt know how much u have helped me.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> SMS & VSAM All times are GMT + 6 Hours
Page 1 of 1