Sorting records problem in BOE

Hi all.
I have a problem. I have created a new Crystal Reports Report which I uploaded to BOE. I tested it firstly locally in my machine, refreshing it through Crystal Reports  at design time. It gives me the results I want.
This reports gets called from another application via URL using the opendocument command. Such application sends the proper parameters to my report when I upload it to BOE. The BOE server connects to the same DatabaseServer which I get connected locally. The problem comes when I execute the Report in BOE through the opendocument command, cause it sorts the records in a different order from the order I get when I run it locally which is a big issue since the main functionality of this report is based on the order it presents the information.
The DataSource  for my Report is an Oracle Stored Procedure.
This would be the output of my local Report (It would be clearer if I could upload the PDF file itself, but I'm afraid I can't)
CPM FOP_01 Produccion
     CPM FOP_01 C2 Produccion
          Cemento Granel Tipo V
          Clinker Gris 02 Tipo I
          Harina Gris - es
CPM FOP_01 Inventarios
     CPM FOP_01 C2 Inventarios Amounts
     CPM FOP_01 C2 Inventarios Units
CPM FOP_01 C1 Income
     Own production
This would be the output of the Report called from the application.  As you can see the record containing CPM FOP_01 C1 Spread should not be placed there, according to my local test
CPM FOP_01 Produccion
     CPM FOP_01 C2 Produccion
          Cemento Granel Tipo V
          Clinker Gris 02 Tipo I
          Harina Gris - es
CPM FOP_01 C1 Spread
CPM FOP_01 Inventarios
     CPM FOP_01 C2 Inventarios Amounts
     CPM FOP_01 C2 Inventarios Units
CPM FOP_01 C1 Income
     Own production
The record containing CPM FOP_01 C1 Spread does exist in my report, but should be placed in another section below the section it is placed now.
Besides, the report in BOE is doing weird things such as hiding some totals is should not hide.
I wonder is this has something to do with some sort of problem involving the services, or maybe some cache memory or something alike. I tried as many things as have come to my mind in order to solve this issue, but now I'm out of ideas.
As always, any help will be very useful for me and my team
Edited by: GABRIEL SANCHEZ VALDEZ on Jun 22, 2010 7:11 PM

Hi Gabriel,
Since you are a BOE user you should also have a support contract. I suggest you log a new case and get a Support engineer working with your directly. Then you can attach the PDF to the case.
Thank you
Don
Also, I am moving this post to the BOE forum.

Similar Messages

  • Audio Recording Problem - distorted

    Hey all,
    I got an audio recording problem here...
    When I try to record audio onto my project, the sounds is very poor and distorted. Plus, there is a pretty ugly delay. But when I use garageband, the sound is great and how it should be. So this makes me think that Logic has some sort of problem with my driver (Firebox) or somethin'.
    Here's my Setup
    -imac G5
    -Logic Pro 7.2 (Bought just a few days ago)
    -Presonus Firebox (audio interface)
    -Condensor Mic
    Cheers!

    Hi,
    It is possible that your FireBox is not the audio card set up in Logic, and that you are accidentally recording the built-in mic.
    If Garageband is seeing your FireBox corrctly, then it is the setup in Logic, and nothing else, that you should be looking at.
    Check your audio hardware and drivers.
    Cheers

  • How do I uninstall an application from my Macbook Pro? I have been having all sorts of problems with Adobe products, and need to uninstall so I can re-install them

    How do I uninstall an application or software from my Macbook Pro? I have been having all sorts of problems updating Adobe Reader and Flash player on my mac that I need to uninstall them so I can re-install them.

    Uninstall Flash
    http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html
    For Reader search "unistall adobe reader mac" for the version you are running
    https://forums.adobe.com/message/4793407  XI
    http://helpx.adobe.com/acrobat/kb/installing-uninstalling-acrobat-x-mac.html  X

  • Recording problem on my Xi-Fi Fatality?

    'Recording problem on my Xi-Fi Fatality?d So I have a Xi-Fi Fatality, and I would like to be able to record directly from my computer so that it's own output is also the input. For example, if I'm on ventrillo or something and I want to play a funny mp3 to show my friends I'd like to be able for the audio to come directly from the output.
    Anyways, my microphone seems to work fine, and that's where the trouble begins.
    I go to the sound control panel and click on the recording tab. ? It has microphone as the default device and it says "working."
    There are also options for "Auxillary" "Line-In" "Digital-In" and "What U Hear"
    However, under each of them it says "currently unavailable"
    I am unable to get any of them to function even when I set them to the default device.
    Is this normal?

    + It's funny you should post this because I came here right now to post the exact same thing. I would have posted earlier but I forgot my account information and had to wait to get a reply email.
    So... same here (yes I know this was no help).
    Actually this is kind of weird. Every now and then my "Aux 2" will become available and my mic is not. I have to restart my computer 4 or 5 times for my mic to become available.

  • Artist sort order problem

    Hi.
    I have music sync'd via iTunes Match from my laptop to my iPad and to my iPhone. The names and order appear correct on both the laptop and on the iPad but on the iPhone several artists are either shown in all lower case or the last name will be used by the sort, rather than the first.
    I've reset the artist, album artist and sort artist tags to different names (and they show up correctly then on the iPhone) and then set them back, but the problem remains.
    I'm thinking that the iPhone has a corrupt file somewhere - but how can I reset that without losing everything on the phone?
    A factory reset and restore from iCloud results in the same problem.
    Any ideas?
    Thanks guys.
    --Cynan.

    I also have an Artist sort order problem. While the circumstances are quite different from yours, I wonder if it's due to a similar corruption problem. I don't use iTunes Match. I found Kenny G listed under letter T.

  • How can we sort records in alv, give example

    how can we sort records in alv, give example

    Hi
    <b>Setting Sort Conditions</b>
    It is possible to set sort conditions for the table data. This is achieved by filling an internal table of structure “LVC_T_SORT” which consists of the sort criteria. To have an initial sorting, pass it to the parameter “IT_SORT” of the method “set_table_for_first_display”.
    FORM prepare_sort_table CHANGING pt_sort TYPE lvc_t_sort .
    DATA ls_sort TYPE lvc_s_sort .
    ls_sort-spos = '1' .
    ls_sort-fieldname = 'CARRID' .
    ls_sort-up = 'X' . "A to Z
    ls_sort-down = space .
    APPEND ls_sort TO pt_sort .
    ls_sort-spos = '2' .
    ls_sort-fieldname = 'SEATSOCC' .
    ls_sort-up = space .
    ls_sort-down = 'X' . "Z to A
    APPEND ls_sort TO pt_sort .
    ENDFORM. " prepare_sort_table
    <b>Preparing the table for sorting settings</b>
    We have two important points to tell about this topic. First one is that, be ready for a short dump if any one of the fields given to be sorted is not in the content of the field catalog. Secondly, when you make ALV Grid to sort data, by default it vertically merges fields having the same content. To avoid from this for all of the columns, you can set “no_merging” field of the layout structure to ‘X’. If you want to disable merging for just some columns, set “no_merging” field of the field catalog row corresponding to that column.
    You can get and set sort criteria applied whenever you want by using methods “get_sort_criteria” and “set_sort_criteria”, respectively.
    <b>
    Sort Using FACTORY CLASSES</b>
    <b>Sorts – CL_SALV_SORTS</b>
    we can add some sorting to the ALV grid. Create the object reference variable and receive the object using the GET_SORTS method of the GR_TABLE object. Next, add the sort by calling the ADD_SORT method of the GR_SORTS object.
    report zalvom_demo1.
    data: ispfli type table of spfli.
    data: gr_table type ref to cl_salv_table.
    data: gr_functions type ref to cl_salv_functions.
    data: gr_display type ref to cl_salv_display_settings. data: gr_columns type ref to cl_salv_columns_table.
    data: gr_column type ref to cl_salv_column_table.
    data: gr_sorts type ref to cl_salv_sorts.
    data: color type lvc_s_colo.
    start-of-selection.
    select * into table ispfli from spfli. cl_salv_table=>factory( importing r_salv_table = gr_table   changing t_table = ispfli ).
    gr_functions = gr_table->get_functions( ). gr_functions->set_all( abap_true ).
    gr_display = gr_table->get_display_settings( ). gr_display->set_striped_pattern( cl_salv_display_settings=>true ). gr_display->set_list_header( 'This is the heading' ). gr_columns = gr_table->get_columns( ).
    gr_column ?= gr_columns->get_column( 'CITYTO' ). gr_column->set_long_text( 'This is long text' ). gr_column->set_medium_text( 'This is med text' ). gr_column->set_short_text( 'This is sh' ).
    gr_column ?= gr_columns->get_column( 'CITYFROM' ). color-col = '6'.
    color-int = '1'.
    color-inv = '0'.
    gr_column->set_color( color ).
    gr_sorts = gr_table->get_sorts( ).
    gr_sorts->add_sort 'CITYTO' ).
    gr_table->display( ).
    Regards
    Ravish
    <b><i>
    Reward if useful to you</i></b>
    Message was edited by:
            Ravish Garg

  • I just bought the latest Mac mini i5 but every time I try to transfer my files from time machine back-up of my mini mid 2011 model I always come up with some sort of problem?

    I am so fed up with using time machine to restore my files from my previous mini. I have tried several different ways and every time there is some sort of problem. I just want to restore it back to the original setting and manually reinstall my  personal software. My question is: Is it better to reinstall osx using the recovery drive or downloaded from the app store. Also if you have already reinstalled from the app store does that effect the recovery drive?

    It does not make any difference it you reinstall from recovery partition or app store since in either case the OSX install files are downloaded from Apple servers.
    What problems (error message?) are you gettng whenb trying to restore form TM?

  • Does cleaning sort records and impact on max log size

    I'm looking for confirmation that the act of cleaning logs produces sorted records, equivalent to having inserted them in sorted order to begin with. If that is the case is the memory overhead of cleaning proportional to the maximum log file size, or will it spill to disk to sort? I ask since the max log file size is 1G, and if there is a memory component then it may be relevant to take into consideration.
    On a similar note, is increasing the log file size from 10MB recommended if the database is large (say a TB)? Are there some linear operations (most likely in the admin/maintenance category) that have to iterate over each log file?
    Thanks.

    Hi,
    I'm looking for confirmation that the act of cleaning logs produces sorted records, equivalent to having inserted them in sorted order to begin with.No, that's not exactly true. When records are written (migrated to the end of the log) during the log cleaning process, any clustering (writing of adjacent records in key order) occurs on a per BIN (bottom internal node) basis. So at most 128 records (or DatabaseConfig.setNodeMaxEntries) with adjacent key values are sorted and written out together in this manner. But normally not all records in a BIN will be migrated and I'll describe more about this below.
    If that is the case is the memory overhead of cleaning proportional to the maximum log file size, or will it spill to disk to sort? I ask since the max log file size is 1G, and if there is a memory component then it may be relevant to take into consideration.No, the memory used for sorting in this case is the JE cache itself -- the memory that holds the Btree. The log cleaner thread moves records to be migrated into the Btree (in the cache), and flags them for migration. These records are written lazily the next time their parent Btree node (the BIN I mentioned) needs to be flushed. This can occur for two reasons: 1) when the BIN is evicted from the cache because the cache is full, or 2) during the next checkpoint, since a checkpoint will flush all dirty BINs. The most desirable situation is that the BIN is flushed during the checkpoint, not during eviction, to reduce the number of times that a single BIN is flushed to disk. If a BIN is evicted, it may have to be fetched again later in order to migrate more records as part of the log cleaning process, and this is counterproductive.
    So during this process, the number of records that are written to disk in key order in a cluster, such that they are physically adjacent on disk, is variable. It depends on how many records are processed by cleaner threads, and inserted in their parent BIN for migration, between checkpoint intervals, and whether the BINs are evicted during this period.
    A physical cluster of records includes the BIN itself as well as its child records that are migrated for log cleaning. The fact that the BIN is part of the cluster is beneficial to apps where not all BINs fit in the cache. If a record and its parent BIN are not in cache, and the app reads that record, the BIN and the record must both be fetched from disk. Since they will be in physical proximity to each other on disk, disk head movement is avoided or reduced.
    However, not all of the child records in a BIN will necessarily be part of a physical cluster. If only some of the records in a BIN were processed by the log cleaner before the BIN is flushed by the checkpointer or evictor, then only a subset of the child records will be written as part of the cluster. In other words, even for a single BIN, all the child records in that BIN are not normally written out together in a cluster.
    Clustering is a useful feature and something we would like to enhance in the future. What I've described above is as far as we've gotten with this feature in the currently released and supported product. However, there are two experimental configuration settings that cause additional clustering to occur. These cause additional records to be written to disk when their parent BIN is flushed. If you're interested in trying these, I will be happy to explain them and work with you. But you should be aware that they're not currently in the standard, supported set of features, and are not well tested.
    I'm not sure whether I've given you less information than you need or more than you wanted. :-) If you describe in detail what you're trying to do, and more about your app and performance requirements, I may be able to offer more concrete advice.
    On a similar note, is increasing the log file size from 10MB recommended if the database is large (say a TB)? Are there some linear operations (most likely in the admin/maintenance category) that have to iterate over each log file?Yes, there are such operations and per-log file overhead, and we recommend using using a 20M to 50M log file size for large data sets. Log files larger than 50MB could decrease log cleaner performance.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • My MACBOOK PRO NEVER LETS ME OPEN AUTOTRADER AND WHEN I TRY TO OPEN IT GETS FROZEN AND IT FREEZES OTHER WINDOWS AS WELL. Please help me to sort this problem out asap. Thanks

    MY MACBOOK PRO NEVER LETS ME OPEN AUTOTRADER AND WHEN I TRY TO OPEN IT GETS FROZEN AND IT FREEZES OTHER WINDOWS AS WELL. Please help me to sort this problem out asap. Thanks

    To prevent this being accidentally activated in the future go to SystemPreferences>Keyboard>Keyboard Shortcuts>Universal Access and uncheck all the boxes.

  • Record Store only reads one record problem

    I have a problem where I can read and write a record to a records store, but i can not do this for multiple records as i am trying with below code. Any help is very welcomes thank you, I am very new to J2ME.
    I have a J2ME midlet that calls the startRecordStore() method which create a record 1.
    It uses a static int records and it increments it every time a new recordstore is created, well I am not entirely sure if i need to do this. Because I want to go through all the records created.
    public void startRecordStore() {
         // Incremenets records count
         // Temporary example for this workshop only
         records+=1;
         try { rs = RecordStore.openRecordStore("StudentStore"+records+"", true);
         catch (Exception err) {
              Alert alr = new Alert("Error Creating", err.toString(), null, AlertType.WARNING);
              alr.setTimeout(Alert.FOREVER);
              display.setCurrent(alr);
    }Then it calls the readData() method which reads the data from the 3 fields, something like this
    for(int i=0;i<count;i++) {
              ods.writeUTF(ReadDataString);
              ods.writeUTF(ReadDataString[i+1]);
              ods.writeInt(ReadDataInt[i]);
              ods.flush();
              // Put the whole write stream to a byte
              ReadDataByte = os.toByteArray();
              // finally add the fetchDataType to to a record store
              rs.addRecord(ReadDataByte, 0, ReadDataByte.length);
         os.reset();
         os.close();
         ods.close();
    Then the WriteData() method is called displaying the records
    PROBLEM it only displays the last record, instead of more then one record.
    eg. StudentStore1, StudentStore2 etc etc ..
    // create record enumerator referrence to the instance
         re = rs.enumerateRecords(null,null,false);
         // go through each records using enumerator
         while(re.hasNextElement()) {
              rs.getRecord(re.nextRecordId(), ReadInputData, 0);
              buffer.append(ids.readUTF());
              buffer.append("\n");
              buffer.append(ids.readUTF());
              buffer.append("\n");
              buffer.append(ids.readInt());
              buffer.append("\n");
              Alert alr = new Alert("Currently Reading", buffer.toString(), null, AlertType.WARNING);
              alr.setTimeout(Alert.FOREVER);
              display.setCurrent(alr);
         // CLOSE INPUT STREAM
         is.close();Any idea thanks guys

    public void startRecordStore() {
        records+=1;
        try {
            rs = RecordStore.openRecordStore("StudentStore"+records+"", true);
        }Are you sure this is what you want to do?
    I don't know where you're calling startRecordStore(), but you're creating a new record store for each "records".
    Shouldn't you be just opening the record store "StudentStore", and them adding records to that store?
    jc

  • Hi, I have recently updated my iMac from OS x mountain lion to OS X Mavericks. After that I can't upload any video and some files to my personal email account. Can anyone please help me to sort this problem.

    Hi,
    I have recently updated my iMac from OS x mountain lion to OS X Mavericks.
    After that I can't upload any video and some files to my personal email account.
    I have tried to send a small video clip to the sender as attachment. i have done this before
    with the same video same and same email account. This problem found just after installed the
    OS X Movericks. Can anyone please help me to sort this problem.
    Thanks.
    Roman

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in earlier versions there is only one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • Audio recording problem in Cap 5

    I have used earlier Captivate editions a great deal and never had audio recording problems.  I am getting a weak scratchy audio recording.  I have tried in Vista, Win 7 and with multiple microphones.  What can be the problem?

    Joe,
    Unfortunately, you have posted to the Premiere forum. This was the precursor to PrPro. The MOD's will probably move this out to the PrPro forum, so more folk will see it and can respond.
    Now, did you use a USB mic? Many have had issues with those.
    Also, going back about a year, there was a similar thread, and the description was about the same - "chipmunk." I do not recall the flow of that thread, or the resolution, but will try to find it. I just hope that it was not before the forum changeover, as it is likely gone forever.
    Good luck,
    Hunt
    [Edit] OK, I think that this is the THREAD.
    Message was edited by: Bill Hunt - Added Edit and link

  • Hard drive replacement, now all sorts of problems

    A couple weeks ago my hard drive crashed. I confirmed at the Apple store that it was the hard drive, and they gave me instructions on how to put a new one in.
    Since I've put the new one in I've had all sorts of problems.
    1. My previously totally fine battery doesn't show up at all. Though the battery says it's fully charged, the laptop says that no battery is available.
    2. DVDs don't play. The DVD player gets rolling, and then freezes.
    3. Photobooth doesn't load "because the camera is in use by another application".
    4. My external sound input/output can't be recognized or set up though the driver (also because the IOdirect is "in use").
    5. The computer won't completely shut down sometimes and freezes on the blue screen just prior to complete shut down.
    I've wiped the hard drive and started over to the same results.
    Please, any help?

    Have you fixed you problem yet?
    1. Have you checked to make sure that the drive is plugged in properly and setting on the proper mounts that were on the old drive?
    2. How did you go about putting the OS OSX on the newly installed drive? Ex. Did you install OSX and all you applications then then restored you personal data from a backup? Did you use Time Machine to restore OSX and all data to the new drive? Or did you use a previously cloned drive, along with a program such as SuperDuper or Carbon Copy Clone, to restore to the new drive?

  • I just upgraded to iTunes 12 and had all sorts of problems.  After several restores I seem to be able to sync my iPad with iTunes BUT I can't delete anything off my iPad from iTunes.  Any ideas on what to do?

    I just upgraded to iTunes 12 and had all sorts of problems.  After several restores I seem to be able to sync my iPad with iTunes BUT I can't delete anything off my iPad from iTunes.  Any ideas on what to do?

    -Me again - it also won't upload the few new pictures I have on the computer onto the iPad without deleting all the photos that are already there....

  • Re: Recording Problems - Programmes Recoding but B...

    Posts: 1
    Registered: 24-02-2011
    0
    Re: Recording Problems - Programmes Recoding but Blank Screen
    Options
    Edit Reply
    Mark as New
    Bookmark
    Subscribe
    Subscribe to this message's RSS Feed
    Highlight this Message
    Print
    Email this Message to a Friend
    Report Inappropriate Content
    on 24-02-2011 21h35
    Need help please I'm new to this forum... I have been having a few problems with my recordings like others I try to play back programme I have recorded and get nothing and also trying to delete a programme I'm getting a message to say I can't delete as the programme may be running on another box!!! I only have 1 box!!! I have tried all the rebooting fixes but no joy... I have an old white style hh... Is this or the box tired and in need of replacing??? I've also checked the settings and I'm online and have space on my disk!!! Help

    We have had the same problem, which is really frustrating!!
    The box appears to be recording but when the programme is played back, it stops during the programme and goes to the resume play on the menu or sometimes the channel isn't there, its just a black screen, I'm thinking of going to Sky if it carries on, getting really fed up now!!!
    davearliss wrote:
    Posts: 1
    Registered: 24-02-2011
    0
    Re: Recording Problems - Programmes Recoding but Blank Screen
    Options
    Edit Reply
    Mark as New
    Bookmark
    Subscribe
    Subscribe to this message's RSS Feed
    Highlight this Message
    Print
    Email this Message to a Friend
    Report Inappropriate Content
    on 24-02-2011 21h35
    Need help please I'm new to this forum... I have been having a few problems with my recordings like others I try to play back programme I have recorded and get nothing and also trying to delete a programme I'm getting a message to say I can't delete as the programme may be running on another box!!! I only have 1 box!!! I have tried all the rebooting fixes but no joy... I have an old white style hh... Is this or the box tired and in need of replacing??? I've also checked the settings and I'm online and have space on my disk!!! Help

Maybe you are looking for

  • Sub contract in Project System

    Dear PS Experts, In our Manufacturing process max going on Sub Contracting only.  for ex:  There are 10 operation is going on there,  the first process going throgh the Sub Contracting but here we are issuing material and power to contracter free of

  • Perl unit tests fail

    I tried to build version 2.5.16 with the following options: ./buildall.sh prefix=/usr/local enable-perl I got the following message: make[1]: Entering directory `--------/dbxml-2.5.16/dbxml/src/perl/DbXml' PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils:

  • Can the materized view be used here?

    Hi, Can I create a materialized view at the database ABC (the materialized view site) using the following query? the regional data (the master sites is located remotely at apj_db, can_db and us_db databases) are pulled in using dblinks? select name,

  • OS X Server Open Directory Remote Login

    In short, I can't bind a remote machine to authenticate users at the remote location. I can get the machine to initially setup using RFC2307 search and mappings. Once I let that, "marinate" for a bit. I can then go in, change the mappings to Open Dir

  • Motherboard is missing components

    Hi I have a 2009 Mac Pro that work until it was placed in storage for two months while I moved house. When setup at my new home it will power up everything such as fans and hard drives but it will not give of a chime, video or boot. To find the probl