Register and Compare Time

Hello people,
I want to register the time into a variable when a user clicks into a button and, when he clicks again, compare the time with the last time (registered into a variable).
How do I save time (hh:mm:ss) into a var and compare with another var?
Thank's.

http://java.sun.com/javase/6/docs/api/java/util/Date.html#after(java.util.Date)
http://java.sun.com/javase/6/docs/api/java/util/Date.html#before(java.util.Date)

Similar Messages

  • Shift Register and waiting time functions - DAQmx

    Thanks that worked. 

    Bob_Schor wrote:
    Mike -- is there a reason to not use Shift Registers here?  It seems to me that (as I explained in my response) it "preserves"  the logic of folding multiple sequential function calls into a loop (you are correct, of course, that you don't need to pass the Task and Error from one function to the next, but that makes logical sense).  It might (or might not -- I haven't checked) be a tad faster or slower (actually, it is almost certainly faster or slower!) one way or the other, but we are probably talking nanoseconds, which pales beside "logical" (a.k.a. "good") Programming Style.
    For a While loop, there should not be real difference.  It might be slightly more memory efficient.  But if you go to a FOR loop, it is a HUGE deal, especially if you are autoindexing on a loop.  Try running a FOR loop 0 times.  If you used tunnels, the default value comes out of the tunnel (in other words, you will lose your reference).  A shift register will pass out the value you initialized the shift register to.
    So it is a good habit to just use the shift registers to avoid that nasty bug.

  • I am trying to register my macbook pro and every time i got a message telling me that this product is registered with different apple id, how it comes?

    I am trying to register my macbook pro and every time i got a message telling me that this product is registered with different apple id, how it comes?

    Sounds like you got a used computer and paid new for it, that's illegal.
    "Open box" is a return by a previosu customer and can't be sold as new, you should have gotten a discount or informed of such.
    Once obvious sign is it doesn't come with free iLife on it, as the drive was erased.

  • Changes made on firefox arent registered and need to change again every time firefox restarts.

    Since I installed firefox on my new PC nothing seems to register. Every time I start it, it wants to give me a tour like the first time I installed it. Fond size on same pages change every time I open them. Change of the home page doesn't register, meaning after I change it on the options it will not remember it next time I restart the program.
    On top of that, even though its shows that I am signed it for syncing, it actually does not sync anything from my older PC.

    It could be the work of one of your add-ons, or even add / mal-ware.
    Look thru your add-ons list and make sure you know what each one is
    and what it does.
    Some added toolbar and anti-virus add-ons are known to cause Firefox issues.
    Open the '''Add-ons Manager <Control><Shift> A''' and '''disable All of them.'''
    Also, check the programs that are on your computer
    '''Windows:''' Start > Control Panel > Uninstall Programs.
    '''Mac:''' Open the "Applications" folder.
    '''Linux:''' Check your user manual.
    Go thru the list. If you find something that you don't
    know what it is, use a web search.
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-caused-malware Troubleshoot Firefox Issues Caused By Malware]''' {web link}

  • Read start time of time pair and compare it in a PCR

    Hi All
    Created following PCR to check if th start time of the time pair is 09:30 or not. If it 0930 than I need to check the end time as well.
    000010            D HRS=PBEG  HRS?0900
    000020 *
    000030 =          D HRS=PEND  HRS?1730
    000040 = *
    000050 = =       HRS=DZ007 HRS-00.50 ADDDBZ007Z
    But the schema is processing only till line 20. As the start time of the time pair is 0930 it should go and check the end time.
    I would like to know if correct operations are used to capture the start time of time pair and compare?
    Any help will be much appreciated.
    Thanks

    Hello;
    Your pcr is wrong.
    000010 D HRS=PBEG HRS?0900
    000020 *
    000030 = D HRS=PEND HRS?1730
    000040 = *
    000050 = = HRS=DZ007 HRS-00.50 ADDDBZ007Z
    This is your rule. It checks whether it is 09:00 or not. If it is 09:00 it checks end time.
    000010 D HRS=PBEG HRS?09.50
    000020 *
    000030 = D HRS=PEND HRS?17.50
    000040 = *
    000050 = = HRS=DZ007 HRS-00.50 ADDDBZ007Z
    Beside you can not check it as 17.30 it should be out of 100.
    I mean 17:30 is 17.50 and 17:15 is 17.25
    Regards;
    Okan

  • Un-Registering takes long time and fails!!!

    I am trying to un register a schema that ia already registered in the XML DB. I am using JDeveloper to un register and it really takes a long time to do this. and eventually fails.
    what is going on? what is broken?
    XML DB is flaky and unreliable.
    right?

    First make sure that all connections that have used the XML Schema are disconnected. Schema deletion cannot start until all sessions that are using the schema have been closed as it needs to get an exclusive lock on the SGA entrires related to the XML Schema.
    If there are a large number of rows in the table(s) associated with the XML Schema truncate the table before dropping the XML Schema. If there are a large number of XDB repository resources assocaited with the table, truncate the table and then delete the resources with DBMS_XDB.DELETERESOURCE() mode 2 or 4 to ignore errors and avoid dangling ref issues.
    To monitor the progress of deleteSchema itself connect as sys and execute select count(*) from all_objects where owner = 'XXXX'. XXXX should be the name of the owner of the database schema that was the owner of the XML schema. See if the number of objects owned by that user is decreasing. If the number of object is decreasing have patience.

  • Comparing time including AM and PM

    Hi,
    In my project, if a customer calls an agent,his time matches with the server time.If the calling time is between 9.00 AM to 6.00 PM the welcome message will be played.If the calling time is between 6.00 PM to 9.00 Am,the message agents logged off should be played.I tried the following.
    import java.util.*;
    import java.lang.Object;
    import java.text.Collator;
    public class CurrentTime{
      public static void main(String[] args){
        Calendar calendar = new GregorianCalendar();
        String am_pm;
        int hour = calendar.get(Calendar.HOUR);
        int minute = calendar.get(Calendar.MINUTE);
      //  int second = calendar.get(Calendar.SECOND);
        if(calendar.get(Calendar.AM_PM) == 0)
          am_pm = "AM";
        else
          am_pm = "PM";
      String time= "Current Time : " + hour + ":" + minute + " " + am_pm;
        System.out.println(time);
        Collator myCollator = Collator.getInstance();
          if(( myCollator.compare(time, "9.00 AM") > 0 ) && (myCollator.compare(time, "6.00 PM") < 0))
                    System.out.println("welcome");
    }Here i have checked whether my time 11.49 AM > 9.00 AM and 11.49 AM < 6.00 PM.But nothing is displayed.because it is not taking the AM and PM.It is just comparing 11.49 < 6.00.How can i compare the AM and PM?please help me to solve this.
    Thanks

    myCollator.compare(time, "9.00 AM")Doesn't a Collator compare strings? "11.49 AM" < "9.00 AM" because "1" < "9". Calendars implement Comparable so compare them instead. Or use before() and after().
    Edited by: pbrockway2 on Aug 13, 2008 7:31 PM
    Edited by: pbrockway2 on Aug 13, 2008 7:35 PM
    Or get the hour and compare it to 6 or 9.

  • Sync and compare with remote

    Have just installed DWmx 8 on a new machine and found that
    the context
    menu for sync and compare with remote is not enabled..
    I assume it is something to do with the way I have configured
    my sites...
    Any ideas???

    Can you log into .mac mail? That will tell you if your username and password are OK.
    I recently had a similar problem, so I unregistered my work and home computers (using the Advanced tab of .mac preferences) from .mac then re-registered them. At that point, you are offered the initial sync choices like the first time you connected to .mac.
    Be careful that you don't overwrite your data. I highly suggest making backups of your Address Book, Safari Bookmarks, iCal, iDisk files, etc. on all computers before starting the process.
    - Wayne
    PowerMac G5   Mac OS X (10.4.8)  

  • Time machine on external drive will not back up itunes media file on a separate external drive. Have already reformated itunes media drive,dragged itunes media backup file from time machine (old copy) and removed time machine plist and restarted.

    Two external drives, one for time machine backups and a second (daisy chained firewire) for itunes media folder . Time machine fails to backup the media file saying could not be completed, with no error specified. Steps taken already include reformating drive with media, dragging older media backup file from time machine disc to media disc, and deleting time machine plist and starting time macine preferences upon startup. Media folder is approx 200 gb, mostly ripped dvd movies.
    Any help for this??
    Thanks

    Tks for the help. Tried to eliminate duplicates. Copy below.
    6/11/14 3:07:33.458 PM com.apple.backupd[532]: Found 2332 files (193.66 GB) needing backup
    6/11/14 3:07:33.488 PM com.apple.backupd[532]: 219.71 GB required (including padding), 539.32 GB available
    6/11/14 3:09:42.200 PM com.apple.backupd[532]: Copied 1201 items (51.5 MB) from volume Macintosh HD. Linked 2894.
    6/11/14 3:10:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:30.072 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/2013 Trip To Kate and Jason - Large 1.m4v to (null)
    6/11/14 3:10:44.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:10:57.327 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/2013 Trip To Kate and Jason - Large.m4v to (null)
    6/11/14 3:11:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:11:22.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:11:22.394 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/IMG_0378.m4v to (null)
    6/11/14 3:11:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:09.872 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Home Videos/IMG_0398.m4v to (null)
    6/11/14 3:12:44.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:12:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:05.959 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/AAA 2.4.1.ipa to (null)
    6/11/14 3:13:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:13:51.325 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Air Sharing 3.4.3.ipa to (null)
    6/11/14 3:14:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:14:51.289 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Angie's List 3.0.2.ipa to (null)
    6/11/14 3:15:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:34.517 PM secd[422]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[267]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[267]:  securityd_xpc_dictionary_handler EscrowSecurityAl[581] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:34.517 PM secd[422]:  securityd_xpc_dictionary_handler EscrowSecurityAl[580] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    6/11/14 3:15:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:15:51.643 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/AP Mobile 6.2.1.ipa to (null)
    6/11/14 3:15:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:19.908 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Apple Store 120269.ipa to (null)
    6/11/14 3:16:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:16:50.710 PM com.apple.backupd-helper[533]: Not starting scheduled Time Machine backup: Backup already running
    6/11/14 3:16:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:00.552 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Archetype 1.6.2.ipa to (null)
    6/11/14 3:17:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:17:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:18:40.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:06.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:43.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:19:56.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:11.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:36.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:20:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:21:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:22:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:06.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:31.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:23:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:22.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:24:50.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:15.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:25:47.887 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Bloomberg 3.0.ipa to (null)
    6/11/14 3:26:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:13.942 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Calculator 3.4.ipa to (null)
    6/11/14 3:26:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:26.509 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Camera Zoom 3.1.ipa to (null)
    6/11/14 3:26:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:26:52.108 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Cards 2.0.1.ipa to (null)
    6/11/14 3:27:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:27:29.606 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Casino 2.5.ipa to (null)
    6/11/14 3:27:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:00.327 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Clear Day 2.6.ipa to (null)
    6/11/14 3:28:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:28:56.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:34.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:29:59.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:12.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:24.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:37.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:49.085 PM xpcproxy[629]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/11/14 3:30:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:30:50.194 PM syncdefaultsd[628]: Fixing push token
    6/11/14 3:30:52.507 PM xpcproxy[632]: assertion failed: 13D65: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    6/11/14 3:31:02.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:27.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:31:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:42.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:32:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:33:58.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:21.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:34:49.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:02.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:35:30.676 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Collection HD 1.7.ipa to (null)
    6/11/14 3:36:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:36:29.651 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/eCardExpress 2.1.ipa to (null)
    6/11/14 3:36:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:14.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:52.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:37:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:30.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:38:45.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:08.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:46.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:39:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:40:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:04.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:39.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:41:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:17.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:19.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:54.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:42:57.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:09.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:34.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:43:47.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:12.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:25.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:44:50.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:25.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:28.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:40.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:45:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:20.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:45.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:46:58.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:10.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:23.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:35.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:47:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:00.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:48:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:49:21.393 PM WindowServer[128]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280300 device: 0x7f8ef9d04e00  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/11/14 3:49:21.731 PM launchservicesd[52]: Application App:"System Preferences" asn:0x0-44044 pid:509 refs=7 @ 0x7fb5b9443730 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x45045 pid=513 "com.apple.prefs.backup.remoteservice"")), so denying. : LASSession.cp #1481 SetFrontApplication() q=LSSession 100019/0x186b3 queue
    6/11/14 3:49:21.731 PM WindowServer[128]: [cps/setfront] Failed setting the front application to System Preferences, psn 0x0-0x44044, securitySessionID=0x186b3, err=-13066
    6/11/14 3:49:21.733 PM WindowServer[128]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7f8ef9e94e00(2001)
    6/11/14 3:49:21.795 PM WindowServer[128]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x7f8ef9e94e00(2001)
    6/11/14 3:49:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:50:48.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:50:48.546 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/GarageBand 1.1.ipa to (null)
    6/11/14 3:51:01.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:13.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:26.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:38.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:51:51.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:03.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:16.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:29.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:41.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:52:55.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:07.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:07.747 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Glympse 2.22.444.ipa to (null)
    6/11/14 3:53:20.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:32.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:53:32.869 PM com.apple.backupd[532]: Stopping backup.
    6/11/14 3:53:32.869 PM com.apple.backupd[532]: Error: (-36) SrcErr:YES Copying /Volumes/Media/itunes Media/Mobile Applications/Golf Channel 3.7.2.ipa to (null)
    6/11/14 3:53:33.357 PM com.apple.backupd[532]: Copied 127 items (2.24 GB) from volume Media. Linked 0.
    6/11/14 3:53:33.376 PM com.apple.backupd[532]: Copy stage failed with error:11
    6/11/14 3:53:34.607 PM com.apple.backupd[532]: Backup failed with error 11: 11
    6/11/14 3:55:53.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:05.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:18.000 PM kernel[0]: disk1s2: I/O error.
    6/11/14 3:56:33.000 PM kernel[0]: disk1s2: I/O error.

  • From within Photoshop Elements, when I try to open Editor, a box opens that states I must activate the software.  I registered and activated the software last year.  When I click to activate, I get a message that I am not connected to the internet.  I am

    From within Photoshop Elements, when I try to open Editor, a box opens that states I must activate the software.  I registered and activated the software last year.  When I click to activate, I get a message that I am not connected to the internet.  I am connected.  How do I get Editor to work?

    You would get the redemption code, or perhaps even the serial number, from whomever you purchased the software from, apparently Amazon, so talk to them.  This wouldn’t be the first time they’ve sold something that didn’t have all the numbers needed to license it.
    A redemption code is something that is usually on the inner disc packaging if you purchase the media in a box, and there is a barcode on the outside of the packaging that must be scanned at the checkout register to activate the hidden inner code so you can redeem it at home on that website.  This is what happens if you buy PSE from a brick-and-mortar store like Best Buy.  I don’t’ know what happens if you purchase the downloaded version as I have never done that.
    A redemption code is 24-digits of letters and numbers that you enter into a website to get a serial number, once and only once.  The serial number of only 24-digits, no letters, is what you enter into the software during the install or when you run it and it asks if you want to register or run in a trial mode—whatever the exact phrasing is.
    In any case it sounds like you don’t have either a redemption code or serial number—although perhaps something is listed on the purchase confirmation or your account online at Amazon or even in an e-mail from Amazon.

  • How to create a type of 'alarm event' based on acquired sensor data and system time?

    Hello all,
    I'm fairly new to LabVIEW and have successfully created a VI that reads voltage data from sensors.  Each sensor outputs 2 voltage values and I treat these values as 2 different DBL values.  I'd like to be able to record each voltage value as a base and then compare the subsequent data readings with that base.  Once the base is determined, I'd like a sort of 'variable' set as "TIME" to be recorded at the moment the base voltage is recorded.
    The alarm should occur (or anything Boolean set to TRUE I guess) once the continuously read voltage remains within certain limits for about 2 hours.  I know I can compare the system time w/ the "TIME" that the voltage base value was recorded.  If the voltage readings escape those limits, I'd like the voltage base value reset and the TIME set to the corresponding system time again.
    I apologize in advance if this I haven't' described my problem well, but if anyone could help me figure out the best way to create this code, I would appreciate it much!
    Thanks!
    Solved!
    Go to Solution.

    ill try to illustrate a couple scenarios:
    keep in mind that i dont necessarily want the voltages in these specific ranges, but just a range of +/- 20 mV ... in an above post i refer to a "base" voltage reading, in this case that would be 200 mV for V1 and 400 mV for V2, just because the voltage has shifted to those values for an extended amount of time each (> 2 seconds)
    Scenario 1
    1:00 pm
    Sensor readings
    Voltage 1: 200 mV
    Voltage 2: 400 mV
    between 1:00 and 3:00 pm:
    Voltage 1 does not deviate from 180-220 mV range
    Voltage 2 does not deviate from 380-420 mV range
    at 3:00pm I want an alert/alarm/Boolean to change to 'true'
    Scenario 2
    1:00 pm
    Sensor readings
    Voltage 1: 200 mV
    Voltage 2: 400 mV
    at 1:45 pm:
    Voltage 1: 2 mV
    Voltage 2: 600 mV
    Since the voltage has shifted out of the range, i want the new base voltage to equal whatever it changed to out of the range, and also the time spent within the new range (2 +/- 20 mV and 600 +/- 20 mV, respectively for V1 and V2) would be reset, so a new 2-hour counter would begin

  • Getting error The user could not be registered at this time due to an internal error in R11

    We created new Organization (that had alpha numeric value e.g.  7777A) using Customer Online to be used in iStore i11 version. 
    The user account and password was also created for the organization.  When we tried to login to istore the first time the registration screen (jtftmplh.jsp) was displayed.  After filling the needed information and submitting we get the error:
    "The user could not be registered at this time due to an internal error Please contact the system administrator if this problem persists.
    Note to System Administrators: View source for more information about this error."
    But if we created new Organization with numbers only  e.g. 7777  we don't have the issue. Yet we already have large number of organization with alpha numeric and they work fine. (believe they were pragmatically loaded).
    The profiles "HZ: Generate Party Number" and "HZ: Generate Party Site Number" are set to Yes.
    ==> Here is the error in the page source:
    Message: The user could not be registered at this time due to an internal error
    Please contact the system administrator if this problem persists.
      Note to System Administrators: View source for more information about this error.
    Stack:
    oracle.apps.jtf.base.resources.FrameworkException: The user could not be registered at this time due to an internal error
    Please contact the system administrator if this problem persists. 
    Note to System Administrators: View source for more information about this error.
        at oracle.apps.jtf.um.template.TmplUtils.action(TmplUtils.java:406)
        at _oa__html._jtftmplh._jspService(_jtftmplh.java:3961)
        at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
        at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
        at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
        at oracle.jsp.JspServlet.internalService(JspServlet.java)
        at oracle.jsp.JspServlet.service(JspServlet.java)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
        at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java)
        at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java)
        at _oa__html._jtftmplh._jspService(_jtftmplh.java:3870)
        at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
        at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
        at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
        at oracle.jsp.JspServlet.internalService(JspServlet.java)
        at oracle.jsp.JspServlet.service(JspServlet.java)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
        at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java)
        at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java)
        at _oa__html._jtftmplh._jspService(_jtftmplh.java:2342)
        at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
        at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
        at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
        at oracle.jsp.JspServlet.internalService(JspServlet.java)
        at oracle.jsp.JspServlet.service(JspServlet.java)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
        at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java)
        at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java)
        at _oa__html._ibeCRgpBusinessCreate._jspService(_ibeCRgpBusinessCreate.java:1467)
        at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
        at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
        at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
        at oracle.jsp.JspServlet.internalService(JspServlet.java)
        at oracle.jsp.JspServlet.service(JspServlet.java)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
        at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
        at org.apache.jserv.JServConnection.run(JServConnection.java:294)
        at java.lang.Thread.run(Thread.java:680)
    Caused by: oracle.apps.jtf.base.resources.FrameworkException: IBE_ERR_UM_REG_USER
        at oracle.apps.ibe.um.RegisterBusiness.handle(RegisterBusiness.java:1157)
        at oracle.apps.jtf.um.template.TmplUtils.action(TmplUtils.java:379)
        ... 37 more
    Caused by: oracle.apps.jtf.base.resources.FrameworkException
        at oracle.apps.jtf.base.resources.FrameworkException.convertException(FrameworkException.java:607)
        at oracle.apps.jtf.base.resources.FrameworkException.addException(FrameworkException.java:585)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:66)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:88)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:202)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:218)
        at oracle.apps.jtf.base.resources.FrameworkException.<init>(FrameworkException.java:249)
        ... 39 more
    The error message is not helpful and not clear of the error. How can we register users with alpha-numeric value (if that is the issue?).
    Thanks for your assistance.

    Been like this for a couple of days.  Is this something that happens from time to time?

  • Same sqlID with different  execution plan  and  Elapsed Time (s), Executions time

    Hello All,
    The AWR reports for two days  with same sqlID with different  execution plan  and  Elapsed Time (s), Executions time please help me to find out what is  reason for this change.
    Please find the below detail 17th  day my process are very slow as compare to 18th
    17th Oct                                                                                                          18th Oct
    221,808,602
    21
    2tc2d3u52rppt
    213,170,100
    72,495,618
    9c8wqzz7kyf37
    209,239,059
    71,477,888
    9c8wqzz7kyf37
    139,331,777
    1
    7b0kzmf0pfpzn
    144,813,295
    1
    0cqc3bxxd1yqy
    102,045,818
    1
    8vp1ap3af0ma5
    128,892,787
    16,673,829
    84cqfur5na6fg
    89,485,065
    1
    5kk8nd3uzkw13
    127,467,250
    16,642,939
    1uz87xssm312g
    67,520,695
    8,058,820
    a9n705a9gfb71
    104,490,582
    12,443,376
    a9n705a9gfb71
    62,627,205
    1
    ctwjy8cs6vng2
    101,677,382
    15,147,771
    3p8q3q0scmr2k
    57,965,892
    268,353
    akp7vwtyfmuas
    98,000,414
    1
    0ybdwg85v9v6m
    57,519,802
    53
    1kn9bv63xvjtc
    87,293,909
    1
    5kk8nd3uzkw13
    52,690,398
    0
    9btkg0axsk114
    77,786,274
    74
    1kn9bv63xvjtc
    34,767,882
    1,003
    bdgma0tn8ajz9
    Not only queries are different but also the number of blocks read by top 10 queries are much higher on 17th than 18th.
    The other big difference is the average read time on two days
    Tablespace IO Stats
    17th Oct
    Tablespace
    Reads
    Av Reads/s
    Av Rd(ms)
    Av Blks/Rd
    Writes
    Av Writes/s
    Buffer Waits
    Av Buf Wt(ms)
    INDUS_TRN_DATA01
    947,766
    59
    4.24
    4.86
    185,084
    11
    2,887
    6.42
    UNDOTBS2
    517,609
    32
    4.27
    1.00
    112,070
    7
    108
    11.85
    INDUS_MST_DATA01
    288,994
    18
    8.63
    8.38
    52,541
    3
    23,490
    7.45
    INDUS_TRN_INDX01
    223,581
    14
    11.50
    2.03
    59,882
    4
    533
    4.26
    TEMP
    198,936
    12
    2.77
    17.88
    11,179
    1
    732
    2.13
    INDUS_LOG_DATA01
    45,838
    3
    4.81
    14.36
    348
    0
    1
    0.00
    INDUS_TMP_DATA01
    44,020
    3
    4.41
    16.55
    244
    0
    1,587
    4.79
    SYSAUX
    19,373
    1
    19.81
    1.05
    14,489
    1
    0
    0.00
    INDUS_LOG_INDX01
    17,559
    1
    4.75
    1.96
    2,837
    0
    2
    0.00
    SYSTEM
    7,881
    0
    12.15
    1.04
    1,361
    0
    109
    7.71
    INDUS_TMP_INDX01
    1,873
    0
    11.48
    13.62
    231
    0
    0
    0.00
    INDUS_MST_INDX01
    256
    0
    13.09
    1.04
    194
    0
    2
    10.00
    UNDOTBS1
    70
    0
    1.86
    1.00
    60
    0
    0
    0.00
    STG_DATA01
    63
    0
    1.27
    1.00
    60
    0
    0
    0.00
    USERS
    63
    0
    0.32
    1.00
    60
    0
    0
    0.00
    INDUS_LOB_DATA01
    62
    0
    0.32
    1.00
    60
    0
    0
    0.00
    TS_AUDIT
    62
    0
    0.48
    1.00
    60
    0
    0
    0.00
    18th Oct
    Tablespace
    Reads
    Av Reads/s
    Av Rd(ms)
    Av Blks/Rd
    Writes
    Av Writes/s
    Buffer Waits
    Av Buf Wt(ms)
    INDUS_TRN_DATA01
    980,283
    91
    1.40
    4.74

    The AWR reports for two days  with same sqlID with different  execution plan  and  Elapsed Time (s), Executions time please help me to find out what is  reason for this change.
    Please find the below detail 17th  day my process are very slow as compare to 18th
    You wrote with different  execution plan, I  think, you saw plans. It is very difficult, you get old plan.
    I think Execution plans is not changed in  different days, if you not added index  or ...
    What say ADDM report about this script?
    As you know, It is normally, different Elapsed Time for same statement in different  day.
    It is depend your database workload.
    It think you must use SQL Access and SQl Tuning advisor for this script.
    You can get solution for slow running problem.
    Regards
    Mahir M. Quluzade

  • TS3376 I had my iphone set up to be tracked as registered with iCloud and it had been using it for a year one day it said no devices registered and stopped working why???

    I had my iphone set up to be tracked as registered with iCloud and it had been using it for a year today it said no devices registered and stopped working even though i tracked the selected iphone 4 device an hour earlier why did it do this???

    So basically the phone I was tracking was working an hour earlier it had no signal at times when it did pick up a signal it located it easily but an hour later the message came up no devices registered when my friend returned home I Checked the device I was tracking to make sure find my iphone was on but it was off and my friend didnt turn it off so my question is why did it turn itself off???
    Confused?

  • Report showing labor and machine time based on standard cost estimate

    Hi Friends,
    Ours is an Manufacturing organisation & we have a requirement of report showing machine and labor time as per part wise & cost center wise. We need to run the report before saving standard cost estimate [CK11N]  in order to see the part wise or cost center wise discrepancies in machine and labor time. If any one could help in creating such report in SAP  it will be of great help.
    Regards,
    Varsha

    Hi Varsha,
    you can jump from CK11N to a own report by
    Menu Function 'Costs -> User Exit Display'
         Cost Report 1 / 2 / 3
    The own report can be implemented via (SMOD) enhancement SAPLXCKA
    The report will be handed over the currently displayed in the program interface.
    some example coding is provided for the exit.
    compare SAP Note No. 71146
    best regards,   Udo

Maybe you are looking for

  • GeneralPath not Filling entire path

    Hi, i'm trying to draw a graph using a GeneralPath. the problem is that if at the bottom it's not wide enough the top ends up lower than it's supposed to. Here is a crude example (i just put this together as an example)please compile and run this pro

  • Prompt filters, how to select by name, but do query by Id?

    Hi, I have a prompt list, I'm displaying the names of the values, but I want to query by Id, is that possible? My query is taking too much time, because it's comparing the names. For example I have: Name    Id John      23 Mary      25 Tom       28 e

  • Printing material-documents without flag (parameter NDR)

    Hello everybody, I've got a question regarding printouts of material-documents. Normally the printout is done via condition-technique. Now my customer asks for a printout even if the flag for the printing is NOT set (Parameter NDR) in the document-he

  • Shared Libraries on Mac OSX Server - Colorsync Profiles, Fonts etc.

    Hello, Our office have 10.5.5 Server running with approximately 25 clients attached (all on Mac OSX 10.5.5). We have a number of colour printers which we regularly profile, and are trying to find a way to syncronise Colorsync profiles across the clie

  • Attribute Dimension or Alternate Hierarchy

    Hello, We have a sparse dimension that has probably around 1500 members. We need to report on these members in different views then the current hierarchy holds. Is it best to create an alternate hierarchy with these 1500 members or to tag these membe