What is ASKTIME, SUSPEND
Answer / naidu sekhar yandrapu
ASKTIME
Asktime command is used to request the current date and time
EXEC CICS
ASKTIME(WS-DATE)
ABSTIME
END-EXEC
FORMAT TIME is used date and time
EXEC CICS
FORMAT
YYYYMMDD(WS-DATE)
DATESEP("/")
MMDDYYYY(WD-DATE)
DATE("-")
HHMMSS(WS-TIME)
TIMESEP(";")
MMHHSS(WS-TIME)
TIMESEP(":")
END-EXEC.
SUSPEND:
TO SUSPEND THE EXECUTION OF TASK
| Is This Answer Correct ? | 0 Yes | 0 No |
how we can edit records in vsam data set and non vsam data sets
suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.
how can u redefine picx(10) with pic 9(6).
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
hi. This is Ram.i have one doubt.why can't we display comp-3 variables directly? let me answer quickly plez........
I have sequential file recl 1000 i want to add another 15 bytes to it. The record length should not change..How?
What are various search techniques in cobol? Explain.
where do we use dyanamic call ? and where do we use static call pls give any example pls ?
how many maximum no of variables can be declared in linkage section ?
What is an in-line perform ?
i want all ERRORS codes in COBOL ,JCL,VSAM ,DB2,CICS
How many times the loop runs here 01 a pic 9(2) value 1. perform para1 until a=10 move 1 to a. stop run. para1: move 10 to a.