jayaprabhu


{ City } bangalroe
< Country > india
* Profession * software engg
User No # 30306
Total Questions Posted # 9
Total Answers Posted # 16

Total Answers Posted for My Questions # 35
Total Views for My Questions # 153407

Users Marked my Answers as Correct # 97
Users Marked my Answers as Wrong # 57
Questions / { jayaprabhu }
Questions Answers Category Views Company eMail

How many steps we can overide in the proc's?

CS,

2 JCL 6097

How to retain the Duplicates in the one records?

CS,

3 COBOL 8355

How to overide the symbol parameter in the jcl ?

UST,

3 JCL 8780

I have three files for one step i need to override the third file how to do that in jcl?

UST,

1 JCL 8190

How to retrive the 9th records out of ten records using the cobol program ?

UST,

3 COBOL 8712

1) can we display the index?

ADP, IBM,

3 COBOL 25722

Can we access the a[0] in the array ?

DCL, IBM,

6 COBOL 9883

what is S04E error in jcl?

IBM, L&T,

11 COBOL 66316

how you read control card into array?

HCL,

3 COBOL 11352




Answers / { jayaprabhu }

Question { T systems, 6618 }


what is remedy testing,how can use that, plz explain


Answer

Hi frnd,

Remedy is tools which is used by the Production support
people for the Status updated of the issue

Is This Answer Correct ?    0 Yes 0 No

Question { T systems, 32754 }

what is remedy testing, explain that and how can use that


Answer

Hi frnd,

Remedy is tools which is used by the Production support
people for the Status updated of the issue

Is This Answer Correct ?    12 Yes 13 No


Question { 15147 }

Determine the total no of bytes in the following.

01 rec1.
02 a pic x(6)
02 b redefines a.
03 c occus 6 times pic 9.
02 d occurs 6 times pic 9.
03 e pic x(5)
03 f pic 999.


Answer

01 rec1.

02 a pic x(6)-------------------- 6 bytes
02 b redefines a.
03 c occurs 6 times pic 9.------ 6*1(pic 9 ie why we
have mul with 1 )------------------- 6 bytes
02 d occurs 6 times pic 9.------- (6*1) 6 bytes
03 e pic x(05)------------------- 5*6 =30 bytes
03 f pic 999. --------------------- 3*6=18

6
6
6
30
18

66

if you remove e f

18

Is This Answer Correct ?    0 Yes 1 No

Question { 5235 }

difference btween inbound marketing and outboung marketing


Answer

The Inbound and Outbound marketing. I think its a telecomm
applications

Inbound Marketing : Where the Customer call to call center
for which Call center will get the bill .Hence we are
having the many Inbound call center to handle your company
Business

example : 1-800-nnnn-nnnn

nnnn=any numbers

OutBound Marketing: Where in the customer will be billed
for the Call .

example : Your own phone lines

Is This Answer Correct ?    0 Yes 2 No

Question { T systems, 9215 }

What is Project Management?


Answer

the above said answer of correct to there contents .but
remember one thing if your a project manger then only you
need to think about this or else it not out business

Is This Answer Correct ?    0 Yes 4 No

Question { T systems, 41624 }

Can we move SPACES to numeric field and ZEROES to
alphabetic field? If yes what are the way doing this?


Answer

we can move the numeric to alphanumeric or alphabetic and
vive versa only using the redefines.

this concept is useful when you want to have only one copy
book field need to change to num/aplha for particular
program.

Is This Answer Correct ?    1 Yes 0 No

Question { T systems, 59271 }

Can we MOVE X(9) to 9(9) OR 9(9) to X(9)? If yes what are
the ways for doing this?


Answer

hi all

Numeric can be moved to alphanumeric
and alphanumeric can be moved to numeric only if it has the
numeric data.

Is This Answer Correct ?    41 Yes 10 No

Question { T systems, 28611 }

What will happen if we move SPACES to numeric field and
ZEROES to alphabetic field?


Answer

spaces to umeric field will give data exp error soc7

bocz we cant move the spaces to numeric field

Zeroes to alphabetic we cant bcoz zeroes is numeric we cant
move into the alphabetic if we move it will give soc7

But using redefines we can moves num-alpa, alpa -num
these kind we use for copybook where in if you have one
field need to change for num/alpa.instead going for new
copybook .

Is This Answer Correct ?    1 Yes 1 No

Question { L&T, 8811 }

01 ws-p pic 9(2).
01 ws-q pic 9(2) value 01.
01 ws-r pic 9(2) value 99.

p.d.

compute p = q + r
what will be result of p ans(00) but my question is that

how i got 10 on the place of 00.
(truncation will ocuure on right side not left).

please tell me ?



Answer

simple always remember that for numeric it's Left
Justification ie TAKE FROM LEFT PLACE FIRST IN LEFT

SO P=100 but as per you it shd be 00 but it will be 10

1 IS FROM LEFT SIDE MOST THEN 00 so if we move as per above
then
p is pic9(02)

so 10 first 1 is moved from left to left then 0 is moved
but since pic 9(02) only to digits get moved

Is This Answer Correct ?    0 Yes 5 No

Question { IBM, 13241 }

What is difference between Return Code, user completion
code, Abend code and reason Code?


Answer

Return code when you sub any jobs ie status of job

Abend code if you ended with abend like address probelm etc

reason code if ims region is down

User completion code : needed

correct me if im wrong

Is This Answer Correct ?    2 Yes 10 No

Question { 4373 }

01 MOVE 10 TO N
05 PERFOM PARA1 TIMES
STOP RUN
WAT WILL HAPPEN?? WILL IT RUN INFINITELY OR AN ERROR WIL BE
THER BECAUSE NO OF TIMES IS NOT GIVEN??


Answer

syntax error occurs becoz times values we need to give

Is This Answer Correct ?    9 Yes 0 No

Question { 25021 }

Is there a way to check for an empty file in JCL other than
using IEBCOMPR and the command PRINT COUNT(1)?


Answer

using the Uitility IEBPTPCH

If RC=04 no data ie the file is empty
rc=00 file is not empty

Is This Answer Correct ?    12 Yes 1 No

Question { 5484 }

I have to change a program. This program is calling a
subroutine mor than 100times within it. so will it have any
performance issue? if yes than what changes i can make.
Thanx for ur valuable answer.


Answer

Your program may call 100 times are more than that it does
not affect the Performance issue .

Is This Answer Correct ?    6 Yes 1 No

Question { IBM, 11407 }

Q1.How to read the Array?
Q2.How to copy the content of one Array to another Array?


Answer

you can read the array or copy the contents of one array to
another array by using the Subscrpt or index

Is This Answer Correct ?    6 Yes 3 No

Question { CSC, 11517 }

Q1.How we can copy the data of file one session to another
session?
Q2.how we can execute a loop infinitely in AS/400 coding?
Q3.In ALDON tool,multitask is posible on a perticular
object by the user?


Answer

Q1 you can copy the data from one session to other session
using NDM

on Menu ispf
type START NDM
Then seelct to the req option for your requriments

Is This Answer Correct ?    4 Yes 5 No

 [1]   2    Next