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

Interview questions on CICS


IBM Mainframe Forums -> Mainframe Interview Questions
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sivatechdrive

Active User


Joined: 17 Oct 2004
Posts: 191
Location: hyderabad

PostPosted: Wed Mar 23, 2005 4:51 pm
Reply with quote

Hi all

i have some questions on CICS,plz do reply me


1.why it's not good option to use UPDATE option in CECI to read files
2.what working storage section variables can be modified
(elementary,group,all)
3.if we issue
send MAP(map1)
FROm (mydata)
DAta Only

& the screen has some other map (like map5)..what happens

4.when is it appropriate to use MVS Return
only if system starting up
Any time the current task is linked to
when no other user logged on
Anytime there are other running tasks
can we issued at any time
5.How may colours does standard CICS terminal support
6.EXEC CICS IGNORE CONDITION
ERROR
END-EXEC
EXEC CICS HANDLE CONDITION
ERROR(ERROR-PARA)
END-EXEC

When will be the handle condition is invoked

7.what will be the effect of SYNCPOINT on program execution flow
(will it suspends all handle conditions..etc)
8.what is Task Manager window
9.what will be the effect of HANDLE AID on program execution flow,when key trapped is listed in it


Thanks
Siva
Back to top
View user's profile Send private message
squid_rocks

New User


Joined: 21 Mar 2005
Posts: 15
Location: Pune, INDIA

PostPosted: Wed Apr 27, 2005 3:32 pm
Reply with quote

Hi,
Here are the answers.
1. UPDATE will gain an exclusive control over the resource. It is intended only when you want to update the details of data. Should not be used for read, because then no one else will be able to access it.
2. What do you mean by this? Please provide more details
3. Sorry, no idea boss
4. No idea.
5. Not sure on this one, but you may use standard colors like - RED, GREEN, CYAN, BROWN, BLACK, WHITE, GRAY, YELLOW, etc (Remeber those jiggy TV computer games?)
6. Handle condition will not be handled since we have said IGNORE. Actually, what will happen is the first handle condition is accepted.
7. No SYNCPOINT will not affect the handle conditions, etc. It will only update all data for disaster recovery procedure. Whatever changes made to resources handled by CICS before syncpoint will be kept. All those after abend/region down/etc won't be kept.
8. Sorry, no idea
9. HANDLE AID basically captures the PF/PA key presses. Whenever a particular PF/PA key is pressed, then the corresponding DFHxxx will be set on (logical). For eg. when user hits ENTER then DFHENTER will be set on.

Hope it helps.
Plz correct if wrong.
Back to top
View user's profile Send private message
madduri_25

New User


Joined: 09 Mar 2005
Posts: 3

PostPosted: Fri Apr 29, 2005 4:04 pm
Reply with quote

icon_question.gif
if we issue
send MAP(map1)
FROm (mydata)
DAta Only

& the screen has some other map (like map5)..what happens

ans:
map5 will be overridden with map1
regards
madduri_25 team
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Mon May 02, 2005 7:45 am
Reply with quote

Hi Siva,

2. Both types of WS var can be changed.

3. If you don't specify ERASE (I think NOERASE is the default) only the data portion of MAP1 is sent to the screen. I've never experienced this, but I think both the lable fields and the data fields of MAP5 will be overlaid by the data fields of MAP1.

The result would be a mess. icon_smile.gif

7. When a SYNCPOINT is issued all DTB file (this is feature is selected when the file's FCT is created, I think) updates issued since the last SYNCPOINT are made permenant. This means that this data will NOT be lost if the task abends from this point on. Remember that non-DTB files are NOT treated this way and these updates are lost.
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 -> Mainframe Interview Questions

 


Similar Topics
Topic Forum Replies
No new posts Using API Gateway from CICS program CICS 0
No new posts Calling an Open C library function in... CICS 1
No new posts How to 'Ping' a CICS region in JCL CICS 2
No new posts Parallelization in CICS to reduce res... CICS 4
No new posts How to avoid duplicating a CICS Web S... CICS 0
Search our Forums:

Back to Top