How we copy a program from production region to development
region.What is the process & syntax ?

Answers were Sorted based on User's Feedback



How we copy a program from production region to development region.What is the process & synta..

Answer / vish

I don't think that such type of questions can be ever asked
in any interview but still trying to ansewr to this
question. Every system uses some tools for code management
(to be very specific code version management) e.g. ENDEVOR,
CHANGEMAN, PANVALET, ELIPS etc. Almost all such tools
provide an option to copy the code from production region
to a local PS/PDS. And there will be another option to copy
the code from local PS/PDS to development region. Normally
these tools do not provide a facility to copy a code
direclty from production to dev region. If they provide
then use the option to copy it else copy the code to local
PS/PDS then from there move it to Dev region.

Is This Answer Correct ?    8 Yes 0 No

How we copy a program from production region to development region.What is the process & synta..

Answer / shailendra

we use for to make copy production to development or
oppsite
there is tool called 1.endevor
2.changman
these tool called version controler tool.
when we want any update in production job so according to
requirment we take a copy of latest version of production
job,& update it then put it again to the prodution it
automatically taken as lastest version in the system, at
the next cycle for runing your latest programme will
execute.

Is This Answer Correct ?    6 Yes 1 No

How we copy a program from production region to development region.What is the process & synta..

Answer / sreeram

The above ans are correct. Below find clear details how can
we do in changeman.

1. checkout component from prod version of component in
changeman
2. make a changes on the top of the code
3. promote to prod

if you need any more details just mail to me

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More COBOL Interview Questions

consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable

10 Answers   TCS,


If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?

8 Answers   UST,


PERFORM ACCUMULATE-TOTALS VARYING A FROM 1 BY 2 UNTIL A >2 AFTER B FROM1 BY 1 UNTIL B>2 AFTER C FROM 2 BY -1 UNTIL C<2 How many times the paragraph ACCUMULATE-TOTALS would be exicuted?

5 Answers   TCS,


What is Control Break processing ?

1 Answers   iGate,


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

7 Answers   T systems,






What is the difference between Call and a Link?

0 Answers  


how can i see junk values in dclgen or in hostvariable of comp ?

0 Answers   DELL,


what are difference organizations in cobol and access mode in cobol? can you expalin what organization means while declaring for ksds,esds,rrds?

1 Answers   HCL,


Move Zeroes to I move 5 to j perform para1 varying I from 10 by -2 until I = 0 display j. para1. Add 5 to j. What’ll be the value after execution of display stmt. A) 35 B) 40 C) 30 D) 25 please explain how?

5 Answers  


what is s000 u4087 error? please give the all error codes in cobol,jcl.

0 Answers  


What is the difference between a binary search and a sequential search what are the pertinent cobol?

0 Answers  


input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.

6 Answers  


Categories