Brain.Error();

hi,
i'm afraid I have a really stupid question, which I can't find in the books i've bought of by searching the net. I've only just started Java, well programming in general so I'm guessing that the reason I can't find the answer is that is incredibly obvious.
I am building an ImageJ plugin to analyse my research. To do the analysis currently I take an 8 bit XY greyscale image, crop it, save it in one format, export it to a mac program, perform one function, save it a new format, open it in a windows program, run a few functions, save a text file, open it in excel, perform a function and finally open it again in imageJ. All of which is a pain and none of which is anything more than a simple mathematical function. Hence why I'm on a crash course in Java (although, I do think it enjoyable and it certainly beats my work).
Enough prevarication: time for the stupid.
I have written some classes which do the first analysis on my data (I nick it from ImageJ as a float[][] ). I have also made some GUIs as I need to get information on how to process the image and added listeners/actions. I can open the GUI from the 'main' class, by calling for a 'new' GUI class but after is has opened the GUI the 'main' class carries on running and doesn't wait for me to put the data in.
Which I guess was fairly obvious as it has run the code.
I can think of ways to bodge this:
1) set an 'for' loop that only stops when the ok is hit.
2) put the GUI in a thread of its own and use wait/notify.
3) set a timer function to check every 5 seconds if ok has been hit.
but I think I've probably got something really basic wrong. How do you integrate a GUI into your main thread if you need to wait for the results of the user input?
ps. the books I have seem really good at explaining each individual thing, but not so much how the whole thing is patched together. Any suggestions for alternatives that do that bit well would be great. Or even a link to examples of how I should be building the classes together, rather than an individual class.
pps. I know my 'main' isn't really a 'main' as I'm writing a plug in to ImageJ, rather than an application, but for the purposes of testing I use one of the class' as a main.
thanks!!

puzzlebobble wrote:
1) set an 'for' loop that only stops when the ok is hit.
2) put the GUI in a thread of its own and use wait/notify.
3) set a timer function to check every 5 seconds if ok has been hit. 1) As mention a simple button with an action (listener) is enough. AWT/Swing is an event based GUI meaning you can specify a piece of code to respond to an event. In this case:
JButton button = new JButton(new AbstractAction("OK") {
  public void actionPerformed(ActionEvent e) {
    // code called by Swing when the button is pressed
    // or clicked or trigger by shortcut key, etc
}2) The GUI already runs on it own thread called the EDT for Event Dispatch Thread. This thread will automatically terminate when all frames / dialogs are disposed. Your Java program terminates when all non-deamon threads are terminate or you call System.exit() somewhere.
3) Again this is done in the action listener, for example:
package test;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.JButton;
import javax.swing.JFrame;
public class TestDemo {
    public static void main(String[] args) {
        // get it from your ImageJ program
        float[][] imageData = null;
        TestDemo test = new TestDemo(imageData);
        test.showGUI();
        // main thread end, but program doesn't
        // because the EDT is still alive
    private final float[][] imageData;
    public TestDemo(float[][] imageData) {
        this.imageData = imageData;
    private void doProcessImage() {
        // do something with imageData
    private void showGUI() {
        // make sure the GUI is created on the EDT
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                final JFrame frame = new JFrame("Test");
                frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                frame.getContentPane().add(new JButton(
                  new AbstractAction("Process image and exit") {
                    @Override
                    public void actionPerformed(ActionEvent e) {
                        // note that this will block the GUI from repainting
                        // since we are on the EDT here
                        // look into SwingWorker on how to do it
                        // on a background thread
                        doProcessImage();
                        // stop the program
                        frame.dispose();
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
}

Similar Messages

  • Getting Brain Error while saving the query--Need Immediate solution

    Hello Experte
    I designed query like this.
    G/L account structure is defined in Rows. Before explaining about columns Let me Explain u about my ORG structure.
    Company codes are defined in R/3 like this.
    Company Code
    1000 for Local Currency(HSL01)
    2000 to 7000,IEL for group Currency(KSL01).
    Iu2019m extracting the data as it is from R/3 to DSO and again by writing routine I splitter the data for months(EX: HSL01 is ApriL,Hsl02 May,u2026u2026u2026u2026u2026u2026.KSL01 April, KSL02 may,u2026u2026u2026. Upto to 16 periods) this is R/3 data. This data I differentiated based upon currency types. If currency type is 10 then Local Currency 30 Means Group Currency.
    Again Iu2019m receiving the data from Flat Files for subsidiaries(IEAI,IEG,IEEL,ISSCI,IHAL,TTM-US,TTM-INDIA,TTIT). This data I loaded first into DSO by writing Routine at field Level for G/L account to convert G/L Descriptions into Numbers.
    After that I loaded data from first DSO to Second DSO by writing to convert respective currencies into INR and again loaded to cube by Direct mapping.
    Again Iu2019m receiving the eliminations data from R/3 through Ztable. This also Iu2019m extracting from R/3  and loaded into dso and again into cube.
    Now I will Explain about my Report.
    In Columns I defined 3 selections for each month.  U can observe that in Document. Like that for each month Iu2019m getting three selections and for subsidiaries 2 selections for each month. If we observe total Iu2019m getting 13 selections for India and 9 selections for each subsidiary. If subsidiaries increase I need to increase selections, automatically columns will increase. Now for Q4 2 new subsidiaries are  added I need to added. After adding and while saving the query then only Iu2019m getting brain error.
    Could any one sort out this.
    Thanks,
    Sony

    HI Ravi,
    Thanks for the reply.
    While saving the query in BEX i'm getting this error.
    Diagnosis
    Query ZQ3_MISGRPSUMMARYREPORT_010209 contains 8192 differing selection cells. However, only 8191 selection cells can be processed in a query.
    Procedure
    Please simplify query definition ZQ3_MISGRPSUMMARYREPORT_010209.
    This was the error i'm getting. How to simplify this....
    Any answers please.
    Thanks,
    Sony

  • E416 Brain Error: Infoobject is used in both structures of query

    Hi there,
    I got a problem with a restriction of keyfigures.
    My coloumns got two structures. In one of them are restrictions to a specific characteristic.
    But now the other structure needs a restriction based on the same characteristic.
    Based on following post I already know it is not possible to use one characteristic in two structures for restrictions.
    http://scn.sap.com/thread/3276852
    But can you tell me how I can do that?
    I need both restrictions.
    Thank you and kind regards.
    Matthias

    Hey Cornelia,
    thanks for your reply.
    When I overwrite a cell with a new selection (right mouseclick on the cell -> new selection) I get an Error 106 "A key figure has to be uniquely specified in all cells.", because the coloumns are keyfigures and the rows are characteristics.
    So I think your first suggestion ist pretty good but unfortunately not useful for my case.
    The second suggestion must be agreed so I won't be able to test it in near future.
    But I will respod when I have some news.
    Thank you so far!!
    Kind regards
    Matthias

  • ERROR: Brain 174

    Hi,
    I have an urgent problem: I use a planning query to input some data into an BI 7.0 system. When I execute this query with only one input-enabled column it works. If I add a second row it doesnt.
    The connection in Excel Business Analyzer breaks down without any notice, whereas the Portal gives the message ABEND BRAIN 174
    Does anyone know what this message means?
    Any help would be appreciated.
    Best regards
    Steffen Breuer

    Check out hese threads:
    How to resolve error "brain 225"?
    Error brain 284 impossible to solve
    Re: Brain errors
    Thanks...
    Shambhu
    Edited by: Shambhu Kumar Gupta on Aug 1, 2008 2:00 PM

  • Error    BRAIN: 475

    Hi,
    What is this error BARIN: 475 ???
    It occurs when I insert Calculated KeyFigs in my query definition.
    Regards,
    SD

    Hi,
    Brain errors are related to Front end issues and OLAP.
    Check ur CKF and the query definition.
    what is your SP Level - there is a note on something else which also gives the Brain 454 message
    Note 930923 -
    check this:
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=brain+errors&cat=sdn_all
    Narendra Reddy

  • Error while checking/executing a bex query

    Hello,
    I am executing a report made on a multiprovider, on checking the query gives an error (BRAIN 299)
    'System error in program CL_RSR_LFMM & form GET_CHANM-01-'
    What could be the problem?

    hi,
    chk the links that could help
    Brain Errors in query
    /thread/196115 [original link is broken]
    BW Explorer: BRAIN 632 error message when calling a query
    Ramesh

  • Error #174

    When on verizons web page, i try to open a video and it says '' this content requires the quicktime® plugin. download quicktime&#174 Player? ''
    I have the latest pro i believe 7.4

    Check out hese threads:
    How to resolve error "brain 225"?
    Error brain 284 impossible to solve
    Re: Brain errors
    Thanks...
    Shambhu
    Edited by: Shambhu Kumar Gupta on Aug 1, 2008 2:00 PM

  • Stock Posting List - Negative Value when Different Currency in PO

    Hi experts,
    We would like your help on the following scenario.
    A Purchase Goods Receipt PO and a Purchase Invoice are added in SAP 9.0, on the same date, in a different currency from the system's currency; system's is Euro and Purchase documents are added in JPY (Japanese xen), i.e. 300 JPY. When checking the "Stock Posting List" report for a number of goods that were purchased with the above documents, the report presents the line of the Goods Receipt PO with the value of 270 JPY, and the line of the Purchase Invoice with  a negative value, i.e.-15 Euro.
    Has anyone faced the same issue?
    Thank you in advance.
    Kind Regards,
    Vassilis Korolis

    Both queries have the default value of  "Only Posted Values for Navigation".
    As I was looking at this, I did realize the following though.
    Remember, I mentioned that my zcurrency_mand field has a Reference Characteristic of 0currency.
    Query 1:  The key figure that is being converted is tied to 0currency in the back end. (this is the query that works).
    Query 2:  The key figure that is being converted is tied to 0inv_curr in the back end.
    Both of the currency conversions are using zcurrency_mand.  Should query 2 be using a new variable similar to zcurrency_mand, but with a Reference Characteristic of 0inv_curr?
    If the answer is yes, I tried creating ZINV_CURR_MAND with Reference Characteristic of 0inv_curr, but am getting the following error when I try to save the changes to Query 2
    [E117(BRAIN)] Errors: Variable ZINV_CURR_MAND2 is not permitted for the target currency. 
    Thanks,
    Jennifer

  • Systemd migration issue

    I'm having some serious issues migrating a machine to systemd. 
    The first error I had was with dbus refusing to start, apparently when I did my upgrade this morning it did not add the dbus user/group. I created the user and then dbus.service starts but it crashes / gets restarted about every 30 seconds, here is the repeated entry in the journal:
    May 28 16:29:07 brain dbus-daemon[1827]: dbus[1827]: [system] Failed to activate service 'org.freedesktop.Avahi': timed out
    May 28 16:29:07 brain dbus-daemon[1827]: dbus[1827]: [system] Failed to activate service 'org.freedesktop.systemd1': timed out
    May 28 16:29:07 brain dbus-daemon[1827]: process 1827: arguments to dbus_message_set_reply_serial() were incorrect, assertion "reply_serial != 0" failed in file dbus-message.c line 1070.
    May 28 16:29:07 brain dbus-daemon[1827]: This is normally a bug in some application using the D-Bus library.
    May 28 16:29:07 brain dbus-daemon[1827]: D-Bus not built with -rdynamic so unable to print a backtrace
    May 28 16:29:07 brain systemd[1]: dbus.service: main process exited, code=killed, status=6/ABRT
    May 28 16:29:07 brain systemd[1]: Unit dbus.service entered failed state.
    May 28 16:29:07 brain systemd[1]: Starting D-Bus System Message Bus...
    May 28 16:29:07 brain systemd[1]: Started D-Bus System Message Bus.
    May 28 16:29:08 brain systemd[1]: RequestName() failed: Access denied
    May 28 16:29:08 brain dbus-daemon[1829]: dbus[1829]: [system] Activating systemd to hand-off: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service'
    I followed the wiki but when I try setting the hostname I get this:
    hostnamectl set-hostname brain
    Error getting authority: Error initializing authority: Error calling StartServiceByName for org.freedesktop.PolicyKit1: The connection is closed (g-io-error-quark, 18)
    Failed to issue method call: Connection was disconnected before a reply was received
    Additionally, systemd-analyze does not work (Failed to issue method call: Connection was disconnected before a reply was received) and systemd-logind.service shows as failed
    May 28 16:32:56 brain systemd-logind[1873]: Failed to fully start up daemon: Input/output error
    May 28 16:32:56 brain systemd[1]: systemd-logind.service: main process exited, code=exited, status=1/FAILURE
    May 28 16:32:56 brain systemd[1]: Failed to start Login Service.
    -- Subject: Unit systemd-logind.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Software/systemd/catalog/be02cf6855d2428ba40df7e9d022f03d
    -- Unit systemd-logind.service has failed.
    -- The result is failed.
    May 28 16:32:56 brain systemd[1]: Unit systemd-logind.service entered failed state.
    May 28 16:32:56 brain systemd[1]: systemd-logind.service holdoff time over, scheduling restart.
    May 28 16:32:56 brain systemd[1]: Stopping Login Service...
    -- Subject: Unit systemd-logind.service has begun shutting down
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-logind.service has begun shutting down.
    May 28 16:32:56 brain systemd[1]: Starting Login Service...
    -- Subject: Unit systemd-logind.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Unit systemd-logind.service has begun starting up.
    May 28 16:32:56 brain systemd[1]: systemd-logind.service start request repeated too quickly, refusing to start.
    May 28 16:32:56 brain systemd[1]: Failed to start Login Service.
    -- Subject: Unit systemd-logind.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Software/systemd/catalog/be02cf6855d2428ba40df7e9d022f03d
    -- Unit systemd-logind.service has failed.
    I have tried uninstalling and re-installing dbus-core, and 'cat /proc/1/comm' shows systemd. I've searched google for a few hours and haven't found anything!

    If you are still using dbus-core, then your system is out of date.  Did you first update your entire system before trying to switch to systemd?  I kind of suspect you are just trying to install only the packages you need and do the update... if this is what you are doing then it is bound to cause problems.

  • Time Machine Backups gone since Yosemite install?

    And on a second, possibly related, issue (as discussed in this thread: TimeMachine backups are not accessible after the clean install of Yosemite):
    Just had a weird glitch with Dropbox recently whereby files and folders disappeared but I thought "It's ok. Everything is Time Machined. I'm fine!" only to discover that my backups on the Time Machine only extend to the last week... which is shocking, to say the least.
    I know for a fact that a few days ago I saw that my 750GB external TM drive was down to about 8GB free and now there is suddenly 82GB free, plus a never before seen folder called "lost+found" next to the Backups.backupdb folder. What is it and where did it come from?
    Just noticed now that my 750 GB drive holds 13.68 TB of data (that is seriously impressive), and that the lost+found folder is 22.66 GB big.
    Fortunately, Dropbox has the "Restore Files and Folders" feature so hopefully nothing is lost but this Time Machine glitch is a horrible eye opener - all of a sudden I cannot rely on my backups extending back at least a few months, like I have entrusted it to do for years.
    Since upgrading to Yosemite I have had a whole bunch of... seemingly trivial... glitches and bugs (dropbox syncing errors, re-establishing Apache and a local test-server issues plus a few other minor irritants plus the unexpected random reboot of the computer twice in the last 2 weeks) that have now all added up to leave me anxious about what new problem is going to manifest.
    For example, in trying to view any Time Machine logs that might give a clue as to when or why the backups have disappeared I opened Console only to find that the console window doesn't appear. Anywhere. Even new ones.
    I'm not a geek and have no idea how Console might help me but i was simply following the instructions in this link http://www.macworld.com/article/1131534/tmeye.html but Yosemite is not doing what I think it should.
    This is what that app LogViewer Time Machine displays (seriously, my Console doesn't show a window - how do I fix that?) about the earliest backup, which is from Tuesday, Nov 18, 2014.
    8:28:28 am - Starting automatic backup
    8:28:35 am - Backing up to /dev/disk3s2: /Volumes/BackUp Brain/Backups.backupdb
    8:28:43 am - Will copy (1.53 GB) from Macintosh HD
    8:28:43 am - Found 1321 files (1.57 GB) needing backup
    8:28:43 am - 3.72 GB required (including padding), 15.03 GB available
    8:35:24 am - Copied 1530 items (1.57 GB) from volume Macintosh HD. Linked 7172.
    8:35:43 am - Created new backup: 2014-11-18-083543
    8:35:45 am - Starting post-backup thinning
    8:35:45 am - No post-backup thinning needed: no expired backups exist
    8:35:45 am - Backup completed successfully.
    This one from this morning throws up a weird error - seems like my iMac has developed a number 2 after it's name (I will avoid the obvious joke that if these glitches keep occuring under Yosemite then it's very apt):
    8:16:19 am - Starting automatic backup
    8:16:19 am - Backing up to /dev/disk3s2: /Volumes/BackUp Brain/Backups.backupdb
    8:16:37 am - Will copy (2.5 GB) from Macintosh HD
    8:16:37 am - Found 2730 files (2.55 GB) needing backup
    8:16:37 am - 5.44 GB required (including padding), 38.76 GB available
    8:24:45 am - Copied 3029 items (1.97 GB) from volume Macintosh HD. Linked 11142.
    8:24:52 am - Created new backup: 2014-11-24-082451
    8:26:05 am - Starting post-backup thinning
    8:26:05 am - Error: Error Domain=NSOSStatusErrorDomain Code=-50 "The operation couldn’t be completed. (OSStatus error -50.)" (paramErr: error in user parameter list) deleting backup: /Volumes/BackUp Brain/Backups.backupdb/Diarmaid’s  27" iMac (2)/2014-11-24-081624.inProgress/B129B56F-A2A5-46DB-B181-719D23BF3FE5
    8:28:15 am - Deleted /Volumes/BackUp Brain/Backups.backupdb/Diarmaid’s  27" iMac (2)/2014-11-23-055154 (1.41 GB)
    8:28:36 am - Deleted /Volumes/BackUp Brain/Backups.backupdb/Diarmaid’s  27" iMac (2)/2014-11-23-043709 (1.1 MB)
    8:28:46 am - Deleted /Volumes/BackUp Brain/Backups.backupdb/Diarmaid’s  27" iMac (2)/2014-11-23-033533 (868 KB)
    8:29:32 am - Deleted /Volumes/BackUp Brain/Backups.backupdb/Diarmaid’s  27" iMac (2)/2014-11-23-023006 (1.9 MB)
    8:30:28 am - Deleted /Volumes/BackUp Brain/Backups.backupdb/Diarmaid’s  27" iMac (2)/2014-11-23-012426 (1.1 MB)
    8:30:28 am - Post-backup thinning complete: 5 expired backups removed
    8:30:29 am - Backup completed successfully.
    Any help or assistance or guidance would be deeply appreciated. Haven't had any major issues with this machine since I got it, till the Yosemite update.

    Just back from an Xmas break in the wilderness and took a look at my Mac. Firstthing I see is that Time Machine has not backed up since 24th Dec. LogViewer for TimeMachine reports the following:
    12:15:13 am - Starting automatic backup
    12:15:14 am - Error determining directory contents for /Volumes/BackUp Brain: Error Domain=NSCocoaErrorDomain Code=256 "The file “BackUp Brain” couldn’t be opened." UserInfo=0x7fa539607ad0 {NSFilePath=/Volumes/BackUp Brain, NSUserStringVariant=(
        Folder
    ), NSUnderlyingError=0x7fa539607e30 "The operation couldn’t be completed. (OSStatus error -36.)"}
    12:15:14 am - Backing up to /dev/disk3s2: /Volumes/BackUp Brain/Backups.backupdb
    12:15:15 am - Error -36 applying backup protections to /Volumes/BackUp Brain/Backups.backupdb/Diarmaid‚Äôs  27" iMac
    12:15:15 am - Error: (22) setxattr for key:com.apple.backupd.HostUUID path:/Volumes/BackUp Brain/Backups.backupdb/Diarmaid‚Äôs  27" iMac size:37
    12:15:15 am - Backup failed with error 2: 2
    With variations of the same till today. My 750GB WD Elements external is still there visible on the desktop, displaying 66GB free with the "lost+found" folder and the Backups.backup folder, only this time neither is displaying any contents.
    Seriously, does anyone have any idea what is going on with Time Machine? If I cannot rely on it for automatic backups I don't know what I am going to do. It has ALWAYS been there, working perfectly in the background and saving my *** numerous times.

  • BW SUPPORT PACK 13,14,15

    hi all,
    can any one give some info and the link where I can find information about BW support pack 13, 14 ,15

    hi ajay,
    i think these oss notes should sufficient, they contain info what error corrected, possible new errors, new features added in the support packages. do you need other info ?
    Symptom
    Support Package 13 for BW Release 3.5.
    Other terms
    SAPBWNEWS, Support Packages for 3.5, BW 3.5, BW 3.50, BW Patches
    Solution
    This note contains the SAPBWNews for Support Package 13 for BW Release 3.5. This note lists all the notes that describe the corrections or enhancements contained in Support Package 13 (SAPKW35013). This note is updated as soon as other notes are added.
    The information is divided into the following areas:
    Manual actions that may be necessary:
    Factors you must take into account when you import the Support Package
    Errors that may occur after you import the Support Package
    For general information:
    This Support Package corrects the following errors
    Enhancements contained in this Support Package
    Support Package 13 for BW 3.5 corresponds to the technological status of Support Packages 28 for BW 3.0B (SAPBWNews 783170) and 22 BW 3.1 Content (SAPBWNews 783252).
    Also see the following release and information notes
    Support Package 13 SAP_UDI 350 Note 765119
    Factors you must take into account when you import the Support Package:
    Note that Support Package 4 is required as of NetWeaver Support Package Stack 14, that is, BW Server Support Package 14 PI_BASIS 2005. For information about upgrading to PI_BASIS 2005, refer to Note 821148.
    Errors that may occur after you import the Support Package:
    Querys on MultiCubes in read mode A. For information about this, read Note 896066.
    Data is missing in individual aggregates.
    The error is not corrected by reconstructing the aggregate. For information about this, read Note 898508.
    When you display a note in the Note Assistant, the following error may occur: 'Output device A000 is not defined'. For more information, see Note 868905.
    Under certain circumstances, the MultiProvider F4 help does not use aggregates that have also been used during the query execution. For more information, see Note 870557.
    When you execute a MultiProvider query, a termination may occur. For more information, see Note 870505.
    When you go from one query to another query or to a Web template, the system fills value variables for compound characteristics, which you can also change during query navigation, with the initial value ("#"). For more information, see Note 867616.
    In certain situations when you execute a query, a termination (GETWA_NOT_ASSIGNED in SAPSRRK0 field symbol <L_S_SNID>) may occur or data may be missing from columns or structural elements. For more information, see Notes 851086 and 848340.
    Some columns or structure items may remain empty in a query. For more information, see Note 863745.
    When you check a query, the system may issue error message Brain A 039 (telling you that node &3 &4 does not exist in hierarchy &2 for the InfoObject &1), although the node exists and you can execute the query. For more information, see Note 855258.
    A query with an exclude in the dynamic filter may not display any data under certain conditions. For more information, see Note 856495.
    In some very exceptional cases, a query may terminate with error message X299(BRAIN) System error in program SAPLRRKH and form SELDER_INTERSECT_BUF-01. For more information, see Note 851754.
    You can execute a query that does not use any key figures even if you do not have the necessary authorizations. For more information, see Note 856144.
    List of notes:
    868905
    870557
    870505
    867616
    851086
    848340
    855258
    856495
    851754
    856144
    This Support Package corrects the following errors:
    Corrections in the end user technology area:
    When you called the filter dialog in the BEx Broadcaster and the ad-hoc Query Designer, the system issued error message CX_SY_REF_IS_INITIAL. For more information, see Note 857393.
    Corrections in the OLAP technology area:
    In a query, some columns or structural elements remained empty. For more information, see Note 848340.
    You were no longer able to create authorizations (profiles) in Transaction RSSM if the user name did not contain a period. The system ignored the authorization assignment using Transaction PFCG (roles) and the generation from ODS. For more information, see Note 849194.
    When you executed a query, the ETWA_NOT_ASSIGNED runtime error occurred in the SAPSRRK0 program in the APPEND_KHANDLE_1 form; field symbol <L_S_SNID>. For more information, see Note 851086.
    When you executed a query, it terminated with the X299(BRAIN) error message telling you that there was a system error in the SAPLRRKH program and the SELDER_INTERSECT_BUF-01- form. For more information, see Note 851754.
    A query that contains both a fixed and dynamic restriction for a characteristic and that is evaluated on a remote cube may terminate (program SAPLRRK0; form CHECK_NAV_INIT_NEW-03- ). For more information, see Note 849969.
    Corrections in the Warehouse Management area:
    After you imported Support Package 12, it took a very long time to create and delete InfoPackages in a content creating BW system because Note 844739 delivered corrections for writing shadow InfoPackages, and these corrections may run for a relatively long time in several source systems that are connected to BW as well as several existing shadow InfoPackages. For more information, see Note 847030.
    When you loaded data, data sometimes disappeared. Refer to Note 849857 for further information.
    If you executed a where-used list for an InfoObject in the D version, a termination sometimes occurred. For more information, see Note 844007.
    When you deleted master data, a termination sometimes occurred. For more information, see Note 856546.
    Enhancements delivered with this Support Package:
    Also refer to the Documentation Enhancements on the SAP Service Marketplace (http://service.sap.com/bi --> Documentation --> SAP BW 3.5 Documentation Enhancements), which describe the enhancements delivered with this Support Package.
    Improvements in the OLAP technology area:
    General performance improvements for OLAP. For more information, see Note 825396.
    The performance of MultiCubes has been improved. For more information, see Notes 869487 and 903559.
    Symptom
    Support Package 14 for BW Release 3.5
    Other terms
    SAPBWNEWS, Support Packages for 3.5, BW 3.5, BW 3.50, BW Patches
    Solution
    This note contains the SAPBWNews for Support Package 14 for BW Release 3.5. It contains a list of all notes that describe the corrections or enhancements in Support Package 14 (SAPKW35014). The note will be updated as soon as other notes are added.
    The information is divided into the following areas:
    Manual activities that may be necessary:
    Factors you must take into account when you import the Support Package
    Errors that may occur after you import the Support Package
    For general information:
    This Support Package corrects the following errors
    Enhancements delivered with this Support Package
    Support Package 14 for BW 3.5 corresponds to the technological status of Support Packages 29 for BW 3.0B (SAPBWNews 783251) and 23 BW 3.1 Content (SAPBWNews 783253).
    Also refer to the following release and information note:
    SP14 SAP_UDI 350 Note 839096
    Factors you must take into account when you import the Support Package:
    Note that as of NetWeaver Support Package Stack 14, that is BW Server Support Package 14, you require PI_BASIS 2005 Support Package 4. For information about upgrading to PI_BASIS 2005, see Note 821148.
    Note 855424 leads to syntax errors during the generation of update rules. Read the note for more information.
    Errors that may occur after you import the Support Package:
    A query displays additional rows or columns. For more information, see Note 901097.
    Querys on MultiCubes in read mode A. For more information, see Note 896066.
    The update from the PSA using the 'Update' indicator in the scheduler no longer works for normal master data that is not flexible and text DataSources that were updated using 'PSA only' - Reason: The problem is caused by the correction that is contained in Note 889160, Note 905105 corrects the problem.
    A syntax error occurs in class CL_RSMD_CONVERSION, method DROP_TMPTABLES. For more information, see Note 905168.
    F4 and authorization: SQL error in SAPLRSDM_F4. For more information, see Note 907337.
    This Support Package corrects the following errors:
    Corrections in the end user technology area:
    When you go from a query to another query or to a Web template, value variables on compound characteristics, which can be changed simultaneously during the query navigation, are filled with the initial value ("#"). For more information, see Note 867616.
    Corrections in the OLAP technology area:
    In certain cases, when you execute a query, a termination (GETWA_NOT_ASSIGNED in the SAPSRRK0 <L_S_SNID> field symbol) occurs or data is missing in columns or structural components. For more information, see Notes 851086 and 848340.
    In certain cases, when you execute a query, a termination occurs and the system issues message X299(BRAIN) 'System error: Program SAPLRRKH; form SELDER_INTERSECT_BUF-01-'. For more information, see Note 851754.
    You can execute a query that does not use any key figures at all even if you do not have the necessary authorizations. For more information, see Note 856144.
    When you check a query, the system may issue error message Brain A 039 (Node &3 &4 is not in hierarchy &2 for InfoObject &1) even though the node exists and you can execute the query. For more information, see Note 855258.
    In certain cases, a query with an exclude in the dynamic filter may not display any data. For more information, see Note 856495.
    In certain cases, the Multiprovider F4 help does not use aggregates that were also used during the query execution. For more information, see Note 870557.
    A termination may occur when you execute a MultiProvider query. For more information, see Note 870505.
    Corrections in the Warehouse Management area:
    The UNCAUGHT_EXCEPTION runtime error occurs during the upload. For more information, see Note 855424.
    Enhancements delivered with this Support Package:
    Also refer to the Documentation Enhancements on the SAP Service Marketplace (http://service.sap.com/bi --> Documentation --> SAP BW 3.5 Documentation Enhancements), which describe the enhancements that are delivered with this Support Package.
    Improvements in the OLAP technology area:
    General performance improvements for OLAP. For more information, see Note 825396.
    The runtime in the REMOVE_SELDR_0INFOPROV_NEW form is very long. For more information, see Note 887801.
    Unnecessary reading of partprovider. For more information, see Note 885733.
    The performance in form SAPLRRK0; loc_rechnen has been improved. For more information, see Note 884482.
    Problems occur with hierarchy selections in MultiProviders. For more information, see Note 879290.
    Query runtime if there are several nested formulas. For more information, see Note 872904.
    Symptom
    Support Package 15 for BW Release 3.5
    Other terms
    SAPBWNEWS, Support Packages for 3.5, BW 3.5, BW 3.50, BW patches
    Solution
    This note contains the SAPBWNews for Support Package 15 for BW Release 3.5. It contains a list of all notes that describe the corrections or enhancements in Support Package 15 (SAPKW35015). The note will be updated as soon as other notes are added.
    The information is divided into the following areas:
    Manual activities that may be necessary:
    Factors you must take into account when you import the Support Package
    Errors that may occur after you import the Support Package
      For general information:
    This Support Package corrects the following errors
    Enhancements delivered with this Support Package
    Support Package 15 for BW 3.5 corresponds to the technological status of Support Packages 30 for BW 3.0B (SAPBWNews 872271) and 24 BW 3.1 Content (SAPBWNews 872273).
    Also refer to the following release and information note:
    Support Package 15 SAP_UDI 350 Note 839097
    Factors you must take into account when you import the Support Package:
    Errors that may occur after you import the Support Package:
    The query displays more rows. For more information about this, see Note 901097.
    This Support Package corrects the following errors:
    Enhancements delivered with this Support Package:
    Also refer to the Documentation Enhancements on the SAP Service Marketplace (http://service.sap.com/bi   > Documentation   > SAP BW 3.5 Documentation Enhancements), which describe the enhancements that are delivered with this Support Package.
    Improvements in the OLAP technology area:
    General performance improvements for OLAP. For more information, see Note 825396.
    Performance improvements when you are searching for filter values. For more information, see Note 900728.
    Performance improvements when you start the query. For more information, see Note 905375.
    Improvements in the Warehouse Management area:
    The system also issues error messages during parallel reading. For more information, see Note 905083.

  • Windows audio drivers for iMac Intel

    Hi
    I accidently deleted the Windows audio drivers on my machine. The audio works fine in Mac mode but errors out looking for the drivers in PC mode.
    My brain errors out looking for the page with the proper drivers.
    Any leads greatly appreciated..

    Thanks for responding.
    Yes, I have Boot Camp back-up CD (2 copies actually - 'Macintosh Drivers for Windows XP')
    Error message I get when I run the set-up file from either copy: "Unable to locate file Macintosh Drivers for Windows.xp.msi."
    Is there anywhere on line to download the drivers?
    Thanks again

  • Customer Exit Variable - Variable Value Error BRAIN 000

    I created a variable which is processed by 'Customer Exit'. This variable is 'optional' and NOT user input required.
    And i have written my code in customer exit under I_STEP EQ 1.
    I used the variable in my query as a default value for a free characteristic.
    The query runs fine and return me the correct result.
    The problem is when i used the same variable as a default value of a free characteristic in another query which has another user input variable for another characteristic, i got a warning message after input a value for another variable.
    Variable Value Error BRAIN 000 <<i>my variable name</i>>
    How to make it work in the second query?
    Please help as I am new to this.
    Thanks,
    CH

    Hi Fernanda,
    Try this:
    DATA:  LS_RA_SID  TYPE   RSR_S_RANGESID.
    DATA:  fst_date LIKE sy-datum.
       CASE i_vnam.
              WHEN 'ZRANGE_PREVMONTH'.
    fst_date = sy-datum - 1.
    concatenate fst_date(6) '01' into ls_ra_sid-low.
          ls_ra_sid-sign = 'I'.
          ls_ra_sid-opt = 'BT'.
          ls_ra_sid-high = fst_date.
          APPEND ls_ra_sid TO e_t_range.
    ENDLOOP.
    ENDCASE.
       ENDIF.
    Just post here for any queries..
    Regards,
    Loed

  • ERROR BRAIN (738): Variable 0P_KEYDT not in query

    Hi all,
    Can anyone help with the following error that i am getting while executing a query
    ERROR BRAIN (738): Variable 0P_KEYDT not in query
    Regards,
    P

    Make sure you still have the variable in the query. You did not delete it by mistake. Error is it self says that it can not find that 0P_KEYDT in the query. YOu can also try removing and adding it again.
    Sometimes the order of making variable matters when you have dependency.
    - Danny

  • Transport error BRAIN 617 on import of Cube

    We got the following error while transporting Infocube which had data in teh target BI system.
    Error BRAIN 617 during after import handling of objects with type(s) CUBE
    Change involved addition of  a characteristic in the cube.
    We are in BI 7.0 SP 13.
    RN

    Hi
    Then please try to import that request again by selecting all 'import options' in option tab. If you have added one character in cube,i am assuming you have transported all other things (transfer rule,update rule & infosource)

Maybe you are looking for