Keyboard keys different between models?

I replaced the top case on a black Macbook 2.16 Core 2 Duo model, as the keyboard and trackpad were not being recognized and were not working. I had a white top case from a broken Macbook 2.0 Core 2 Duo which works okay. Finally a working keyboard and trackpad!
I gave this Macbook to my wife, who wants to use a non-English keyboard layout. I've swapped keys on lots of different Apple portables, so it's something I'm familiar with.
The problem, though, is that I've found that they keys on 3 different Macbook keyboards snap on in a different way than on the keyboard that is now installed on my wife's Macbook.
Specifically, there are 2 small hooks on the back of the keys that hook onto the scissor mechanism under the keys. On the 3 different Macbook keyboards, these 2 small hooks are on the LEFT side of the keys (as you look at the keyboard), whereas on the keyboard on my wife's Macbook, the 2 small hooks are at the TOP of the keys.
In order to install the keys on the keyboard, I have to place them SIDEWAYS. Which makes using the keyboard a bit strange, to say the least.
Any idea when Apple started changing how the keys are installed on the keyboards on Macbooks?

Quote
Originally posted by wonkanoby
• 865PE Neo2-S [Standard Version, Serial ATA(SB)]
    • 865PE Neo2-LS [10/100 LAN, Serial ATA(SB)]
    • 865PE Neo2-FIS2R [GbE LAN, IEEE 1394, Serial ATA(SB),
      Ultra/Serial ATA RAID(Promise)]
longer the name more features you get
standard will have none of the optional bits
ILSR has them all
I just discovered a BIOS update for 865PE mainbaords, but does it apply to all versions? I have the FIS2R version.

Similar Messages

  • Different between models

    On MSI product page, there are 3 different models of the 865PE motherboard:
    865PE Neo2-FIS2R
    865PE Neo2-S
    865PE Neo2-LS
    I looked through the articles and can find no difference in the models.  Plz some1 fill me in on the difference between these.

    Quote
    Originally posted by wonkanoby
    • 865PE Neo2-S [Standard Version, Serial ATA(SB)]
        • 865PE Neo2-LS [10/100 LAN, Serial ATA(SB)]
        • 865PE Neo2-FIS2R [GbE LAN, IEEE 1394, Serial ATA(SB),
          Ultra/Serial ATA RAID(Promise)]
    longer the name more features you get
    standard will have none of the optional bits
    ILSR has them all
    I just discovered a BIOS update for 865PE mainbaords, but does it apply to all versions? I have the FIS2R version.

  • Is it possible to create group above report between to different data model

    Hi,
    I am having one problem.. I am working on Bi publisher 10...
    I have to create 2 different data models.. which i have done successfully.... its showing xml data perfectly.. but my problem is i want my 2nd data model to be dependent of 1st model...
    when i am designing my template ... i am not able to create a group by report..
    i want my report like this ...
    ------------------------------------------------------------ (fetching data from first data model)
    abc xyz pqrs
    --------------------------------now their it must show the data from second data model... dependent on first model...
    simply i want to know is it possible to create group above report between to different data models..

    Thanks for your response..
    I already tried this.. But its not working ..
    i want parent information from data model 1
    then all detail information related to parent template ...from data model 2..
    but its not working.. its giving me all parent informations first then all details informations..

  • Events to detect change in physical keyboard key state

    I would like my application to respond in one way to a keyboard key being pressed, and then another way to the key being released. That is, I want my application to be able to reflect the actual physical state of the keyboard key.
    The obvious use of the (several) Java API's for keyboard events rapidly fires repeated KEY_PRESSED and KEY_RELEASED events if the key is held down for any time. This unfortunately obscures the actual state of the physical key (how do you know which was the last KEY_RELEASED?)
    Is it possible to turn off the key repeat feature, just for component, say?
    This would seem to be an obvious thing to do, but I can't find sample code anywhere. The code I find in the Sun Java API manuals all shows the above problem with key repetition.
    I would be also pleased to know that the solution of this problem is well known, on some FAQ or something, but I have looked through several FAQ's and searched this formum and have found nothing that helps. Also, I have had the misfortune of having to build messy and non-robust solutions for the equivalent problem in other development environments. I hope it is already there somewhere in Java and I'm just missing it.
    Thanks!

    "If two subsequent KEY_RELEASED and KEY_PRESSED
    events have the same
    timestamp, they are caused by autorepeat"
    This sounds good. But unfortunately the repeated
    KEY_RELEASED and KEY_PRESSED caused by key autorepeat
    on my system (Linux, java 1.5.0_09) have
    timestamps that increase with each repetition.I think this means only that the pair of pressed/release events have the
    same timestamp, not that every such pair has the same timestamp.
    That is, if you have the sequence PRESS,RELEASE,PRESS,RELEASE,
    the first two would have the same timestamp, and then the second two
    would have the same timestamp, but different than the first. Regardless,
    I found that also to not be the case; the PRESS and RELEASE did not have
    the same timestamp even between pairs.
    That said, this seems to work on both Windows and Linux, with the caveat
    that releases may lag.
    import java.awt.event.*;
    import java.util.HashMap;
    import java.util.Map;
    import javax.swing.*;
    public class LinuxKeyTest extends JPanel implements KeyListener {
         int delay = 750; // Must be > than your 500ms start delay.
         int delayRepeat = 75; // Must be greater than keyboard repeat interval.
         Map timers = new HashMap();
         int m_keyCode = -1;
         public static void main( String[] args ) {
              Runnable doRun = new Runnable() {
                   public void run() {
                        new LinuxKeyTest();
              SwingUtilities.invokeLater( doRun );
         public LinuxKeyTest() {
              JPanel panel = new JPanel();
              panel.setFocusable( true );
              panel.requestFocusInWindow();
              panel.addKeyListener( this );
              JFrame f = new JFrame();
              f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              f.getContentPane().add( panel );
              f.setSize( 200, 100 );
              f.setLocation( 200, 200 );
              f.setVisible( true );
         public void keyPressed( KeyEvent e ) {
              int keyCode = e.getKeyCode();
              m_keyCode = keyCode;
              Integer timerKey = new Integer( keyCode );
              Timer timer = (Timer) timers.get( timerKey );
              if ( timer == null ) {
                   KeyTimeout keyTimeout = new KeyTimeout( timerKey, e.getWhen() );
                   timer = new Timer( delay, keyTimeout );
                   timers.put( timerKey, timer );
                   timer.start();
                   pressed( keyCode );
              } else {
                   ( (KeyTimeout) timer.getActionListeners()[0] ).setPressed( e.getWhen() );
                   timer.restart();
         public void keyReleased( KeyEvent e ) {
              int keyCode = e.getKeyCode();
              Integer timerKey = new Integer( keyCode );
              Timer timer = (Timer) timers.get( timerKey );
              if ( timer != null ) {
                   ( (KeyTimeout) timer.getActionListeners()[0] ).setReleased( e.getWhen() );
                   timer.setInitialDelay( delayRepeat );
                   m_keyCode = ( m_keyCode == keyCode ? -1 : keyCode );
              } else if ( m_keyCode != keyCode ) {
                   released( keyCode );
         public void keyTyped( KeyEvent e ) {
         public void pressed( int keyCode ) {          
              System.out.println( keyCode + " pressed" );
         public void released( int keyCode ) {
              System.out.println( keyCode + " released" );
         public class KeyTimeout implements ActionListener {
              private Integer timerKey;
              private int keyCode;
              private long firstPressed;
              private long pressed;
              private long released;
              public KeyTimeout( Integer key, long time ) {
                   this.timerKey = key;
                   this.keyCode = timerKey.intValue();
                   this.firstPressed = time;
                   this.pressed = time;
                   this.released = time;
              public void actionPerformed( ActionEvent e ) {
                   if ( released != firstPressed && released != pressed ) {
                        released( keyCode );
                        stop();
                   } else if ( m_keyCode != keyCode ) {
                        if ( m_keyCode == -1 ) {
                             released( keyCode );
                        stop();
              public void stop() {
                   Timer timer = (Timer) timers.get( timerKey );
                   timer.stop();
                   timers.remove( timerKey );
              public void setPressed( long time ) {
                   this.pressed = time;
              public void setReleased( long time ) {
                   this.released = time;
    }

  • Assign Samples from Sample Instrument to Mac Keyboard Keys?

    I do a little freelance composition for commercial uses, entertainment trailers, games -- in other words, no performance at all, usually SFX or electronica-esque tracks 30 - 60 seconds in length. I've long been doing the work on dedicated digital equipment -- mixers, Korg pads and a sampler, couple small synths, a hardware sequencer, multitrack recorder, an old Drumulator (which stays, by the way; actually all of it I'll probably use here and there) -- and I've evaluated DAWs in the past, generally deciding I'd just be trading one set of complexities for another. But with after looking at Logic Pro Studio (LP 8), I can no longer make that argument.
    I have a new Mac well up to the task, so I've finally decided to buy in. My wife will be thrilled (Where did all the STUFF go?) For the kind of work I do, I can't, not this early into it, reasonably justify buying a high-end control surface to expedite what I can do with a mouse and keyboard.
    What I am concerned about though is needing something like one of these Akai multi-bank "drum pad" interfaces for triggering samples. I have a small keyboard with USB controller interface for parts I really need to play -- piano being my traditional instrument background. I know in GarageBand with sound effects sampled "instruments", like "radio sounds" for example, you can assign different effects to different Mac keyboard keys, hit and hold the A key for a certain sampled effect, hold it for the full sample, or release the key to cut it mid-sample, repeatedly tap for a stutter, etc., pretty much any of the basics you can do with a pad-triggered sample on a dedicated sampler, or with a pad interface to a DAW.
    Can Logic do this? I'm assuming since GB samples instruments use the EXS format of Logic, and you can create GB sampled instruments in Logic, there's no problem assigning different sample files to different notes in Logic's inbuilt sample. I just don't to use the the USB-interface keyboard to play them, as I often will need to keep it free for some improvisational noodling with a synth instrument or what have you, yet still need to improv triggering the samples, too. Rather than go back and drop the samples in after recording, say, a live synth over a drum sequence. Since I don't do any live performance outside a studio environment, there's tolerance for going back and making adjustments, or re-recording.
    On the one hand, I already have far too much equipment and would rather skip the pad-trigger interface if I can. On the other hand, in switching to Logic, I don't want to entirely eliminate all improv play, layering the whole thing together with a Mac keyboard and mouse, like building a Lego model kit. I mean, I can, as what I do on dedicated equipment is far more like programming a computer than actually performing live music, but having a background in piano performance, I still like a little spontaneity to creep in while composing.

    Hey, thanks for saving me a few hundred bucks. If it turns out I'm not comfortable with it, I can always backtrack and buy a good pad trigger/control interface. But the idea is to streamline as much as possible into the Mac and Logic, make most of the dedicated gear optional rather than required. All my friends who use Logic Studio are in large-scale and/or expensively outfitted production studio environments; when I go play around, I sort of get lost tinkering with all that wild gear and forget my checklist. I called a couple of guys about this particular question and from both I got, "I have no idea, man. We use control surfaces for everything." So your answer was especially helpful.

  • Why can't I get a replacement keyboard key from Apple?

    Rant version
    I was delivered a new 15 inch Macbook Pro with Retina screen with a broken 'V' key (literally, just the black plastic panel has a small broken clasp). I was unable to get a genius bar appointment anywhere within London Zone 1-2, Regent St, Stratford and Covent Garden all just tell me there are no appointments available. I called the Apple store in Stratford City to see if they could order a new 'V' key to the store so I could pick it up and click it on. They suggested I call Apple customer services as they wouldn't be able to help me unless I booked a Genius bar appointment, and obviously they had none. I was informed that I would have to send the entire machine away for at least 5 working days and then wait for a replacement to be shipped out. This is a total P.I.T.A as I have already started important projects on this machine.
    I managed to book a Genuis Bar appointment in Bromley (30 minutes drive from my house) and called to see if it would be possible for them to order the part in and fit it on the day, during my appointment. They said I would have to come in, just to show them the machine, and then they could order the part using my serial number. I asked why I couldn't just give them my serial number and come in when the part was delivered. They said that the telephone operator at the store could not make any sort of contact with the genius bar, regardless of the fact they are in the same building.
    I'd like to point out that everyone I have spoken to have been extremely nice, and understood my frustration, they just haven't been able to do anything that goes outside of their very limited protocol.I find it unacceptable that a company as powerful as Apple, are unable to post a keyboard key to a customer.
    As a computer enthusiast, this is the easiest and most simple problem I have ever had with a machine. It has also been the most common-sense defying process I have ever had the misfortune of being a part of. If it were up to me I would just pay the £3 for a replacement online, but Apple have changed the positions of the clasps from the unibody model by about a few microns, and I don't feel like waiting until someone decides to scrap a new RMBP.
    I don't mind if Apple don't want me to do the repair myself, that I may need to go through the enigmatic ritual of the genius bar to get this done (heaven forbid anyone but a Genius click the 'V' key on). I don't even mind if it takes a couple of weeks for the part to get there, I just want a replacement key, stuck on this laptop, without wiping the entire machine or sending it away for a week.
    Short version:
    If anyone knows where I can get a replacement 'v' key for the new 15inch Retina Macbook Pro then I'll love you forever.

    Yes it is sad but true I think. I EZprint to do my pano's and they turn out excellent. Give them a try.
    http://ezprints.com/Prints/panoramas/default.aspx
    Hope this helps.
    Tom
    desertdreamingphotography.com

  • [SOLVED] xorg 1.5 + japanese keyboard key

    I am using ThinkPad T61 and my desktop dnvironment is GNOME.
    I tried to make configuration for japanese 106-keyboard with new xorg.
    My solution is following:
    (1)Copy /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi  to /etc/hal/policy.
    sudo cp /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi /etc/hal/policy/
    (2)Edit /etc/hal/policy/10-keymap.fdi
        Referenced page: http://cgit.freedesktop.org/xorg/xserve … -input.fdi
    <?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
    <deviceinfo version="0.2">
    <device>
    <match key="info.capabilities" contains="input.keymap">
    <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>
    <match key="info.capabilities" contains="input.keys">
    <merge key="input.x11_options.XkbRules" type="string">evdev</merge>
    <!-- If we're using Linux, we use evdev by default (falling back to
    keyboard otherwise). -->
    <merge key="input.x11_driver" type="string">kbd</merge>
    <merge key="input.x11_XkbModel" type="string">jp106</merge>
    <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
    string="Linux">
    <merge key="input.x11_driver" type="string">evdev</merge>
    <merge key="input.x11_XkbModel" type="string">jp106</merge>
    </match>
    <merge key="input.x11_XkbLayout" type="string">jp</merge>
    <merge key="input.x11_XkbVariant" type="string" />
    </match>
    </device>
    </deviceinfo>
    (3) Reboot.(or restart hal)
    (4) Open the gnome keyboard panel, and select keyboard model and layout.
         keyboard model : Japanese 106-key
         Layout  : Japan
    Now ']' and '}' keys became available.
    (5) Option.
    setxkbmap -print
    xkb_keymap {
    xkb_keycodes { include "evdev(jp106)+aliases(qwerty)" };
    xkb_types { include "complete" };
    xkb_compat { include "complete+japan+ledscroll(group_lock)" };
    xkb_symbols { include "pc+jp+inet(evdev)+altwin(super_win)+group(alts_toggle)+level3(menu_switch)+ctrl(swapcaps)" };
    xkb_geometry { include "pc(jp106)" };
    That's all.
    Best regards.

    I also have a Thinkpad, T60 with jp106 keyboard and am running Openbox. Using evdev-2.1.0
    from the testing branch instead of evdev-2.0.7 with X's hotplugging got me jp106 keyboard layout by only modifying /etc/hal/fdi/policy/10-keymap.fdi as follwing
    $ cat /etc/hal/fdi/policy/10-keymap.fdi
    <?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- -->
    <deviceinfo version="0.2">
    <device>
    <match key="info.capabilities" contains="input.keymap">
    <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>
    <match key="info.capabilities" contains="input.keys">
    <merge key="input.xkb.rules" type="string">base</merge>
    <!-- If we're using Linux, we use evdev by default (falling back to
    keyboard otherwise). -->
    <merge key="input.xkb.model" type="string">keyboard</merge>
    <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
    string="Linux">
    <merge key="input.xkb.model" type="string">jp106</merge>
    </match>
    <merge key="input.xkb.layout" type="string">jp</merge>
    </match>
    </device>
    </deviceinfo>
    According to the wiki (http://wiki.archlinux.org/index.php/Xor … otplugging) this is how changing the keyboard layout via hal policy files in xorg-server 1.5 series is supposed to work but for me it didn't with evdev-2.0.7 so I assume some fixes have been made in evdev-2.1.0.
    I haven't had any issues by using the testing branch evdev and with this I can get all keys except the yen key, which has never woked by default for me, working without farther configuration.
    Last edited by naoki (2008-12-07 13:36:51)

  • Why is the PAPER SIZE pull down list different between my 2 identical MFPs?

    Indesign 6 - Toshiba MFPs with PS3 Drivers.
    I have 2 of the same models Toshiba MFPs - 5560c, and using the Universal PS3 Driver under Windows 7 PC.
    Why is my Paper Size pull down list different between to the 2 MFPs?  The main reason I ask; I don't leave it on "Defined by Driver" because that affects full bleed with crop mark printing, so I setup the driver first (say 12x18), then come back to the InDesign dialog and select a paper size.
    For my scenario I need 12x18 - which shows in one list but not the other. Aside from that the lists are totally different - why is that?  How can I manage that list?
    Thanks,
    Pat

    Sorry same screenshot

  • Why parition table is different between S10 3/05 and S10 6/06?

    I want to set up RAID 1 (mirroring) using the Solaris Volume Manager (SVM) on my Solaris 10 6/06 x86 machine. I have 2 identical Seagate 40GB HDD's (model ST340016A).
    The partition table on the primary disk was already defined by Solaris 10 3/05 OS before I reinstalled the OS (Solaris 10 6/06). The partition table of the primary disk is as follows:
    leopard $ prtvtoc /dev/rdsk/c0d0s2
    * /dev/rdsk/c0d0s2 partition map
    * Dimensions:
    * 512 bytes/sector
    * 63 sectors/track
    * 32 tracks/cylinder
    * 2016 sectors/cylinder
    * 38771 cylinders
    * 38769 accessible cylinders
    * Flags:
    * 1: unmountable
    * 10: read-only
    * Unallocated space:
    * First Sector Last
    * Sector Count Sector
    * 20984544 57173760 78158303
    * First Sector Last
    * Partition Tag Flags Sector Count Sector Mount Directory
    0 2 00 6048 8390592 8396639 /
    1 3 01 8396640 2098656 10495295
    2 5 00 0 78158304 78158303
    3 7 00 10495296 2098656 12593951 /var
    4 0 00 12593952 4195296 16789247 /opt
    5 8 00 16789248 4195296 20984543 /home
    8 1 01 0 2016 2015
    9 9 01 2016 4032 6047
    It has 38771 cyclinders.
    Now I want to create exactly the same partition table on the secondary disk, but it refuses to match the same partition table to the primary disk. It stills gives 40GB, but the number of cycliners is not the same. Below is the partition table of the secondary disk.
    leopard $ prtvtoc /dev/rdsk/c0d1s2
    * /dev/rdsk/c0d1s2 partition map
    * Dimensions:
    * 512 bytes/sector
    * 63 sectors/track
    * 255 tracks/cylinder
    * 16065 sectors/cylinder
    * 4864 cylinders
    * 4862 accessible cylinders
    * Flags:
    * 1: unmountable
    * 10: read-only
    * Unallocated space:
    * First Sector Last
    * Sector Count Sector
    * 48195 78059835 78108029
    * First Sector Last
    * Partition Tag Flags Sector Count Sector Mount Directory
    2 5 01 0 78108030 78108029
    8 1 01 0 16065 16064
    9 9 00 16065 32130 48194
    leopard $
    It has 4864 cyclinders not 38771. Why?
    You can see the disk dimension is different between these 2 disks. I tried to redefine it to match the primary disk, but it keeps coming back to the different table.
    Do you know why the partition table defined by Solaris 10 6/06 differs to what Solaris 10 3/05 had defined? How do I force the parition table to match with the primary disk? Both disks must match so that SVM would work.
    Can anyone shed any light as to why it happens? Thank you for your help.
    Trevor

    I want to set up RAID 1 (mirroring) using the Solaris Volume Manager (SVM) on my Solaris 10 6/06 x86 machine. I have 2 identical Seagate 40GB HDD's (model ST340016A).
    The partition table on the primary disk was already defined by Solaris 10 3/05 OS before I reinstalled the OS (Solaris 10 6/06). The partition table of the primary disk is as follows:
    leopard $ prtvtoc /dev/rdsk/c0d0s2
    * /dev/rdsk/c0d0s2 partition map
    * Dimensions:
    * 512 bytes/sector
    * 63 sectors/track
    * 32 tracks/cylinder
    * 2016 sectors/cylinder
    * 38771 cylinders
    * 38769 accessible cylinders
    * Flags:
    * 1: unmountable
    * 10: read-only
    * Unallocated space:
    * First Sector Last
    * Sector Count Sector
    * 20984544 57173760 78158303
    * First Sector Last
    * Partition Tag Flags Sector Count Sector Mount Directory
    0 2 00 6048 8390592 8396639 /
    1 3 01 8396640 2098656 10495295
    2 5 00 0 78158304 78158303
    3 7 00 10495296 2098656 12593951 /var
    4 0 00 12593952 4195296 16789247 /opt
    5 8 00 16789248 4195296 20984543 /home
    8 1 01 0 2016 2015
    9 9 01 2016 4032 6047
    It has 38771 cyclinders.
    Now I want to create exactly the same partition table on the secondary disk, but it refuses to match the same partition table to the primary disk. It stills gives 40GB, but the number of cycliners is not the same. Below is the partition table of the secondary disk.
    leopard $ prtvtoc /dev/rdsk/c0d1s2
    * /dev/rdsk/c0d1s2 partition map
    * Dimensions:
    * 512 bytes/sector
    * 63 sectors/track
    * 255 tracks/cylinder
    * 16065 sectors/cylinder
    * 4864 cylinders
    * 4862 accessible cylinders
    * Flags:
    * 1: unmountable
    * 10: read-only
    * Unallocated space:
    * First Sector Last
    * Sector Count Sector
    * 48195 78059835 78108029
    * First Sector Last
    * Partition Tag Flags Sector Count Sector Mount Directory
    2 5 01 0 78108030 78108029
    8 1 01 0 16065 16064
    9 9 00 16065 32130 48194
    leopard $
    It has 4864 cyclinders not 38771. Why?
    You can see the disk dimension is different between these 2 disks. I tried to redefine it to match the primary disk, but it keeps coming back to the different table.
    Do you know why the partition table defined by Solaris 10 6/06 differs to what Solaris 10 3/05 had defined? How do I force the parition table to match with the primary disk? Both disks must match so that SVM would work.
    Can anyone shed any light as to why it happens? Thank you for your help.
    Trevor

  • BW Architecture - SURVEY - key figures data model vs account data model

    Hi SAP Gurus,
    Between the keys figures data model, and the account data model which one do you implement/prefer and for which reason ?
    Thanks,
    Greg
    Edited by: Greg C. on Jun 4, 2009 5:56 PM

    I once found the note 407563 on this subject. It gives the advantages and disadvantages from the point of view of data modelling and from the technical point of view.
    It's a BPS note, but manly valid in a BW context.
    Regards,
    Fred

  • Qosmio G50-12Q: How to disassemble keyboard key?

    Where I can find of the relative photos to the disassembling of the keys of the keyboard of Qosmio g50 ?

    Is possible to remove the single keys and in some sites in it Usa and France I have been able to see that they sell also the single keys of several models of PC
    I have since there are photo in Internet on like taking apart the qosmio g50 but in particular of the keys of the keyboard I have not found no type of photo

  • How to pass value between models?

    Dear all,
    I use VC 7.0 composer to create dashboards. That include one overview dashboard (model) to show seven KPI in one screen and I also have seven detailed dashboards (models) to show the detail of each KPI.  Each dashboard has their own iView .   User will only need to pick a plant once at the overview dashboard and I expect the plant value will be passed to other seven detailed dashboards.
    Since those dashboards are saved in different models, I just wonder is it possible I can pass the value from the overview dashboard model to the separated detailed dashboard models? The reason I donu2019t put all dashboards in one model because I need to have different reports assigned on the left of the screen for each dashboard in portal. If I need to accomplish this in portal, I believe I need separate iView(model) for each dashboard. Please correct me if I am wrong since I am new to portal development. Thanks.

    I think it is possible to pass values between models.
    Just creat on "Write-RFC" and one "Read-RFC"
    The RFC has just the function to write/read a value into an customer table...
    ^^ We have tried this scenario and it works perfect.
    Regards
    Florian

  • Key Differences between Essbase System 9 and 11

    Hi,
    I understand that there are several architectural underpinnings that are different between system 9 and system 11. The other day a business user asked me to point out key differences between system 9 and 11.
    the first thing that jumped at me was the thin client architecture, where you dont have to install EAS or Studio on to user system..
    Can anyone help me tabulate the key differences interms of end user functionality and in terms of developer interfaces.
    any inputs would be really appreciated.
    Thanks in advance

    Hi,
    Here are some things I particularly like about System11 Essbase
    <li>Ability to store text and dates as measure values (intersection data)
    <li>Lifecycle Management & Lifecycle Management API
    <li>Single click backup and restore
    <li>Attributes that can be changed over time to preserve historical data
    <li>ASO Maxl data slice clearing & inversion
    <li>Ability to use Environment Variables
    <li>Implied Share override
    <li>@DateDiff and @DatePart
    Here is a comprehensive list of the System 11 new features:
    http://download.oracle.com/docs/cd/E12825_01/epm.111/esb_new_features/esb_new_features.htm
    Regards,
    Robb Salzmann

  • Different between dates (urgent)

    Hi,
    I have created a different between 2 dates. I have create a formula with replacement path, but when I try to show the result, I receive 'X'. I only can a good result when I show 2 dates as characteristics.
    How can I show a differents betwween dates without show these dates?
    Thanks too much

    Hi, thanks too much.
    I have 2 dates in report, but in free characteristics.
    I only get data when I show this free characteristics.
    Is posible to create a key figure without have to show these dates?
    I want to create a structure of key figures of differents substracts dates.
    Example:
    client, date2-date1, date3-date1, date4-date3
    Do you understand?
    I only get data when I show date1,2,3,4
    Thanks

  • Wat is the different between AP set and ORI set?

    i fedup about wan buy AP set or ori set... because AP set is cheaper but i scared AP set spoil more easily, i also heard people say AP set camera and sound system is different with ori set.... guys kindly please tell me wat is the different between AP set and ori set and izit same to buy AP set and ori set?THX YA ^-^....
    Message Edited by geronimo on 24-Mar-2008 06:29 AM

    Thanks YuliaKlimov, I can reproduce this issue, but I cannot explain the different behaviors between SSAS 2008 and 2008R2. As a workaround,
    could you try to use dynamic set or create statics set but with fixed member for example:
    CREATE 
    SET CURRENTCUBE.[Prior Month] AS
    [Date].[Date Key].&[20050723].PrevMember
    , DISPLAY_FOLDER = 'Relative Period Sets';
    Personally, I think your set is dynamic set, because the currentmember is changed base on current selection. You can also submit this issue
    on below official link to get confirmation from Product Group:
     https://connect.microsoft.com/SQLServer/
    Thanks,
    Raymond
    Raymond Li - MSFT

Maybe you are looking for