View previous topic :: View next topic
|
Author |
Message |
venuhunev
New User
Joined: 26 May 2007 Posts: 70 Location: chennai
|
|
|
|
Hi,
I have modified a COBOL CICS DB2 program and the corresponding map.
Modification is, there will be four options in the main menu. I have removed the third option and thus changing the fourth option to third.
So in the application, if i give 3, it should select the appropriate map.
To refresh the changes incorporated, i have used the following command.
Code: |
CEMT SET PROG(XC80020A,XC8002M) NEW
|
Code: |
STATUS: RESULTS - OVERTYPE TO MODIFY
Prog(XC80020A) Leng(0000009208) Cob Pro Ena Pri Ced NORMAL
Res(000) Use(0000000004) Bel Uex Ful Qua Cic
Prog(XC8002M ) Leng(0000000600) Map Ena Pri NORMAL
Res(000) Use(0000000004) Qua Cic
|
But only the map changes are reflected. If i give option 3, the screen is getting hanged for a longer time. |
|
Back to top |
|
|
Craq Giegerich
Senior Member
Joined: 19 May 2007 Posts: 1512 Location: Virginia, USA
|
|
|
|
Did you compile the program and put it in the proper loadlib? |
|
Back to top |
|
|
venuhunev
New User
Joined: 26 May 2007 Posts: 70 Location: chennai
|
|
|
|
Ya. I use changeman. I have compiled it as i do for a COBOL program and placed it in loadlibb. Any special compilation needed ? |
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
Back to top |
|
|
venuhunev
New User
Joined: 26 May 2007 Posts: 70 Location: chennai
|
|
|
|
I used CEMT SET PROG(value) NEW only to get the code changes into the transaction. I am unable to find the reason why the application is getting hanged. |
|
Back to top |
|
|
Aaru
Senior Member
Joined: 03 Jul 2007 Posts: 1287 Location: Chennai, India
|
|
|
|
venu,
Try this command.
Code: |
CECI LOAD PROG(pgmname)
and then CEMT SET PROG(pgmname) NEW |
I am not sure but give it a try. |
|
Back to top |
|
|
venuhunev
New User
Joined: 26 May 2007 Posts: 70 Location: chennai
|
|
|
|
Code: |
LOAD PROG(LS80020A)
STATUS: ABOUT TO EXECUTE COMMAND
EXEC CICS LOad
Program( 'LS80020A' )
< Set() >
< Length() | Flength() >
< Entry() >
< Hold >
SET PROG(LS80020A) NE
STATUS: RESULTS - OVERTYPE TO MODIFY
Prog(LS80020A) Leng(0000009208) Cob Pro Ena Pri Ced NORMAL
Res(000) Use(0000000004) Bel Uex Ful Qua Cic
|
But no use. It is getting hanged.
The program is in active status in changeman. I think it doesnt have any errors wen compiling. I dont know why the prob exists. |
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
venuhunev wrote: |
But no use. It is getting hanged. |
Not real descriptive.....
Debug, debug, debug!!!!
CEDF the transaction.
Once started, drop into CECI and load the program, copy the load address and swtich to displat working storage, paste the load address and look at the bind date and time, comfirm it is the version you want.
Then do the same for the map.
Then let the CEDF transaction continue until it 'hangs'.
You will then know why.
Confirm the prog and map are the new ones and then debug your programming problem. |
|
Back to top |
|
|
shagnwrx
New User
Joined: 07 Jul 2006 Posts: 17 Location: Birmingham, AL
|
|
|
|
venuhunev wrote: |
Ya. I use changeman. I have compiled it as i do for a COBOL program and placed it in loadlibb. Any special compilation needed ? |
This is just a hunch.. but "loadlibb"? That sounds like a naming convention for a batch loadlib. Sounds like you're compiling into the wrong loadlib. Is there a loadlibo? ( o for online). |
|
Back to top |
|
|
Craq Giegerich
Senior Member
Joined: 19 May 2007 Posts: 1512 Location: Virginia, USA
|
|
|
|
Is it compiled as a CICS program? |
|
Back to top |
|
|
venuhunev
New User
Joined: 26 May 2007 Posts: 70 Location: chennai
|
|
|
|
How to compile it as a cics program. is there any option in changeman ?
I have compiled liek a COBOL program compilation only. |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
Talk with your peers or your cics support people. There is probably a standard cics compile process and you should use it. |
|
Back to top |
|
|
venuhunev
New User
Joined: 26 May 2007 Posts: 70 Location: chennai
|
|
|
|
I wil try to check
Thanks guys for the support |
|
Back to top |
|
|
|