Is it possible that the REDEFINES clause has different picture clauses compared to the one it redefined?
Can we fetch select in working storage section variables directly without using the host variables?
Can we reverse the string in cobol ? See the following problem : 77 NAME PIC X(10) VALUE 'MANOJ', 77 SRNAME PIC X(10).I want JONAM in SRNAME.
Latest Answer: Hi,In COBOL there are only two clouse for this type of check IS NUMERIC & IS ALPHABETIC let's take examplee.g A PIC X(01) VALUE '$'We can check following procedure divisionIF A IS NUMERIC DISPLAY 'NUMERIC' ELSE ...
Latest Answer: hi,See 01 level contains file header. so u can't use occurs clause for header file. You can use occurs clause only for table elements. ...
Latest Answer: STOP is a cobol command that terminates execution of a program. RUN is just its parameter.So, to answer your question, no difference.Also, the STOP command si already obsolete and will be taken out of the new ANSI standard. ...
Latest Answer: You can pass data from cobol to jcl by setting the value in RETURN register and fetching it in JCL.example, if file is empty, you can set return code by MOVE 22 to RETURN-CODEin JCL for that step executing the program you can define a COND parameter ...
I submitted the batch job in jcl and i went to my home.the next day i came and i want to see 1- job submitted time,2- job execution time,3- cpu time, from TSO option but not into the jcl itself. Tell me TSO option for this?
Latest Answer: A RETURN_CODE shows the status of each step within a job and the maximum RETURN_CODE is 256, where as MAXCC shows the end of the programme status, if the MAXCC is ZERO it means that job is executed successfully. We have MAXCC are like 0,2,4,8. MAXCC=8 ...
Latest Answer: Hi ,Changeman is a version controller tool used keep track of the coding changes you made.Whenever you want to make changes to particular program, you need to Chechout the component from production into your package (this need to be created in the changeman ...
View page << Previous 6 7 8 9 [10] 11 12 13 14 15 Next >>

Go Top