IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

COBOL IMS DC program not Refreshing in IMS Region


IBM Mainframe Forums -> IMS DB/DC
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
kpatil81

New User


Joined: 21 Jul 2008
Posts: 2
Location: bangalore

PostPosted: Wed Jul 29, 2015 5:56 pm
Reply with quote

Hi,

I have COBOL IMS DC application program ready in IMS region. The MFS, ACB, Transaction and Programs are initialized in IMS region. The transaction got invoked and I could enquire the data on the screen.

Then i had the changes in COBOL IMS DC program. I have compiled the changed CObol IMS program and the new load module is not getting refreshed into IMS region.

Please suggest on how to refresh the load module of program into IMS region.

Is the any IMS command to refresh the load module?
Like.. /TEST MFS for refreshing format.

Thanks
Kiran
Back to top
View user's profile Send private message
RahulG31

Active User


Joined: 20 Dec 2014
Posts: 446
Location: USA

PostPosted: Wed Jul 29, 2015 7:57 pm
Reply with quote

If this is helpful:

ibmmainframes.com/about34371.html

.
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3051
Location: NYC,USA

PostPosted: Wed Jul 29, 2015 8:45 pm
Reply with quote

or try
ibmmainframes.com/about38996.html
Back to top
View user's profile Send private message
kpatil81

New User


Joined: 21 Jul 2008
Posts: 2
Location: bangalore

PostPosted: Thu Jul 30, 2015 4:37 pm
Reply with quote

RahulG31 wrote:
If this is helpful:

ibmmainframes.com/about34371.html

.

We do not want to bring the IMS down and Up every time the new load module created. The load module is not refreshing for any program.

Is there any IMS Installation setting which need to be changed to Auto refresh when the load module get refreshed?

Also,

My transaction has got QCT of 5 (messages queued), I could not reset the&QCT by stopping pgm&trans + starting pgm&trans.

Eeven /DEQUEUE TRAN tranid command not enabled. Are there any settings in IMS Installation process to activate /DEQUEUE TRAN comman??

Thanks
Kiran
Back to top
View user's profile Send private message
don.leahy

Active Member


Joined: 06 Jul 2010
Posts: 765
Location: Whitby, ON, Canada

PostPosted: Thu Jul 30, 2015 7:35 pm
Reply with quote

Have you tried stopping/starting the MPR that processes the transaction?
Back to top
View user's profile Send private message
kbpatil81

New User


Joined: 29 Jul 2015
Posts: 3
Location: India

PostPosted: Mon Aug 03, 2015 9:54 am
Reply with quote

Please let know the procedure to Stop/satart MPR. Using IMS commands or TSO Console commands?

Please let me know the procedure in detail which can help me to do the right thing to refresh the load modules in IMS region.
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Mon Aug 03, 2015 2:12 pm
Reply with quote

Was an "online change" performed?
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Mon Aug 03, 2015 3:26 pm
Reply with quote

Everything you could possibly need will be doucumntest in the IMS manuals - probably under some tile that includes the word "User". Except...locally grown utilities to hide some of the technicalities or tailor the commands to your environment will not be documented ther - if anywhere. Your DBA should be able to assist you if your colleagues cannot.
Back to top
View user's profile Send private message
kbpatil81

New User


Joined: 29 Jul 2015
Posts: 3
Location: India

PostPosted: Mon Aug 03, 2015 6:35 pm
Reply with quote

Hi,



We had ran F LLA,REFRESH via console but the load module did not get refreshed. The IMS is still pointing to old module.

Please suggest if we need any setting changes in IMS control region jcl's which could enable load module refresh using F LLA,REFRESH command.

We are using APF Library.



Thanks

Kiran
Back to top
View user's profile Send private message
don.leahy

Active Member


Joined: 06 Jul 2010
Posts: 765
Location: Whitby, ON, Canada

PostPosted: Mon Aug 03, 2015 11:57 pm
Reply with quote

kbpatil81 wrote:
Please let know the procedure to Stop/satart MPR. Using IMS commands or TSO Console commands?

Please let me know the procedure in detail which can help me to do the right thing to refresh the load modules in IMS region.
/STOP REGION JOBNAME mprname
to start the MPR: /STA REGION mprname
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Tue Aug 04, 2015 1:35 pm
Reply with quote

As far as I remember, if you don't perform an "online change" the old contents from the ACBLIB, FMTLIB, and MODBLKS will be loaded.
Back to top
View user's profile Send private message
kbpatil81

New User


Joined: 29 Jul 2015
Posts: 3
Location: India

PostPosted: Wed Aug 05, 2015 9:52 am
Reply with quote

PeterHolland wrote:
As far as I remember, if you don't perform an "online change" the old contents from the ACBLIB, FMTLIB, and MODBLKS will be loaded.

What you exactly mean "perform an "online change" "?
Please let us know in some detail on what changes we need to do.
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Wed Aug 05, 2015 11:58 am
Reply with quote

Read this :

www-01.ibm.com/support/knowledgecenter/SSEPH2_13.1.0/com.ibm.ims13.doc.sag/system_admin/ims_olc_lolcover.htm
Back to top
View user's profile Send private message
don.leahy

Active Member


Joined: 06 Jul 2010
Posts: 765
Location: Whitby, ON, Canada

PostPosted: Wed Aug 05, 2015 7:08 pm
Reply with quote

We may be getting a bit off track here. The original question from the TS was about how to get IMS to pick up a fresh version of a recompiled application program.

Stopping and then Starting the message processing region should be all that is needed to take care of that. i.e. you don't need to bring the IMS control region up and down, but just the dependent region that the application runs in.
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Wed Aug 05, 2015 9:18 pm
Reply with quote

Don, i never said something about bringing the control region down.
The TS talked about MFS, ACB, so to say to IMS hey there is new stuff around, an "online change" is needed.
Back to top
View user's profile Send private message
don.leahy

Active Member


Joined: 06 Jul 2010
Posts: 765
Location: Whitby, ON, Canada

PostPosted: Wed Aug 05, 2015 11:26 pm
Reply with quote

PeterHolland wrote:
Don, i never said something about bringing the control region down.
The TS talked about MFS, ACB, so to say to IMS hey there is new stuff around, an "online change" is needed.
Agree, it was the TS who mentioned in a subsequent post "We do not want to bring the IMS down and Up every time the new load module created. The load module is not refreshing for any program. "

That, and some of the other posts made it sound like the ACB gen etc was already taken care of, and they just want to ensure that the new version of the application program gets picked up.
Back to top
View user's profile Send private message
PeterHolland

Global Moderator


Joined: 27 Oct 2009
Posts: 2481
Location: Netherlands, Amstelveen

PostPosted: Thu Aug 06, 2015 11:41 am
Reply with quote

I forgot to mention that an "online change" doesn't need that IMS has to be stopped/brought down.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> IMS DB/DC

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts Using API Gateway from CICS program CICS 0
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
Search our Forums:

Back to Top