Impossible to perform calculations in the background

I have System 9 bi + AAS9.3.0.1

From the console of the AAS I'm more able to run scripts of calculation in the background.

When I run the calc script I select "Run in background" and click "OK".

It seems to work. But when I check the background process I get the following:
-start and end times are the same
-status is always "successful".
I check my data and can check without calculations have been made.

I see that I can take a few minutes to perform calculations. I know this because I can run the same script calc in the forground and I see that it takes several minutes to run.

I was able to run in the background until about 2 weeks ago. I went as far as restarting all my servers without effect.

Any ideas what is the cause? Or how to fix?

Thank you
D

If I remember correctly, it was a bug.
Try to search for a file named workstatus.xml on the server of the EAS, rename the file and restart AAS.

See you soon

John
http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • Possible to run a MAXL calculation in the background?

    Hello

    I wonder if it is possible to run a MAXL calculation

    for example
    run the calculation 'ALL CALC'; on Sample.basic;

    as a process in the background?

    I have a very long and the end of a calculation dimbuild and load process via MAXL. I wanted that the calculation in the background so I can close the connection MAXL. Is this possible?

    Thx for your help.

    Welcome them
    Kevin

    Published by: Kevin Kraft on 21.12.2010 14:54

    I think the API requires an open handle to receive the success or failure on the Calc.

    I think about Windows, but why you could not run the script as a scheduled process? I was logged on Windows servers with my id and essmsh.exe observed sessions run in the context that I don't see that glass applications. I think it works for both my id (the id I connect with) and service ID. Wouldn't that accomplish the same thing?

    Kind regards

    Cameron Lackpour

  • Perform calculations using the number of records

    I'm working on a formula that calculates an employee vacation time. The employee of begins with a static balance, say 120. The employee can enter their vacation time, as they take. They cannot get it in increments of 8 hours or 4 hours, for each record in the database will reflect 8 or 4 hours. I want to be able to view a current balance for the employee. So if the employee connects and takes a week of vacation, they will have to enter 5 records with 8 hours each. How to calculate this to get the desired balance of 80? I'm not very fluent with calculations in the CF, but think that it must involve the Recordset. It's probably very easy, but I am confused.

    Any help would be great! Also if I didn't explain it properly, let me know and I'll try to provide more details.

    Jatrix wrote:
    >
    > Any help would be great! Also if I didn't explain it properly, let me know
    > and I'll try to provide more details.
    >

    Well, you * could * simply add all the fields "vactaionTime" of each
    record in the Recordset. I.E.





    #totalVac #.

    But it's really much easier to do with some simple SQL codes.

    SELECT empID, sum (vacTime) AS totalVacTime
    FROM EmployeeTable
    GROUP BY empID


    #empID # #totalVacTime #.

  • Continuously perform calculations on the data

    Hey guys,.

    So I have this program that generates pulses of signals using NOR-SCOPE, and I initially did so that each time that the user presses a button that they will perform certain calculations in order to generate a value that is stored in a table. My mentor now wants me to do so that it generates continuously pulse signals (not a single signal) and adds the values in a table. The signal seems so I need to use the parameter N samples on NI SCOPE as it does in the code below, although if anyone has a way to change this, it would be nice too.

    So basically, how can I calculate continuous pulse generated automatically over time signals? The user does not have to run the program and the computer does the rest.

    Thank you!

    You must migrate to a structure of producer/consumer. In the loop of the producer acquire the data contimuously and pass it to the loop of consumption. In the loop of the consumer, analyze the data and store the data as needed.

    A variation on the theme that I recommend is that instead of using a queue to pass data, use a user-defined event. The reason for this change is that your current code (which is basically what will end up in the loop of the consumer) is so pass data to loop through an event will allow him to fit into the current structure of the user interface.

    Oh, Yes, one more thing: get rid of the Express live. It's time to remove the training wheels...

    Mike...

  • Perform calculations between the weeks and categories

    Given this example, if I calculate the difference between each week the intention and filing to show in the lines of the plan again and again filing?
    Row#     SEM     STUDENT_LEVEL     COLLEGE     PROGRAM     STATUS     Y3W2     Y3W3     Y3W4     Y3W5     Y3W6
    
    1     40     GR     BN     BMA-SJ     14.Intend     132     132     137     139     139
    2     40     GR     BN     BMA-SJ     17.Deposit     100     111     115     114     117
    3     40     GR     BN     BMA-SJ     20.New Intend     0     0     0     0     0
    4     40     GR     BN     BMA-SJ     21.New Deposit     0     0     0     0     0
    For example, the value displayed in Col: Y3W3 line #4 deposit must be the result of line Y3W3 2 - Row 2 Y3W2. Digitally: 111 minus 100 = 11.
    Tier 4 after that calculation should look like:
    4     40     GR     BN     BMA-SJ     21.New Deposit     1     11     4     0     3
    If the change is negative, then we would show 0.

    There are also some Calc percentage within the week and the categories and between weeks and years, but if understand us this, we can hope that use to others, so we won't post the part yet.

    Here's the query portion and sampling data. The sample data are summarized from the level of detail:
    WITH ADMLIST AS 
    (
    SELECT 1 AS WEEKNO, 2009 AS YEAR,          40 AS SEM, 
        'GR' AS STUDENT_LEVEL,  'BN' AS COLLEGE, 'BMA-SJ' AS PROGRAM, 
        '14.Intend' AS STATUS,  139  AS TOT
    FROM DUAL UNION ALL 
    SELECT 1 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '17.Deposit',    94 FROM DUAL UNION ALL 
    SELECT 1 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '20.New Intend',  0 FROM DUAL UNION ALL 
    SELECT 1 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '21.New Deposit', 0 FROM DUAL UNION ALL 
    SELECT 2 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '14.Intend',    132 FROM DUAL UNION ALL 
    SELECT 2 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '17.Deposit',   100 FROM DUAL UNION ALL 
    SELECT 2 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '20.New Intend',  0 FROM DUAL UNION ALL 
    SELECT 2 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '21.New Deposit', 0 FROM DUAL UNION ALL 
    SELECT 3 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '14.Intend',    132 FROM DUAL UNION ALL 
    SELECT 3 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '17.Deposit',   111 FROM DUAL UNION ALL 
    SELECT 3 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '20.New Intend',  0 FROM DUAL UNION ALL 
    SELECT 3 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '21.New Deposit', 0 FROM DUAL UNION ALL 
    SELECT 4 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '14.Intend',    137 FROM DUAL UNION ALL 
    SELECT 4 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '17.Deposit',   115 FROM DUAL UNION ALL 
    SELECT 4 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '20.New Intend',  0 FROM DUAL UNION ALL 
    SELECT 4 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '21.New Deposit', 0 FROM DUAL UNION ALL 
    SELECT 5 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '14.Intend',    139 FROM DUAL UNION ALL 
    SELECT 5 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '17.Deposit',   114 FROM DUAL UNION ALL 
    SELECT 5 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '20.New Intend',  0 FROM DUAL UNION ALL 
    SELECT 5 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '21.New Deposit', 0 FROM DUAL UNION ALL 
    SELECT 6 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '14.Intend',    139 FROM DUAL UNION ALL 
    SELECT 6 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '17.Deposit',   117 FROM DUAL UNION ALL 
    SELECT 6 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '20.New Intend',  0 FROM DUAL UNION ALL 
    SELECT 6 , 2009, 40, 'GR', 'BN', 'BMA-SJ', '21.New Deposit', 0 FROM DUAL 
    )
    SELECT sem,
           student_level,
           college,
           program,
           status,
    --       max(CASE WHEN WEEKNO=2 AND YEAR=2007 THEN TOT END) AS Y1W2,
    --       max(CASE WHEN WEEKNO=3 AND YEAR=2007 THEN TOT END) AS Y1W3,
    --       max(CASE WHEN WEEKNO=4 AND YEAR=2007 THEN TOT END) AS Y1W4,
    --       max(CASE WHEN WEEKNO=5 AND YEAR=2007 THEN TOT END) AS Y1W5,
    --       max(CASE WHEN WEEKNO=6 AND YEAR=2007 THEN TOT END) AS Y1W6,
    --       max(CASE WHEN WEEKNO=2 AND YEAR=2008 THEN TOT END) AS Y2W2,
    --       max(CASE WHEN WEEKNO=3 AND YEAR=2008 THEN TOT END) AS Y2W3,
    --       max(CASE WHEN WEEKNO=4 AND YEAR=2008 THEN TOT END) AS Y2W4,
    --       max(CASE WHEN WEEKNO=5 AND YEAR=2008 THEN TOT END) AS Y2W5,
    --       max(CASE WHEN WEEKNO=6 AND YEAR=2008 THEN TOT END) AS Y2W6,
           max(CASE WHEN WEEKNO=2 AND YEAR=2009 THEN TOT END) AS Y3W2,
           max(CASE WHEN WEEKNO=3 AND YEAR=2009 THEN TOT END) AS Y3W3,
           max(CASE WHEN WEEKNO=4 AND YEAR=2009 THEN TOT END) AS Y3W4,
           max(CASE WHEN WEEKNO=5 AND YEAR=2009 THEN TOT END) AS Y3W5,
           max(CASE WHEN WEEKNO=6 AND YEAR=2009 THEN TOT END) AS Y3W6
    FROM ADMLIST
    GROUP BY sem,
             student_level,
             college,
             program,
             status
    ORDER BY 5;

    Hello

    You can get the difference from one week to the next (or 0) using the analytical LAG function, like this:

    GREATEST ( tot - LAG (tot) OVER ( PARTITION BY  status  -- and maybe other columns, like sem, student_level, ..., too
                                           ORDER BY      year
                          ,          weekno
                        )
           , 0
           )     AS dif
    

    Corresponds to the data you posted really what is in your tables, or is it the result of an earlier stage?

    If it's really in your tables, and then instead of select of your tables, select in a UNION of
    (a) your table except the lines where status = '21.New' file
    (b) your table, once again, with status ='21.New deposit "and the numbers of dif (as shown above) in the column tot.

    If the data you posted is a partially digested form of your RAW files, then dif can probably be incorporated into the digestion process.

    In any case, calculate dif until you rotate the data.

  • Can I perform calculations on the values of date?

    I'm trying to set a range of dates using two calendar features by entering a date "from" and a "to".

    This is done using a JavaScript that is bound to a textbox control for entering a date.  He is my date "from", if I can check this date against today to confirm that the date is later than today, that is in the future.  I have no experience with javascript, but know PASCAL.

    I then a second box with another calendar date, I want to automatically fill this box on the same date as the first area unless physically, the user wants to change the date of the last.

    Can anyone help?  I'd appreciate some tips so that I can try and learn a few Java along the way.

    GetField ("Text1") .value = s;

    There are two problems with that. The method is getField, not getfield. You must also pass the name of the field as a string. So it should be:

    s = getField("text1").value;

  • Perform tasks when the application is not developed

    Hello

    I want to on the rise - and download data to a Web server in my application. Are there ways for example (similar to the concept of 'Service' in Android) to perform tasks in the background so that the user can make other things downloading (for example open other applications, etc.).

    Kind regards

    BB apps work normally when put in the background, true multitasking.

    You can have a UiApplication and call requestBackground to put in the background.
    Or you can create a system without user interface module that runs in the background as a service.

  • Can I make an app that records the speed of the gps in the background for iOS and android?

    So is this possible? and how? the runtime behavior accuracy and background can be exactly the same as a native application?
    Thank you

    AIR apps can perform actions in the background, subject to availability of memory and behavior of the operating system.

    You can use the standard GeoLocation APIs.

    For iOS, I ask you through this

    http://help.Adobe.com/en_US/air/build/WSfffb011ac560372f7e64a7f12cd2dd1867-8000.html where it tells how you can listen to geolocation in the background

  • Unable to connect to the wireless network, error message "Windows could not finish repairing the problem because it is impossible to perform the following action. Renewal of your IP address.

    Original title: Unable to connect to the wireless network

    Unable to connect to the network wireless Toshiba Satellite A105 PC running Windows 7.  "Windows could not finish repairing the problem because it is impossible to perform the following action. Renewal of your IP address.  Works with Windows XP SP2, IE 8.00.6001.18702 file, I think that Version 3.  It has been installed on a disk provided by Microsoft after that old installation became corrupt (in the sense of Microsoft technical support.)  Before that, wireless network worked well.   (So unable to connect to the Internet for updates.)   Have tried to change the other settings and different messages acquired when it SHOWS that I am connected but cannot connect because of something to do with the certificate.  I don't remember what I did to try to solve this problem in the last days.

    I should add that I have tried the solutions of the previous forum on this topic, and none worked.

    Hi Marilynnla,

    Sorry to hear about the bad experience you encounter. Lets see if the network problem can somehow be archived.

    Read this article and follow the steps. Lets see if it helps in any way.

  • (SOLVED) Windows could not finish repairing the problem because it is impossible to perform the following action: renewing your IP address

    Computer Dell laptop Windows XP SP3 - processor Intel Celeron M 1.40 GHz, 512 MB Ram, ATI MOBILITY RADEON 9000

    The local connection is working fine but my wireless connection does not receive through my laptop. The wireless works since it goes through my PS3 and my sister's laptop perfectly.

    I used the repair, but it will say:
    Windows could not finish repairing the problem because it is impossible to perform the following action: renewing your IP address

    I used in the cmd command:
    ipconfig/renew
    Needless to say a message:
    No operations can be performed on the wireless network connection, although it has its media disconnected.

    Help, please

    Received my solution of another comforter

    Told to go to my router linksy page http://192.168.1.1 setup and change the wireless security mode. It is in mixed mode to WPA2/WPA and I changed it to WPA2 Personal and it worked!
    Thanks for trying to help JW! : D
  • How to perform a task in the background repeated

    I need to have a background process start as soon as the blackberry is turned on and stay in the background. Here it runs several times a function, say every half hour or so. Is this possible in webworks? I am very new to this, so I'm unable to do this part of my application. Any help would be appreciated!

    From your description, I guess that you are working on a smartphone application. If so, configure a listener in the background:

    
       
    
    

    On this page listener.html you can have the function that runs on an interval:

    function foo(){
    //processing code here
    }setInterval("foo()",1800000);
    
  • Impossible to change the background of the theme of RSS

    original title: malfunction of the backgrounds

    A year ago, I downloaded a theme RSS feed. Suddenly, I wanted to move on to another topic, but the problem was that the theme has frozen. I couldn't change it, then, so I had to use colors for the rest of the time. How can I go back to the beginning? I have too many themes, so should I delete them?

    Welcome!

  • Impossible to change painted the background impossible to set this image as paper. An internal error has occurred. »

    Title: I am unable to change the background of my computer.

    Windows 7 Edition Home Premium.  Whenever I try, an error message is displayed saying "this image may be defined as wallpaper. An internal error has occurred. »

    When I try and access a photo, I do not see the image.

    Hello

    Follow the steps mentioned below and check if that helps:
    (a) click on start.
    (b) select Control Panel .
    (c) select ease of access Center.
    (d) select make the computer easier to see.
    (e) if there is a check mark to Delete (if available) background images, uncheck the box, restart the computer and try to Add images to the background.
    (f) if there is no check box in front of Delete (if available) background images, select the box to Add a checkmark.
    (g) customization, select a color background and Save it.
    (h) now repeat steps 1 to 4 of the .
    (i) uncheck remove background images (if available), apply and OK.
    j) now, I suggest you to change the background image and check.
    For reference:
    Change your desktop background (wallpaper)
    Hope this information helps.
  • Video in the background impossible?

    Hello everyone,

    I want to play a video in the background of my Folio page - behind other objects such as text and images and a few others.

    Every time when I test the folio, videos start to play on the front of the provision and not behind other objects.

    The video is really placed in the background in a layer at the bottom.

    Can someone help me?

    Greetings

    Markus

    The video is an overlay, while playing mostly static objects on a page.

    You must create an another overlay (for example MSO slideshow or a framework floating) and place it on your video. See Bob Bringhurst app free "DPS tips" to learn the details.

  • When an application is in the background, it can do something? :

    When an application is in the background, he can listen to specific events (i.e. backlightStateChange), but is there a way so that it can proceed with treatment of low priority, or something of the poll?

    For example, if I want to make an app that keeps the backlight on, I can't use backlightStateChange in SystemListener, because it is only triggered after the backlight is turned off - that is to say after this gradual long melted in a recent operating system.  If I wanted to keep on, either, I have to keep the call Backlight.enable (true) - I couldn't not do when the application is in the background - or else I have to predict when it will stop and schedule a timer or invokeLater for just before the time-out period and reset the timer of the backlight.

    What I found is that when an application is in the background, its clocks are frozen - it cannot enforce a TimerTask or a passable invokeLater, at least that's how it seems from what I have to try.  I could do a scheduleApplication, but that only has calendar wave (resolution of 1 minute more or less), so it wouldn't be useful to have an app question something in the system, every 10 seconds or that does not have a specific listener, i.e. in the example of lighting is no listener for an imminent expiration time, that actually happened.

    The BlackBerry is supposed to be multi-tasking, so how to I can not get an application to run at all in the background?  No possible demon?  What did I miss?

    Thank you

    Hello

    I did some experiments with background applications in the emulator. My findings are different from yours.  I'm including them below:

    1. when an application moves in the background, he is able to do the following:

    -Schedule timer jobs that do not access the user interface.

    -o file

    -perform any related processing no UI, including any floating point calculations.

    I have no t try invokeLater Runnable. But I think I know it shouldn't work since

    the object to be executed in case of thread, this method calls annexes.  When an application is in the background, it doesn't have access to the user interface. Thus, invokeLater.Runnable is a no-op for her.

    -MO.

Maybe you are looking for

  • I can't send an e-mail. Obliged to go to AOL to send.

    The first I noticed was Saturday, may 2, 14 I couldn't send emails. If I come back to AOL, I can send them without problem.

  • Silverlight wins crashing, have latest Firefox and installed Silverlight.

    Silverlight from Windows crashes when I try to display 'live' TV channels. I have latest Firefox installed and have also uninstalled and reinstalled the latest version of Silverlight. This process worked the last time I tried a couple of weeks. Sever

  • Australis...

    Australis is Firefox for Kidz! [Profanity and personal attacks, removed by the moderator. Please read the guidelines and rules of the Forum, thank you.]

  • How can I get out of the mode of recovery on my nano without restoring

    I have a 4th Gen ipod nano.  Screen went black, I tried to reset (by pressing menu and Center button) without success.  Nano plugged into pc, dialog said in recovery mode, need to restore for nano to work in iTunes, I don't want to restore because I

  • Cloned new HDD for Pavilion 1210.uk does not start

    I am new to the forum so Hi everyone. I just installed a new HDD (SATA) to my office. BIOS identiified unit correctly and I cloned using HDClone software. He succeeded with 0 read and write errors. All files are accessed through drive letter access.