Report by year quarter or month

We have requirement where we may have to show some reports by either year,quarter or month.How this is supported in OBIEE answers ?

Mark's suggestion answers exactly what you asked, but when you select "quarter," for example, you'll get all quarters regardless of year. This would also be true if you selected "month." What I would suggest is building dashboard prompts for year, quarter and month. This way the user can select what year, then quarter, then month if needed, to constrain the data appropriately. By checking off "All Choices" in the dashboard prompt design, you user can see all quarters for a year, for example.
Another way would be to use drill down from Year to Quarter to Month.
Hope that helps you... :)

Similar Messages

  • Urgent !!Report Fiscal year for each Month i.e.12mnths

    Hi All,
      I have a cube with following details.
    1.Revenue Value ==1200
    2.Fiscal year==2007
    3.Product type==A
    But If i need to create a Dashboard Report with this Cube,
    But it has display tht Fiscal Year Value 2000 for each month
    Like ..KF=1200/12(months)
    So i need display as follows for the graph...
    MONTH        JAN     FEB   MAR...............................DEC
    REVENUE     100    100    100...................................100
    THIS IS HOW MY REPORT SHLD BE EXECUTED..
    But I dont have any date or month field in my cube,how can I get it for Each month as above..??????
    Can any one explain me & suggest me how to proceed..???
    Thnx
    BI Learner

    Hi Voodi,
    That is the only solution... which i have in my mind...Let me try it out & get back to u..
    But as well I have another KF under that Revenue which display for each month & we need to run a dashboard with line diagram where one line for Revenue & another for PO which shld give a comparison for all the months...
    Does this work out??
    Thanks a lot for ur ideas.

  • SSRS Matrix report. Variance expression by Month. Need to compare month from prior year to current month of current year VS2010

    Please help.  I have a matrix report.  In the report I have row group  PO Type.  One the Column groups I have a parent group by Fiscal Year, and then a child group by Month.  When I run the report, I get two years of data back broken
    out by month.  Please see below.
    Now here is where I am getting stuck.  I need to take the variance between the current month of the current year, from the same month of the prior year.  So I need to show the difference between Oct , 2014 from Oct, 2013. November, 2014 from November
    2013... etc. etc.
    In the example below, how do I create a column or row showing the variance for Contracts for October 2014.  I need to take the contracts for October 2014 which is 3 and subtract that from October 2013 which is 8.  Any suggestions? How do I do that
    for each month?  Then I need to do it for the quarter... then the year?  But I'll be happy if I can just get the month working first.
    Any help will be appreciated. 
    here is what my rdl file looks like.
    Here is what my report looks like when I render it.

    Hi Adrian_s2012,
    According to your description, you want to compare values for the month of current year with the month of prior year and get the variance. Right?
    In Reporting Services, we don't have any function to get this "Year to Year" Growth. In this scenario, if you data source is a cube, we suggest you use Analysis Services to achieve your requirement. If this data source is just from database, it will be hardly
    to calculate the variance because we need to compare the values within every two different column group and matrix generate adjacent columns one by one. Even we make it by using custom, every time executing the long code when generating result
    in a cell will reduce a lot of performance, we really don't suggest to do that in SSRS. Here is a thread with much easier requirement, please take a reference of that:
    http://social.msdn.microsoft.com/Forums/office/en-US/842e2dcb-d949-4297-9d91-eac989692cb5/difference-between-the-grouped-column?forum=sqlreportingservices
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Sales report for current month and year a go month

    i could you please guide me builting report for current monthwise for current month and year a ago month
    report parameter month_year='06-2010'
    tables = sales and below are the table fields
    customer_id
    invoice_dt
    invoice_am
    thanks
    nhm

    Okay, Still you did not mention how you will pass value in report while generating.
    Anyway the query with UNION ALL will work. For Example.
    I am assuming that the parameter for date/month you will pass in range like 01-JUN-2010 to 30-JUN-2010
    SELECT customer_id, SUM(curr_value) curr_value, SUM(past_value) past_value
    FROM
    SELECT customer_id, NVL(SUM(invoice_amount),0) curr_value, 0 past_value
    FROM sales
    WHERE invoice_dt BETWEEN :P_FROM_DATE AND :P_TO_DATE  -- here P_FROM_DATE and P_TO_DATE will be the date range for current year as i showed above.
    AND  -- Any Condition goes here...
    GROUP BY customer_id
    UNION ALL
    SELECT customer_id, 0, NVL(SUM(invoice_amount),0)
    FROM sales
    WHERE invoice_dt BETWEEN ADD_MONTHS(:P_FROM_DATE,-12) AND ADD_MONTHS(:P_TO_DATE,-12) -- This add_months function for the previous year same month.
    AND -- Any condition goes here...
    GROUP BY customer_id
    GROUP BY customer_idNow using the above query you can design the tabular report as you showed the format.
    -Ammad
    Edited by: Ammad Ahmed on Jul 3, 2010 7:55 PM
    added GROUP BY

  • Report that shows Asset number with acquisition year and acquisition month

    Hi Gurus,
    Is there any standrd FA report that shows assts with acquisition year and equisition month/period.
    thnx

    This reprot gives you the calender year dates but we are actually for for fiscal year date and period.
    Example
    asset acquired on 05/01/2009 calender year
    our fiscal year will be 02/01/2010. ( April to March).
    we need to generate reports that shows second dates ( fiscal year  02/01/2010)  and your mentioned report shows only caldender year( 05/01/09). advice if know any report
    thnx

  • How to get current fiscal year/quarter/month/week

    Post Author: [email protected]
    CA Forum: Semantic Layer and Data Connectivity
    Hi friends,
    I have to calculate
    1. current year/quarter/month/week.
    2.Previous year/quarter/month/week.
    please tell the process to achieve the above scenerio's.
    the structure of the fiscal_cal is as  follows.
    Name                                      Null?    Type
    TODAY                                     NOT NULL DATE
    FISCAL_DAY                                         NUMBER(8)
    FISCAL_WEEK                                        NUMBER(6)
    FISCAL_MONTH                                       NUMBER(6)
    FISCAL_QTR                                         CHAR(18)
    FISCAL_YEAR                                        NUMBER(4)
    FISCAL_MONTH_WORK_DAYS                             NUMBER(2)
    sample week data is as follows
    FISCAL_WEEK
         200752
         200753
         209901
    Thanks.

    based on ur target database DBMS you can find a built-in functions be used in the universe designer to get the requirment you talked about, like in oracle
    to_char(mydate,'yyyy') it will return the year in the yyyy format.
    and the same way for the other things you want
    to_char(mydate,'q') return the quarter.
    w return the week of the month
    ww return the week of the year
    mm return the month
    ,, to get the last year
    you can use also a builtin functions
    like add_months(mydate,-12) that return the same date for the last year, and you can do the same operations as before.
    its all related to the DBMS.
    good luck

  • Monthly Sales Report - Prior year comparison

    I am created a monthly sales report for Sales in Crystal 2011. I have a parameter prompting for a date e.g. 02/01/2014 to 02/28/2014. I would like to have the sales amounts beside this column for 2013.
    I found this formula but I can only get my results from 2014.Anyone have an idea how I can do this ?
    Thanks,
    debbie
    \\Current Period
    If pwformatdate({OEAUDH.TRANSDATE})
    in date(year(currentdate)-(if month(currentdate)<10 then 1 else 0),10,1)
    to currentdate
    then Amount Forumula
    else 0.00
    \\Prior Year Period
    If pwformatdate({OEAUDH.TRANSDATE})
    in date(year(currentdate)-(if month(currentdate)<10 then 2 else 1),10,1)
    to dateadd('yyyy',-(if month(currentdate)<10 then 2 else 1),currentdate)
    then Amount Formula
    else 0.00
    the parameter for my date is :
    pwformatdate({OEAUDH.TRANSDATE}) >= {?FromDate} AND
    pwformatdate({OEAUDH.TRANSDATE}) <= {?ToDate} AND
    ({ICITEM.ITEMNO}) >= ({?FromItem}) AND
    ({ICITEM.ITEMNO}) <= ({?ToItem}) and
    {OEAUDH.TRANSTYPE} <> 3

    Hi Debbie,
    1) Modify the Record Selection Formula to;
    {OEAUDH.TRANSDATE} IN [cdate(year({?FromDate})-1, Month({?FromDate}), day({?FromDate})) TO cdate(year({?ToDate})-1, Month({?ToDate}), day({?ToDate}))]
    OR
    {OEAUDH.TRANSDATE} IN [{?FromDate} TO {?ToDate}]
    This should give you current and previous year's data for the period chosen by the user.
    2) Assuming you have a group on the Date field set to print for each year, simply create a running total from the Field Explorer.
    Name it Current Year.
    Choose 'Sales Amount' as the field to Summarize.
    Choose 'Sum' as the Summary Operation.
    Under 'Evaluate', select 'use a formula' and use this code:
    date_field IN
    [cdate(year({?FromDate}), Month({?FromDate}), day({?FromDate})) TO cdate(year({?ToDate}), Month({?ToDate}), day({?ToDate}))]
    Set it to Reset at each Group For Year
    3) Create another Running Total and call it 'Previous Year'.
    Everything remains the same from Step 2 except the evaluate formula:
    date_field IN
    [cdate(year({?FromDate})-1, Month({?FromDate}), day({?FromDate})) TO cdate(year({?ToDate})-1, Month({?ToDate}), day({?ToDate}))]
    Hope this helps.
    -Abhilash

  • Hello, I am getting a Kern Protection failure error message when trying to start up my Olympus DSS Player dictation software.  I have been using the software without issue for years until last month. I have uninstalled and reinstalled the software.

    Hello, I am getting a Kern Protection failure error message when trying to start up my Olympus DSS Player dictation software.  I have been using the software without issue for years until last month. I have uninstalled and reinstalled the software and don't recall installing any new software before the issue began.
    Any help would be greatly appreciated, I will post the error message below. Thanks.
    Process:    
    DSS Player [186]
    Path:       
    /Applications/DSS Player/DSS Player.app/Contents/MacOS/DSS Player
    Identifier: 
    com.olympus.DSSPlayerV7
    Version:    
    7.4.0 (0.1)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [98]
    Date/Time:  
    2013-11-23 11:44:03.999 +1100
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    209192 sec
    Crashes Since Last Report:      
    4
    Per-App Interval Since Last Report:  273602 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                 
    EDE95D54-CA0A-4ABC-8241-167C27AAFC1D
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000007ff4005
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.OlympusSys.OlympusDSSFile
    0x005e1fa3 DSSFile_GetDSSIndexMark + 1091
    1   com.olympus.DSSPlayerV7  
    0x0004e5cf -[DSSFileManager setActive] + 61
    2   com.olympus.DSSPlayerV7  
    0x0004a939 -[DSSFileManager setFileInfo:needMusicInfo:] + 698
    3   com.olympus.DSSPlayerV7  
    0x000486f8 -[DSSFileManager initWithFilePath:needMusicInfo:] + 124
    4   com.olympus.DSSPlayerV7  
    0x00009470 -[DSSMainWindowController createFileInfosNew:folderId:] + 742
    5   com.olympus.DSSPlayerV7  
    0x0000ccd6 -[DSSMainWindowController updateFolderInfos:folderIds:] + 622
    6   com.olympus.DSSPlayerV7  
    0x00020bdb -[DSSMainWindowController awakeFromNib] + 3665
    7   com.apple.AppKit         
    0x0114e21c -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1646
    8   com.apple.AppKit         
    0x0114c1a4 loadNib + 257
    9   com.apple.AppKit         
    0x0114b7f7 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 831
    10  com.apple.AppKit         
    0x0114b4ad +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    11  com.apple.AppKit         
    0x011dafcb -[NSWindowController loadWindow] + 223
    12  com.apple.AppKit         
    0x01171f22 -[NSWindowController window] + 89
    13  com.apple.AppKit         
    0x013d6dbc -[NSWindowController showWindow:] + 36
    14  com.olympus.DSSPlayerV7  
    0x000035b4 -[DSSAppController applicationDidFinishLaunchingAfterShowSplashWindow] + 464
    15  com.olympus.DSSPlayerV7  
    0x000065d0 -[DSSAppController completeCheckRemoteConnWhenAppLaunch] + 86
    16  com.apple.Foundation     
    0x021b0738 __NSThreadPerformPerform + 705
    17  com.apple.CoreFoundation 
    0x032bc42b __CFRunLoopDoSources0 + 1563
    18  com.apple.CoreFoundation 
    0x032b9eef __CFRunLoopRun + 1071
    19  com.apple.CoreFoundation 
    0x032b93c4 CFRunLoopRunSpecific + 452
    20  com.apple.CoreFoundation 
    0x032b91f1 CFRunLoopRunInMode + 97
    21  com.apple.HIToolbox      
    0x02537e04 RunCurrentEventLoopInMode + 392
    22  com.apple.HIToolbox      
    0x02537af5 ReceiveNextEventCommon + 158
    23  com.apple.HIToolbox      
    0x02537a3e BlockUntilNextEventMatchingListInMode + 81
    24  com.apple.AppKit         
    0x0118e595 _DPSNextEvent + 847
    25  com.apple.AppKit         
    0x0118ddd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    26  com.apple.AppKit         
    0x011501f3 -[NSApplication run] + 821
    27  com.apple.AppKit         
    0x01148289 NSApplicationMain + 574
    28  com.olympus.DSSPlayerV7  
    0x0000257a _start + 216
    29  com.olympus.DSSPlayerV7  
    0x000024a1 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x00f44382 kevent + 10
    1   libSystem.B.dylib        
    0x00f44a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib        
    0x00f43f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib        
    0x00f43cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib        
    0x00f43781 _pthread_wqthread + 390
    5   libSystem.B.dylib        
    0x00f435c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib        
    0x00f43412 __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00f439a8 _pthread_wqthread + 941
    2   libSystem.B.dylib        
    0x00f435c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib        
    0x00f43412 __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00f439a8 _pthread_wqthread + 941
    2   libSystem.B.dylib        
    0x00f435c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x070a5400  ebx: 0x070a5c00  ecx: 0x001b4955  edx: 0x00000024
      edi: 0x07ff400e  esi: 0x00000000  ebp: 0xbfffdbc8  esp: 0xbfffdb60
       ss: 0x0000001f  efl: 0x00010217  eip: 0x005e1fa3   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x07ff4005
    Binary Images:
    0x1000 -   0x118fec +com.olympus.DSSPlayerV7 7.4.0 (0.1) /Applications/DSS Player/DSS Player.app/Contents/MacOS/DSS Player
      0x187000 -   0x187ff7  com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
      0x18a000 -   0x484fef  com.apple.QuickTime 7.6.6 (1800) <D3538A45-5F4B-262A-06AB-64C1EBAC4A33> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
      0x530000 -   0x5aafff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
      0x5dc000 -   0x5e5fff +com.OlympusSys.OlympusDSSFile 1.3 (1.01) /Library/Frameworks/OlympusDSSFile.framework/Versions/A/OlympusDSSFile
      0x5ec000 -   0x5ecff7  com.apple.Carbon 150 (152) <2539A94A-34D9-45CB-8F3E-AD53149E0BD5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
      0x5ef000 -   0x5efff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
      0x5f7000 -   0x85dff7  com.apple.security 6.1.2 (55002) <E88E133F-5FB3-446F-B753-2B8AD577B46A> /System/Library/Frameworks/Security.framework/Versions/A/Security
      0x93a000 -   0xa77fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
      0xae7000 -   0xae8ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
      0xaed000 -   0xb39fff +com.yourcompany.yourcocoaframework ??? (1.44) /Library/Frameworks/OlympusDeviceManager.framework/Versions/A/OlympusDeviceMana ger
      0xbe1000 -   0xc3eff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
      0xc5e000 -   0xda1fef  com.apple.QTKit 7.7 (1800) <9DD27495-3020-0928-B3F2-D418C336E163> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
      0xe58000 -   0xec2fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
      0xf1d000 -  0x10c4ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x1146000 -  0x1a29ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x1ec5000 -  0x1ff3fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x2057000 -  0x2057ff7  com.apple.ApplicationServices 38 (38) <EAF1BC8C-4FD4-4300-B8F7-4B24E49125E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x205f000 -  0x2139fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x2184000 -  0x23f5fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x2503000 -  0x2827fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x2967000 -  0x2cd2ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x2da2000 -  0x2dacffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x2db5000 -  0x2dfbff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x2e08000 -  0x2f8afe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <60FF302E-5FAE-749B-BC70-0496DC2FBF2D> /usr/lib/libicucore.A.dylib
    0x2fec000 -  0x30ecfe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x3110000 -  0x311efe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x3123000 -  0x3167ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x3186000 -  0x318fff7  com.apple.DiskArbitration 2.3 (2.3) <6AA6DDF6-AFC3-BBDB-751A-64AE3580A49E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x3199000 -  0x3199ff7  liblangid.dylib ??? (???) <FCC37057-CDD7-2AF1-21AF-52A06C4048FF> /usr/lib/liblangid.dylib
    0x319d000 -  0x31afff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x31bc000 -  0x3269fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x327d000 -  0x33f8fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x34f0000 -  0x3cdf557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x3da7000 -  0x3f6afeb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <AE641FAD-DF38-AE31-B45B-85AEE7AF3A45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x3fc9000 -  0x402afe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x4062000 -  0x40fdfe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x4124000 -  0x41e0fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x4217000 -  0x426aff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x4295000 -  0x42a6ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x42b3000 -  0x435bffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x4388000 -  0x439cffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x43aa000 -  0x43befe7  libbsm.0.dylib ??? (???) <B328FA0A-899C-4FC4-F2AC-2FDC08819CD2> /usr/lib/libbsm.0.dylib
    0x43c7000 -  0x43cafe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x43cd000 -  0x43d9ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x43dd000 -  0x46fdff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x4773000 -  0x481ffe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x4884000 -  0x48c8fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x48ef000 -  0x49bafef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x4a19000 -  0x4a99feb  com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x4acd000 -  0x4b00ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x4b18000 -  0x4bb5fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x4bf4000 -  0x4c1affb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x4c30000 -  0x4c3dff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x4c46000 -  0x4cfffe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x4d0d000 -  0x4d4aff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x4d67000 -  0x4d8fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x4d9a000 -  0x4d9aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x4d9d000 -  0x4dedfe7  libTIFF.dylib ??? (???) <AB182CEC-188A-F2BC-21E1-0059FD3B2598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x4df9000 -  0x4dfdff7  libGIF.dylib ??? (???) <2251F789-B187-0837-6E38-A0E5C7C4FA3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x4e02000 -  0x4e20fe7  libPng.dylib ??? (???) <6C0B95D7-9634-E044-0B79-F1DD56961C33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x4e29000 -  0x4e2bff7  libRadiance.dylib ??? (???) <090420B3-CB65-9F7B-5349-D42F2F9693B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x4e2f000 -  0x4e53ff7  libJPEG.dylib ??? (???) <50E17B4D-63D6-24D3-702F-6A6E912A55EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x4e5a000 -  0x4f3afe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x4f48000 -  0x4f48ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x4f4b000 -  0x4f8dff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x4f96000 -  0x5005ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x500e000 -  0x5424ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x5466000 -  0x589bff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x5a21000 -  0x5b23fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <EB34F049-D9E1-BF19-CF03-B26A0352D40C> /usr/lib/libcrypto.0.9.8.dylib
    0x5b77000 -  0x5b78ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x5b7c000 -  0x5c34feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x5cc4000 -  0x5cfeff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x5d0b000 -  0x5d2bfe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x5d35000 -  0x5d35ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x5d38000 -  0x5d42fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <DE0E0EF6-8190-3F65-6BDD-5AC9D8A025D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x5d4a000 -  0x5d9aff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x5db2000 -  0x5e60ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x5e8a000 -  0x5ea9ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x5ec0000 -  0x5eceff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x5ed6000 -  0x5f07ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x5f0f000 -  0x5f30fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x5f39000 -  0x5f3dff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x5f45000 -  0x5f88ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x5f96000 -  0x5fa1ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x5fb0000 -  0x60bcfe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x60db000 -  0x60deff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x60e3000 -  0x60e7ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x60ec000 -  0x616effb  SecurityFoundation ??? (???) <A8D248DE-8670-970D-39E3-A9738CFDBEE1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x61a5000 -  0x61aaff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x61b2000 -  0x61b8fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x61bf000 -  0x61d7ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x61e8000 -  0x6235feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x6251000 -  0x6273fef  com.apple.DirectoryService.Framework 3.6 (621.16) <5566E769-6459-78A7-DD2C-1D3068BD3932> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x627d000 -  0x628dff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <E276514D-394B-2FDD-6264-07A444AA6A4E> /usr/lib/libsasl2.2.dylib
    0x6294000 -  0x62d7ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x6300000 -  0x6302ff7  com.apple.securityhi 4.0 (36638) <E7D83480-77BB-72F9-72F3-AEE198CE589F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x6307000 -  0x630ffeb +QualityPlay.dylib ??? (???) /Library/Application Support/OLYMPUS/DSSPlayer/lib/QualityPlay.dylib
    0x632b000 -  0x6333feb +StandardPlay.dylib ??? (???) /Library/Application Support/OLYMPUS/DSSPlayer/lib/StandardPlay.dylib
    0x635e000 -  0x6370fcf +LongPlay.dylib ??? (???) /Library/Application Support/OLYMPUS/DSSPlayer/lib/LongPlay.dylib
    0x6375000 -  0x6388fdf +DSSAES.dylib ??? (???) /Library/Application Support/OLYMPUS/DSSPlayer/lib/DSSAES.dylib
    0x638c000 -  0x6392fff  com.apple.CommonPanels 1.2.4 (91) <CE92759E-865E-8A3B-1488-ECD497E4074D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x639a000 -  0x639dffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x63a2000 -  0x6406fff  com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x6428000 -  0x643dfff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x6453000 -  0x646ffe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x647f000 -  0x64eafd7 +com.yourcompany.yourcocoaframework ??? (1.53) /Library/Frameworks/OlympusServiceProvider.framework/Versions/A/OlympusServiceP rovider
    0x657c000 -  0x65b9ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x65d4000 -  0x6701ffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x6765000 -  0x6c20ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x6cc9000 -  0x6d10ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x6d31000 -  0x6dacfff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x6f9d000 -  0x6fa8ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x6ff2000 -  0x6ff5ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7c00000 -  0x7c3bffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistry.dylib
    0x7e04000 -  0x7e37fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    0x7e43000 -  0x7e84ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fef000 -  0x7ff0ff7 +com.olympus.DSSPlayerV7.LeopardSupportForDSSPlayer 1.1 (1.0) <2AAA1454-CEBA-AA58-0DA1-D8E02A7EDBB4> /Applications/DSS Player/DSS Player.app/Contents/Resources/Leopard.bundle/Contents/MacOS/Leopard
    0x1aed5000 - 0x1b3e7feb  com.apple.RawCamera.bundle 3.14.0 (646) <27962422-EA30-43CF-2B3E-E662BB4C46C7> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x20000000 - 0x20098fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x64b00000 - 0x64b07ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
    0xfa100000 - 0xfa192fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f7
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK2555GSXF, 232.89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06610000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x06500000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x06300000 / 2

    Hi,
    Please review the link below, here is a useful article for you.
    Tips and Tricks for Deploying the Application Catalog in System Center 2012 Configuration Manager
    http://blogs.technet.com/b/configmgrteam/archive/2012/07/05/tips-and-tricks-for-deploying-the-application-catalog-in-system-center-2012-configuration-manager.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Year ,quarter crosstab

    Hello, I am working currently on crosstab and I do have a date object from universe, from that I need to get year ,quarter, but when i create a variable for the year it is working but when drag that into the report showing the multivalue error and dates of that object from jan 1 2011 to current date.Can you guys please give some idea.
    thanks,
    San

    Please check Variable "Year" that you have created should be Dimension object not Measure object.

  • Reg:-Previous Year Quarter

    Hi All,
    I need to build a new report on Balance Sheet Quarterly in Financials. My reqiurement is..Show the Quarterly Balance sheet comparing Curent Quarter and Previous year Quarter
    i.e Current Qtr vs Previous Year Qtr.
    In the report levl , I have used Presentation variable for Current Quarter:-FILTER("Facts - GL Balance"."Balance Global1 Amount" USING (Time."Fiscal Quarter" ='@{var_qtr}{2011 Q 1}'))
    In the Dashboard, I used two filters Fiscal Year, Fiscal Quarter.. So if select Fiscal Quarter 2011 Q2 then the user should also be able to see 2010 Q2 data.
    May I know how to achieve this.
    Thanx in advance.

    Hi all,
    I have built a report on Balance Sheet using following columns:
    1) General Ledger Code
    2) Current Quarter
    3) Previous Quarter
    4) Global Amount
    Now I got a new requirement to add a column Variance to the layout which should be difference of (Current Quarter- Previous Quarter).
    For current Quarter, we have used this formula :FILTER("Facts - GL Balance"."Balance Global1 Amount" USING (Time."Fiscal Quarter" ='@{var_qtr}{2011 Q 1}'))
    For Previous Quarter , we have used this formula:-FILTER("Facts - GL Balance"."Balance Global1 Amount" USING (Time."Fiscal Quarter" = ( case when substring('@{var_qtr}{2011 Q 1}' from 6 for 8)='Q 1' then cast(cast(substring('@{var_qtr}{2011 Q 1}' from 1 for 4) as int)-1 as char(4))||' '||'Q 4' when substring('@{var_qtr}{2011 Q 1}' from 6 for 8)='Q 2' then substring('@{var_qtr}{2011 Q 1}' from 1 for 4)||' '||'Q 1' when substring('@{var_qtr}{2011 Q 1}' from 6 for 8)='Q 3' then substring('@{var_qtr}{2011 Q 1}' from 1 for 4)||' '||'Q 2' else substring('@{var_qtr}{2011 Q 1}' from 1 for 4)||' '||'Q 3' end)))
    I need help how to calculate variance..

  • Cal. Year/Quarter Values in Text

    Hi All,
    I have a report which displays Net Sales in Yearly Quarters wise
    Ex: 20131     20132     20133     20134
    Query has included Cal. Year/Quarter infoobject, I've done setting to display as 'Text'  for Cal. Year/Quarter object properties in Bex.
    But I'm expecting the report results as
    Ex: 2013 Q1     2013 Q2      2013 Q3      2013 Q4.
    Could you please suggest me what are the settings I'm missing.
    Regards
    Sunil  

    Hi Anshu n Phani,
    I was posted this discussion by checking "Mark this discussion as Question" check box. So it was posted as question. When I got the correct answer (immediate reply) I've checked that reply as 'Correct Answer' and after that I've posted some of my observations regarding my question.
    Checking 'Correct Answer' will populate the question status as "this question has been Answered' and  'Useful Answer' will make the thread as not answered, but if the Author of the question make it as "Assumed Answer', then question status got 'This question is Assumed Answer'. And thread get closed. This is the only way I know to give the proper status of a question in SCN.
    Phani Could you please explain, is there any other way to close the thread ?
    As Anshu mentioned, it's been changed as Discussion (I donn know how it happened) , I'm unable to mark it as Correct and Useful, so mentioned in my reply as "Thread is Closing'.
    Thanks
    Sunil   

  • Offset issue for Fiscal Year Quarter

    Dear All,
    There is a requirement to develop a report for balance sheet to compare the fiscal year quarter like if user is going to give input 20143 then comparison quarter is 20142 where I did offset (-1) and if user give input as 20141 then the comparison quarter is 20134 where I am using offset as (-7).
    So I have incorporated both offset in one variable. Now the issue is if I will run for any quarter then it is giving error in the run time. Could anyone suggest that how I could achieve this, whether I have used correct offset interval?
    Query Key Figures Selections:
    Bex Analyzer Selection Error:
    Regards,
    Abhishek Jain

    Hi,
    I wouldn't do it in that way i.e. one column where you count previous quarter for quarters 2 3 4 (offset -1) and another column for counting previous quarter for quarter 1 (offset 7).
    There should be just one column where you count just previous quarter. Use an EXIT to count previous quarter for any value of quarter.
    Regards, Leszek
    something like this can be used:
    WHEN 'ZPREVQUARTER'.
    * QUARTER(1) TYPE C.
    * YEAR(4) TYPE C.
    * have to be defined after DATA: keyword !!!
       IF i_step = 2.
             LOOP AT i_t_var_range INTO l_s_var_range
               WHERE vnam = 'ZCURRENTQUARTER'.
               EXIT.
             ENDLOOP.
             CLEAR: l_s_range.
             YEAR = l_s_var_range-low(4).
             QUARTER = l_s_var_range-low+4(1).
             IF QUARTER = 1.
              YEAR = YEAR - 1.
              QUARTER = '4'.
             ELSE.
              QUARTER = QUARTER - 1.
             ENDIF.
             CONCATENATE YEAR QUARTER INTO l_s_range-low.
             l_s_range-sign = 'I'. "loc_var_range-sign.
             l_s_range-opt = 'EQ'. "loc_var_range-opt.
             APPEND l_s_range TO e_t_range.
          ENDIF.

  • Report actuals till last closed month

    Hello Experts,
    We have a requirement to report actuals till last closed month(which is August for now) but reports are not created in such a way that it shows different time data for different versions at the same time.Adding time dimension in column axis makes the report static and thereby we ultimately looses its dynamic nature.
    For example, In one of the report,Profit center(expansion is dynamic) and Category dimension(one is actual and another one is always based on user selection) are in column axis and time selection is at the top.It retrieves data for both the versions but for the same time period.But the requirement is show actuals till last closed month and other comparison version based on time selected by the user.Adding time dimension in column axis makes the report static because then profit centers needs to be hardcoded as well.
    Our main goal is not to touch the existing reports because then we loose the dynamic nature of it. Is there any way to do it with minimal changes in Admin or Reports without losing its dynamic nature.
    Any help will be much appreciated.
    Many Thanks
    Sim

    Hi Vadim
    Thanks for replying.Last closed month means the month which has been recently actualised. Like for this year, August actuals are already in and so this month is closed. Right now, the definition in our input form is 8+4 which means 8 months are actualised and available for reporting but rest of four months(Sept till dec) are still open for planning.
    Now, in my report, I have Profit center and category(2 members, one is always actual and another is always based on user selection) in column axis  and data is being retrieved for both versions but for the same time selected by the user.For example, user has selected time as 2014.12, even the actuals will also show till 2014.12 which is incorrect.
    Because this way they are also able to see some of the september actuals(which has not been fully posted in our system as this is month half) and therefore, they are not able to see correct data.
    I am using EPMAxisoverride and Profit center and category dimension is dynamic in column axis and adding time dimension will make the report static(because I dont want to see two times(like 2014.08 and 2014.12) for Actual version and two times for comparison version) and thereby losing its dynamic nature.
    I have attached two snap shots for your refrence(first one is what exists in the system and another one what we are looking for).
    Is there any way to bring data in such a way that we dont even have to touch any report.
    Regards
    Sim

  • ABAP Logic - This Month This Year to This Month Last Year problem

    Hi All,
    I have a following requirement ... the report currently compares This Month This Year to This Month Last Year. But this is not a valid comparison for the user until the end of the month is reached as only then is it comparing 2 full months. We would like to use a formula replacement path variable to work out which proportion of data we have for this month. ie. if its day 15, we have 50% of data (if there are 30 days in the month - this just an example), therefore we should only show 50% of This Month Last Years column so that the comparison between the 2 is sensical.
    So I'd like the formula variable to return a ratio or percentage which I can then use in a calculated key figure in the query to pro-rata the last year data.
    The query currently displays data by Fiscal Period, so when working out the ratio I would need to check which Fiscal Period we're in and also consider that the data is loaded every night, so on the 1st day of a Fiscal Period we are comparing everything up until yesterday.
    Can anyone see in problem with the logic of this, or better yet, has anyone done this before and maybe has some code for me? Is there another way I could be doing this?
    Edited by: Julius Bussche on Sep 19, 2008 4:31 PM

    Have you tried google for this Error Message...
    http://support.microsoft.com/kb/959077

  • Set Parameter to pick up previous month and year unless first month of the year

    Hi,<o:p></o:p>
    I have a start and end date set to the same format (CCYYMM) and date.<o:p></o:p>
    I am running a report each month using the below expression.<o:p></o:p>
    =Year(Today()) * 100 + Month(Today().AddMonths(-1))<o:p></o:p>
    This functions correctly except when the report is run in January where the date returned is 201512 instead of 201412.<o:p></o:p>
    Can someone advise of how i can get this expression to show the correct month when i run this in January?
    M Stoker

    =Format(DateAdd(DateInterval.Month,-1,Today()),"yyyyMM")
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • OHD filename details

    Hi Gurus, I am currently generating a file, through a Process chain, from OHD that contains the BW system timestamp as part of its logical filename. There is a requirement to log the file name generated along with the number of rows.. Is there anyway

  • One iTunes account; 5 devices

    I have an iTunes account, iphone, ipad.  My husband got an iphone and ipad and my daughter an ipod touch. All of these devices are under my iTunes account. If we turn use the iCloud, will our calendars and contacts remain "his calendar" "her calendar

  • No VGA input

    Compter model - HP Pavilion GG646AA Operating System - Windows Vista 32-bit Error message - on monitor, no VGA input Any changes made - no changes made  I've looked on the internet and it seems like I'm not the only HP user to encounter this problem.

  • List Manager based on LOV returning values with missing spaces

    I am using a list manager based on a pop up lov, in this case it is a list of supplier names. When the pop-up list is shown the values are displayed as expected, with all spaces intact. When I click the supplier name, and then click Add to add to the

  • 3g launch in UK in shambles due to O2 (in)activation

    has anyone been able to connect to O2 network since yesterday, O2 has led this 3G launch in real shambles. I got a phone yesterday still waiting for network connection.