Auto-kick off MaxL script after Oracle GL data load?

Hi guys, this question will involve 2 different modules: Hyperion and Oracle GL.
My client has their accounting department updating Oracle GL on a daily basis. My end-user client would like to write a script to automatically kick off the existing MaxL script which is for our daily data load in Hyperion. Currently, the MaxL script is manually executed.
What's the best approach to build a connection for both modules to communicate with each other? Can we use a timer to trigger the run? If so, how?

#1 External scheduler.
I've worked on Appworx and it has build a chain dependent task. There are many other external schedulers like Tivoli,....
#2 As Daniel pointed out you can use Windows scheduler.
For every successful GL load add a file to a folder which is accessible for your Essbase task.
COPY Nul C:\Hyperion\Scripts\Trigger\GL_Load_Finished.txt
Create another bat file which is scheduled to run on every 5 or 10 mins (this should start just after your GL Load scheduled task)
This is an example i've for a triggered Essbase job.
IF EXIST %BASE_DIR%\Trigger\Full_Build_Started.txt (
Echo "Full Build started"
) else (
     IF EXIST %BASE_DIR%\Trigger\Custom_Build_Started.txt (
     Echo "Custom Build started"
     ) else (
          IF EXIST %BASE_DIR%\Trigger\Post_Build_Batch_Started.txt (
          Echo "Post Build started"
          ) else (
          IF EXIST %BASE_DIR%\Trigger\Start_Full_Build.txt (
          Echo "Trigger found starting batch"
          MOVE %BASE_DIR%\Trigger\Start_Batch.txt %BASE_DIR%\Trigger\Full_Build_Started.txt
          call %BASE_DIR%\Scripts\Batch_Files\Monthly_Build_All_Cubes.bat
          ) else (
               IF EXIST %BASE_DIR%\Trigger\Start_Custom_Build.txt (
               Echo "Trigger found starting Custom batch"
               MOVE %BASE_DIR%\Trigger\Start_Custom_Batch.txt %BASE_DIR%\Trigger\Custom_Build_Started.txt
               call %BASE_DIR%\Scripts\Batch_Files\Monthly_Build_All_Cubes_Custom.bat
               ) else (
                    IF EXIST %BASE_DIR%\Trigger\Start_Post_Build_Batch.txt (
                    Echo "Trigger found starting Post Build batch"
                    MOVE %BASE_DIR%\Trigger\Start_Post_Build_Batch.txt %BASE_DIR%\Trigger\Post_Build_Batch_Started.txt
                    call %BASE_DIR%\Scripts\Batch_Files\Monthly_Post_Build_All_Cubes.bat
)So this bat file if it finds Start_Full_Build.txt in the trigger location, it'll rename that to Full_Build_Started.txt and will call the Full Build (likewise for custom and post build)
Regards
Celvin
http://www.orahyplabs.com

Similar Messages

  • VB Button to kick off a script

    Hi Experts, can anyone please tell me if there is a way to create a VB Button on a template to kick off a script?  We tried sending in data based on formulas in a template but realize it would be much quicker via script.  It would have to be seemless for our end users so a button to do this would be optimal.  Any suggestions? Thanks, Tracey

    Hi,
    I have the VBA working with one exception, it brings up the script I want to run but then I need to click "Finish" to actually launch the script.  My Code is below.  How can I have it automatically run the script without me having to click "Finish" on the dialouge prompt/window?
    PS - Even though the teamid is Company (Public) I still needed to leave that String blank in the DataManagerRunPackage line for it to work... not sure why.
    Thanks all!
    Sub RUNPACKAGE()
    Dim ea As New FPMXLClient.EPMAddInAutomation
    Dim packageId As String, groupId As String, teamId As String
    ea.DataManagerRunPackage "FPP_SPREAD", "Data Management", ""
    End Sub

  • Kick off SSIS master package once new data gets into a transactional table

    hello
    I have a SSIS master package.. I also have an UI which the user uses to configure up some date ranges (that I need to use to load the data from the package). After date configuration, when user clicks on RUN SSIS button in UI, that configured data gets loaded
    up in a transactional db table. Once new data is entered into that table, i need to kick off this master SSIS package.
    Question is , is there any other method besides using table triggers?
    Please advice.
    Thanks

    Another method is to have a automated job created in SQL Agent which keeps on polling the transactional table. you can configure it to run periodically (may be every 30 mins etc). Each time it starts it needs to check the status of a table which captures
    details of whether user has pressed RUN SSIS button (you need to include that logic in UI to set a bit in a status table when button is pressed). If status is set, it will check if transactional table has data (IF EXISTS(SELECT 1 FROM Table)). Once these two
    are truw it will go to next step where it calls master package. At the end it needs to log somewhere that data transfer is completed and also need to reset the bit field as well.
    So job will have three steps
    Step1: check bit is set and table has data
    ie
    IF (SELECT bitField FROM StatusTable)=1 AND EXISTS(SELECT 1 FROM TTable)
    SELECT 1
    ELSE
    RAISERROR 'Table not ready',16,1
    and set job advanced option as
    quit job reporting success for failure condition and go to next step for success condition
    Step2: Execute master package
    Step3: rest status bit and update daya transfer status in a log table with date of run,record count etc
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • FDM event scripts firing twice during data loads

    Here's an interesting one. I have added the following to three different event scripts (one at a time, ensuring only one of these exists at any one time), to clear data before loading to Essbase:
    Event Script content:
    ' Declare local variables
    Dim objShell
    Dim strCMD
    ' Call MaxL script to run data clear calculation.
    Set objShell = CreateObject("WScript.Shell")
    strCMD = "D:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseClient\bin\startMAXL.cmd D:\Test.mxl"
    API.DataWindow.Utilities.mShellAndWait strCMD, 0
    MaxL Script:
    login ******* identified by ******* on *******;
    execute calculation 'FIX("Member1","Member2") CLEARDATA "Member3"; ENDFIX' on *******.*******;
    exit;
    However, it appears that the clear is carried out twice, both before and after the data has been loaded to Essbase. This has been verified at each step by checking the Essbase application log:
    No event script:
    - No Essbase data clear in application log
    Adding above to "BefExportToDat" event script:
    - Script is executed once after clicking on Export in FDM Web Client (before the "Target System Load" modal popup is displayed). Entries are visible in Essbase Application log.
    - Script is then executed a second time when clicking on the OK button in the "Target System Load" modal popup. Entries are visible in Essbase Application log.
    Adding above to "AftExportToDat" event script:
    - Script is executed once after clicking on Export in FDM Web Client (before the "Target System Load" modal popup is displayed). Entries are visible in Essbase Application log.
    - Script is then executed a second time when clicking on the OK button in the "Target System Load" modal popup. Entries are visible in Essbase Application log.
    Adding above to "BefLoad" event script:
    - Script is NOT executed after clicking on Export in FDM Web Client (before the "Target System Load" modal popup is displayed).
    - Script is executed AFTER the data load to Essbase when clicking on the OK button in the "Target System Load" modal popup. Entries are visible in Essbase Application log.
    Some notes on the above:
    1. "BefExportToDat" and "AftExportToDat" are both executed twice, before and after the "Target System Load" modal popup. :-(
    2. "BefLoad" is executed AFTER the data is loaded to Essbase! :-( :-(
    Does anyone please have any idea how we might execute an Essbase database clear before loading data, and not after we have loaded fresh data? And perhaps on why the above event scripts appear to be firing twice?! There does not appear to be any logic to this!
    BefExportToDat - Essbase Application Log entries:
    +[Wed May 16 16:19:51 2012]Local/Monthly/Monthly/admin@Native Directory/140095859451648/Info(1013091)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:19:51 2012]Local/Monthly/Monthly/admin@Native Directory/140095859451648/Info(1013162)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:19:51 2012]Local/Monthly/Monthly/admin@Native Directory/140095859451648/Info(1012555)+
    +Clearing data from [Member3] partition with fixed members [Period(Member1); Scenario(Member2)]+
    +...+
    +[Wed May 16 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info(1003037)+
    Data Load Updated [98] cells
    +[Wed May 16 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info(1003024)+
    Data Load Elapsed Time : [0.52] seconds
    +...+
    +[Wed May 16 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info(1013091)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info(1013162)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info(1012555)+
    +Clearing data from [Member3] partition with fixed members [Period(Member1); Scenario(Member2)]+
    AftExportToDat - Essbase Application Log entries:
    +[Wed May 16 16:21:32 2012]Local/Monthly/Monthly/admin@Native Directory/140095933069056/Info(1013091)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:21:32 2012]Local/Monthly/Monthly/admin@Native Directory/140095933069056/Info(1013162)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:21:32 2012]Local/Monthly/Monthly/admin@Native Directory/140095933069056/Info(1012555)+
    +Clearing data from [Member3] partition with fixed members [Period(Member1); Scenario(Member2)]+
    +...+
    +[Wed May 16 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info(1003037)+
    Data Load Updated [98] cells
    +[Wed May 16 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info(1003024)+
    Data Load Elapsed Time : [0.52] seconds
    +...+
    +[Wed May 16 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095928858368/Info(1013091)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095928858368/Info(1013162)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095928858368/Info(1012555)+
    +Clearing data from [Member3] partition with fixed members [Period(Member1); Scenario(Member2)]+
    BefLoad - Essbase Application Log entries:
    +[Wed May 16 16:23:43 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info(1013091)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:23:43 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info(1013162)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:23:43 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info(1012555)+
    +Clearing data from [Member3] partition with fixed members [Period(Member1); Scenario(Member2)]+
    +...+
    +[Wed May 16 16:23:44 2012]Local/Monthly/Monthly/admin@Native Directory/140095929911040/Info(1003037)+
    Data Load Updated [98] cells
    +[Wed May 16 16:23:44 2012]Local/Monthly/Monthly/admin@Native Directory/140095929911040/Info(1003024)+
    Data Load Elapsed Time : [0.52] seconds
    +...+
    +[Wed May 16 16:23:45 2012]Local/Monthly/Monthly/admin@Native Directory/140095860504320/Info(1013091)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:23:45 2012]Local/Monthly/Monthly/admin@Native Directory/140095860504320/Info(1013162)+
    +Received Command [Calculate] from user [admin@Native Directory]+
    +[Wed May 16 16:23:45 2012]Local/Monthly/Monthly/admin@Native Directory/140095860504320/Info(1012555)+
    +Clearing data from [Member3] partition with fixed members [Period(Member1); Scenario(Member2)]+

    Hi Larry,
    As mentioned, our exports do not appear to be generating the "-B.Dat" and "-C.Dat" files at present. However, you are correct with the Export and Load event scripts firing twice (once for the main TB file and again for the journal file). Does this also mean it could continue to fire an additional two times for the "-B.Dat" and "-C.Dat" files?
    On the last run, the output was as follows with the modified scripts:
    After clicking on Export in Workflow, the Target System Load modal popup is displayed, and the first two files have been generated:
    14.24.15.0527_BefExportToDat.txt
    14.24.17.0617_AftExportToDat.txt
    After clicking on OK in the Target System Load modal popup, the actual load to Essbase takes place. A further six files are generated:
    14.24.21.0289_BefLoad.txt
    14.24.22.0117_AftLoad.txt
    *14.24.22.0152_BefExportToDat-A.txt*
    *14.24.22.0414_AftExportToDat-A.txt*
    *14.24.22.0433_BefLoad-A.txt*
    *14.24.22.0652_AftLoad-A.txt*
    This makes a lot more sense, since one can see that the event scripts are being run a second time against the journal files during the data load. Many thanks, this solves my problem as I can now place my script where I want in the process chain. It's just a shame that there are not separate event scripts to distinguish between the various .Dat exports/loads, which are clearly occuring at separate times in the process chain.
    Many thanks! :-)
    P.S. Updated script below if anyone wishes to use it:
    Sub BefExportToDat(strLoc, strCat, strPer, strTCat, strTPer, strFile)
    Dim strF, fso, tf, t, temp, m, miliseconds, strSuf
    t = Timer
    temp = Int(t)
    m = Int((t-temp)*1000)
    miliseconds = String(4 - Len(m), "0") & m
    strF = "D:\TEST\" & Replace(Time, ":", ".") & "." & miliseconds & "_BefExportToDat"
    strSuf = UCase(Left(Right(strFile,6),2))
    If strSuf = "-A" Or strSuf = "-B" Or strSuf = "-C" Then
    strF = strF & UCase(strSuf) & ".txt"
    Else
    strF = strF & ".txt"
    End If
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set tf = fso.CreateTextFile(strF, True)
    tf.WriteLine(strFile)
    tf.Close
    Set fso = Nothing
    End Sub

  • Error message after successful manual data load

    On our Stautory App, we have renamed our Accounts Dim to StatAccounts.
    On data send I get an error message after data is submitted
    successfully:
    Application     :       STATUTORYCONSOL
           Status  :       Success
           Submitted Count :       1
           Accepted Count  :       1
           Rejected Count  :       0
                   - Error Message -
    ExecuteBaseLogic::Invalid dimension: ACCOUNT
    We have renamed both Constants.lgl and System_Constants.lgl to
    StatAccounts and yet the error message persists!
    Regards
    JP

    Hi,
    The resolution was as follows:
    The app set I used as the "template" had a custom stored procedure in it which was being activated on data load. This stored procedure was caliing the ACCOUNT dimension instead of the STATACCOUNTS dimension.
    We have deleted all unused packages and the issue is resolved...
    Thanks to everyone for responses.
    JP

  • Auto populate Infopath 2013 fields after entering a data into a textbox.

    Firstly can I please say I am sorry to be revisiting this but I just can sort it out!!
    I have 3 fields in a SharePoint 2013 list, Code, Section, SubSection, after some guidance I am trying to use rules to populate Section/SubSection when a Code is entered.  I am getting the Data for the three Fields from an XML file. The form can see
    the XML data fine. Here's the BUT.. I cant seem to get the quering correct to autofil the other two fields.
    I promise this is the last time I shall ask for help on this!
    TIA
    Jon

    Thanks Cameron.
    No that’s not what I need, not Cascading Drop Downs, I want TextBox’s to be populated.
    I have 3 fields, Code, Section, and SubSection, when a user enters a code into the first box, a rule queries the list, I(I have XML or SharePoint List) to populate the Section/SubSection with
    the data relating to the Code.
    So far I have a rule that on FormLoad when the Code field changes it queries the XML list for the info.  The problem I have it I can’t get the query correct.
    Thanks
    Jon

  • Oracle rejecting data loads into tables (data looks fine to me)

    Oracle 10XE barfs on loading data into the two table structures below. I can provide the two .sql files containing the data if someone is willing to take a look.
    CREATE TABLE A2NoteHeader (
         noteHeaderID number(5,0) NOT NULL ,
         ParentNote number(5,0) NULL ,
         dateCreated timestamp NULL ,
         noteTitle nvarchar2 (255) ,
         deleted nvarchar2 (1)
    CREATE TABLE A2NoteLine (
         noteHeaderID number(5,0) NOT NULL ,
         noteLineID number(5,0) NOT NULL ,
         noteLine nvarchar2 (255) ,
         deleted nvarchar2 (1)
    );

    How are you loading the data - via the web based UI, or using the SQLLoad command line ?
    Do you get any error messages ?
    How is the data delimited ?
    If using SQL Loader, what does the ctl file look like ?
    Can you narrow the problem down to one or two rows that produce the problem and paste the file content here ? - more eyeballs that way.

  • Waiting for a process kicked off by servlet

    I am kicking off a script on a Unix machine from my servlet on os390 using,
    Process p = rt.exec("full_path/script");
    How do I know when the process is complete so that I can show the xml page that the process is creating?
    Justin Mennen
    [email protected]

    there is a method waitFor() in Process meant for that purpose

  • Batch File and MaxL Script

    I have a MaxL script that exports level0 data from various cubes. I have a batch file to call that script at daily intervals.
    I want to name the output something different each day (preferably NAMEmmdd type format). I realize I can add a rename or move to the batch but wonder if there is a MaxL method that will allow me to export to a different name?
    Current MaxL is simply
    export database APP.DB level0 data to data_file "'$Arborpath\am1119.txt'";
    Ideas or direction to go to learn answer?
    T,
    J

    Hi,
    You can pass in variables into maxl, so you the calling batch file can pass in a variable which holds the filename with the current day...
    For example you have a batch file
    essmsh c:\temp\export.mxl 'C:\temp\output%DATE:~3,2%%DATE:~0,2%.txt'
    If that was run today it would pass in 'C:\temp\output1118.txt
    Now in your maxl you just reference the variable with
    export database sample.basic level0 data to data_file $1;
    the $1 relates to the variable which was passed in, the 1 being the position it was passed in.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Clusterware 10g: what kicks off 3rd-party failover script?

    I am trying to use Oracle Clusterware 10g (installed on two identical Dell Linux boxes,
    OEL 5.2) to failover a 3rd-party application, specifically websphere MQ. I have a ksh
    script that is supposed to start/stop/restart the application.
    Clusterware will fail over the IP address fine to the other box if I yank the primary box's
    cable, but the app itself doesn't fail over. If I knew what (in Clusterware) did the
    "kicking off" of the ksh script I could troubleshoot it more. I used the instructions in:
    http://www.oracle.com/technology/products/database/clusterware/pdf/TWP-Oracle-Clusterware-3rd-party.pdf
    and I'm pretty sure I did it right.
    Any ideas?

    Here is the action script:
    #!/bin/ksh
    LOG="/san1/var/mqm/config/Controlmq.log"
    echo "script started at `date` from `hostname`" >> $LOG
    ############################### func_stopMQ ######################################
    func_stopMQ () {
    QUEUENAME=$1
    while [[ `ps -ef | grep $QUEUENAME | grep -v grep | grep -v Control| awk {'print $2'} | wc -l` -gt 1 ]]
    do
    echo "DEBUG : `ps -ef | grep $QUEUENAME | grep -v grep | grep -v Control` " >> $LOG
    echo "there are `ps -ef | grep $QUEUENAME | grep -v grep | grep -v Control| awk {'print $2'} | wc -l` processes running associated with $QUEUENAME on `hostname`" >> $LOG
    endmqm $QUEUENAME
    endmqlsr -m $QUEUENAME
    ## echo "sleeping for 10 seconds before checking again"
    sleep 10
    done
    ## echo "All set, there are no processes associated with $QUEUENAME "
    echo "stopped $QUEUENAME at `date` from `hostname`" >> $LOG
    return 0
    ################################ func_startMQ ######################################
    func_startMQ () {
    QUEUENAME=$1
    case $QUEUENAME in
    MECM|MEQM)
    PORT=1414
    MEQA|MEQB)
    PORT=5077
    esac
    ## echo "starting $QUEUENAME"
    strmqm $QUEUENAME
    sleep 5
    ## echo "STARTING listener for $QUEUENAME"
    runmqlsr -t tcp -p $PORT -m $QUEUENAME &
    sleep 5
    runmqsc $QUEUENAME < /san1/var/mqm/config/startCH_$QUEUENAME.DEF
    echo "started $QUEUENAME at `date` from `hostname`" >> $LOG
    return 0
    ################################ func_checkMQ ######################################
    func_checkMQ () {
    QUEUENAME=$1
    PROCESSCOUNT=`ps -ef | grep $QUEUENAME | grep -v grep| grep -v Control| awk {'print $2'} | wc -l`
    if [ $PROCESSCOUNT > 1  ]
    then
    echo "there are $PROCESSCOUNT processes associated with $QUEUENAME" >> $LOG
    echo ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::" >> $LOG
    echo "Status of $QUEUENAME : " >> $LOG
    runmqsc $QUEUENAME < /san1/var/mqm/config/ChannelStatus.DEFS
    return 0
    else
    echo "there are $PROCESSCOUNT processes associated with $QUEUENAME" >> $LOG
    echo ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::" >> $LOG
    echo "Status of $QUEUENAME : " >> $LOG
    runmqsc $QUEUENAME < /san1/var/mqm/config/ChannelStatus.DEFS
    return 1
    fi
    ACTION=$1
    # QUEUENAME=$2
    case $ACTION in
    start)
    ## func_startMQ MECM
    ## func_startMQ MEQA
    func_startMQ MEQM
    func_startMQ MEQB
    stop)
    ## func_stopMQ MECM
    ## func_stopMQ MEQA
    func_stopMQ MEQM
    func_stopMQ MEQB
    check)
    ## func_checkMQ MECM
    ## func_checkMQ MEQA
    func_checkMQ MEQB
    echo "Sorry, the proper usage for this command is ControlMQ.sh start|stop|check"
    exit
    esac

  • Canon 60D does not resume after auto power off

    My Canon 60D does not resume after auto power off. It shows the empty battery icon when I press the shutter button, even the battey is fully charged. If I remove the battery and insert back it will resume to work. Any one had the same experience and know how to resolve it?

    The power switch is actually a "software" switch.  It's not like a light switch in that it doesn't actually provide or deprive the camera of power... only removing the battery will deprive the camera of power.  This is why it doesn't actually just go dark when you switch off power... instead you'll usually see it perform a sensor clean cycle and then power down.  The camera is technically in a kind of "sleep" mode monitoring the switch.  If a Canon camera ever seems to lock up and ignore all input, the battery should be temporarily removed to "reboot" the camera.   There is no "setting" in a camera that can configure it to ignore buttons.   Although... if the camera is in an automatic mode, some input is deliberately ignored to make it easier to use the camera.  Put the mode dial in a "creative zone" mode (P, Tv, Av, or M) and all buttons and menus should be accessible. You might try connecting the camera via USB cable to your computer and then attempt to control the camera via the Canon EOS Utility to see if that works.  If the camera responds fine to the computer control, then likely the camera's main board and circuits are working fine and it may just be a wiring problem -- as if some cable simply isn't getting a very solid connection.  If this is a wiring issue, you are probably better off sending it in for service.  

  • Hello- I use a radio app with my iPod touch 5, when I plug it in to my JBL dock speaker, it shuts down after about 10 minutes. Can I defeat this auto shut off mode ? thanks -

    Hello- I use a radio app with my iPod touch 5, when I plug it in to my JBL dock speaker, it shuts down after about 10 minutes. Can I defeat this auto shut off mode ? thanks -

    Al that is left are the standard fixes:
    - Reset the dock
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.

  • Idvd movie kicks off after 100 photos

    Help, first timing using iphoto and idvd. I'm making a movie slideshow for all the people that went on a trip to Hawaii with me. Everytime I burn one it kicks off after the first chapter or first 100 photos. I don't know what to do to fix.

    Welcome eyeshine99
    Not exactly sure what you mean by "kicks off" but here are a few useful slideshow links:
    http://docs.info.apple.com/article.html?artnum=302961
    http://docs.info.apple.com/article.html?path=iDVD/6.0/en/17.html
    http://lqgraphics.com/phototomovie.php
    Hope they Help.

  • I have a MacBook that had Mcafee on it and went to great lengths to get it off.  Unfortunately after running all the remove scripts and support from mcafee, in my console it still shows com.apple.launchd{1} with message (com.mcafee.virusscan.VshieldEPoint

    I have a MacBook that had Mcafee on it and went to great lengths to get it off.  Unfortunately after running all the remove scripts and support from mcafee, in my console it still shows com.apple.launchd{1} with message (com.mcafee.virusscan.VshieldEPointInterface[7881]) Exeted with exit code:1  Then the next line says will start in 10 seconds and it repeats endlessly.

    Hi there,
    You're running an old version of Safari. Before troubleshooting, try updating it to the latest version: 6.0. You can do this by clicking the Apple logo in the top left, then clicking Software update.
    You can also update to the latest version of OS X, 10.8 Mountain Lion, from the Mac App Store for $19.99, which will automatically install Safari 6 as well, but this isn't essential, only reccomended.
    Thanks, let me know if the update helps,
    Nathan

  • How do I get my ipod back on the school wifi after being kicked off?

    My school has password locked wifi, which every student knows the password to. Every so often, they kick people's iPod's off the wifi and it won't ever connect. Not during school, not football games or basketball games, not ever again. It really ticks me off because my iPod was kicked off today. I don't get on a lot during school but I do tweet and facebook during ball games. Is there a way to override/avoid the block? Could I maybe reset the iPod or the network settings? Or change something in the settings that'll let me back in? Thanks.

    There is nothning you can do on your end unless you want to purchases a device like this
    Verizon Wireless - Mobile Broadband -
    AT&T Mobile Hotspot MiFi Liberate - Graphite Mobile Hotspot from AT&T

Maybe you are looking for

  • Cannot sort a column in Numbers for iPad

    I have a Numbers IOS spreadsheet on my iPad which contains 6 worsheets. I can sort the columns in all but one worksheet. In the problem worsheet, when I tap on the grey bar above any column, the menu that appears excludes the "Sort" option. What is w

  • Problems with backspace in ServiceDesigner on IBM

    Hi Running ias9i we 1.1. When using the ServiceDesigner on a ex. Dell the backspace key functions fine, but when running on an IBM pc / laptop the backspace key do not function. Please advise null

  • How can I change application's web.xml in NetWeaver CE 7.1?

    Hello Experts, Please help me. I need to configure a J2EE application on NetWeaver 7.1, but I don't know how I can change the web.xml of the application. The web.xml of the app needs to be modified during the configuration. This can be achieved via s

  • [REPORT][How to run a report in background?]

    Hi there! I'm with a problem here. How do I make a report run background always, without the interaction of the user to select this type of execution? Thanks in advance.

  • Installing Oracle Apps 11i (11.5.7) on W2K Server, Bootstrap Failed

    Installing Oracle Apps 11i (11.5.7) on W2K Server: System Configuration: Oracle 11i E-Business Suite 11.5.7 Windows 2000 Server with Service Pack 2 Microsoft VC++ Installed from Microsoft Visual Studio 6.0 MKS tool kit for Developers 8.1 Gnu -> make-