What is the meaning of 'TALLING' verb in cobol?
Answers were Sorted based on User's Feedback
Answer / varun v
It would be more if we explain with some example.
Lets use the variable used in Ans #1.
01 ws-variable pic x(10) value 'raja ramesh'
Now to get the total count of R's in 'raja ramesh', we can
use Inspect Tallying command.
INSPECT ws-variable TALLYING WS-TALLY1 FOR ALL 'R'.
Where WS-TALLY1 is a working storage variable which gives
the total count of R'S (Here WS-TALLY1 should be 2)
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / thomas vt
the right word is "TALLYING" and not "talling"
TALLYING IS THE COUNT OR NO OF OCCURANCES OF A CHARACTER IN
A STRINg.
for eg:
01 name pic x(7) value 'SUCCESS'
01 count pic 9(2).
INSPECT name TALLYING count FOR ALL 'S'.
and the result will be 3 in the variable "count".
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / guest
tallying is ued for counting the lettlers..
it is ued in Inspect statement
ex: 01 ws-variable pic x(10) value 'raja ramesh'
if u want count the letter "r' count. u can use the
talyying variable...
please let me now if u need any clarifiaction on this..
raki_9@yahoo.co.in
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / pradeep
TALLYING IS THE COUNT OR NO OF OCCURANCES OF A CHARACTER IN
A STRING WHILE USING INSPECT AND {EXAMINE(74 STANDARD)} ARE
USED.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ramu
tallying is a register is used to store the matching
characters count in a string.
| Is This Answer Correct ? | 0 Yes | 0 No |
after udatingg first 110 rows, my job abends. now how do i change my cobol program so that when i restart the Job it will start updating from 111th row ( i.e in next run I di=ont want to update those 110 rows which are already been updated in the first run before job abend)
what is sysncpoint?
Name the divisions in a COBOL program ?
WHAT IS SOC3?HOW IT CAN BE RESOLVED?
How do you reference the following file formats from cobol programs?
Can we use redefine clause in occurs clause?
TYPES OF SORTINGS. which is more prefarable.
how to resolve the file status 47.......
The below is the declaration for a variable ws 01 ws pic 9(3). if you want to insert space how will you do that. in which level u should do it
wht is load module and object module ?
I know my query will return more than one row but I don't want cursor what should I do?
what is record label is empty or standard in file description of data division?