IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How to browse the File in CICS


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
nileshp

New User


Joined: 25 Feb 2006
Posts: 31

PostPosted: Wed Jun 13, 2007 7:23 pm
Reply with quote

hi all

I am having

EXEC CICS READ
DATASET(WS-SYD-FILE-NAME)
INTO(SYD-SYRDST)
LENGTH(WS-SYD-REC-LENGTH)
RIDFLD(WS-SYD-KEY)
END-EXEC.
And
WS-SYD-FILE-NAME PIC X(08) VALUE 'SYLDST '


How to brows this dataset in cics.
Like we can brows TDQ by using CEBR.

Thanks
Nilesh
Back to top
View user's profile Send private message
srebba
Warnings : 1

New User


Joined: 26 Apr 2007
Posts: 37
Location: USA

PostPosted: Wed Jun 13, 2007 8:29 pm
Reply with quote

Hi,



EXEC CICS STARTBR DATASET (WS-SYD-FILE-NAME)
RIDFLD(WS-SYD-KEY)
GTEQ
END-EXEC.


EXEC CICS READNEXT DATASET(WS-SYD-FILE-NAME)
INTO(SYD-SYRDST)
RIDFLD(WS-SYD-KEY)
LENGTH(WS-SYD-REC-LENGTH)
END-EXEC.

EXEC CICS
ENDBR DATASET(WS-SYD-FILE-NAME)
END-EXEC.


Enjoy.....


Thank you
Sree
Back to top
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Thu Jun 14, 2007 11:00 am
Reply with quote

If you have Xpediter, you can browse any CICS dataset/queue.

O.
Back to top
View user's profile Send private message
Devzee

Active Member


Joined: 20 Jan 2007
Posts: 684
Location: Hollywood

PostPosted: Thu Jun 14, 2007 11:57 am
Reply with quote

If you know the physical dataset name, then you can go to TSO and browse the file.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CICS

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts HILITE on Browse mode? TSO/ISPF 2
Search our Forums:

Back to Top