No datasources in SPM after all refresh datasources option

Hi,
I tried Refresh all data sources option in SPM, checking the log it showed that the Metadata loaded message. But post that, I could not see any data sources in User preferences or datasource Administration. But I could the list in Application properties.
This is a crtical issue as till this is resolved no reports are displayed.
Regards,
Sampat Desai

Hi Sampat,
We have seen this error in the case when some user is saving reports at the same time when refresh datasource is being done. Please try following steps which should most likely resolve this issue:
    1) Delete all nodes under the folder "/application/metadata" using the methods OPM_PS_GET_NODE_METADATA and OPM_PS_REMOVE_NODE(Please note that /application/metadata itself should not be deleted)
    2) Go to table "OPM_PS_ITEM_DET" and search for all objects with "NODE_TYPE" as "AUI_METADATA_CACHE". This will return all the nodes which are dangling as there should be no such value.
    3) Retrieve the GUIDs from step 2 and remove the existing nodes using the FM OPM_PS_REMOVE_NODE
Thanks,
Divyesh

Similar Messages

  • After SALV Refresh, rows are still selected in display

    I have an SALV output (simple list) that updates  a database table based upon user action.  During the user_command processing, I modify the internal table for the SALV, removing the rows that have been updated by the user, and clearing my index row table created from the get selects methods (this appears to prevent this problem in older ALV versions).  Then, I do a alv->refresh( ).
    Upon re-entry to the SALV display, all the data is correct, but the rows that were previously selected by the user are highlighted.  For example, if the user updated row 1, I do the processing and return to the SALV display after refresh. Row 1 (formerly row 2)  is now highlighted.
    If the user updated rows 1 and 3, upon return to the screen 1 and 3 are still selected (were 2 and 4 before the update).   .  If the user updated the last row, the SALV display has no rows highlighted and cursor is on row 1, column 1, which would seem to be the correct behavior after the refresh.
    SALV_DEMO* programs don't appear to handle this, and I don't find any method that will let me reset that prior user selection.
    Any suggestions to correct the "memory" feature of the SALV display?

    Hi ,
    Try to free your container before clearing your alv grid.
    try the below code.
    CALL METHOD containername->free
            EXCEPTIONS
              cntl_error        = 1
              cntl_system_error = 2
              OTHERS            = 3.
          IF sy-subrc <> 0.
          ENDIF.
          CLEAR containername.
          CALL METHOD grid name->free
            EXCEPTIONS
              cntl_error        = 1
              cntl_system_error = 2
              OTHERS            = 3.
          IF sy-subrc <> 0.
          ENDIF.
          CLEAR grid name.
    Regards,
    Chitra

  • Performance issue in browsing SSAS cube using Excel for first time after cube refresh

    Hello Group Members,
    This is a continuation of my earlier blog question -
    https://social.msdn.microsoft.com/Forums/en-US/a1e424a2-f102-4165-a597-f464cf03ebb5/cache-and-performance-issue-in-browsing-ssas-cube-using-excel-for-first-time?forum=sqlanalysisservices
    As that thread is marked as answer, but my issue is not resolved, I am creating a new thread.
    I am facing a cache and performance issue for the first time when I try to open a SSAS cube connection using Excel (using Data tab  -> From Other Sources --> From Analysis Services) after daily cube refresh. In end users system (8 GB RAM but around
    4GB available RAM), for the first time, it takes 10 minutes to open the cube. From next run onwards, its open up quickly within 10 secs.
    We have daily ETL process running in high end servers. The configuration of dedicated SSAS cube server is 8 core, 64GB RAM. In total we have 4 cube DB - out of which for 3 is full cube refresh and 1 is incremental refresh. We have seen after daily cube
    refresh, it takes 10 odd minutes to open the cube in end users system. From next time onwards, it opens up really fast with 10 secs. After cube refresh, in server systems (32 GB RAM, around 4GB available RAM), it takes 2 odd minutes to open the cube.
    Is there, any way we could reduce the time taken for first attempt ?
    As mentioned in my previous thread, we have already implemented a cube wraming cache. But, there is no improvement.
    Currently, the cumulative size of the all 4 cube DB are more than 9 GB in Production and each cube DB having 4 individual cubes in average with highest cube DB size is 3.5 GB. Now, the question is how excel works with SSAS cube after
    daily cube refresh?
    Is it Excel creates a cache of the schema and data after each time cube is refreshed and in doing so it need to download the cube schema in Excel's memory? Now to download the the schema and data of each cube database from server to client, it will take
    a significant time based on the bandwidth of the network and connection.
    Is it anyway dependent to client system RAM ? Today the bigest cube DB size is 3.5 GB, tomorrow it will be 5-6 GB. Now, though client system RAM is 8 GB, the available or free RAM would be around 4 GB. So, what will happen then ?
    Best Regards, Arka Mitra.

    Could you run the following two DMV queries filling in the name of the cube you're connecting to. Then please post back the row count returned from each of them (by copying them into Excel and counting the rows).
    I want to see if this is an issue I've run across before with thousands of dimension attributes and MDSCHEMA_CUBES performance.
    select [HIERARCHY_UNIQUE_NAME]
    from $system.mdschema_hierarchies
    where CUBE_NAME = 'YourCubeName'
    select [LEVEL_UNIQUE_NAME]
    from $system.mdschema_levels
    where CUBE_NAME = 'YourCubeName'
    Also, what version of Analysis Services is it? If you connect Object Explorer in Management Studio to SSAS, what's the exact version number it says on the top server node?
    http://artisconsulting.com/Blogs/GregGalloway

  • How to retain value in LoV item in Tabular Form, after Page Refresh

    Hi,
    I have a tabular form, which contains 2 items(columns), of type "Select List - named LoV".
    Now, 2nd item(column) in tabular form, that LoV should get populated based on user's selection value in first item LoV.
    1. So how do I refer to the value, that user selected in first item's LoV? I will have to use this value as reference in LoV query of my 2nd item ( on this tabular form)
    2. Everytime I select value in first item LoV, page gets refreshed, as my requirement is to calculate 2nd item's LoV based on selected value in first item. So after this page refresh, first item LoV loses its value that was selected before the page refresh happened. So how do i retain this value in first item LoV? I have an unconditional process, that on every submit(refresh) of page, I set all my items with their corresponding values. But problem is what do i mention there to refer to this first item ( of type LoV) of tabular form?
    I looked in view source of my page, this item is referred as f03.
    So i used "apex_application.g_f03", to set this item to its value, in my uncoditional submit process. But it did not work. I tried to refer this item as "f03" in this unconditional submit process. But still it did not help, the selected item loses its value after page refresh(submit).
    Please help.
    Thanks and Regards,
    Ravi.

    Hi Rave,
    You will have to use Javascript and Ajax to change the values as ApEx submissions will lose your results unless they are saved into the database.
    Remember, that as you are using a tabular form there will be lots of items called f01, fo2, fo3 etc on the page (one per row).
    Regards
    Michael
    Edited by: MKii on Jun 4, 2009 10:13 AM

  • URGENT help needed:Address data missing after QA Refresh from PRD

    All,
    Address data for almost all user-ids are missing after QA Refresh from PRD.
    In QA, after importing the User-Master although its shows successful. The detailed log shows:
       Data inconsistency in USR21. Start RSADRCK2 (See Note 459763)
       Exit program AFTER_IMP_ADDRESS3 successfully executed
       SAP user has no address SAP*
       Error while deleting ADRVP for SAP*
       SAP user has no address SAPCPIC...
       ERROR: Type "F" user exit with SYS_ERROR:     SUSR_CLIENTCOPY_USERBUF_RESET
    We also do a Table export - import wherein the tables
    USR03
    USR07
    USR09
    USR20
    USR21
    USR30
    are included.
    The no. of entries exported and imported are same.
    Also FYI in the User-master Transport i can see the following Tables included in the object list
    USR01
    USR02
    USR04
    USR05
    USR06
    USR08
    USR14
    USR21S
    USR22
    USRACL
    USREXTID
    USREXTIDH
    Has anyone seen this before?
    Any body has any ideas?

    Hello Bidwan,
    I think it is an issue with company address. Just check if  company addresses are existing the source client ?After client copy company addreses of target client will only exist in source client. Then if you do impot of the transport containing USR* tables it will try to assign old company addresses to the users but probably they are not exisitng in target client any more.
    If this is the case then you need to create those company addresses again using SUCOMP and then once again import the transport for user master.
    Regards.
    Ruchit.

  • Massive power drain after Belle Refresh update on ...

    Hello
    From being a minor annoyance the massive power drain from my N8 after Belle Refresh update is now a big problem!
    The battery does not even last a full day now
    No apps running - power save on, but to no avail.
    After advice from Nokia Support I've tried to reinstall Belle Refresh again from Nokia Suite, but it didn't make a difference.
    What else can be done? Is it possible to uninstall Belle Refresh completely?
    Some have suggested it is because of the weather widget. Any confirmation from Nokia on that issue?

    I have Belle refresh for over a month now and I keep running the weather widget permanently on first screen. Overall the power consumption is the same as before on Anna (I skipped the first Belle incarnation).
    The only particular thing here is that I flashed clean the full 111.40.1511 version for my phone language. All I can tell is that in the first days after flashing the power drain was significant, merely because of intense phone usage, part of various customizations or just by curiosity. Since then the power consumption has slowly came back to "normal" for my daily usage habits.
    Currently running widgets: clock, profile, weather, next coming event, BBC feed, WiFi, 3G, data usage counter, Nokia Battery Monitor, locations near me. Also Nokia Sleeping Screen is active. I gave up in using email widgets because I only use IMAP manual fetch mode and in this mode they are completely useless.
    Cristi

  • Table structure changed in testing system after system refresh.

    Hi Team,
    Recently we underwent a system refresh in Testing System where the Testing data is filled with Production data. But now we find that in one table some fields which we had deleted they are again found there. The version history of table is also gone. The table object was under testing in testing system and after which it was supposed to be transported to production. I believe System refresh only means refresh of data and it has nothing to do with table structure. Please correct me if I am wrong. Please also let me know what could be the reason of those changes in table if it is not System Refresh.
    Regards,
    Amit

    I believe System refresh only means refresh of data and it has nothing to do with table structure.
    Alas, you were wrong, after all table definition are data too, as program sources...
    You have to re-import every transport request which was not yet transported to production in your test system.
    Regards,
    Raymond

  • Internet Radio is NOT missing after all, hooray!

    OK, Internet Radio is NOT missing after all. Its placement  just has been made so illogical that as long as you try to find it by logic you will fail.
    This is what and where it used to be: an item "Radio" under "LIBRARY" in the side bar, its showing toggleable on-off in Preferences by checking/uncheking the corresponding checkbox. You click on "Radio" under "LIBRARY" and you see a list of internet radio stations in the browser frame.
    Here is what and where it is now: a button "Internet" in a button bar over the browser frame when item  "Music" is selected under "LIBRARY" in the side bar. You click on "Internet" and you see a list of internet radio stations in the browser frame just as in the happy olden days. The word "Radio" (as a button) now refers to a service where you can make up your own "stations" a la Pandora, I guess.  At the same time nothing whatsoever has changed in Preferences, there is still an "Internet Radio" checkbox  but unless you are looking at the buttons over the browser frame you will never know what it does. Not only that, there is no corresponding "Internet Radio" library item or button anywhere, there is "Radio" and an "Internet" button, and it just so happens that the checkbox will toggle the "Internet" button on-off.
    The end result of all of this is that all items under "Show" in Preferences toggle items under "LIBRARY"  in the side bar except the "Internet Radio" item which will toggle the "Internet" (i.e. internet radio) button in the button bar of "Music". This also means that the only button that can be toggled on/off in the button bar is the "Internet" button, all others are fixed.
    Messing with it for messing's sake, trying to be fancy.

    Hi Sarah, thanks for ur reply.
    I did not use toad to kill session.
    I use form application to kill session,
    e.g. user id 1111 log in to the application in PC 1
    at the same time, same user id 1111 log in to the application in PC 2
    So when the user log in into PC 2, i kill the session in PC 1 (in form application).
    So when i log out from PC 2, i close the applet, in the next hour, i need to log in again using PC 2 without close the IE.
    So the IE is not responding.
    Is there any way to refresh IE without re open again to connect to the application ?
    Thanks,
    Iwan

  • Cs6 windows 8 after system refresh....installer fails to initialize

    hi i was using adobe cs6 suite on my toshiba windows 8 machine. i had a problem and refresh my pc.during the process, windows removed all my apps. after the refreshing, i am trying to install back my cs6 suite but anytime i try install i get this error that.."installer failed to initialize" i downloaded adobe support adviser and it said there was a bootstrapper error ans also a restart wass pending. i restarted several times even after a windows update. the proble still persistsplease can somebody help me

    Moved to CS forum.

  • Backup of background jobs after system refresh

    Hi All,
    I want to know that during the system refresh how can we take the backup of the background jobs which are in "Released" state so that we can schedule them the same way after the refresh is done. Presently we are taking the screen shot of "start condition" and "step" of each and every job and then using those screenshots we are scheduling them again after the refresh is completed. It would be really helpful and time saving for us if we come to know the tables where this information is stored and also if there is any other easier way for this.
    Regards,
    Lovneesh

    Hello,
    Check the below thread. It mentions all the tables that contain batch job information.
    https://scn.sap.com/thread/1709175
    " Check below mentioned tables
    BTCCTL,
    BTCDELAY
    BTCEVTJOB
    BTCH1000
    BTCH1010
    TBTCO
    TBTCP
    These have all the information you need regarding background jobs, you may export these tables at the source and import them "
    Check and provide feedback.
    Regards,
    Mudasir

  • Still crashing after all these years ....

    I have tried everything.
    Updated NVIDIA driver.
    Uninstall reinstall.
    Tried every compatibility mode.
    It still crashes on startup 100%.
    Computer
    Model : HP-Pavilion KQ497AAR-ABA m9340f
    Workgroup :
    Host Name :
    User :
    Processor
    Model : Intel(R) Core(TM)2 Quad CPU    Q6700  @ 2.66GHz
    Speed : 2.67GHz
    Cores per Processor : 4 Unit(s)
    Threads per Core : 1 Unit(s)
    Type : Quad-Core
    Integrated Data Cache : 4x 32kB, Synchronous, Write-Thru, 8-way, 64 byte line size
    L2 On-board Cache : 2x 4MB, ECC, Synchronous, ATC, 16-way, 64 byte line size, 2 threads sharing
    Computer
    Mainboard : PEGATRON CORPORATION Benicia
    BIOS : American Megatrends Inc. 5.35 12/16/2008
    Bus(es) : ISA X-Bus PCI PCIe IMB USB FireWire/1394 i2c/SMBus
    Multi-Processor (MP) Support : No
    Multi-Processor Advanced PIC (APIC) : Yes
    Total Memory : 8GB DIMM DDR2 DDR3
    Chipset
    Model : HP P35/G33/G31 Processor to I/O Controller
    Front Side Bus Speed : 4x 267MHz (1GHz)
    Total Memory : 8GB DIMM DDR2 DDR3
    Memory Bus Speed : 2x 401MHz (802MHz)
    Memory Module(s)
    Memory Module : Samsung M3 78T5663QZ3-CF7 2GB DIMM DDR2 PC2-6400U DDR2-800 (5-6-6-18 3-24-6-3)
    Memory Module : Avant Tech 2GB DIMM DDR2 PC2-6400U DDR2-800 (5-5-5-18 3-23-6-3)
    Memory Module : Samsung M3 78T5663QZ3-CF7 2GB DIMM DDR2 PC2-6400U DDR2-800 (5-6-6-18 3-24-6-3)
    Memory Module : Avant Tech 2GB DIMM DDR2 PC2-6400U DDR2-800 (5-5-5-18 3-23-6-3)
    Video System
    Video Adapter : NVIDIA GeForce 9500 GS (32 SM4.0 1.4GHz, 512MB DDR2 2x500MHz, PCIe 1.00 x16)
    Graphics Processor
    Adapter : NVIDIA GeForce 9500 GS (32SP 1.38GHz, 495.6MB 2x500MHz)
    Storage Devices
    WDC WD3000HLFS-01G6U0 (300GB, SATA300, 10000rpm, NCQ, 16MB Cache) : 279GB (C:) (E:)
    ST31500541AS (1.5TB, SATA300, 3.5", 5900rpm, NCQ) : 1TB (G:)
    Generic USB SD Reader (USB) : N/A (F:)
    Generic USB CF Reader (USB) : N/A (H:)
    Generic USB xD/SM Reader (USB) : N/A (J:)
    Generic USB MS Reader (USB) : N/A (K:)
    TSSTcorp CDDVDW TS-H653Q (SATA150, DVD+-RW, CD-RW, 2MB Cache) : N/A (D:)
    Logical Storage Devices
    System Reserved (E:) : 100MB (NTFS) @ WDC WD3000HLFS-01G6U0 (300GB, SATA300, 10000rpm, NCQ, 16MB Cache)
    1.5 TB  (G:) : 1TB (NTFS) @ ST31500541AS (1.5TB, SATA300, 3.5", 5900rpm, NCQ)
    Hard Disk (C:) : 279GB (NTFS) @ WDC WD3000HLFS-01G6U0 (300GB, SATA300, 10000rpm, NCQ, 16MB Cache)
    Removable Drive (F:) : N/A @ Generic USB SD Reader (USB)
    Removable Drive (H:) : N/A @ Generic USB CF Reader (USB)
    Removable Drive (J:) : N/A @ Generic USB xD/SM Reader (USB)
    Removable Drive (K:) : N/A @ Generic USB MS Reader (USB)
    Optical Drive (D:) : N/A @ TSSTcorp CDDVDW TS-H653Q (SATA150, DVD+-RW, CD-RW, 2MB Cache)
    Peripherals
    LPC Hub Controller 1 : HP (ICH9) LPC Interface Controller
    LPC Legacy Controller 1 : Asus F8000
    Audio Device : ASUS Virtuoso 100 (Xonar D1)
    Audio Codec : Gammagraphx 0000h
    Audio Codec : Gammagraphx 0000h
    Serial Port(s) : 2
    Disk Controller : HP ICH8R (ICH8) SATA RAID Controller
    USB Controller 1 : HP (ICH9) USB Universal Host Controller
    USB Controller 2 : HP (ICH9) USB Universal Host Controller
    USB Controller 3 : HP (ICH9) USB2 Enhanced Host Controller
    USB Controller 4 : HP (ICH9) USB Universal Host Controller
    USB Controller 5 : HP (ICH9) USB Universal Host Controller
    USB Controller 6 : HP (ICH9) USB Universal Host Controller
    USB Controller 7 : HP (ICH9) USB Universal Host Controller
    USB Controller 8 : HP (ICH9) USB2 Enhanced Host Controller
    FireWire/1394 Controller 1 : HP FW322/323 IEEE1394 OHCI FireWire Controller
    SMBus/i2c Controller 1 : Intel 801xx/63xx SMBus
    Printers and Faxes
    Printer : DocuCom PDF Driver (2400x2400, Colour)
    Printer : Amyuni Document Converter 400 (2400x2400, Colour)
    Printer : Amyuni Document Converter 400 (2400x2400, Colour)
    Printer : Nuance Image Printer Driver (600x600)
    Printer : Microsoft XPS Document Writer (600x600, Colour)
    Fax : Microsoft Shared Fax Driver (200x200)
    Printer : DocuCom PDF Driver (2400x2400, Colour)
    Printer : Brother FAX-4100 USB (600x600, USB)
    Printer : Adobe PDF Converter (4000x4000, Colour)
    Printer : Microsoft XPS Document Writer (600x600, Colour)
    Peripherals
    Media Player :   ()
    Media Player :   ()
    Media Player :   ()
    Media Player :   ()
    Network Services
    Network Adapter : Realtek PCIe GBE Family Controller (Ethernet, 100Mbps)
    Network Adapter : Bluetooth Device (Personal Area Network) #2
    Wireless Adapter 1 : 802.11n Wireless PCI Express Card LAN Adapter (802.11g (ERP), WEP n-bit, 24Mbps)
    Power Management
    Mains (AC) Line Status : On-Line
    Operating System
    Windows System : Microsoft Windows 7 Ultimate 6.01.7600
    Platform Compliance : x64
    Windows Experience Index
    Current System : 5.3
    Video Adapter
    Display : \\.\DISPLAY1
    VGA Compatible : No
    Official Device Name : NVIDIA GeForce 9500 GS
    Hardware ID : PCI\VEN_10DE&DEV_0644&SUBSYS_13301462&REV_A1
    OEM Device Name : nVidia G96 [GeForce 9500 GS]
    URL : http://www.nvidia.com
    Device Name : MSI G96 [GeForce 9500 GS]
    Chipset
    Model : NV96
    Revision : A1
    Speed : 552MHz
    Shader Speed : 1.4GHz
    Peak Processing Performance (PPP) : 89.6GFLOPS
    Adjusted Peak Performance (APP) : 80.64WG
    RAMDAC Speed : 400MHz
    Unified Shaders : 32 Unit(s)
    Raster Operation Units (ROP) : 8 Unit(s)
    Texture Mapping Units (TMU) : 16 Unit(s)
    Maximum Pixel Fillrate : 4.42GPixel/s
    Maximum Texture Fillrate : 8.83GTexel/s
    Logical/Chipset Memory Banks
    Total Memory : 512MB DDR2
    Memory Bus Speed : 2x 500MHz (1GHz)
    Channels : 2
    Width : 64-bit
    Maximum Memory Bus Bandwidth : 15.63GB/s
    Bus
    Type : PCIe
    Version : 1.00
    Width : x16 / x16
    Speed : 2.5Gbps / 2.5Gbps
    Maximum Bus Bandwidth : 4GB/s
    Video BIOS
    Date of Manufacture : Friday, June 02, 2000
    Version : 62.94.1F.00.26
    System i2c Controller 1
    Model : nVidia GT-GFX DDC1 i2c
    Speed : 50kHz
    System i2c Controller 2
    Model : nVidia GT-GFX DDC2 i2c
    Speed : 50kHz
    System i2c Controller 3
    Model : nVidia GT-GFX DDC3 i2c
    Speed : 50kHz
    System i2c Controller 4
    Model : nVidia GT-GFX DDC4 i2c
    Speed : 50kHz
    System i2c Controller 5
    Model : GeForce 9500 GS DDC16
    Version : 0.A1
    Environment Monitor 1
    Model : nVidia GFX NV96 A1 HwMon
    Version : 10.01
    Temperature Sensor(s)
    CPU Temperature : 57.00°C
    Cooling Device(s)
    Auto Fan Speed Control : Yes
    CPU Fan : 772rpm
    Direct3D 10 Devices
    Interface Version : 10.00
    Unified Shaders : 4.00
    Library Version : 8.17.11.9745
    Model : NVIDIA GeForce 9500 GS
    Physical Memory : 512MB
    Texture Memory : 3.5GB
    Direct3D 9 Devices
    Interface Version : 9.00
    Model : NVIDIA GeForce 9500 GS
    Video Driver : nvd3dumx.dll
    Library Version : 8.17.11.9745
    Has 3D Hardware Acceleration : Yes
    Hardware Transform & Light : Yes
    Heads : 1
    Pixel Shaders Version : 3.00
    Vertex Shaders Version : 3.00
    Accelerated Video Decoders
    MPEG2 IDCT : Yes
    VC1-C (VC1 IDCT) : Yes
    WMV9-C (WMV9 IDCT) : Yes
    H264-E (H264 VLD NoFGT) : Yes
    Accelerated Video Processors
    Pixel Adaptive Device : Yes
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB} : Yes
    Progressive Device : Yes
    Bob Device : Yes
    Software Device : Yes
    Video Driver
    Expected Windows Version : 4.00
    Screen Saver Active : 5 minute(s)
    Low Power Saving Active : No
    Power Off Saving Active : No
    Mode
    Mode : 1680x1050 16M+ TrueColour (32-bit)
    Refresh Rate : 59Hz
    Virtual Desktop Size : 1680x1050
    Supported Video Modes
    Mode 3 : 640x480 16M+ TrueColour (32-bit) 60Hz 59Hz 72Hz 75Hz
    Mode 14 : 720x480 16M+ TrueColour (32-bit) 56Hz 56Hz 56Hz 72Hz 72Hz 72Hz 75Hz 75Hz 75Hz 60Hz 59Hz
    Mode 27 : 720x576 16M+ TrueColour (32-bit) 56Hz 56Hz 56Hz 60Hz 60Hz 60Hz 72Hz 72Hz 72Hz 75Hz 75Hz 75Hz 50Hz
    Mode 31 : 800x600 16M+ TrueColour (32-bit) 56Hz 60Hz 72Hz 75Hz
    Mode 34 : 1024x768 16M+ TrueColour (32-bit) 60Hz 70Hz 75Hz
    Mode 35 : 1152x864 16M+ TrueColour (32-bit) 75Hz
    Mode 38 : 1280x720 16M+ TrueColour (32-bit) 50Hz 60Hz 59Hz
    Mode 41 : 1280x768 16M+ TrueColour (32-bit) 60Hz 60Hz 60Hz
    Mode 44 : 1280x800 16M+ TrueColour (32-bit) 60Hz 60Hz 60Hz
    Mode 45 : 1280x960 16M+ TrueColour (32-bit) 60Hz
    Mode 47 : 1280x1024 16M+ TrueColour (32-bit) 60Hz 75Hz
    Mode 50 : 1360x768 16M+ TrueColour (32-bit) 60Hz 60Hz 60Hz
    Mode 56 : 1600x900 16M+ TrueColour (32-bit) 59Hz 60Hz 59Hz 60Hz 59Hz 60Hz
    Mode 62 : 1600x1024 16M+ TrueColour (32-bit) 59Hz 60Hz 59Hz 60Hz 59Hz 60Hz
    Mode 63 : 1600x1200 16M+ TrueColour (32-bit) 60Hz
    Mode 65 : 1680x1050 16M+ TrueColour (32-bit) 59Hz 60Hz
    Mode 69 : 640x480 64K HiColour (16-bit) 60Hz 59Hz 72Hz 75Hz
    Mode 80 : 720x480 64K HiColour (16-bit) 56Hz 56Hz 56Hz 72Hz 72Hz 72Hz 75Hz 75Hz 75Hz 60Hz 59Hz
    Mode 93 : 720x576 64K HiColour (16-bit) 56Hz 56Hz 56Hz 60Hz 60Hz 60Hz 72Hz 72Hz 72Hz 75Hz 75Hz 75Hz 50Hz
    Mode 97 : 800x600 64K HiColour (16-bit) 56Hz 60Hz 72Hz 75Hz
    Mode 100 : 1024x768 64K HiColour (16-bit) 60Hz 70Hz 75Hz
    Mode 101 : 1152x864 64K HiColour (16-bit) 75Hz
    Mode 104 : 1280x720 64K HiColour (16-bit) 50Hz 60Hz 59Hz
    Mode 107 : 1280x768 64K HiColour (16-bit) 60Hz 60Hz 60Hz
    Mode 110 : 1280x800 64K HiColour (16-bit) 60Hz 60Hz 60Hz
    Mode 111 : 1280x960 64K HiColour (16-bit) 60Hz
    Mode 113 : 1280x1024 64K HiColour (16-bit) 60Hz 75Hz
    Mode 116 : 1360x768 64K HiColour (16-bit) 60Hz 60Hz 60Hz
    Mode 122 : 1600x900 64K HiColour (16-bit) 59Hz 60Hz 59Hz 60Hz 59Hz 60Hz
    Mode 128 : 1600x1024 64K HiColour (16-bit) 59Hz 60Hz 59Hz 60Hz 59Hz 60Hz
    Mode 129 : 1600x1200 64K HiColour (16-bit) 60Hz
    Mode 131 : 1680x1050 64K HiColour (16-bit) 59Hz 60Hz
    Mode 135 : 640x480 256 colours (8-bit) 60Hz 59Hz 72Hz 75Hz
    Mode 146 : 720x480 256 colours (8-bit) 56Hz 56Hz 56Hz 72Hz 72Hz 72Hz 75Hz 75Hz 75Hz 60Hz 59Hz
    Mode 159 : 720x576 256 colours (8-bit) 56Hz 56Hz 56Hz 60Hz 60Hz 60Hz 72Hz 72Hz 72Hz 75Hz 75Hz 75Hz 50Hz
    Mode 163 : 800x600 256 colours (8-bit) 56Hz 60Hz 72Hz 75Hz
    Mode 166 : 1024x768 256 colours (8-bit) 60Hz 70Hz 75Hz
    Mode 167 : 1152x864 256 colours (8-bit) 75Hz
    Mode 170 : 1280x720 256 colours (8-bit) 50Hz 60Hz 59Hz
    Mode 173 : 1280x768 256 colours (8-bit) 60Hz 60Hz 60Hz
    Mode 176 : 1280x800 256 colours (8-bit) 60Hz 60Hz 60Hz
    Mode 177 : 1280x960 256 colours (8-bit) 60Hz
    Mode 179 : 1280x1024 256 colours (8-bit) 60Hz 75Hz
    Mode 182 : 1360x768 256 colours (8-bit) 60Hz 60Hz 60Hz
    Mode 188 : 1600x900 256 colours (8-bit) 59Hz 60Hz 59Hz 60Hz 59Hz 60Hz
    Mode 194 : 1600x1024 256 colours (8-bit) 59Hz 60Hz 59Hz 60Hz 59Hz 60Hz
    Mode 195 : 1600x1200 256 colours (8-bit) 60Hz
    Mode 197 : 1680x1050 256 colours (8-bit) 59Hz 60Hz
    Mode 198 : 1440x900 256 colours (8-bit) 60Hz
    Mode 199 : 1400x1050 256 colours (8-bit) 60Hz
    Mode 200 : 640x400 256 colours (8-bit) 70Hz
    Mode 201 : 1440x900 64K HiColour (16-bit) 60Hz
    Mode 202 : 1400x1050 64K HiColour (16-bit) 60Hz
    Mode 203 : 640x400 64K HiColour (16-bit) 70Hz
    Mode 204 : 1440x900 16M+ TrueColour (32-bit) 60Hz
    Mode 205 : 1400x1050 16M+ TrueColour (32-bit) 60Hz
    Mode 206 : 640x400 16M+ TrueColour (32-bit) 70Hz
    Mode 208 : 1440x480 256 colours (8-bit) 29Hz 30Hz
    Mode 209 : 1440x576 256 colours (8-bit) 25Hz
    Mode 211 : 1440x480 64K HiColour (16-bit) 29Hz 30Hz
    Mode 212 : 1440x576 64K HiColour (16-bit) 25Hz
    Mode 214 : 1440x480 16M+ TrueColour (32-bit) 29Hz 30Hz
    Mode 215 : 1440x576 16M+ TrueColour (32-bit) 25Hz
    Device Mode Characteristics
    Physical Medium Width : 593 mm, 23 in
    Physical Medium Height : 370 mm, 15 in
    Recommended Display Size : 32 in
    Horizontal/Vertical Resolution : 96x96 dpi
    Colour Bits/Planes : 32-bit / 1-bit
    Brushes : 4294967295
    Pens : 4294967295
    Colours/Shades : 4294967295
    Pixel Width/Height/Diagonal : 36 / 36 / 51
    Clipping Capabilities
    Can Clip Output to Rectangle : Yes
    Can Clip Output to Region : No
    Raster Capabilities
    Supports Banding : No
    Supports Fonts Larger than 64Kb : Yes
    Can Transfer Bitmaps : Yes
    Supports Bitmaps Larger than 64Kb : Yes
    Supports Device Bitmaps : No
    Supports DIBs : Yes
    DIBs on Device Surface : Yes
    Flood Fills : Yes
    Supports Windows 2.x : Yes
    Stretch/Compress Bitmaps : Yes
    Stretch/Compress DIBs : Yes
    Supports Scaling : No
    Palette-Based Device : No
    Saves Bitmap Locally : No
    Curve Capabilities
    Can Draw Circles : Yes
    Can Draw Ellipses : Yes
    Can Draw Pie Wedges : Yes
    Can Draw Chord Arcs : Yes
    Can Draw Wide Borders : Yes
    Can Draw Styled Borders : Yes
    Can Draw Wide, Styled Borders : Yes
    Can Draw Rounded Rectangles : Yes
    Can Draw Interiors : Yes
    Line Capabilities
    Can Draw Polylines : Yes
    Can Draw Styled Lines : Yes
    Can Draw Wide Lines : Yes
    Can Draw Wide, Styled Lines : Yes
    Can Draw Markers : Yes
    Can Draw Polymarkers : Yes
    Can Draw Interiors : Yes
    Polygonal Capabilities
    Can Draw Alternate-fill Polygons : Yes
    Can Draw Winding-fill Polygons : Yes
    Can Draw Rectangles : Yes
    Can Draw Scan Lines : Yes
    Can Draw Wide Borders : Yes
    Can Draw Styled Borders : Yes
    Can Draw Wide, Styled Borders : Yes
    Can Draw Interiors : Yes
    Text Capabilities
    Supports Stroke Clip Precision : Yes
    Supports Stroke Output Precision : Yes
    Supports Character Output Precision : Yes
    Supports 90° Character Rotation : No
    Supports Any Angle Character Rotation : No
    Supports Independent X-Y Scaling : No
    Supports Doubled Character for Scaling : No
    Supports Integer Multiples for Scaling : No
    Any Multiples for Exact Scaling : No
    Can Draw Double-Weighted Characters : No
    Can Italicise : No
    Can Underline : Yes
    Can Draw Strikeouts : Yes
    Can Draw Raster Fonts : Yes
    Can Draw Vector Fonts : Yes
    Cannot Scroll Using BitBlt : No
    Enhanced Video Settings
    Animation Effects Enabled : No
    Full Windows Drag Enabled : No
    Font Smoothing Enabled : No
    HighContrast Feature On : No
    Performance Tips
    Tip 314 : Video BIOS is too old. Check for an update.
    Notice 2539 : Disabled environment monitors have been enabled. Check readings.
    Tip 2221 : Driver is not certified.
    Tip 319 : A refresh rate of at least 75Hz is recommended. Increase it if possible.
    Tip 2 : Double-click tip or press Enter while a tip is selected for more information about the tip.
    Computer
    Manufacturer : HP-Pavilion
    Model : KQ497AAR-ABA m9340f
    Family : 103C_53316J

    Thanks for your help!
    Thanks for your help!
    -----Original Message-----
    From: Bill Hunt [mailto:[email protected]]
    Sent: Monday, May 10, 2010 9:27 AM
    To: Harold Gaskill
    Subject: [Premiere Elements] Re: Still crashing after all these years ....
    What version of PrE are you using? If PrE 8, have you updated to PrE 8.0.1?
    I did upgrade
    Are you running as Administrator?
    Yes
    Is PrE installed on your C:\?
    Yes
    Have you updated your audio driver?
    Yes
    Have you updated Apple QT Player?
    Yes
    This *http://forums.adobe.com/thread/483270?tstart=0* will give you tips on setting up your computer for an editing session.
    This *http://forums.adobe.com/thread/446365?tstart=60* will give you tips on finding clues as to what is happening with your system and your application, when a hang/crash occurs.
    Good luck,
    Hunt
    This message was sent to: Halmeister
    To post a reply to the thread message, either reply to this email or visit the message page: http://forums.adobe.com/message/2801049#2801049
    --end--

  • Large numbers of workflows appearing in SAP Inbox after system refresh

    Hi all,
    We are having an odd issue where after we perform a system refresh of our PR system to QA, a massive number of Business 23,000+ appear in the SAP Inbox of certain users who are registered as agents.
    We understand how to delete the workflows but want to understand the process of why they keep appearing, and whether this is a system error or a symptom of a user/batch process during or after the refresh.  The workflows do NOT appear for these users in the PR system.
    95% of the notifications are flagged "Error when generating IDoc from MC Document."
    I have been reviewing the Workflow wiki but have yet to find anything pertinent yet.
    http://wiki.sdn.sap.com/wiki/display/HOME/3.Administrationand+Troubleshooting
    Any help with this or applicable SAP Notes would be greatly appreciated.
    Thanks!
    Edited by: Ben Daniels on Dec 6, 2010 11:21 AM

    Hi,
    As the error message, those workitems are generated when system trying to generate IDocs.
    And the reasons why all workitems are sent to all users is, the task is marked as general task.
    What i would suggest is, select any of those workitem, go to its workflow log & analyze which workflow generates these workitems in what case and proceed accordingly.
    Regards,
    Raj

  • Data Form showing wrong total after Planning Refresh

    Hi. My end users are having an issue in Planning after a refresh.
    Existing projects (budgets) display correct information through data forms. However, when opening a data form to input numbers for a new budget, the data form is populated with the sum of all budgets, instead of showing the expected $0 dollar values.
    In an attempt to fix the issue, we've run a few data refreshes through the Planning Desktop. They run without error, but do not fix the problem.
    Any suggestions will be greatly appreciated.
    We are using planning version 9.2.0.2.

    The data form should show exactly what is in essbase so if you query essbase with the Excel Add-in you should see the same number.
    Seems like either your data is not what you expect it to be or the form definition is incorrect.
    Regards,
    -John

  • SAP License issue after system refresh.

    Hi,
    After system refresh, refreshed system has License info of source system. When trying to apply license from unix, it gives below error, saying system number is incorrect to apply new license. Looks the system number of source system is causing issue. I checked, there is no data in MLICHECK table. I could see some info in "saplikey" table. System is 700 system.
    sidadm> saplikey -install "/home/SID/sid_multiple.txt pf=/usr/sap/SID/SYS/profile/SID_DVEBMGS01_sapsidci
    This system's system number is "000000000710287641", but there is a license key
    for system number "000000000711311441" in file "/home/SID/sid_multiple.txt".
    sidadm>
    Thanks.

    First check whether you have deleted all invalid licenses?
    use below command to delete invalid licenses
    sidadm>saplicense -delete
    And apply new license based on new hardwarekey with below command
    sidadm>saplicense -install
    *I think there should be some invalid licenses lying in your system
    Regards
    Nick Loy

  • TMS, profiles after System Refresh

    Hi All,
    I have done a system refresh from PD1(old prod) to PRD(new prod) on new server.
    I faced following problem after the refresh.
    1. The instance profile of PD1 had many parameter.., after copying that in PRD, sap wont start. So I have commented many of those parameter from the instance profile of PRD?
    2. After the refresh, since PRD doesnt have the transport request of PD1, how do I put those request to PRD?
    I have the backup of \trans folder of PD1.
    Regards
    Prash

    Hi,
    Rename the file from \trans\buffer\HD1 to PRD worked!!!
    -> the only concern if transport buffer is clean up in between then some request was missing in import queue of PRD.
    zcsa/installed_languages = DE
    this should be  ED
    zcsa/system_language = E is OK.
    install/codepage/appl_server = 1100  -> this is for codepage installed on your application server
    I get message like PXA_NO_SHARED_MEMORY occured
    and SYSTEM_NO_ROLL occured..
    ->  are you using 32 bit OS  ?
    check Note 103747 - Performance: Parameter recommendations as of Release 4.0
    Note 88416 - Zero administration memory management as of 4.0A/ Windows
    also consider Note 129813 - Windows: Problems due to address space fragmentation
    regards,
    kaushal

Maybe you are looking for

  • How do I move tabs from one window to another window?

    With the previous version of firefox, I could drag a tab from one window to another window. (and if there was only one tab left in that window, it would automatically close that window because there were no more tabs open in it) With the latest versi

  • Hard says it is near full  but it should not be

    Hi all   My mac is stating that I have around 269 gig of movie in it.  When I search for movies I find only 4 movies.  Where it is telling me this is click on the apple in the top left corner, about this mac, more information, storage.  Where my hard

  • DTD for jaxrpc-ri.xml

    Hi, Where can I find the document type defination for jaxrpc-ri.xml ? Thanks in advance.

  • Batch rename in Bridge: can you truncate filenames?

    I know there are free-standing programs to do this, but: My images come out of the DSLR as DSC_001.NEF and so forth. Is it possible with Batch Rename to just strip off the DSC so that DSC_001.NEF becomes just 001.NEF??

  • Exif tool and Export Jpeg and Tiff files

    I run Lightroom 4.4 under Apple OS X10.4.4 When I export files Exif Tool (in Graphic Converter) under ICC header shows for Jpeg "Primary Platform = Microsoft and for = Tiff Apple; and under ICC Profile Color profile for Jpeg = HP but Adobe 1998 for T