Most recently extended block

Does anybody know of a script or any other way of finding out the most recently extented block
Thanks in advance.

Coratian, you can re-build this by a smart playlist , picking "most recently added" under the selected by dropdown.

Similar Messages

  • Planned activities assignment block not sorted by most recent first

    Hi,
    I have implemented BADI CRM_BP_UIU_BT of enhancement spot CRM_UIU_BP_ENHANCEMENT in order to increase the number of results in the planned activities assignment block on the BP overview page to 250 as the standard is 100 and this works fine.
    The problem is that the most recent transactions are not displayed first.
    Can someone tell me how where i can implement som ecode to influence the initial selection of the data so it only looks up the most recent 250.
    I don't believe this can be done in a sort on the BSP page, as only 250 records would have been selected.  If the BP has 250 or under this works fine, but as soon as they have more than 250 the sort obviously doens't include the other planned activities.
    If someone can suggest as way to do this I would really appreciate it.
    Thanks
    Matt.

    Matt,
    Please review OSS Notes 1246331 and 1226594 found by doing search on FM in service.sap.com
    CRM_BSP_OIC_1O_SEARCH_FROM_RF
    In addition this old thread explains more information:
    Re: Display 100 most recent entries in interaction history
    Take care,
    Stephen

  • Following the most recent IOS IPhone update our Iphone calendars, contacts and messages have all merged. This problem has never happened before. We all use the same Itunes account as a family and one AppleID. Does anyone know the cause of this problem?

    We have 4 Iphones. As a family we have happily shared the same ITunes account and one AppleID. After the most recent iPhone IOS update all our contacts and calendars have merged and we randomly receive some messages that one of us has sent to another contact.
    This is causing chaos.
    Can anyone help me with:
    1. Has anyone experienced a similar problem recently?
    2. The records to the individual phones have not been saved been saved separately. After this merging of all the data into one composite record, is there anyway to reverse the change and restore the phones to just their individual records?
    3. I guess that the cause may be the common AppleID. I have tried to create my own AppleID but my personal email address is already linked to the existing AppleID so I am blocked from setting up a separate AppleID in my own name. Does anyone know how I can get around this block?
    4. Would it be better to create a separate Apple ICloud address for each of us as well? How do I do this?
    Many thanks in anticipation,
    Peter

    This is exactly what happens when sharing a single Apple ID for iCloud and iMessage.  Why would you expect any different?

  • Version 5.0 on a MAC will not let me switch between tabs. I can open a new tab, but when I try to go to a different tab, it just shows me the contents of the tab most recently opened. Help!

    Version 5.0 on a MAC will not let me switch between tabs. I can open a new tab, but when I try to go to a different tab, it just shows me the contents of the tab most recently opened. Help!
    Also, pop up blocker works for some time and then just stops working. I have to close and restart Firefox to get it to work again. Help!

    I had the same problem, but with Firefox 4.0. My first thought was to update Firefox (after of course restarting FF), but that didn't help it and I had the same problem.
    Among others, I had an extension installed and enabled called Tile Tabs 4.10 that I thought could feasibly creating this problem. So I went into my add-ons manager and disabled it, restarted Firefox and the tabs worked properly again. Unfortunately, the Tile Tabs extension is my favorite Firefox add-on and I use it almost every day for managing my web work tasks. I went to the add-on page for Tile Tabs and saw that there was a notice that version 4.10 didn't work properly on Mac OS, and to install version 4.9 of the extension. I saw they had a new, not-yet-reviewed version 4.11 that addressed the Mac OS problem, installed it, and everything seems to be working properly.
    I have no idea why all of a sudden I had this problem, as I hadn't updated Firefox or the Tile Tabs extension recently. Also, obviously this might not address your problem, especially if you don't have that add-on installed and enabled. But our problem started at the same time for both of us it appears based on your post time, so its probably not coincidence.
    But its worth a look, and you might want to check out other extensions if you don't have Tile Tabs that could be causing the problem.

  • Most recently created row

    We have an error_log table which will log errors after the execution of a stored proc.
    We have a create_time field which stores the time of creation of the new record.
    How can i view the most recently created row? Is the below mentioned query(courtesy of OTN) Ok? Or are there any other better options?
    select err_msg from (select err_msg from err_log order by create_time desc)
    where rownum=1 ;

    That seems to be quite expensive
    SQL> get t
      1  with t as (select 'test' err_msg, sysdate create_time from dual
      2             union all select 'test2' err_msg, sysdate -1 create_time from dual
      3             union all select 'test3' err_msg, sysdate -2 create_time from dual
      4             union all select 'test4' err_msg, sysdate -3 create_time from dual)
      5  select *
      6    from t, (select max(t.create_time) over(order by create_time desc) maxtime
      7               from t) tab
      8   where t.create_time = tab.maxtime
      9*  and rownum = ceil(abs(sin(42)))
    SQL> /
    ERR_M CREATE_TI MAXTIME
    test  17-JAN-08 17-JAN-08
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=14 Card=1 Bytes=22)
       1    0   TEMP TABLE TRANSFORMATION
       2    1     LOAD AS SELECT
       3    2       UNION-ALL
       4    3         FAST DUAL (Cost=2 Card=1)
       5    3         FAST DUAL (Cost=2 Card=1)
       6    3         FAST DUAL (Cost=2 Card=1)
       7    3         FAST DUAL (Cost=2 Card=1)
       8    1     COUNT (STOPKEY)
       9    8       HASH JOIN (Cost=6 Card=1 Bytes=22)
      10    9         VIEW (Cost=2 Card=4 Bytes=52)
      11   10           TABLE ACCESS (FULL) OF 'SYS_TEMP_0FD9D7BD6_7502F1D5' (TABLE (TEMP)) (Cost=2 Card=4 Bytes=52)
      12    9         VIEW (Cost=3 Card=4 Bytes=36)
      13   12           WINDOW (SORT) (Cost=3 Card=4 Bytes=36)
      14   13             VIEW (Cost=2 Card=4 Bytes=36)
      15   14               TABLE ACCESS (FULL) OF 'SYS_TEMP_0FD9D7BD6_7502F1D5' (TABLE (TEMP)) (Cost=2 Card=4 Bytes=52)
    Statistics
              2  recursive calls
              8  db block gets
              8  consistent gets
              1  physical reads
            648  redo size
            683  bytes sent via SQL*Net to client
            660  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL>But if you code it a little bit trickier, it suddenly costs "nothing"
    SQL> get t
      1  with t as (select 'test' err_msg, sysdate create_time from dual
      2             union all select 'test2' err_msg, sysdate -1 create_time from dual
      3             union all select 'test3' err_msg, sysdate -2 create_time from dual
      4             union all select 'test4' err_msg, sysdate -3 create_time from dual)
      5  select *
      6    from  (select err_msg, create_time, row_number() over(order by create_time desc) rn
      7               from t) tab
      8*  where rn = ceil(abs(sin(42)))
    SQL> /
    ERR_M CREATE_TI         RN
    test  17-JAN-08          1
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=9 Card=4 Bytes=104)
       1    0   VIEW (Cost=9 Card=4 Bytes=104)
       2    1     WINDOW (SORT PUSHED RANK) (Cost=9 Card=4 Bytes=52)
       3    2       VIEW (Cost=8 Card=4 Bytes=52)
       4    3         UNION-ALL
       5    4           FAST DUAL (Cost=2 Card=1)
       6    4           FAST DUAL (Cost=2 Card=1)
       7    4           FAST DUAL (Cost=2 Card=1)
       8    4           FAST DUAL (Cost=2 Card=1)
    Statistics
              1  recursive calls
              0  db block gets
              0  consistent gets
              0  physical reads
              0  redo size
            673  bytes sent via SQL*Net to client
            660  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL>

  • I just installed the most recent update. Now Firefox tries to start and then locks up.

    I just installed the most recent update. Firefox starts to load and then locks up. Cannot get homepage to load or go to any other websites.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox.
    See [[Server not found]] and [[Firewalls]] and http://kb.mozillazine.org/Firewalls
    See also http://kb.mozillazine.org/Browser_will_not_start_up

  • Most Recent Devices Not Currently Connected:

    HI,
    I'm getting error Most Recent Devices Not Currently Connected: in iTunes diagnostics for Device Connectivity Tests.
    Device: iPhone 4
    Laptop OS: Windows XP
    iTunes: 10.5.3.3
    I'm not able to restore iphone and it throws errors 1602 and 21 while restoring. I have completely removed and reinstalled iTunes before trying to restore.
    My firewall/antivirus does not block any iphone/itunes service as I have used same PC before with the same iPhone.
    Log is as follows:
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    TOSHIBA Portable PC
    iTunes 10.5.3.3
    QuickTime not available
    FairPlay 1.13.37
    Apple Application Support 2.1.6
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.97
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 0012ACEC07B3B468
    Current user is an administrator.
    The current local date and time is 2012-01-30 20:41:48.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is disabled.
    HDCP is not supported.
    Core Media is not supported. (16002)
    Video Display Information
    Mobile Intel(R) 945GM/GU Express Chipset Family
    Mobile Intel(R) 945GM/GU Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Device Connectivity Tests ****
    iPodService 10.5.3.3 is currently running.
    iTunesHelper 10.5.3.3 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Standard OpenHCD USB Host Controller
    Standard Enhanced PCI to USB Host Controller
    Standard OpenHCD USB Host Controller
    Standard Enhanced PCI to USB Host Controller
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    Texas Instruments OHCI Compliant IEEE 1394 Host Controller.  Device is working properly.
    VIA OHCI Compliant IEEE 1394 Host Controller
    Most Recent Devices Not Currently Connected:
    iPhone 4 (GSM) running firmware version 5.0.1
    Serial Number:   xxxxxxxx (edit: removed for security)
    Please help.
    Regards,
    Yogesh

    Hi susanfromluling,
    Welcome to the Apple Support Community!
    It sounds like your iPod is not showing in iTunes when you connect it and that is what is not allowing you to sync. Please review the attached article to help you troubleshoot this connection.
    iPhone, iPad, or iPod touch not recognized in iTunes for Windows
    Cheers,
    Joe

  • Select Most recent Occurance

    Hi Friends,
    I have a strange requirement where in we need to select the most recent occurance of a record based on 2 columns, consider the below sample data:
    C1     C2     C3
    1234     0     abc
    1234     1     abc
    1234     0     def
    1234     1     def
    1345     20     fgh
    1345     30     fgh
    1345     20     ijk
    1345     30     ijk
    now i need to write a select statement which returns the following result
    C1     C2     C3
    1234     0     def
    1234     1     def
    1345     20     ijk
    1345     30     ijk
    we need to pick data from the recent occurance of the columns C1 and C2.
    Please help me. Do let me know in case you need any thing.
    Thanks.

    Of course rowid not near always guarantees that:
    SQL> drop table t;
    Table dropped
    SQL> create table t as (
      2  select 1234 C1, 0  C2, 'abc' C3 from dual)
      3  /
    Table created
    SQL> alter table t minimize records_per_block;
    Table altered
    SQL> insert into t
      2  select  1234, 1, 'abc' from dual union all
      3  select 1234, 0, 'def' from dual union all
      4  select 1234, 1, 'def' from dual union all
      5  select 1345, 20, 'fgh' from dual union all
      6  select 1345, 30, 'fgh' from dual union all
      7  select 1345, 20, 'ijk' from dual union all
      8  select 1345, 30, 'ijk' from dual
      9  /
    7 rows inserted
    SQL> select * from t;
            C1         C2 C3
          1234          0 abc
          1345         30 ijk
          1234          1 abc
          1234          0 def
          1234          1 def
          1345         20 fgh
          1345         30 fgh
          1345         20 ijk
    8 rows selected
    SQL> select * from t where rowid in(
      2     select max(rowid) over(partition by c1,c2 order by null) from t
      3  );
            C1         C2 C3
          1234          0 def
          1234          1 def
          1345         30 fgh
          1345         20 ijk
    SQL> There is no guarantee that Oracle will insert your rows with continuously growing rowids especially if you have blocks with deleted rows, ASSM tablespaces etc. The only guarantee is to use some sequence column, because as I understand rows are inserted from flat file and therefore datetime also may be inappropriate due to the fact that rows can be inserted faster than datetime increases.
    See also this thread where a person had similar problem Row is changing position - ON INSERT
    Gints Plivna
    http://www.gplivna.eu

  • Most recently inserted record

    how can i get most recently inserted record?
    note: there is no date columns.

    It's possible, but not probable (given how your table is likely created).
    TUBBY_ORCL?create table not_likely
      2  (
      3    column1 number
      4  )
      5  rowdependencies;
    Table created.
    Elapsed: 00:00:00.01
    TUBBY_ORCL?
    TUBBY_ORCL?begin
      2    for i in 1 .. 100
      3    loop
      4      insert into not_likely values (i);
      5      commit;
      6    end loop;
      7  end;
      8  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.03
    TUBBY_ORCL?
    TUBBY_ORCL?select *
      2  from not_likely
      3  where ORA_ROWSCN =
      4  (
      5    select
      6      max(ORA_ROWSCN)
      7    from not_likely
      8  );
               COLUMN1
                   100
    1 row selected.
    Elapsed: 00:00:00.01Uses the pseudo column ORA_ROWSCN which increments with each commit performed against the table (as i've enabled row dependencies, otherwise it would track at the block level).
    Assuming you don't have row dependencies enabled on your table, you could consider using flashback query if you know roughly when you are trying to compare to.
    All in all ... if you need to do this for part of the application design, then you need to do more design work on the structures at hand.

  • I just downloaded Firefox 6.0. The web page asked if I wanted to upgrade. What is the most recent version of Firefox and why can't I get it denoted in the propperties link? Also why is it not compatible with AVG Tool Bar?

    I just downloaded Firefox 6.0. The web page asked if I wanted to upgrade. What is the most recent version of Firefox and why can't I get it denoted in the propperties link? Also why is it not compatible with AVG Tool Bar?

    Firefox 6.0 is the current version.
    Get what denoted in what properties link.
    You can get the version number in Help -> About Firefox,
    and in '''about:support''' typed into the Location bar, and you can use JavaScript to list the user agent -- javascript:navigator.userAgent
    I'm not aware of any version of Firefox from Fx 2 on up to Fx 6 where "AVG Safe" is not a problem. Crashes aren't the only failures caused.
    * http://kb.mozillazine.org/Problematic_extensions
    * https://addons.mozilla.org/en-US/firefox/blocked/
    * https://addons.mozilla.org/en-US/firefox/blocked/i6
    * https://bugzilla.mozilla.org/show_bug.cgi?id=527135

  • Collapsed view: how to see "most recent unread message" instead of "first unread message" in a thread in Mail

    Hey all,
    I use the inbuilt Mail-software on my Macbook with Lion 10.7 and I constantly overlook new messages in a thread, as I organize by conversation and usually have all my threads in 'collapsed view'. For some reason Mail seems to prefer showing the 'first', i.e. the earliest unread message as the one message that I see in collapsed. If there are newer messages already in the thread, I don't see them, unless I un-collapse the thread. I find this really unintuitive and annoying, my inbox seems far more static than it really is.
    Is there any way to change this and have Mail show me the most recent unread message as the message I see in collapsed view?
    I appreciate any advice.
    Thanks, Carl
    PS: BTW, I have the same problem on my iPhone, double props to you if you can solve it for both Mail and iPhone!

    Mail
    Preferences
    Viewing
    Check put most recent message at top

  • I've updated to the most recent version of iTunes and I can no longer see any of my old music on my mac.  All the music is still available on my ipad.  How can i download the music on my mac?

    I've updated to the most recent version of iTunes and I can no longer see any of my old music on my mac.  All the music is still available on my ipad.  How can i download the music on my mac?

    First, are you positive it is really not there?  Have you looked in your iTunes folder in your Music folder, and in the media folders there? Do you see your media files?
    If your media are gone it is a lot easier to restore from a proper computer backup.  Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software.  See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

  • I just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: the application has failed to start because MS

    i just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: "The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem." Right after i click ok i then get this error: "Itunes was not installed correctly. Please reinstall Itunes. Error 7 (Windows error 126)." I tried to uninstall Itunes and then reinstall the 11.03 version but that didnt work either. I want to know if i copy all of the music in my itunes folder to an external without consolidating can i still transfer all my itunes music from my current windows xp pc to a brand new one and have my current itunes library in my new pc? Basically i just want to know 3 things: What exactly does consolidating the itunes library do? Can i copy, paste, and transfer my itunes library to an external and from there to a new pc? Will i be able to transfer my itunes library without consolidating the files?

    I have found a temporary solution, allowing the previous version of iTunes (v. 11.1.3 (x64) in my case) to be re-installed.  It will allow you to re-establish use of iTunes until the Apple software engineers fix the most recent disasterous upgrade (v. 11.1.4).  Please see and follow the procedure in the following article:http://smallbusiness.chron.com/reverting-previous-version-itunes-32590.html   The previous version works beautifully.

  • My Mac OS, 10.5.8, won't support the most recent Firefox and I need the most recent version it WILL support and how to get it, as it's not on this site.

    I need a way to get a more recent but not current version of Firefox that my computer, a PowerPC processor Mac, will support. I am running OS X version 10.5.8. This processor/computer will not run Lion and the most recent version of Firefox will not run on it either.
    On my second computer, same type, a newer version of Firefox crashes constantly while in Yahoo!

    Firefox 3.6.x is the last available from Mozilla for PPC Macs. <br />
    http://www.mozilla.com/en-US/firefox/all-older.html

  • My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    In the Music tab of iTunes, do you have 'Include Voice Memos' checked?

Maybe you are looking for

  • Can I keep an app on one user account, and delete it on the other?

    I have two separate user accounts on my MacBook Pro (OS X Lion); one for school and one for personal use. I cannot have Oovoo on my school account, because I cannot access my school's wireless network with Oovoo (because it is a form of social networ

  • Backing up ipad when encryption is set

    I have an iPad with encryption set on the backups in iTunes and the password is not known. I am not bothered about the old backup - they are not needed and I do not want to access the content of the old backups.  To my mind the password is not theref

  • Jerky playback in Source Monitor (vs. Windows Media Player) ...

    I am a new user of CS5.5.   I've read the FAQ and other posts and understand that my machine is underpowered. That said, why do my HD clips play smoothly with Windows Media Player or Quicktime, but play jerky in the PP Source Monitor?  What is it abo

  • Using JCO error Wrong repository version = 0 encountered.

    Hi Guru, We convert our existing Java Jco program to call RFC Sender adapter and XI should forward the request to RFC receiver adapter to our ECC. We found that when we create client connection using gwhost, gwserv and tpname which is config in RFC s

  • "Flip-book"  like image effect in Captivate 5

    Hello all ! New to the forum and pretty new to captivate over here ! I just wondered if you could help me with something ! How to make a flip-book like image effect ? There is an example on slide 3 of this Captivate example : http://www.adobe.com/pro