Showing posts with label CICS Tutorial. Show all posts
Showing posts with label CICS Tutorial. Show all posts

CICS Interview Questions asked in various MNCs like TCS,Wipro,Infosys,HP Dell and IBM-Part 3

What is ASRAABEND in CICS ?

What is a Logical Unit of Work (LUW) ?

What does Pseudo Conversational mean?

What are the various types of accesses that can be allowed by the SERVREQ option of the
DFHFCT

What are the differences between Temporary Storage Queue (TSQ) and Transient Data Quene (TDQ)?

What are the attribute values of Skipper and Stopper fields?

The process of writting its own type of journal records by the application program

Reading a record from a TSQ will logically delete the record from the Queue (True or False).

Name some command used for CICS file browsing.

In which CICS table would you specify the length of the TASK WORK AREA (TWA)?

How would you resolve an ASRA abend?

How is the storage determined in the symbolic map, if you have multiple maps ?

How do you make your BMS maps case sensitive

How do you define Task Work Area?

How and where is the TWA size set?

Explain re-entrancy as applies to CICS.

Can you define multiple maps in a BMS mapset

A CICS program ABENDS with an ASRA ABEND code, What is its meaning ?

How Do you run/execute the Program/Job in a specific time/date in CICS?

I don't think that ASKTIME command is going to work here as this only gives you the current date and time. If you want to start the task at a particular time you can use

EXEC CICS START
TIME(HHMMSS)
END-EXEC.

This will start the CICS task at the time specified. But I have no idea about giving the dates

How do I find the name of the CICS region inside my COBOL program?

EXEC CICS
ASSIGN APPLID (COMM-HOLD-REGION-ID)
RESP (WS-CICS-RESPONSE)
END-EXEC.
.
.
test WS-CICS-RESPONES code here for '00'
.
.
EVALUATE COMM-HOLD-REGION-ID
WHEN 'TESTREG

WHEN 'PRODREG'

WHEN OTHER

END-EVALUATE.