Automating the book building process in FM11 - best tool?

Hi - we're gearing up to create an automated book-building process using FM11.
Before we start, a quick straw-poll:
What do you folks recommend / suggest as the best automation tool?
We want to trigger the process when SGML files are dumped into a directory. When we've done directory-triggered automation in the past under FM7.1, we've tended to use VB.NET code to trigger an instance of an FM7.1 API client (usually to build and collate PDFs, etc)... but, since we're in a new era with a new release of FM, we thought we'd take an open-minded, 'blue sky' approach here and see what tools members of the Framemaker community are using.
If one particular approach seems to be easier / more advantageous / more widely adopted than any of the others, then I think that might nudge us down that road...
Thanks.

Hi Nigel...
You might want to look at our plugin, AutoFM ..
     http://leximation.com/tools/info/autofm.php
This lets you drive FrameMaker from an XML file and a batch file (or other command line scripting). The XML file contains the instructions on which files to open and what to do with them. You can perform various basic functionality like saveas, print, update book, etc. It also lets you call other automation options like ExtendScript, FrameScript, or FDK clients to extend the processing as needed.
Download the 30-day trial and see if it does what you need.
AutoFM is the piece that is used to drive DITA-FMx (via FMx-Auto) in this video for automated DITA to PDF publishing, but can be used for any type of FM automation ..
     http://blog.leximation.com/2012/02/automated-dita-to-pdf-publishing-with-fmx-auto/
Keep in mind that various types of FrameMaker automation may require using FrameMaker Server .. so be sure to check the EULA and use the right FM version for your needs.
Cheers,
...scott
Scott Prentice
Leximation, Inc.
www.leximation.com

Similar Messages

  • Automating the cube load process

    Hi All,
    I have created the essbase cube using Hyperion Integration services 9.3.1 as my datasource is the star schema residing in a oracle db. I can successfully load the cube and see the results in smart view.
    I want to know how I can automate the data loading process(both dimension and fact) into the essbase cubes either by using unix scripts and windows .bat scripts.
    Your inputs are Appreciated. Thanks in Advance.
    Regards
    vr

    What everyone has shown you is the use of esscmd or MaxL, howevery you stated you are using EIS. Until you get to 11.1 and use Essbase studio, these won't help you. What you will need to do is to go into EIS, then select your metadata outlline. Pretend you are going to build the cube manually. Start scheduling it, when you get to the screen that allows you to schedule it or create a file, create the file only. You will want the name to end in .cbs (Hint, if you select both outline and data load, you will get all the statements in one script)
    After you are done, if you look on the EIS server under arborpath\EIS\Batch, you should see the .cbs file you created. It is a regular text file so you can look at it. If you open it, you will see loaddata and/or loaddimensions statements This is what does the work.
    To run it, create a batch file with the command olapicmd -fscriptFileName >logfilename
    For more information about the Integration Services Shell look at http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/eis_sysadmin.pdf Chapter 5 tells you everything you need to know

  • Automating the import / export process in 9.0.2

    In Portal 3.0.9.x the export and import were entirely command-line driven tools, so it was possible to automate the process to a certain degree.
    In 9.0.2 the import/export process is a combination of scripts and manual actions through the Portal UI to import and export the transport sets.
    Is there any way in 9.0.2 to automate this process ?

    You make me feel better. I am having THE problem. Logs say it was all a success but NOTHING is imported. I tried with portal 9.0.2.2.22 on Win2000 and now I'll try it on 9.0.2.2.14A on Sun. What did you use?

  • Automating the Auto Levels process

    As part of my work flow after importing the files into Aperture and applying meta data I then apply Auto levels to each image in turn, this is a very manual process involving the mouse and the right arrow key to move to the next image, wait for it to be read then press the auto levels button and then right arrow to the next image.
    Is there a way to get Aperture to go through all the images in an Album applying the Auto levels command to each image individually.
    It may even by by a keystroke macro process if there is such a one for OSX.
    I do not want to lift the adjustments from one corrected image and apply them to all the images as this does not reflect the auto needs of each image.
    After auto levelling each image I select the images for customised work.
    Thanks for any suggestions.

    Yes it worked - you have to redefine the action for each time you run aperture as the button for the auto levels function moves around the screen according to where you have the Aperture window.
    You also have to allow for Aperture slowing down so you have to build in a delay before pressing the Auto button.
    While running this process you cannot run another app that will sit over the Aperture window or take focus from Aperture.
    What surprises me is that the two Auto buttons do not have keystroke alternatives. (or at least I could not find them in the documentation)

  • Amanda; And creating user accounts BEFORE the build process

    I am trying to make a package for amanda (Advanced Maryland Automatic Network Disk Archiver) http://www.amanda.org.
    I have gotten everything to run fine, but the way the devs have set up their configure file (and the resulting build process),
    I HAVE to specify a user account that the program will run as. If I do not specify (and create an account) the PKGBUILD will not run. Is this normal?
    Is there a way to make the PKGBUILD create an account and a group? This account and group are need both DURING the build and during the install.
    It has to be a pre-existing user account.  Here is my PKGBUILD script:
    pkgname=amanda
    pkgver=2.6.0p1
    pkgrel=1
    pkgdesc="The Advanced Maryland Automatic Network Disk Archiver"
    url="http://www.amanda.org/"
    license=('BSD')
    depends=("glibc")
    #If you need amplot and/or samba support (for backing up windows clients) delete the line above and uncomment the line below this line
    #depends=("glibc" "samba" "gnuplot")
    install=(amanda.install)
    arch=('x86_64' 'i686')
    source=(
    http://downloads.sourceforge.net/amanda/amanda-2.6.0p1.tar.gz
    md5sums=('afadad80e0a27963a24b510755470983')
    build() {
    cd $startdir/src/amanda-2.6.0p1
    # These config options are documented at:
    # http://wiki.zmanda.com/index.php/Installation/Installing_Amanda_Source
    ./configure CFLAGS="-03 -Wall" \
    --with-user=amanda \
    --with-group=backup \
    --prefix=$startdir/pkg/usr/local \
    --with-amperldir=$startdir/pkg/usr/local/share/perl5/site_perl/5.10.0
    make || return 1
    make install prefix=$startdir/pkg/usr/local
    I would really appreciate some help (this is my first pkg)
    Also remember; this will not finish building without creating a user and a group
    #groupadd backup
    #useradd -g backup amanda
    Last edited by timetrap (2008-06-19 19:08:09)

    I didn't take it any farther than the first post. I became frustrated with the chicken/egg relationship with account/makepkg.
    The package works (as long as the user accounts are created first) if you can figure out a way around this issue feel free to update the pkg (then upload it to AUR).
    The nobody/nobody idea didn't work for me, I cannot remember the reason why. It had something to do with permissions. Let me know if you need any help.
    Last edited by timetrap (2009-01-01 03:12:17)

  • HT201328 Unlocking iPhone4 iOS6 by the book

    Hello,
    I did everything by the book. Upon expiration of my time-plan contract, I submitted the unlock request to my service provider (from whom I also bought the device first-hand), and got the unlock authorization confirmation, stating that the request was accepted by Apple. I've been advised to connect the device to the iTunes on the Mac where I sync the contents and keep my backups, and the iTunes app would guide me through the process.
    I did it, yet, nothing happened so far.
    I have tried up to my best in browsing the support pages, yet found very little information that could be of any use.
    I requested the unlock not because I wanted to change the provider, but because on few iPhone 4's (including mine) there is a "Dial Assist" firmware bug which prevents from correctly dialing some emergency numbers. Even if one turns DialAssist off, it still stays on, on a locked device, nevertheless.
    The "Learn about iPhone: About unlocking" page points me to wrong directions. I don't want to erase my contents, I don't want to plug a new SIM card so far, I just want having the device *unlocked*. Most legal way. With carrier authorization. By the book.
    Thanks in advance,
    Best Regards,
    UU

    Hey guys,
    Sorry, I did not mean to offend anybody's good will or violate posting conventions of this forum. Neither did I mean to ask this user forum to give clarifications on behalf of Apple. The aforementioned document is indeed unclear, presuming the only valid reason for unlocking to be choosing a new provider. Therefore it sounds to me not serious enough to be taken for granted. Here's the quotation:
    3.Swap the old SIM card with the one for the new carrier.
    4.Complete the setup assistant and restore your backup.
    So, may I rephrase the question:
    "Can it be made unlocked with the current SIM card to which it used to be locked, or *swapping the old SIM card with the one for the new carrier* is a must? I'm fine with my old carrier, at the moment I need nothing more than having the device unlocked, for the reasons explicitely mentioned earlier in this thread.
    Thanks in advance.
    Regards,
    UU

  • Worskhop build process

    Hello,
    I'm trying to figure out the workshop build process. Each time I right
    click on my portal web project and do a "build" it seems to do a
    "rebuild all" (like in JBuilder) instead of a "build modified source".
    Am I missing some setting here, or is this the way it works?
    Also, it seems to rebuild the following JCX's all the time:
    com\bea\p13n\controls\login\UserLoginControl.jcx
    com\bea\p13n\controls\ejb\usermgmt\profile\GroupProfileManager.jcx
    com\bea\p13n\controls\p13controls.jcx
    com\bea\p13n\controls\createUser\CreateUserControl.jcx
    com\bea\p13n\controls\ejb\property\PropertySetManager.jcx
    com\bea\p13n\controls\events\generic\GenericEventControl.jcx
    com\bea\p13n\controls\events\standard\ClickContentEventControl.jcx
    com\bea\p13n\controls\profile\UserProfileControl.jcx
    com\bea\p13n\controls\ejb\usermgmt\UserManager.jcx
    com\bea\p13n\controls\events\standard\RuleEventControl.jcx
    com\bea\p13n\controls\ejb\property\EntityPropertyManager.jcx
    com\bea\p13n\controls\userInfoQuery\UserInfoControl.jcx
    com\bea\p13n\controls\ejb\usermgmt\profile\UserProfileManager.jcx
    com\bea\p13n\controls\ejb\events\EventService.jcx
    com\bea\p13n\controls\events\standard\DisplayContentEventControl.jcx
    com\bea\p13n\controls\events\standard\SessionLoginEventControl.jcx
    com\bea\p13n\controls\CompositeControl.jcx
    com\bea\p13n\controls\ejb\usermgmt\RealmConfiguration.jcx
    com\bea\control\TimerControl.jcx
    com\bea\p13n\controls\events\standard\UserRegistrationEventControl.jcx
    com\bea\wlw\runtime\core\control\jmscontrol\MDBListener.jcx
    com\bea\wlw\runtime\core\control\EventControl.jcx
    Controls\SMSSender.jcx
    com\bea\p13n\controls\ejb\usermgmt\GroupManager.jcx
    com\bea\p13n\controls\events\generic\GenericTrackingControl.jcx
    I can't believe I'm using ALL of these - one or two yes, like the Group
    Manager ctrl, SMS sender ctrl, but not the rest (OK, there are
    dependencies..but still it would be nice to know what they are..)
    Please advice!
    BR,
    deepak

    Of course you have to build any project if you need to compile/link all
    the source inside it, compile the JSP's and update the deployment right?
    For example, java projects and such...
    Leonardo Contreras wrote:
    You don´t need to build a Portal project, the bulding can help you to resolve some
    things like missing libraries.
    Portal Web projects and Web Projects include all of system java controls, that´s
    the reason of this list of controls.
    Deepak Natarajan <[email protected]> wrote:
    Hello,
    I'm trying to figure out the workshop build process. Each time I right
    click on my portal web project and do a "build" it seems to do a
    "rebuild all" (like in JBuilder) instead of a "build modified source".
    Am I missing some setting here, or is this the way it works?
    Also, it seems to rebuild the following JCX's all the time:
    com\bea\p13n\controls\login\UserLoginControl.jcx
    com\bea\p13n\controls\ejb\usermgmt\profile\GroupProfileManager.jcx
    com\bea\p13n\controls\p13controls.jcx
    com\bea\p13n\controls\createUser\CreateUserControl.jcx
    com\bea\p13n\controls\ejb\property\PropertySetManager.jcx
    com\bea\p13n\controls\events\generic\GenericEventControl.jcx
    com\bea\p13n\controls\events\standard\ClickContentEventControl.jcx
    com\bea\p13n\controls\profile\UserProfileControl.jcx
    com\bea\p13n\controls\ejb\usermgmt\UserManager.jcx
    com\bea\p13n\controls\events\standard\RuleEventControl.jcx
    com\bea\p13n\controls\ejb\property\EntityPropertyManager.jcx
    com\bea\p13n\controls\userInfoQuery\UserInfoControl.jcx
    com\bea\p13n\controls\ejb\usermgmt\profile\UserProfileManager.jcx
    com\bea\p13n\controls\ejb\events\EventService.jcx
    com\bea\p13n\controls\events\standard\DisplayContentEventControl.jcx
    com\bea\p13n\controls\events\standard\SessionLoginEventControl.jcx
    com\bea\p13n\controls\CompositeControl.jcx
    com\bea\p13n\controls\ejb\usermgmt\RealmConfiguration.jcx
    com\bea\control\TimerControl.jcx
    com\bea\p13n\controls\events\standard\UserRegistrationEventControl.jcx
    com\bea\wlw\runtime\core\control\jmscontrol\MDBListener.jcx
    com\bea\wlw\runtime\core\control\EventControl.jcx
    Controls\SMSSender.jcx
    com\bea\p13n\controls\ejb\usermgmt\GroupManager.jcx
    com\bea\p13n\controls\events\generic\GenericTrackingControl.jcx
    I can't believe I'm using ALL of these - one or two yes, like the Group
    Manager ctrl, SMS sender ctrl, but not the rest (OK, there are
    dependencies..but still it would be nice to know what they are..)
    Please advice!
    BR,
    deepak

  • Cube hang up is happening during Dimension Build process

    We are using the Excel VBA tool for the Dimension build process.The tool will build the members in 3 applications(Atlaunch,ModeLife,Textcube).Most of the times cube hung up is happening at the Text cube. The dimension build process is described below
    Dimension Build Process :-
    The dimension build process is performed by the Calculation and Dimension Build Tool.
    Before executing dimension build logging in to essbase server is required through the tool
    Once logged in the particular region where dimension build is supposed to be carried out is selected from NML, NA, NE and NS.
    Per region there are 3 applications namely <Region>LNCH, <Region>LIFE and <Region>TEXT and per application there is only 1 database namely AtLaunch, ModeLife and TextData respectively. The cube structure per region is given below:
    NML Region:
    NMLLNCH.AtLaunch
    NMLLIFE.ModeLife
    NMLTEXT.TextData
    NA Region:
    NALNCH.AtLaunch
    NALIFE.ModeLife
    NATEXT.TextData
    NE Region:
    NELNCH.AtLaunch
    NELIFE.ModeLife
    NETEXT.TextData
    NS Region:
    NSLNCH.AtLaunch
    NSLIFE.ModeLife
    NSTEXT.TextData
    The Dimension Build Process is carried out in 2 steps:
    1.     Project Master Code Build –
    2.     Grades, Line Options, Project Description and Reference Currency Build –
    Project Master Code Build:-
    In the Project Master Code Build by the Calculation and Dimension Build Tool the following processes are involved
    •     Some members are dynamically created in <Region>LNCH.AtLaunch, <Region>LIFE. ModeLife and <Region>TEXT. TextData cubes.
    •     Some data is loaded in <Region>LNCH.AtLaunch Cube.
    Grades, Line Option, Project Description and Reference Currency Build:-
    Grades – Some members are dynamically created in <Region>LNCH.AtLaunch and <Region>LIFE. ModeLife cubes.
    Line Options - Some members are dynamically created in <Region>LNCH.AtLaunch
    Project Description - Some members are dynamically created in <Region>TEXT.TextData cube. After that some data is loaded in <Region>TEXT.TextData cube.
    Reference Currency – UDA is updated in <Region>LNCH.AtLaunch, <Region>LIFE.ModeLife cube and UDA and Alias is updated in <Region>TEXT.TextData cube.
    Note: Most of the times during Project Description Build we are experiencing cube hang up / no response for NMLTEXT.TextData, NATEXT.TextData, NETEXT.TextData and NSTEXT.TextData cubes.
    Text cube dimension build process flow :-
    1. Introduction
    The Dimension Build process in CDB system is used for adding new project information in the cubes (AtLaunch, ModelLife and TextData). The text files which are needed for performing dimension build are generated from the child packages and stored in the local system of the user (<LocalDrive>:\GCEP4\Input\CDB_DimensionBuild). The Dimension Build process is carried out in 2 stages:
    1.     Project Master Code Build
    2.     Grades, Line Option, Project Description and Reference Currency Build
    Project Master Code Build:-
    In the Project Master Code Build by the Calculation and Dimension Build Tool the following processes are involved
    •     MsPr_DIM rule is used for the text file F0P_<Project>-<Milestone>-<Version>.txt to build Project Master Code in AtLaunch, Model Life and Text Data Cubes.
    •     MsPr_FLG rule is used to Load some data from the text file F0P_<Project>-<Milestone>-<Version>.txt in AtLaunch Cube.
    Grades, Line Option, Project Description and Reference Currency Build:-
    Dimension Build w.r.t. Grades and Line Options are carried out in AtLaunch and Model Life cubes which is not in scope of this document. Dimension Build w.r.t. Project Description and Reference Currency change are carried out in Text Data cube, so only those parts are discussed in this document.
    2. Project Description Build (Detailed process flow)
    The Project Description Build is carried out in the following steps:
    •     First, any Lock on the particular PMV is checked. If not locked next operation is carried out.
    •     Database availability is checked next (whether any other Dimension build is happening that time or not) and accordingly the availability flag is updated in TextData cube.
    •     Next cache is set from high to low to carry out dimension build.
    •     After cache setting, one rule file at a time is taken (as given in the cfgDL sheet) and dimension build is performed by using the Rule file and text file (created in local by input packages) on the intended cube.
    •     For a particular Rule file “GCM_FDIM” which is used to build CCM information in TextData cube, the following steps are followed by the tool itself:
    o     From the TextData cube all the child members under CCM member under Grades dimension are fetched by “GetMbrInfo” function (GetMbrInfo is used around 2000 to 3000 times).
    o     The child members under CCM for that particular PMV combination are deleted (if previously build).
    •     New child members under CCM are build based on the information provided in the text file F1G_<Project>-<Milestone>-<Version>.txt
    •     Once CCM is build rest of the rule files are used to carry the dimension build operation.
    •     The Dimension build process is carried out by building dimensions as well as updating some flags (loading data).
    •     Reference Currency is updated (if required) at last.
    Why this cube hang up is happening?
    Thanks in advance

    53 questions, all still open. Would you mind marking them as closed as without at least the "question is closed" tag, there's no way for future readers to know if your issues have been resolved or not. I know that I personally use this board for answers quite often and it really helps me when I see that a question has been adequately answered. Points assigned to those who helped you is a nice touch.
    Now to your question: did you by any chance change from one Essbase server to another? You didn't state if this build issue happens all the time, or only if you do all three databases, or much of anything in your post as to the actual process of failure, so I'm kind of guessing wildly on this. If true, you might want to look at: http://timtows-hyperion-blog.blogspot.com/2007/12/essbase-api-error-fix-geeky.html
    Regards,
    Cameron Lackpour
    P.S. MMIC, GlennS, and I were just discussing your kind of build-hierarchy-in-Excel approach last week and how infrequently it's seen nowadays. Not a criticism, I personally like these old-school approaches, probably because I've built one or two myself.

  • Calling the packager as part of the automated build process

    Hi,
    Is it possible to call the iPhone packager via command line or ANT script? We are developing a pure ActionScript application, and as part of the build process for this app, we'd like to call the packager to build the IPA file.
    Is this possible?
    Stephen

    Is possible.
    This is a piece from my ant build the variables must be configured properly
        <target name="test_package_iphone" depends="-chkName, -iPhonePWD" description="packageApp">
            <apply executable="${PFI_BAT}" parallel="true" dir="${DEBUG_DIR}" relative="true">
                <arg value="-package"/>
                <arg value="-target"/>
                <arg value="ipa-test"/>
                <arg value="-provisioning-profile"/>
                <arg value="${IPHONE_PROVISIONING}"/>
                <arg value="-storetype"/>
                <arg value="pkcs12"/>
                <arg value="-keystore"/>
                <arg value="${IPHONE_KEYSTORE}"/>
                <arg value="-storepass"/>
                <arg value="${IPHONE_PASSWORD}"/>
                <arg value="${app.name}.ipa"/>
                <arg value="${app.name}-app.xml"/>
                <arg value="${app.name}.swf"/>
                <arg value="-C"/>
                <arg value="${ASSETS_DIR}"/>
                <srcfile/>
                <fileset dir="${ASSETS_DIR}"/>
            </apply>
        </target>

  • What I learned in the mortgage and build process

    What I learned in my 8 month loan and new build process. -don't sweat the small stuff -no news is good news.  If you send in the requested docs, and you don't hear back quickly, than all is good.  Understand the farther out from closing you are, the deeper in the stack your file is.  You are not the only client.  At any one time the money guy has a closing on the horizon that will have priority, if your new build is due to finish in 4 more months, well guess what?  All I asked was when MY closing happens in 4 days to have my file at the top, and I was reassured that would be the case. -In my situation the lender, sales, and builder all came under one umbrella.  There are advantages and disadvantages of this scenario.  I read the horror stories no one was looking out for me, I was going to get roasted etc.  I had none of that.  They were very professional. In the end I have a great home, and they made some money.  Its called business.  Because all worked for the same company they were committed to getting me in this house.  All 3 were responsive, and each knew what the other 2 were doing.  I was quickly preapproved, they only wanted 500 down in earnest, and they broke ground within 30 days after the contract was signed.  They paid ALL closing costs, over 12,0000 dollars worth.  The house is beautiful and well built.  I've had a few minor issues (ALL new houses do) that were promptly addressed and satisfied.    -My way to a new house is the middle method.  1st you pick out a spec house in the community and just move in.  Works for most people.  2nd you do like I did.  Pick a plan from the builder for that community.  You get to pick out colors, options etc.  The price given is gonna be the basic house, check that list carefully.  In my case the house had many "Upgraded" options as standard.  As a incentive I was given another 8,000 to use at the design center.  Well we spent that and another 7 LOL.  Realize it does not take long to spend 10k at the design center.  3rd option is the true custom build.  You buy the lot, get the architect to draw up precisely what you want, and go find the builder, and a construction loan.  You have to know what you're doing if you go this way.  Its a lot of work, and I entertained no notion of this option.  I mean you're gonna spend hours (days?) in Lowe's looking at door knobs, backspaslh, lights.  In my route the designers had all that narrowed down for ya, so instead of looking at hundreds of tiles you chose from about 30.  I liked that.  Understand the builder has vendors for all that stuff, and buy it at a good price, and why they were able to build me a pretty good house for the price. -Stuff is gonna happen.  Docs will be misplaced, wrongly shredded, or deleted and have to be reexcuted.  Weather will be bad=more delays.  Suppliers get behind and can't get stuff to the job site.  Don't let it ruin your day.  Just resend the docs. -the people in the pipeline work best under pressure, they're let ya know when its time to sweat. -I kept a accordion file of the stuff I turned into the money people, I kept it on my desk for quick reference for months.  It became a part of me.  A month after closing it now sits on my bookcase.  I look to it when I want to be reminded what it took to get me here.  It truly represents almost 40 years of work and life.  I think I'm gonna have it buried with me.  I suggest you keep a file. -don't try to match wits with these guys.  A couple of times I was asked for stuff that I thought had no revelance, but I did my duty and just got it up and sent the requested info. -They want you to buy THIS house.  -Know the scrore going in=understand and know YOUR credit file and how it got there and how to get it better.  It will make the process much easier.  I really didn't do that because I didn't know anything.  I was lucky, I had a clean file, my only problem was lack of revolving credit.  Because I had 6 months to work it, I was advised to go out and pick 2 more cards.  I did and my scores improved 25 points right away. -if you are going to engage collections on your file, do it before applying, or get some solid advice if you're gonna do it while in the process. -do not become a slave to the process.  While all this going on, live your life.  Do the stuff you like doing.  When you sit around and wonder what they're gonna do about your driveway all the time you whip up all kinds of ugly scenarios.    -if you have issues of confrontaion, controversey, and uncooperation among any of the 3, and its not gettin better, step back and take a look. -try to get good snacks at the closing.  I wanted nachos but got Keebler oatmeal cookies and mtn dew. And thats all I can think of right now.   

    Which means tomorrow is when we get the new update for our iPhones and I just found the answer to my question, I don't care for the new iPods, just wanted to know when the update will be available
    Message was edited by: Schmitty83

  • Automating the Patch Process for a group of servers.

    Hey Team,
    We have SCCM & SCOM 2012 is place.
    We are looking for automating the server patching only for a group of serves  and also to ensure patch kickoff times between scheduled maintenance period for ex. between 04:00 AM to 06:00
    AM on Mondays.
    Process required:
    1. The server should enter into Maintenance Mode by 04:00 AM
    2. Stop a particular service (production impact service).
    3. Patch all the required updates and reboot the servers once all patches are updated.
    4. The server should come out of maintenance mode at 06:00 AM
    please let me know how best we can fulfilll this requirement.
    -Vrkuamr01 
    RajKumar

    I did a presentation on that back in 2012 -
    http://vimeo.com/nicconf/review/35066199/f133f8e788 It's using ConfigMgr and SCORCH to make it Work.
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • I am automating the process of sending appointment reminders to my clients. I started with an alert with an email in calendar using the clients email address as a custom entry in my me card in my contacts. this was resulting in three emails being sent wit

    I am automating the process of sending appointment reminders to my clients. I started with an alert with an email in calendar using the clients email address as a custom entry in my me card in my contacts. this was resulting in three emails being sent with slightly different versions of the same address (see my previous post). Heating someone else's suggestion I created a workflow file to send an email and calling that file from an alert on my calendar. This is working and sends only one email to the client.
    My calendar is on I cloud and I access it from three different computers so I can keep my appointment calendar current. The files that send the email only exist on one computer. My other computers show error messages when those emails get sent. It seems that each computer wants to send the email. It's a small problem but is there a way that I could not get those alerts.
    But appreciate any thoughts about this. It seems like both problems might be related to the iCloud system.
    Thank you in advance,
    Michael

    Good work, catch so far Michael, does seem to be a "feature" of iCloud syncing, not sure what you could do to disable it.

  • A friend set me up with icloud and in the process he lost some of the book i was listening to. I can't find it in my ipod or on my computer. It is part one and two of a book; interest part three showed up hough.

    A friend set me up with icloud on my ipod touch and in the process lost part one and two of the book I had purchased from itunes. I searched for it and it is not in my ipod any longer, although part 3 is there.  I tried to download it again from itunes store but they said I already purchased it and I didn't want to be charged again. What can I do? I am not happy at all because all I did with my Ipod was listen to my book and now I can't.

    Hi.
    If you've bought it from iTunes, you should be able to re-download it for free.
    Download directly from iPod by going to the iTunes Store-App and find the "Purchased"-menu. From here you should get a complete list of all your bought items and the ability to re-download.
    Download from iTunes on PC/Mac by opening iTunes > Go to iTunes Store > Go to the menubar on the left and choose "Purchased". Now, from the appearing window select the proper categori on top of the screen.
    I hope this was helpful.

  • Automating the process of equipment creation

    Hi,
    I am Pretty new to this domain. i want to know some basic functionality on CS processing. As i know we are make use of equipment master for the warranty related information and against this we are creating notification. My question is can we take serial number as reference object and is there any why in which the equipment master can be automated with all the sales information to avoid the data entry process. Please apologies in case you find the question meaning less.
    With Regards
    Sen JOB

    Hi,
    Welcome to the FORUM.
    Yes It should be possible. as follows:
    As you are Maintaining Serial Number profile, you would have assigned to Material Master , in that there is an option to check for automatic Equipment creation, so when you make delivery with serial No. you mention Serial No. in "Extras" > Serial No. Field. (in VL01N), In the Display Box after entering the serial no. Please check the "Eqpt" Box, This enables you to get equipment created automatically, then you do PGI, billing.
    So We can control w.r.t Serial No. for the Equipments at Sales order level, or even at Delivery level.
    Now In order to Update your equipment details you try with "LSMW" use either "VA01u201D (Ref, Sales order) or "VL01N" (Ref. Delivery Doc.)  Here you do proper Field Mapping for the required sales details including Serial No.s etc.
    Hope this should work out.
    Regards
    DSR
    Edited by: D.Srinivasa Rao on Nov 24, 2011 2:11 PM

  • I recently updated to the OSX 10.8.3 Operating Sistem.  I am writing a book and now cannot open any word document I've created.  Could not find a newer version of the Microsoft Word Processing Program.  Is Pages the next thing? Can I recover my documents?

    I recently updated to the OSX 10.8.3 Operating Sistem.  I am writing a book and now cannot open any word document I've created with the old system.  Could not find a newer version of the Microsoft Word Processing Program.  Is Pages the next thing? Can I recover my documents?  How?

    I'm in the same boat: new to OS X and Mac, and in the middle of a book. I switched because I heard about the the ease of using Mac, but so far, for me, it's been a nightmare. I bought 2011 Office Mac and hate everything about it, the most recent being the inability to open or cut or paste any of my original word files. I understand that this could have easily been done with earlier versions, but not Mountain Lion (which I learned is what OSX is.) Since I work with language, I am amazed at the assumptions of the Apple community. It helps to use common language and explain even the basics.  
    So all the helpful hints to use the latest version of Office Mac are to no avail. Now what?

Maybe you are looking for

  • Ajuda, Help, Ayuda!

    Meu Curve 9300 de repente apareceu a seguinte mensagem "Não foi possível iniciar a câmera. Feche os outros aplicativos e tente abrir novamente a câmara." Eu tentei desligar e tirar a bateria e nada funcionou, o que fazer? My Curve 9300 suddenly appea

  • How do I set up a plain, text only document?

    I've been using TextEdit for all my word processing for the past several years. Now, I'd like to use iWork 09 but for the life of me can't figure out how to do a PLAIN old text document. The margin markers won' move outside of the  1" pre-set border

  • Updating UDFs in the UDF form of a sales order

    I got the UDF form of a corresponding main sales order form. I am trying to set a value for one of the UDFs there, but I get a 'General Failure' exception (Simply trying to set the edittext's UDFItem.Value or UDFItem.String properties) I know I have

  • Airport express 802.11 solid green but not working

    My airport express has been working for several months but will not now. I bought it to extend our internet to the upstairs as it was too far from out internet location. I have restarted it and moved to different outlets upstairs, but it will not wor

  • Archiving Document Factory output to CMOD

    Hi There, In my Documker 12.3 Factory implememtation I want real time archival to be done on CMOD (Content Manager On Demand). I am not sure if this is possible and if so how? lots of question is arising.... if the the archival will be synchronous, w