Methods users can set a new or reset an existing business formula

Hi All,
if anyone have an idea on the below question, please try to answer.
**Methods users can set a new or reset an existing business formula behind specific KPI**
Thanks in advance

Leonie,
The way BeehiveOnline works is that the group is the basic component of the system. You can only see participants that share a group with you.
So in your situation it looks like the user is not inas a shared group so  you have to add the users to a group first and then they will show in the system as being available to add to Workspaces. If this is the default Workspace they will be automatically added to it as they are provisioned into the system.
The process is the same for Oracle and non-Oracle users - they are all the same to the system
Phil

Similar Messages

  • How can I add new row/column into existing jTable?

    Hi add!
    Can you help me how can I add new row/column into existing jTable?
    Tnx in adv!

    e.g
    Create two buttons inside the Table ( "Add New Row" ) and ("Add new Column")
    their handlers are:
    add new row:
    //i supose u already have
    DefaultTabelModel tablemodel = new DefaultTableModel(rowdata, columnNames);
    //and   
       JTabel jtable = new JTable(tablemodel);
    // Handler (row)
    jbtAddRow.addActionListener(new ActionListener(){
       public void actionPerformed(ActionEvent e) {
          if(jtable.getSelectedRow() >= 0 )
              tablemodel.insertRow(jtable.getSelectedRow(), new java.util.Vector());  
           else  
                tablemodel.addRow(new java.util.Vector());
        });to add new columns its the same but inside actionPerformed method:
    ask for e.g "Whats the name for the new column"
    then,
       tablemodel.addColumn(nameOfColumn, new java.util.Vector());   Joao
    Message was edited by:
    Java__Estudante

  • How can I write new objects to the existing file with already written objec

    Hi,
    I've got a problem in my app.
    Namely, my app stores data as objects written to the files. Everything is OK, when I write some data (objects of a class defined by me) to the file (by using writeObject method from ObjectOutputStream) and then I'm reading it sequencially by the corresponding readObject method (from ObjectInputStream).
    Problems start when I add new objects to the already existing file (to the end of this file). Then, when I'm trying to read newly written data, I get an exception:
    java.io.StreamCorruptedException
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    Is there any method to avoid corrupting the stream? Maybe it is a silly problem, but I really can't cope with it! How can I write new objects to the existing file with already written objects?
    If anyone of you know something about this issue, please help!
    Jai

    Here is a piece of sample codes. You can save the bytes read from the object by invoking save(byte[] b), and load the last inserted object by invoking load.
    * Created on 2004-12-23
    package com.cpic.msgbus.monitor.util.cachequeue;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.RandomAccessFile;
    * @author elgs This is a very high performance implemention of Cache.
    public class StackCache implements Cache
        protected long             seed    = 0;
        protected RandomAccessFile raf;
        protected int              count;
        protected String           cacheDeviceName;
        protected Adapter          adapter;
        protected long             pointer = 0;
        protected File             f;
        public StackCache(String name) throws IOException
            cacheDeviceName = name;
            f = new File(Const.cacheHome + name);
            raf = new RandomAccessFile(f, "rw");
            if (raf.length() == 0)
                raf.writeLong(0L);
         * Whne the cache file is getting large in size and may there be fragments,
         * we should do a shrink.
        public synchronized void shrink() throws IOException
            int BUF = 8192;
            long pointer = getPointer();
            long size = pointer + 4;
            File temp = new File(Const.cacheHome + getCacheDeviceName() + ".shrink");
            FileInputStream in = new FileInputStream(f);
            FileOutputStream out = new FileOutputStream(temp);
            byte[] buf = new byte[BUF];
            long runs = size / BUF;
            int mode = (int) size % BUF;
            for (long l = 0; l < runs; ++l)
                in.read(buf);
                out.write(buf);
            in.read(buf, 0, mode);
            out.write(buf, 0, mode);
            out.flush();
            out.close();
            in.close();
            raf.close();
            f.delete();
            temp.renameTo(f);
            raf = new RandomAccessFile(f, "rw");
        private synchronized long getPointer() throws IOException
            long l = raf.getFilePointer();
            raf.seek(0);
            long pointer = raf.readLong();
            raf.seek(l);
            return pointer < 8 ? 4 : pointer;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#load()
        public synchronized byte[] load() throws IOException
            pointer = getPointer();
            if (pointer < 8)
                return null;
            raf.seek(pointer);
            int length = raf.readInt();
            pointer = pointer - length - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            byte[] b = new byte[length];
            raf.seek(pointer + 4);
            raf.read(b);
            --count;
            return b;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#save(byte[])
        public synchronized void save(byte[] b) throws IOException
            pointer = getPointer();
            int length = b.length;
            pointer += 4;
            raf.seek(pointer);
            raf.write(b);
            raf.writeInt(length);
            pointer = raf.getFilePointer() - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            ++count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCachedObjectsCount()
        public synchronized int getCachedObjectsCount()
            return count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCacheDeviceName()
        public String getCacheDeviceName()
            return cacheDeviceName;
    }

  • Can't name new folders or rename existing folders in Finder

    I can't name new folders or rename existing folders in Finder. I've never had this happen before. I tried both using the new folder icon and choosing "new folder" from the actions icon. The only unusual thing I'm doing now is working with Spaces enabled, but I can't imagine that this has anything to do with the problem. Selecting and hitting "return" doesn't allow me to either erase existing text or overwrite with new text. Any ideas?
    Thanks.
    Sue A.

    Same here --
    I just created a new folder and couldn't change its name. Finder would give me "more info" (permissions certainly not an issue) and allow me to delete (and then recreate) the folder, but not change its name.
    Problem came from out of the blue, on a one-week-old system with all OS updates. Also found this old thread, which also suggests a Finder restart: http://discussions.apple.com/thread.jspa?messageID=8989639
    So that'll probably do it, but what gives?
    Not so impressed with 10.5.7 so far... first a complete system crash while doing no more than downloading updates (a few hours after booting up for the first time), then networking stopped working (see http://discussions.apple.com/thread.jspa?threadID=2003868), now this...

  • Can we create new customer site for existing customers using custm interfc

    Hi ,
    I have a requirement :
    version -- R12 .
    We need to add new customer site for existing customers , is it possible to create it through customer interface with insert_update_flag set as U / I .
    Any help in this is grate .
    regards ,
    Azzu .

    I am pretty sure I've done this on one of my past project..
    why don't you try it out?
    Another route would be use customer APIs (TCA APIs)...which I am sure can achieve what you're looking for.
    Edited by: James Kim on Mar 17, 2010 2:48 PM

  • Can we add new Payment means in SAP Business One Payments

    Dear Experts,
    Can we new Payment means in SAP Business One Payments?
    Currently, I am having 4 Payment means as Cash, Cheque, Bank Transfer and Credit Card.
    I need one more Payment means as Coupons.
    These are the Discount coupons which will be issued to our regular customers on Purchase of amount above certain limit.
    Thanks & Regards,
    Amrut Sabnis

    Hi Amrut,
    you can't add a payment means, but you can book the new payment means as an additional creditcard name for example "coupons"
    Kind regards
    Ad

  • Can't get new photos added to existing iPhoto albums to sync with iPhone

    I tried talking about this in the iTunes area, but there was no response:
    https://discussions.apple.com/message/20660036#20660036
    I thought I'd drop by the iPhone discussion area next.
    The problem in a nutshell is that I can't get new photos added to iPhoto albums to sync with my iPhone 5. I can even unselect the albums, sync, see the albums deleted on the iPhone, select the albums again, sync, see the albums recreated - but the recreated albums don't include the photos I added yesterday.
    I don't know if this is an iTunes 11 bug, an iPhoto bug or an iPhone bug.
    Any suggestions?
    Thanks,
    doug

    Yes, but which album will be empty?
    Anyway, as soon as I saw how creating albums locally on the iPhone actually worked I said to myself, "This is not reasonable" and as much as I dislike iPhoto decided to keep doing it there until that feature is improved.
    It seems like an obvious thing to improve. Then the albums can sync between the iPhone, iPhoto and other iOS devices more like "it just works" (which it doesn't do now).
    doug

  • Can I add new job in the existing Job

    Hi Gurus,
    There is a job which loads data from 4 ODS to respective Infocubes. Now we are adding new infocube and new ODS to the existing layout so can we add 1 more job which loads data from that ODS to corresponding Infocube. If so how??? Can u give me detailed steps to add new job in the existing job...
    Thanks in advance

    is the previous loads done through a job or a process chains???
    Go to RSPC > check what process chains are there and in case if you find one > log you will see when it was last run and stuff.
    But if it is a job in SM37, it is a different story, u might have to create a variant of that job and create events to trigger the job in sequence depending on ur scenario..
    give more details. like when is that job triggered, if any events used.

  • I can neither save new bookmarks nor delete existing ones.

    My bookmark system worked until a few days ago, and now will not let me save new pages or delete existing ones. Tried the two methods described on main site, neither worked.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_places-database-file

  • HT2518 How do you reset the password on a migrated user account? Mac wants the old password putting in before we can set a new password and the old password won't work.  How do we get around this?

    Used Migraton Assist to transfer data from old Dell PC onto new Macbook Pro.  Data has come across but cannota access the User Account from the Dell.  It is displayed on the desktop of the Mac but is requesting and new password.  Before we can reset the password we have to put in the old password.  We have put in the old password but it doesn't work and therefore we can't reset the password and get into the User Account. 
    How do we get around this problem so that we can access the User Account.
    Although the data has transferred we cannot see our contacts transferred from Outlook into Mail.  We are wondering if they are contained within our User Account, but can't find out until we can access the it?
    Help wold be much appreciated.
    Pensos

    Hello:
    Hopefully this will help you:
    http://support.apple.com/kb/PH4117
    Barry

  • HT5622 Can I set my new ip5 with my existing apple ID which i used before for my 4S?

    Hi all, I had a 4S but it damaged totally now and I bought an iphone5. Can I set up it with existing account? In that case, can I restore all my apps I used in 4S?

    when you connect the new phone it should ask you if you wish to restore it from a backup of the old one
    then you say yes
    and then it's a copy of the old device in terms of data

  • User can't create new folders

    A user on the network can't create any new folders on the network or the hard drive itself, message reads that the system has reserved these names etc. but it's rejecting any name regardless

    Need much much more detail.
    "A user"
    What type of user? Windows, Mac, OS Version, etc.
    "create folders on the network"
    I assume we're talking about creating folders on an OS X Server?
    If so, what OS X Server version? Any specfics you can provide about the config would be helpful
    "or the hard drive itself"
    What hard drive? Are we talking about the user's hard drive or is the server logging in locally to the server?
    "reserved names, etc"
    An exact error would be helpful
    Please take some time provide as much information as possible and also what steps you may have taken to troubleshoot.
    Thanks

  • Windows 2000 users can't get newer albums only available in v7.4.1?

    OK, so I just downloaded iTunes, for the sole reason to purchase the "iTunes Exclusive" _Walk Hard: The Dewey Cox Story (Original Motion Picture Soundtrack) [DELUXE EDITION]_ album. Right?
    I have Windows 2000, so I went through the steps to get the old(er) version. I finally get it downloaded and installed... open up the store, find the album... and it tells me:
    "*This item requires a later version of iTunes to purchase.* To purchase this item, please upgrade to iTunes 7.4.1 or later. iTunes is a free download."
    OK. I go to d/l the update, and it tells me that XP or Vista is a system requirement for download.
    So... you're telling me that if I want to legally purchase this album, I need a new [expletive] PC? +(or Mac, iPhone, iPod Touch, blah blah blah...)+
    *WHAT THE [EXPLETIVE]?* I've had iTunes under 10 min. and I hate it already.
    Please tell me I'm very very wrong & am missing something incredibly stupid, and I'm able to upgrade to v7.4.1 with Windows 2000 & purchase this album.

    If you want to purchase this album from iTunes then you need the newer version, not necessarily better just newer. To run the newer version of iTUnes then you have to have newer, and better, operating system (not counting Vista here).
    No getting around this requirement is you want it from iTunes. New computer not absolutely required. Yours might be able to handle Windows XP depending on what you have.

  • Setting up new iPod with my existing iTunes library?

    Hello all --
    This may be a simple question, but I just wanted to play it safe. My original iPod (a classic) has more or less died, so I think I'm going to have to buy a new one. I have a rather large iTunes library and want to make sure I can move my song collection to my new iPod (I haven't purchased it yet).
    Is there any trick to it? Or, once my computer recognizes the new iPod, can I just simply click-and-drag the songs to the new, empty iPod?
    I'm not going to lose any songs, right? The last thing I'd want to do is have to copy all of my songs from my CD to my computer again.
    Please let me know. Thanks so much!

    You just connect the new iPod. iTunes will actually bring up a dialog asking if you want to sync your iTunes library to the new iPod, and let you name the iPod.
    once my computer recognizes the new iPod, can I just simply click-and-drag the songs to the new, empty iPod?
    If you want to do it manually and set the iPod to +manually manage music+, you can. Just say no when iTunes asks if you want to sync. But I suggesting using the automatic sync, unless you have a reason for using the manual "drag and drop" method.
    Also, you should go into the iPod DEVICE tabs (in iTunes) to set up how you want to handle videos, podcasts, contacts, etc.

  • Can't create new files nor open existing ones.

    It's been a while since I last used photoshop, a similar kind of problem made me move away from the product, but the new features in CS6 are enticing enough for me to be interested in trying it again.
    My problem is that, while the interface is completely usable (I can open the color picker, play with tools and preselects) trying to open a file or creating a new one does absolutely nothing.
    File->New or CTRL+N will show the busy cursor for but a brief second, and then disappear, dragging a file to the interface shows me the "denied" cursor (black circle with a bar), File->Open lets me browse my disk but then when I select the image, nothing happens.
    I've been scouring the forums for a solution to this and tried so many things that it's impossible for me to even try and list them all, so I'll accept any suggestion and try anything, I'll sum up what I did try in the first post (if it stays editable).
    Please let me succeed in this, I'd love to go back to photoshop.

    How can I test the other display theory? I didn't connect any new monitor (I do use 2) but I occasionally use stuff like remote desktop tools.
    I'll try and update the display drivers (even tho I updated them recently).
    P.S.: opening it on the other monitor worked. What the heck. Any way I can make it work on both monitors?
    I'll be making more tests in the meanwhile.

Maybe you are looking for

  • Osx mountain lion crashing repeatedly

    any ideas?  Parallels installed but not running when these crashes occured. Interval Since Last Panic Report:  4114 sec Panics Since Last Report:          3 Anonymous UUID:                    AE534784-8B7F-420F-86D2-E95F86B68D17 Sat Aug 25 02:32:16 2

  • How do I lock an image in place?

    I'm building a webpage in iWeb and I want one image to always appear at the top left of the page, flush against the edge. How do I do this?

  • Thunderbolt Display has issue with weird washed-out colors after waking from sleep (after upgrade to Mavericks)

    I've got a Thunderbolt Display that I use with my Macbook Air (mid 2012) - usually in clamshell mode. When I let the computer go to sleep, and then wake it up by clicking the mouse, the monitor turns back on but the colors are washed out and purple l

  • Deleting Multiple Check Boxes

    Helloo I am having a slight small problem I have a servlet which call a jsp to display my values. the jsp display a list of values which have check boxes like below: value one [checkbox] value two [checkbox] value thre [checkbox] how can i pass the v

  • Example of ISG PBHK configuration

    Could anyone share an example of ISG's PBHK configuration, pretty please? i'm facing an issue when applying PBHK within the subscriber policy. Here is what i do: policy-map type service PBHK  ip portbundle policy-map type control ISG  class type cont