View previous topic :: View next topic |
Author |
Message |
iknow Beginner
Joined: 09 Jan 2006 Posts: 39 Topics: 15 Location: Inside the MATRIX
|
Posted: Tue Jan 10, 2006 5:39 am Post subject: CICS-Questions |
|
|
Hi folks,
1)How can I implement PAGEUP and PAGEDOWN logic in CICS-DB2 program?
2)How can I identify whether the MAP is Symbolic map or Physical map?
Please give a detailed explanation to the above queries. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
iknow Beginner
Joined: 09 Jan 2006 Posts: 39 Topics: 15 Location: Inside the MATRIX
|
Posted: Tue Jan 10, 2006 6:31 am Post subject: |
|
|
Hi Kolusu,
Thanks for your information.
Quote: | 2)How can I identify whether the MAP is Symbolic map or Physical map? |
But how will I identify the map to be symblic or physical.
To my understanding,
Symbolic maps will be available in the library which u might have specified in the map compile program |
|
Back to top |
|
 |
German Castillo Beginner

Joined: 23 Dec 2005 Posts: 83 Topics: 2 Location: Caracas, Venezuela
|
Posted: Tue Jan 10, 2006 11:00 am Post subject: |
|
|
Hello iknow,
Symbolic maps are just a layout for your phisical definition, you can use the compiler output of the map source, or even make one of your own, if you feel adventureous, this is not as crazy as it sounds, since I find it very convenient for arrays definitions and the like. For assembler programmers this symbolic definition can be seen as a dummy section, even if you decide not to use it as such. In both cases, the fact that they are a simple layout remains.
Phisical maps, on the other hand, reside in load libraries, they have an unblocked format since they are assembled and link-edited, this means that you won't be able to INCLUDE/COPY them into your source programs, however, you can, at execution time LOAD it and manipulate it, if you want to, whether or not this is wise is another history. Anyway you can allways browse any phisical definition of any map. This maps are LINK-edited to your application program, enabling you to do any action with them at run-time. _________________ Best wishes,
German Castillo |
|
Back to top |
|
 |
iknow Beginner
Joined: 09 Jan 2006 Posts: 39 Topics: 15 Location: Inside the MATRIX
|
Posted: Tue Jan 10, 2006 10:32 pm Post subject: |
|
|
Hi,
Thanks for your reply. |
|
Back to top |
|
 |
|
|