can i use multiple when statements in search & search all ?
justify ur answer?
Answers were Sorted based on User's Feedback
Answer / abhi
we can use multiple statements in search but not in search all.
Is This Answer Correct ? | 16 Yes | 1 No |
Answer / kalpanapedda
only multiple statements is possible in serch,in serch all
only one when condition is possible.
Is This Answer Correct ? | 3 Yes | 0 No |
How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?
What is the maximum data length for Numeric DataType ?
i want to enter the name 'pandu' into ur table how?
What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?
if we have a 10 steps how to override the 4th step in jcl?
IDENTIFICATION DIVISION. PROGRAM-ID. MOVEPGM. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-I PIC 9(2). PROCEDURE DIVISION. A1000-MAIN-PARA. PERFORM PARA-X WITH TEST BEFORE UNTIL WS-I= 5 STOP RUN. PARA-X. DISPLAY "BEST2". I m getting error s722,while executing the program, seems getting in loop, can anybody tell me why
If a sub program is called from mainprogram.I have opened cursor in main program and Fetch the result in subprogram ,Is it possible ?If yes please tell me the reason.
which one is the best of com and com-3.using of real time ?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.
How To move a value to an array using move verb?
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?