Sponsored Content
Full Discussion: Importing Autosys Calendar.
Top Forums Shell Programming and Scripting Importing Autosys Calendar. Post 302424854 by arvindcgi on Wednesday 26th of May 2010 12:00:49 PM
Old 05-26-2010
This is been sorted out. Thought of just sharing in case someone else also faces the same issue and there would be no HELP as in my case.

Command to use is as below,

autocal_asc < Holiday_list.txt.
This User Gave Thanks to arvindcgi For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Importing dump file

Hi, I am trying to import 22 .dmp files but facing the problem with the last table file it never ends the import command, only the table is created but the rows of the table don't get imported. This is the problem with only ine table rest 21 tables are being imported properly. Thanks in... (2 Replies)
Discussion started by: anushilrai
2 Replies

2. UNIX for Advanced & Expert Users

Importing PGP keys

I'm hoping someone can help get me moving in the right direction here, so bear with me. I've got 2 RedHat Linux servers, let's call them A & B. - A receives "sensitive" files, which are PGP encrypted, and immediately sends them off to B for decryption/processing/deletion - B needs to make... (1 Reply)
Discussion started by: peteroc
1 Replies

3. UNIX for Advanced & Expert Users

Documentation and books on Autosys Job Control Tool from Autosys

My project uses Autosys. I am new to this product and I don't know where to start from. Q1. Please provide me the link where I can get Autosys documentation Q2. Please refer a good book on Autosys. (Beginner/Intermediate Level) (0 Replies)
Discussion started by: gram77
0 Replies

4. Shell Programming and Scripting

autosys calendar

Hi, Is there any autosys calendar for last day of a month(irrespective of holidays) For eg., Jan 31, Feb 28(29), Mar 31, Apr 30 ... Thanks in Advance (2 Replies)
Discussion started by: rspk_praveen
2 Replies

5. UNIX for Dummies Questions & Answers

Autosys: How to change a machine name in Autosys JIL.

All the autosys jobs are on server-1 and server-1 has been crashed due to some reason, Now I have to run 5 autosys jobs on server-2 (failover server) which are on server 1. How to do with Autosys command (which command needs to fired on JIL) (0 Replies)
Discussion started by: tp2115
0 Replies

6. UNIX for Dummies Questions & Answers

importing a Physical Volume

hi guys I'm added a new disk to my server (virtual environment) It used to be a Volume Group=Vol_Group01 and Logical Volume= Log_Vol_01_Data and I see /dev/sdb Disk /dev/sdb doesn't contain a valid partition table Disk /dev/sdc: 133.1 GB, 133143986176 bytes 255 heads, 63... (3 Replies)
Discussion started by: karlochacon
3 Replies

7. Shell Programming and Scripting

importing variables from 1 file to another

hi i want to retrieve talespace, datafile's path , size and another size in following querry in shell Create Tablespace 'A' Datafile 'Some Path' Size '10G' extent management Local uniform size '64M'; from another file say 'A.txt' where i ll dumb data in sequence separated by commas... (2 Replies)
Discussion started by: Gl@)!aTor
2 Replies

8. Windows & DOS: Issues & Discussions

Help importing SQL DB using phpmyadmin

Hi, When I try to import the database, getting error message. No data was received to import. Either no file name was submitted or the file size exceeded the maximum size permitted by your PHP configuration. I am doing this on Windows server, I updated php.ini file and stop and... (2 Replies)
Discussion started by: samnyc
2 Replies

9. Shell Programming and Scripting

Autosys - Extended Calendar

Does anyone know if you can create an Extended Calendar in Autosys that will do the following...Schedule on the last business day of the month, but if the last business day falls on a Mon-Thur...schedule on the next business day (1st of the next month) ? (1 Reply)
Discussion started by: amarq0004
1 Replies

10. Shell Programming and Scripting

Autosys Extended Calendar needed

Is there any way to create an extended calendar in Autosys that will include the last Friday of the month AND the 8 business days before that Friday? I know that this will give me the last Friday of the months that I need... fri#L AND (jan or apr or jul or oct) (0 Replies)
Discussion started by: amarq0004
0 Replies
Widgets::Calendar(3pm)					User Contributed Perl Documentation				    Widgets::Calendar(3pm)

NAME
Curses::Widgets::Calendar - Calendar Widgets MODULE VERSION
$Id: Calendar.pm,v 1.103 2002/11/03 23:33:05 corliss Exp corliss $ SYNOPSIS
use Curses::Widgets::Calendar; $cal = Curses::Widgets::Calendar->({ CAPTION => 'Appointments', CAPTIONCOL => 'yellow', INPUTFUNC => &scankey, FOREGROUND => undef, BACKGROUND => 'black', BORDER => 1, BORDERCOL => 'red', FOCUSSWITCH => " ", X => 1, Y => 1, HIGHLIGHT => [12, 17, 25], HIGHLIGHTCOL=> 'green', MONTH => '11/2001', ONYEAR => &yearly, ONMONTH => &monthly, ONDAY => &daily, }); $cal->draw($mwh, 1); See the Curses::Widgets pod for other methods. REQUIREMENTS
Curses Curses::Widgets DESCRIPTION
Curses::Widgets::Calendar provides simplified OO access to Curses-based calendars. Each object maintains it's own state information. METHODS
new (inherited from Curses::Widgets) $cal = Curses::Widgets::Calendar->({ CAPTION => 'Appointments', CAPTIONCOL => 'yellow', INPUTFUNC => &scankey, FOREGROUND => undef, BACKGROUND => 'black', BORDER => 1, BORDERCOL => 'red', FOCUSSWITCH => " ", X => 1, Y => 1, HIGHLIGHT => [12, 17, 25], HIGHLIGHTCOL=> 'green', MONTH => '11/2001', ONYEAR => &yearly, ONMONTH => &monthly, ONDAY => &daily, }); The new method instantiates a new Calendar object. The only mandatory key/value pairs in the configuration hash are X and Y. All others have the following defaults: Key Default Description ============================================================ CAPTION undef Caption superimposed on border CAPTIONCOL undef Foreground colour for caption text INPUTFUNC &scankey Function to use to scan for keystrokes FOREGROUND undef Default foreground colour BACKGROUND undef Default background colour BORDER 1 Display a border around the field BORDERCOL undef Foreground colour for border FOCUSSWITCH " " Characters which signify end of input HIGHLIGHT [] Days to highlight HIGHLIGHTCOL undef Default highlighted data colour HEADERCOL undef Default calendar header colour MONTH (current) Month to display VALUE 1 Day of the month where the cursor is ONYEAR undef Callback function triggered by year ONMONTH undef Callback function triggered by month ONDAY undef Callback function triggered by day Each of the ON* callback functions expect a subroutine reference that excepts one argument: a handle to the calendar object itself. If more than one trigger is called, it will be called in the order of day, month, and then year. draw $cal->draw($mwh, 1); The draw method renders the calendar in its current state. This requires a valid handle to a curses window in which it will render itself. The optional second argument, if true, will cause the calendar's selected day to be rendered in standout mode (inverse video). HISTORY
1999/12/29 -- Original calendar widget in functional model 2001/07/05 -- First incarnation in OO architecture AUTHOR
/COPYRIGHT (c) 2001 Arthur Corliss (corliss@digitalmages.com) perl v5.8.8 2006-09-14 Widgets::Calendar(3pm)
All times are GMT -4. The time now is 04:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy