Search found 21 matches

by Danny
24 Feb 2014 3:41
Forum: Exploitation / Operation
Topic: Uninstallation of Control-M server.
Replies: 2
Views: 6054

I suppose it was installed on windows machine, so you should check the registry..
by Danny
24 Feb 2014 3:37
Forum: Exploitation / Operation
Topic: Monthly Schedule
Replies: 2
Views: 5996

you can code L1 in the month days section to run it on the last day of month.
You can combine this with another calendar to run it on the last working day of month, or with Mon-Fri selected to run it on last weekday of the month.
by Danny
16 May 2013 1:32
Forum: Control-M Enterprise Manager
Topic: Jobs running cyclic in a setup
Replies: 5
Views: 6694

Try like this:

For job A - IN() OUT(A+) -- cyclic job set for every 5 mins
For job B - IN(A) OUT(B+, A-) -- cyclic job set for every 0 mins
For job C - IN(B) OUT(B-) -- cyclic job set for every 0 mins
by Danny
23 Apr 2013 4:41
Forum: Control-M Control Module
Topic: Control - M Data
Replies: 3
Views: 7041

Hi Meeran,

I believe you're working on Mainframe Control-M and the tables you mentioned are for Control-M DS (very different environment ;-)

Statistics for MF are stored in VSAM, something like S1.PP.DC.PLXB.CTM.PRD.STATFILE.DKS

Rgds,
Danny.
by Danny
10 Apr 2013 3:44
Forum: Job Definition
Topic: How to start a job after the new day
Replies: 6
Views: 5220

Hi Jan,

in the Time Until field, you have to put a '>'.
by Danny
14 Feb 2013 3:53
Forum: Job Definition
Topic: ctmvar global var with both %%@var AND character string
Replies: 14
Views: 28352

When the varexpr must start with a %%@ variable, you can try something like this:

ctmvar -action set -var "%%\eMailMsg07" -varexpr "%%@BLANK1.This is jobname: %%@JOBNAME.."
by Danny
24 Jan 2013 2:21
Forum: Job Definition
Topic: How to schedule a job ones in the two weeks
Replies: 9
Views: 13075

I don't see any other reasonable way then working with calendars.

You could run the job everyday, and check in the job if (following your example) the day-6/14 is a natural number, and run the rest of the script if that is the case..
by Danny
29 Aug 2012 4:59
Forum: Exploitation / Operation
Topic: Using LIBMEMSYM
Replies: 7
Views: 9360

Varname = %%LYBMEMSYM
should be
Varname = %%LIBMEMSYM
by Danny
28 Aug 2012 11:11
Forum: Control-M Enterprise Manager
Topic: Related to End time
Replies: 1
Views: 3036

It's not required. If the From field contains a valid time value, you can enter a > character in the Until field. This character is used to indicate that once the From time has passed, if CONTROL-M has not yet submitted the job by New Day time, it should try to submit the job as soon as possible aft...
by Danny
22 Aug 2012 11:15
Forum: Job Definition
Topic: How to check the Archived jobs in Control-M Enterprise mngr
Replies: 3
Views: 3824

Check your authorizations..
by Danny
14 Aug 2012 1:37
Forum: Job Definition
Topic: STEPS > DO SET-VAR > QR control
Replies: 3
Views: 4898

No, but what you can do is a do force-job, and in that 2nd job, you can run utility ctmloadset with which you can update the QR.
by Danny
14 Aug 2012 11:17
Forum: Control-M Agents
Topic: Agents going Unavailable dropping
Replies: 2
Views: 9713

I have seen it with AFT (advanced file transfer) jobs. When the accounts.dat file is not available on the agent-machine, the agent is going unavailable whenever you try to run such an aft-job, and comes back after a short while..
by Danny
14 Aug 2012 11:14
Forum: Job Definition
Topic: How to schedule a job for a Workday -1?
Replies: 2
Views: 6845

To schedule the job on the 2nd and 3rd workday, you specify D2,D3 and the workdays calendar in the Month Days-section. To shift it one day, you should have a calendar with all days specified as working days. Now, as Confirmation Calendar, select this ALLDAYS calendar, select Shift: Ignore Job and By...
by Danny
31 May 2012 1:30
Forum: Control-M Enterprise Manager
Topic: Jobs running cyclic in a setup
Replies: 5
Views: 6694

Make them both cyclic, set JobA to rerun every 180 mins, and JobB to rerun after 0 mins.
Make JobB dependend on JobA.
Don't forget to clear the conditions after each job ends
by Danny
31 May 2012 10:20
Forum: Job Definition
Topic: Monitor jobs in different tables by a single BIM
Replies: 2
Views: 2447

A BIM job is checking all jobs which it depends on, regardless in which scheduling table these jobs resides. So, a very simple example: JobA -> JobB -> BimJob Even when JobA is in scheduling table A and JobB and the BimJob are in scheduling table B, the BimJob will check JobA as well as JobB. But, i...