0

I have a database of large details to be displayed in a single CICS map. I thought of using page-cursor concept in fethcing every few rows and display it in CICS map. But I dont know the syntax for page-cursor in COBOL. Can somebody help me with providing snippets?

NorthCat
  • 9,643
  • 16
  • 47
  • 50
codevelocity
  • 1
  • 1
  • 2
  • Since there are several ways and elements to generally allow scrolling of the data, one of which will be standard at your site, this question is not a good fit here. Locate a similar program, ask your colleagues/technical support. – Bill Woodger Mar 17 '15 at 07:38

1 Answers1

0

You can set up a curson and use the "optimize for X rows" hint on your declare curson statemen with DB2. That would be somewhere around 20 rows usually for a 3270 screen.

Joe Zitzelberger
  • 4,238
  • 2
  • 28
  • 42