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 |
What is the purpose of Identification Division?
How many bytes do a s9 (7) comp-3 field occupy?
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.
In COBOL "BEFORE" advancing is there or not ?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
Suppose i have a variable with s9(18)v99 comp3 . what is the size of variable . If s9(18) comp3 is 10 bytes . There should be some difference between two allocations ? Thanks krishna chaitanya
In COBOL programming, what is PERFORM? What is VARYING?
can any one help -s806
can i use multiple when statements in search & search all ? justify ur answer?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
what happens when a copybook variables are declared using include statement ?