Variant not being used when launching MDT report from Portal

Hi,
I have set up the reporting i-view in MSS to use MDT. In the "Define Function Codes" activity in  the IMG under Managers Desktop  I have set up Transaction Code  S_AHR_61015536 (Expired Qualifications Report) to use variant MSS.
However when I launch the report via the MDT i-view it takes no consideration of the variant used.
Has anyone else encountered this problem before?
Thanks
Tom

Check this
Please kindly correct the variant in the table T77I3 or you can correct
the customizing at SPRO:
Personnel Management->
    Manager's Desktop->
       Human Resources Information Systems->
            HIS ->  Define task functions
Area HRTIM

Similar Messages

  • Why is the template not being used when dynamic page called ?

    Hi,
    I have created a dynamic page and assigned a template to it. When I call the dynamic page using the 'show' procedure from a form, I do not see the template.
    Why is the template not being used ? How can I get the template working when I call the dynamic page ?
    I even tried to show the page from the dynamic page's manage components tab and there is same problem. Template is not being used.
    thanks,
    Mainak

    You can alter the generated package body to include the following function in the header and footer sections.
    Header:
    PORTAL.wwv_headings.show_header(
    p_template => 'PUBLIC.TEMPLATE_3',
    p_heading => 'Dynamic Page',
    p_help_link => 'PORTAL_DEMO.EXAMPLE_DYNAMIC_PAGE.help',
    p_about_link => 'PORTAL_DEMO.EXAMPLE_DYNAMIC_PAGE.about');
    Footer:
    PORTAL.wwv_headings.show_footer(
    p_template => 'PUBLIC.TEMPLATE_3',
    p_help_link => 'PORTAL_DEMO.EXAMPLE_DYNAMIC_PAGE.help');
    where
    <PORTAL_DEMO> indicates application schema
    <PORTAL> indicates the name of the portal (normally this will be portal30 by default).

  • WinSCP not being executed when package is ran from job

    I have a package in the SSIS catalog. It worked fine when it ran in the file system, but like so many others, died when I called it from a job. I ran the problem down to the fact that the account that the job was running under didn't have access to the directories
    that the package was trying to access. That solved half my problem.
    In my package I'm calling WinSCP from a script task. I can tell the executable is not getting called. No errors are being thrown. I gave the account in question full access to the folder where WinSCP resides but that didn't fix the issue. What else do I
    need to look at?

    Arthur, WinSCP has logging functionality. When the executable gets called a log file is created. No log file is being created. I did pull that particular piece of functionality out of the package and unit tested it and it worked fine which has only caused
    me further frustration.
    I am currently getting this series of errors which I only just found:
    The expression for the variable "InitialDirectoryFullPath" failed evaluation. There was an error in the expression.
    The variable "User:RootFileDirectory" was not found in the variables collection.
    Attempt to parse the expression "@[User:RootFileDirectory] + @[InitalDirectory]" failed and returned error code 0xC00470A6. The expression cannot be parsed.
    This makes no sense as it runs just fine in other environments under other accounts. Only when I push this thing to a certain box does it fail like this. RootFileDirectory is being populated by a Windows Environment Variable and I thought the problem was
    there except there are other parts of the package that use that variable and they work just fine.

  • Error when launching BEx analyzer from Portals

    BI Gurus...
    We are working on an initiative to migrate our user interface from SAP GUI to Enterprise Portal.
    Bex Analyzer is primary mode of reporting at this time.
    After importing the Roles into EP, I am able to execute the web queries successfully, in the BEx Wen analyzer. But, I get an error when I click on any of the excel workbooks. Our expectation was that once we click on the excel workbook name, the BEx analyzer will launch from EP. But it seems like the issue is with launching BEx Analyzer from BI Portal.
    Has anyone faced this issue before?
    Is it possible to launch BEx Analyzer from EP?
    Are their some key portal settings we have missed out on to enable launching BEx analyzer from EP?
    Please provide your thoughts/experience.
    Thanks,
    Ajay.

    Hi WernerS,
    Thanks for your response.
    The RRMXP Transaction works and it launching the BEx Analyzer as expected.
    Now, as per our research, I think there are 2 ways of launching BEx analyzer from BI Portals.
    1) Call via a URL
    You can call BEx Analyzer via the following URL: http(s)://<server:port>/sap/bc/bsp/sap/rsr_bex_launch/bexanalyzerportalwrapper.htm
    You can modify the URL to open BEx Analyzer with either a workbook, a query or a query view. You can use the following parameters to do this:
    ●      Parameter to open the workbook: ?WBID=<wb_id>
    I have tried calling via URL iView, but instead of launching the BEx Analyzer, it just throws a dialog box to "save" or "open" a file, RRMX.bex. When I try to open this file, it says "Invalid File Format".
    I tried opening the file in notepad and I see the following parameters passed.
               test
               Data=BX2,CONAJP,EN,mikoyan,17,,,250,
               9
    Any clue about what I am doing wrong?
    2) Calling via a Transaction
    You can generate BEx Analyzer in Portal Content Studio as an SAP Transaction iView.
    The iViews are of type SAP Transaction iView and have the code link com.sap.portal.app integrator.sap.Transaction.
    The most important properties are System, Transaction Code (TCODE) and ApplicationParameter.
    ●      The Transaction Code for all workbooks is RRMXP.
    ●      The ApplicationParameter property contains the value WBID=<WORKBOOK_ID>.
    I have tried this approach as well. When I open this iView, I see the RRMXP transaction in the Internet explorer, but the workbooks still does not open in the BEx Analyzer (Excel)
    Any thoughts on where am I going wrong ?
    Thanks,
    Ajay.

  • LINGUISTIC index not being used when it should be - why?

    We have Oracle 10g R2 and using the case insensitve feature within the database. We have 2 schemas, one called 'app' and the other 'crs'. The crs schema owns the all the tables, views etc and has granted select on its objects to schema app.
    We have a 'after log on' trigger on schema app the executes the following:
    execute immediate 'alter session set NLS_COMP=LINGUISTIC';
    execute immediate 'alter session set NLS_SORT=BINARY_CI';
    We have a people table containing 180,000 records defined as:
    person_id varchar2(10) not null and primary key,
    surname varchar2(200) not null
    We have the following indexes on this table:
    create index my_indx1 on people (nlssort(person_id, 'NLS_SORT=BINARY_CI'));
    create index my_indx2 on people (nlssort(surname, 'NLS_SORT=BINARY_CI'));
    create index my_indx3 on people (upper(surname));
    So, when I run the following SQL as schema CRS:
    select * from people where upper(surname) = 'xxxxxx'
    it uses my_indx3 which is what I expect.
    But when I run the same sql as schema app it does a full table scan when I expected it to use my_indx2. Why isn't it using my_indx2 - what am I missing here - do I need to include a hint into the sql?????
    Cheers
    John.

    The first test is always to check the execution plan - especially the predicate section. Based on your description, a simple test case showed Oracle transforming the predicate as follows:
    Before "alter session":
    access (UPPER("SURNAME")='xxxxxx')After "alter session"
    filter(NLSSORT(UPPER("SURNAME"),'nls_sort=''BINARY_CI''')=HEXTORAW('78787878787800') )Note the 'upper' that is still present - it looks like you need to create your index on the expression:
    (nlssort(upper(surname), 'NLS_SORT=BINARY_CI'))Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • BUG: Printer default settings not being used when selected in Print Dialog Prompt

    We have 2 styles of printers on our computers: and Epson Receipt Printer (paper size Roll Papper 80mmx257m) and a Dell printer (paper size 8.5x11)
    Our issue is if use us the non-defaulted printer to print something in Internet Explorer, it overrides the default printer setting with its default settings of that non-default printer.  When we try to use the default printer again, the settings will
    not switch back to the appropriate settings of that default printer.  
    Example: (Epson selected as Default Printer in Windows 7 Professional)
    I open IE and select print on a page.  I select the Dell printer and hit apply to change the print settings to the default settings of that Dell.  Everything prints fine.  I then try that same page, but this time I select the Default Printer
    (Epson) and hit "apply" in the Printer Dialog Prompt and print.  The print out is of the paper size letter and not the default settings for the Epson which is Roll Paper.  I look at the settings in the preferences from IE's Print Dialog
    Prompt and it shows it will use the Paper Size: LT 8.5x11 in.  
    If I close and re-open IE and print that same page to the Epson without selecting the Dell I see that the settings are back to the defaults for the Epson and things print as they should.
    Why doesn't IE use the default settings after selecting any printer and hitting apply in the print dialog prompt past the first change of printer selection? 

    Hi Dan,
    This forum is to discuss HTML, CSS and Javascript for IE. Please post your thread on TechNET IE forum.
    http://social.technet.microsoft.com/Forums/ie/en-US/home?forum=ieitprocurrentver.
    Thank you for understanding.
    Regards,
    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.
    Click
    HERE to participate the survey.

  • Canvas ID not being used when Canvas is created by State change

    After logging into my app I do a State change, which adds a
    few more buttons on a Linkbar and adds two more sections to a
    ViewStack. For the initial Canvas sections, I have an ID associated
    with each. Upon clicking a button, for example, I can alert on the
    value associated with each ID.
    However, for the new Canvases that are added, this is not
    working, even though an ID is associated with the Canvas. Instead,
    it is just telling me "Canvas355", where the number is different
    every time the app is initiated.
    Does anyone have any ideas about this?
    Thanks.
    Chris

    Hoepfully this will help. It's just the function to pop up
    the help window, but I put in an Alert.show to test with for now.
    private function helpWindow():void {
    helpinfopop = helpinfo(PopUpManager.createPopUp(this,
    helpinfo, false));
    helpinfopop.title="Help";
    helpinfopop.showCloseButton=true;
    helpinfopop.hscreen=allinfo.selectedChild.name;
    Alert.show(allinfo.selectedChild.name);
    PopUpManager.centerPopUp(helpinfopop);
    "allinfo" is the ID of the main ViewStack. What happens, if I
    just talk about the Alert.show function, is that for the 3 primary
    Canvases, it will show the ID I defined. For the new Canvases after
    the State change, it shows the random name/number. If I review the
    config, every single Canvas has an ID set.
    Thoughts?
    Thanks for all the help so far.
    Chris

  • Parameters not set error, when launching jdev 9i from Unix

    Hi,
    I have downloaded the patch to install jdeveloper ( p4141787_11i_GENERIC.zip )
    and ftp'ed to Unix directory and unzipped.
    I have modified the jdev.conf to the location where SDK is installed. we are using SDK version 1.4.2.06
    I have set up the variable, JDEV_USER_HOME
    When I run the jdev.exe script from jdevbin/jdev/bin
    . jdev
    I get the below error, saying that the parameters are not set.
    Oracle9i JDeveloper
    Copyright 1997, 2003 Oracle Corporation. All Rights Reserved
    sh: JDEV_NATIVE_PATH: Parameter not set.
    sh: JDEV_VERBOSE_MODE: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_NATIVE_PATH: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_CLASSPATH: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JDEV_APP_OPTS: Parameter not set.
    sh: JDEV_VERBOSE_MODE: Parameter not set.
    sh: JDEV_JAVA_VM: Parameter not set.
    sh: JDEV_VM_OPTS: Parameter not set.
    sh: JAVA: Parameter not set.
    Appreciate your help.
    Thanks
    Srini Pendem

    Hi,
    If this is happens only with services view bills, view consumption history.. or this happens for every other service if you are trying to access 5 minutes after logon.
    Have to restarted your ITS server after changing these parameters.
    well i am not aware of any ITS based service Bill.. can you please help me out.. if this is part of ESS/MSS service.
    regards,
    Sudhir

  • Blank PAge when Launching WEB IC from Portal--Very Urgent

    Hi,
    We are using CRM 5.0 EIC scenario
    We have just configured new application server (adding one more to existing servers), when we lauch EIC (interaction centre) from this new server, it shows nothing, it just displays blank page,
    Need very very urgently
    MAx points would be awarded
    R

    In CRM 5.0 does t-code CRM_IC launch the page for you correctly?  if yes then I think you need to have your portal admin check this as it would seem portal related.

  • Launching discoverer reports from portal, limitation..

    Hi, I have already discussed this matter via a metalink SR to find that portal cannot launch a discoverer report using discoverer plus, but I have also been referred here by the metalink people so 'product management' can clarify whether the functionality we are seeking is never going to be implemented or if it may be in planning for the near future.
    Specifically, the users want to be able to launch the discoverer reports in discoverer plus, through a portal application accessed on their browsers. (instead of discoverer viewer).
    Thanks

    Actually there is, we just had to work the metalink guys a bit harder. We found this in the Oracle Business Intelligence Discoverer Configuration
    Guide.pdf (as found at http://download.oracle.com/docs/pdf/B13918_03.pdf)
    Page 212 of 304:
    13.5.3 Example 3: Starting Discoverer Plus
    To start Discoverer Plus, connect automatically as jchan to the Sales EUL, open
    a worksheet called January Analysis in a workbook called Monthly nalysis, you
    might use the following URL:
    http://<host.domain>:<port>/discoverer/plus?cn=cf_a156&opendbid=MONTHLY_
    ANALYSIS&sheetid=179
    So as the documentation claimed it to be a feature, we saught further help as the link structure above didn't quite work for us.
    It was assigned to development and a patch was released: Patch# 5403717
    Info:
    Use a new URL parameter 'workbooksource' after the patch has
    been applied.
    URL Guide:
    http://<server>:<port>/discoverer/plus?cn=< >&opendb=<WokrbookName>&wo
    rkbooksource=Database
    Hope that helps..

  • A fix for the Mozilla Firefox SSL Certificate Validation Security Weakness vulnerability? This appears to be an issue with not revalidating certificates when loading HTTPS pages from cache.

    We have to close vulnerabilities for PCI & Cybertrust certification. We have upgraded users running Firefox to version 7.0.1 but we are still receiving the message: Mozilla Firefox SSL Certificate Validation Security Weakness. Researching the issue, it appears to be related to certificates not being revalidated when loading HTTPS pages from cache. The bug report I found is:
    Bug 660749 - Firefox doesn't (re)validate certificates when loading a HTTPS page from the cache

    cookies.squite answer is Today at 5:15 PM .
    New profile, same problem.
    We've already established it is not a add-ons problem but obviously there will be less add-ons in this new profile to help exclude.
    Since there is two PC profiles on the PC, I tried the second profile, same problem. Used the RESET FF function on the second PC profile...same thing...even followed the instruct for uninstall &re-install...same problem.
    (3) different virus scanners, no hard core problems.
    Suspect how I have something in Windows setup that no one else is using?

  • IMac (Oct 2009) keeps shutting down and restarting when not being used.

    At least once a day, usually when not being used, I will see a dialog box that say computer had to restart due to a problem. data in problem report does not clearly state problem - many multi-page entries
    Have reinstalled OS 10.8.2 once
    this morning tried to restart with safe boot and had spinning beach ball for more than 15 minutes. shut down and restarted nin recovery mode. verified and repaired permissions (all seem to be related to Canon Pronter plug-ins- had an error message yesteday asking if I wanted to repair printer software and I said yes). Printer seems to be working. Had one statement that indicated a screensaver issue-see below
    a while back, iTunes album art screensaver hung up with just two album covers flipping in all rows and columns.
    after a few restarts, it started working correctly again..- yesterday I set screen saver to never, but still had a crash this morning

    Here's the latest panic report. BTW, I ran  for a while from an external system boot - very sloww (thumbdrive), but nothing happened. However, when I retarted I tried to restart in Safe Mode and the launch never completed (30 minutes without start)
    Tue Jan  1 07:15:40 2013
    panic(cpu 0 caller 0xffffff8002443908): "zalloc: \"buf.8192\" (878 elements) retry fail 3, kfree_nop_count: 0"@/SourceCache/xnu/xnu-2050.18.24/osfmk/kern/zalloc.c:1826
    Backtrace (CPU 0), Frame : Return Address
    0xffffff800aafb2b0 : 0xffffff800241d626
    0xffffff800aafb320 : 0xffffff8002443908
    0xffffff800aafb400 : 0xffffff80024de8d8
    0xffffff800aafb450 : 0xffffff80024de395
    0xffffff800aafb500 : 0xffffff80024dd64b
    0xffffff800aafb530 : 0xffffff80024dd7f7
    0xffffff800aafb550 : 0xffffff80026e7766
    0xffffff800aafb5c0 : 0xffffff800272024c
    0xffffff800aafb5e0 : 0xffffff8002721314
    0xffffff800aafb680 : 0xffffff800271d2a0
    0xffffff800aafb790 : 0xffffff800271959c
    0xffffff800aafb840 : 0xffffff800271936a
    0xffffff800aafb8c0 : 0xffffff80025137df
    0xffffff800aafb910 : 0xffffff8002509fe1
    0xffffff800aafb950 : 0xffffff800252685c
    0xffffff800aafba00 : 0xffffff8002526679
    0xffffff800aafba30 : 0xffffff8002712518
    0xffffff800aafbaa0 : 0xffffff8002511c46
    0xffffff800aafbae0 : 0xffffff800250936c
    0xffffff800aafbb90 : 0xffffff80024fbb49
    0xffffff800aafbc40 : 0xffffff80024fc314
    0xffffff800aafbf50 : 0xffffff80027e182a
    0xffffff800aafbfb0 : 0xffffff80024ced33
    BSD process name corresponding to current thread: mdworker
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel slide:     0x0000000002200000
    Kernel text base: 0xffffff8002400000
    System model name: iMac10,1 (Mac-F2268DC8)
    System uptime in nanoseconds: 39390380895329
    vm objects:17562048
    vm object hash entri:2264400
    VM map entries:6216720
    pv_list:19034112
    vm pages:74043792
    kalloc.32:1826816
    kalloc.64:170766336
    kalloc.128:649785344
    kalloc.256:648183808
    kalloc.512:2285568
    kalloc.1024:2637824
    kalloc.4096:2387968
    kalloc.8192:3989504
    ipc ports:2168672
    threads:1166880
    vnodes:16507128
    namecache:6952320
    HFS node:21840864
    HFS fork:6352896
    decmpfs_cnode:2244312
    buf.8192:7192576
    ubc_info zone:3559464
    vnode pager structur:1978800
    Kernel Stacks:1982464
    PageTables:44011520
    Kalloc.Large:12347186
    Backtrace suspected of leaking: (outstanding bytes: 236544)
    0xffffff80024435b9
    0xffffff80024245ed
    0xffffff80027ee1bd
    0xffffff80028507f7
    0xffffff800285075b
    0xffffff7f82b6b1ac
    0xffffff7f82b72922
    0xffffff7f82ab138b
    0xffffff7f82ab49b0
    0xffffff7f829f843c
    0xffffff800243dcde
          Kernel Extensions in backtrace:
             com.apple.iokit.IOSCSIArchitectureModelFamily(3.5.1)[4CCC048B-060B-3C07-8D85-A8 4CEA02CD25]@0xffffff7f829f2000->0xffffff7f82a1cfff
             com.apple.iokit.IOSCSIBlockCommandsDevice(3.5.1)[E4EAAA05-F607-3299-AE72-998D19 A5EA17]@0xffffff7f82aae000->0xffffff7f82ac3fff
                dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(3.5.1)[4CCC048B-060B-3C07-8D85-A8 4CEA02CD25]@0xffffff7f829f2000
                dependency: com.apple.iokit.IOStorageFamily(1.8)[5BA4CD36-E96D-3A9E-ADFF-A863BBD63BC7]@0xff ffff7f8297c000
             com.seagate.driver.PowSecDriverCore(5.2.2)[F1208D07-4D35-0191-3638-3D7CA8C9D5CF ]@0xffffff7f82b69000->0xffffff7f82ba1fff
                dependency: com.apple.iokit.IOUSBFamily(5.4.0)[C3094550-7F58-3933-A4F7-CD33AE83F8B9]@0xffff ff7f82a4c000
                dependency: com.apple.iokit.IOSCSIBlockCommandsDevice(3.5.1)[E4EAAA05-F607-3299-AE72-998D19 A5EA17]@0xffffff7f82aae000
                dependency: com.apple.iokit.IOStorageFamily(1.8)[5BA4CD36-E96D-3A9E-ADFF-A863BBD63BC7]@0xff ffff7f8297c000
                dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(3.5.1)[4CCC048B-060B-3C07-8D85-A8 4CEA02CD25]@0xffffff7f829f2000
                dependency: com.apple.iokit.IOFireWireSBP2(4.2.0)[2B060BAD-9A9B-3A52-A742-A37CDFC59570]@0xf fffff7f82b4b000
    last loaded kext at 1223700924328: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f84440000, size 16384)
    last unloaded kext at 1481342745694: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f84440000, size 12288)
    loaded kexts:
    com.pogoplug.filesystems.ppfs          2010.10.7
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleBluetoothMultitouch          75.15
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleBacklight          170.2.3
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.kext.AMDFramebuffer          8.0.0
    com.apple.ATIRadeonX2000          8.0.0
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AirPort.Atheros40          600.70.23
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.nvenet          2.0.19
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleUSBOHCI          5.2.5
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          165.5
    com.apple.driver.AppleHIDKeyboard          165.5
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.driver.IOBluetoothHIDDriver          4.0.9f33
    com.apple.driver.AppleMultitouchDriver          235.28
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.AppleUSBAudio          2.9.0f6
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.kext.AMD4600Controller          8.0.0
    com.apple.kext.AMDSupport          8.0.0
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOFireWireSBP2          4.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

  • Materialized view not being used in the report

    I have had a materialized view (MV) for a particular report. Recently, the report definition has changed little bit, so the existing MV is not being used by the report anymore. I copied the code Discoverer's SQL Inspection and recreated the materialized view. But still it is not working. Obviously, I am missing something at the database level. Does anyone have any idea? The database is 9i and Discoverer is 9.0.2. Thank you!

    The SQL that you see from the Inspect SQL option will provide you with the SQL that Discoverer sends to the database. The database then may do a query rewrite to point to an available materialized view if available. This rewrite won't be seen from the inspect sql option. You need to check at the database level to verify if a query rewrite did in fact take place.
    You may want to check the section titled "Query Rewrite with Materialized Views" from Ch1 - "Introduction to the Optimizer" in the Oracle9i Database Performance Tuning Guide and Reference, Release 2 (9.2), Part Number A96533-02, available at http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96533/optimops.htm#37287
    Regards
    Abhinav Agarwal
    Oracle Business Intelligence Product Management
    http://www.oracle.com/bi
    http://www.oracle.com/technology/documentation/bi_ee.html
    http://www.oracle.com/technology/software/products/ias/htdocs/101320bi.html
    http://oraclebi.blogspot.com/

  • How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activ

    How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activated. HELP?  I really need to continue using this product for my home business.It works fine not activated but the threat is that it will stop working in 13 more days if I don't get it activated, and none of the activation methods they list seem to work.

    The new serial number is to the right of your chosen download.

  • All of a sudden my new iphone will not hold a charge even when it is not being used and I can't figure out why???

    my battery drains even when iphone is not being used.  It is a relatively new phone and this battery draining just started and I can't figure out why????

    Yes, thank you.  My apologies, I was typing one handed and did not add that. 
    Anyway, I have tried deleting the cache, deleting my pics and then re-syncing, etc. and nothing is working This is very frustrating, as I had no problems up until about 2 weeks ago, and now all of a sudden, I have this issue......UGH!

Maybe you are looking for

  • Redirect ClamAV output &/or forward from unix mail

    I have started using ClamAV as an anti-virus checker. It is a command line application and sends it's output to the unix mail client (as well as it's own logs). Both are a bit of a pain to open all the time to check if something has been found. Does

  • AIR 3.4 to AIR 3.5

    Just did a quick updating to AIR 3.5.After the load screen nothing appears. The stage is visible, but that is all. Anyone else having similar problems? I'm using render mode direct.

  • Remove search bar

    I can type my searches in the address bar. Why do I need a separate search bar next to it? How do I get rid of it? And, I can't find the RSS Feeds button anymore. And, one more thing - your "help" button ought to be replaced with a "this is NO help"

  • Purchased Windows version, can I change it to a Mac version?

    I purchased the windows version, but recently decided I hate my PC. Bought a Mac. Will Adobe let me change it to a Mac version? Chat seems to have been down for awhile.

  • Realtime Playing of Guitar Rig thru Logic: FW800 interface?

    Hi , it would simplify my life so much to be able to play my N.I. Guitar Rig thru logic as a plugin. I'm about to get the G5 Quad and am wondering about the metric halo 2882(which is FW 400) or the fireface 800. is there a better chance of ultra-low