Issue in BMP

Hi all,
I am starting a new thread on the issue i previously had:
Just transported a scenario into Q for testing, suddenly the BPM fails.
I am guessing this is a performance related issue,
let me briefly explain what is happening, there is a transformation(X->Y) just before a block.
The block would be executed parallel for each item there is  in the Y message type(Container).
On D system when testing Y used to have only about 100( or close) items hence the block used to be executed parallely for 100 items(approx)
But when a test on Q was done, Y > 2700. So i am thinking the bpm must be tuned properly. here is a brief report of the error....
PROCESS_NODE: Error when processing node '0000000028' (ParForEach index 000000)
CREATE: Error when creating a component of type 'Dynamic Fork'
CONSTRUCTOR: ParForEach table element contains 2722 entries (only_____________
Someone please help me tune this issue:
Thanks in Advance,
Hank
Edited by: hankovak jovani on Apr 8, 2009 3:09 AM
Edited by: hankovak jovani on Apr 8, 2009 3:09 AM

Hi,
A ParForEach block is executed only for less than 999 processing branches....since earlier you had only 100 branches it was executing successfully but now for 2000+ it wont work.
For your reference: http://help.sap.com/saphelp_nwpi71/helpdata/en/ce/bb2c421f3fda2ce10000000a1550b0/frameset.htm
The upper limit can however be set for a ForEach block but not for a ParForEach....see if you can use ForEach mode instead of ParForEach.
Regards,
Abhishek

Similar Messages

  • BMP File Upload - Fix?

    Hi all
    Way back when Razvan created a fix for me in the (then) Kollection KT_Image.class.php which solved the image upload and resize issue for .bmp files.
    I just updated one site to ADDT and of course the file upload now is busted.
    To cut a long story short - has anyone got around uploading .bmp files with the image upload functions?
    I am using GD.
    Owen

    Dammit no - i deleted the includes folders locally and remotely like an idiot!
    It was something to do with a case 6: in a switch on line 1779 (or it may have been line 179)
    I've tried that but i still get the error:
    Image upload error. Error resizing image: Error converting image (image resize). The file "/var/www/vhosts/slauctions.co.uk/httpdocs/auctionpics/tap_10015.jpg" is invalid. (IMG_RESIZE)

  • What every developer should know about bitmaps

    This isn't everything, but it is a good place to start if you are about to use bitmaps in your program. Original article (with bitmaps & nicer formatting) at Moderator edit: link removed
    Virtually every developer will use bitmaps at times in their programming. Or if not in their programming, then in a website, blog, or family photos. Yet many of us don't know the trade-offs between a GIF, JPEG, or PNG file – and there are some major differences there. This is a short post on the basics which will be sufficient for most, and a good start for the rest. Most of this I learned as a game developer (inc. Enemy Nations) where you do need a deep understanding of graphics.
    Bitmaps fundamentally store the color of each pixel. But there are three key components to this:
    1.Storing the color value itself. Most of us are familiar with RGB where it stores the Red, Green, & Blue component of each color. This is actually the least effective method as the human eye can see subtle differences on some parts of the color spectrum more than others. It's also inefficient for many common operations on a color such as brightening it. But it is the simplest for the most common programming tasks and so has become the standard.
    2.The transparency of each pixel. This is critical for the edge of non-rectangular images. A diagonal line, to render best, will be a combination of the color from the line and the color of the underlying pixel. Each pixel needs to have its level of transparency (or actually opacity) set from 0% (show the underlying pixel) to 100% (show just the pixel from the image).
    3.The bitmap metadata. This is informat about the image which can range from color tables and resolution to the owner of the image.
    Compression
    Bitmaps take a lot of data. Or to be more exact, they can take up a lot of bytes. Compression has been the main driver of new bitmap formats over the years. Compression comes in three flavors, palette reduction, lossy & lossless.
    In the early days palette reduction was the most common approach. Some programs used bitmaps that were black & white, so 1 bit per pixel. Now that's squeezing it out. And into the days of Windows 3.1 16 color images (4 bits/pixel) were still in widespread use. But the major use was the case of 8-bits/256 colors for a bitmap. These 256 colors would map to a palette that was part of the bitmap and that palette held a 24-bit color for each entry. This let a program select the 256 colors out of the full spectrum that best displayed the picture.
    This approach was pretty good and mostly failed for flat surfaces that had a very slow transition across the surface. It also hit a major problem early on with the web and windowed operating systems – because the video cards were also 8-bit systems with a single palette for the entire screen. That was fine for a game that owned the entire screen, but not for when images from different sources shared the screen. The solution to this is a standard web palette was created and most browsers, etc. used that palette if there was palette contention.
    Finally, there were some intermediate solutions such as 16-bits/pixel which did provide the entire spectrum, but with a coarse level of granularity where the human eye could see jumps in shade changes. This found little usage because memory prices dropped and video cards jumped quickly from 8-bit to 24-bit in a year.
    Next is lossy compression. Compression is finding patterns that repeat in a file and then in the second case just point back to the first run. What if you have a run of 20 pixels where the only difference in the second run is two of the pixels are redder by a value of 1? The human eye can't see that difference. So you change the second run to match the first and voila, you can compress it. Most lossy compression schemes let you set the level of lossiness.
    This approach does have one serious problem when you use a single color to designate transparency. If that color is shifted by a single bit, it is no longer transparent. This is why lossy formats were used almost exclusively for pictures and never in games.
    Finally comes lossless. This is where the program compresses the snot out of the image with no loss of information. I'm not going to dive into what/how of this except to bring up the point that compressing the images takes substantially more time than decompressing them. So displaying compressed images – fast. Compressing images – not so fast. This can lead to situations where for performance reasons you do not want to store in a lossless format on the fly.
    Transparency
    Transparency comes in three flavors. (If you know an artist who creates web content – have them read this section. It's amazing the number who are clueless on this issue.) The first flavor is none – the bitmap is a rectangle and will obscure every pixel below it.
    The second is a bitmap where a designated color value (most use magenta but it can be any color) means transparent. So other colors are drawn and the magenta pixels are not drawn so the underlying pixel is displayed. This requires rendering the image on a selected background color and the edge pixels that should be partially the image and partially the background pixel then are partially the background color. You see this in practice with 256 color icons where they have perfect edges on a white background yet have a weird white halo effect on their edges on a black background.
    The third flavor is 8 bits of transparency (i.e. 256 values from 0 – 100%) for each pixel. This is what is meant by a 32-bit bitmap, it is 24-bits of color and 8 bits of transparency. This provides an image that has finer graduations than the human eye can discern. One word of warning when talking to artists – they can all produce "32-bit bitmaps." But 95% of them produce ones where every pixel is set to 100% opacity and are clueless about the entire process and the need for transparency. (Game artists are a notable exception – they have been doing this forever.) For a good example of how to do this right take a look at Icon Experience – I think their bitmaps are superb (we use them in AutoTag).
    Resolution
    Many formats have a resolution, normally described as DPI (Dots Per Inch). When viewing a photograph this generally is not an issue. But take the example of a chart rendered as a bitmap. You want the text in the chart to be readable, and you may want it to print cleanly on a 600 DPI printer, but on the screen you want the 600 dots that take up an inch to display using just 96 pixels. The resolution provides this ability. The DPI does not exist in some formats and is optional in others (note: it is not required in any format, but it is unusual for it to be missing in PNG).
    The important issue of DPI is that when rendering a bitmap the user may want the ability to zoom in on and/or to print at the printer's resolution but display at a lower resolution – you need to provide the ability for the calling program to set the DPI. There's a very powerful charting program that is useless except for standard viewing on a monitor – because it renders at 96 DPI and that's it. Don't limit your uses.
    File formats
    Ok, so what file formats should you use? Let's go from most to least useful.
    PNG – 32-bit (or less), lossless compression, small file sizes – what's not to like. Older versions of some browsers (like Internet Explorer) would display the transparent pixels with an off-white color but the newer versions handle it properly. Use this (in 32-bit mode using 8 bits for transparency) for everything.
    ICO – This is the icon file used to represent applications on the desktop, etc. It is a collection of bitmaps which can each be of any resolution and bit depth. For these build it using just 32-bit png files from 16x16 up to 256x256. If your O/S or an application needs a lesser bit depth, it will reduce on the fly – and keep the 8 bits of transparency.
    JPEG – 24-bit only (i.e. no transparency), lossy, small file sizes. There is no reason to use this format unless you have significant numbers of people using old browsers. It's not a bad format, but it is inferior to PNG with no advantages.
    GIF – 8-bit, lossy, very small file sizes. GIF has two unique features. First, you can place multiple GIF bitmaps in a single file with a delay set between each. It will then play through those giving you an animated bitmap. This works on every browser back to the 0.9 versions and it's a smaller file size than a flash file. On the flip side it is only 8 bits and in today's world that tends to look poor (although some artists can do amazing things with just 8 bits). It also has a set color as transparent so it natively supports transparency (of the on/off variety). This is useful if you want animated bitmaps without the overhead of flash or if bandwidth is a major issue.
    BMP (also called DIB) – from 1 up to 32-bit, lossless, large file sizes. There is one case to use this – when speed is the paramount issue. Many 2-D game programs, especially before the graphics cards available today, would store all bitmaps as a BMP/DIB because no decompression was required and that time saving is critical when you are trying to display 60 frames/second for a game.
    TIFF – 32-bit (or less), lossless compression, small file sizes – and no better than PNG. Basically the government and some large companies decided they needed a "standard" so that software in the future could still read these old files. This whole argument makes no sense as PNG fits the bill. But for some customers (like the federal government), it's TIFF instead of PNG. Use this when the customer requests it (but otherwise use PNG).
    Everything Else – Obsolete. If you are creating a bitmap editor then by all means support reading/writing every format around. But for other uses – stick to the 2+4 formats above.
    Edited by: 418479 on Dec 3, 2010 9:54 AM
    Edited by: Darryl Burke -- irrelevant blog link removed

    I don't think the comment about jpeg being inferior to png and having no advantages is fair. The advantage is precisely the smaller file sizes because of lossy compression. Saving an image at 80-90% quality is virtually indistinguishable from a corresponding png image and can be significantly smaller in file size. Case in point, the rocket picture in that blog post is a jpeg, as is the picture of the blogger.
    The statements about the TIFF format is slightly wrong. TIFF is sort of an all encompassing format that's not actually associated with any specific compression. It can be lossless, lossy, or raw. You can have jpeg, jpeg2000, lzw, packbits, or deflate (png) compressed tiff files. There's also a few compressions that specialize in binary images (used alot for faxes). In fact, the tiff format has a mechanism that allows you to use your own undefined compression. This flexibility comes at a price: not all image viewers can open a tiff file, and those that do may not be able to open all tiff files.
    Ultimately though, the main reason people use TIFF is because of its multipage support (like a pdf file), because of those binary compressions (for faxes), and because of its ability include virtually any metadata about the image you want (ex: geographical information in a "GeoTIFF").

  • Using a .png file as OLE objet

    I am trying to use a png file in my report.  I have it linked in but it only will display the file name.  If I use the same file converted to pdf, it works perfect.  is there a switch somewhere that defines what ole objects can be used?  i need to use a png and not the pdf.  Have same issue with bmp and jpg as well.  Need to make png work.
    Edited by: CME_KN on Feb 3, 2010 4:25 PM

    Hello,
    CR 2008 does support PNG formats. What version of CR are you using?
    Thank you
    Don

  • BMP bean with finalizers, performance issue?

    Hi Guys,
    I am using BMP 1.1, websphere 6.1, and have been reading up on profiling my application.
    Reading through the JProfiler manual, I found the following suggestion.
    [http://resources.ej-technologies.com/jprofiler/help/doc/indexRedirect.html?http&&&resources.ej-technologies.com/jprofiler/help/doc/helptopics/config/finalizers.html]
    I have about 5 BMP that would be closing connections via finalizers, and there would be thousands of calls to these BMP finders when the app is busy.
    My question is, what do you guys think about the above link.
    And what would the best way to implement this daemon thread, I am not sure where to put it in my code.
    Thanks

    I am not sure if this is an issue or not.
    I think the try-catch-finally executed synchronously and explicitly, and this is what is in my BMP beans.
    And the problem in the above link is only pertaining to overriding.
    protected void finalize () throws Throwable {}

  • BMP 8Bit export issue - Can't force to use full color range

    I want to export to BMP 8 bit (to save file space compared to BMP24) but Fireworks cannot be convinced to take advantage of the full range of 256 colors and only uses 80 colors of a smooth gradient, leading to a ugly choppy gradient fill.
    Here is a video of the issue: http://screencast.com/t/Zjk2ZTc4OT
    Any help would be very much appreciated. Is it a bug?

    Yes, it is a bug.
    Please, report it.
    For now, there is nothing else we can do about it...

  • Issue in creating bmp file with cl_igs_chart_engine class

    Hi All,
    I want to populate dynamic graphic in a smartform.
    Im using cl_igs_chart_engine class to produce a GIF format of a chart.
    Then im trying to use class cl_igs_image_converter to convert that gif into a bmp format using INPUT = 'image/gif' and OUTPUT = 'image/x-ms-bmp'.
    but it returns with system failure exception  in
    call function 'PIGFARMDATA' .
    There is no error happening in case of converting any graphic format(bmp,tiff) to gif format but system failure exception occurs while trying to convert into bmp format.
    Appreciate your inputs.
    Cheers,
    Vikram

    Hi,
    I have taken a copy of program GRAPHICS_IGS_CE_TEST and made changes in it. In std program, file type in customizing XML is 'PNJ'. I changed it to 'BMP' as per your suggestion. However, in the
    call method l_igs_ce->execute
          exceptions
          others = 1.
    there is a call function for 'PIGFARMDATA'. Im getting exception error( sy-subrc = 2) for system failure.
    This program works fine if the file type in customizing XML is 'GIF' or 'PNG' but not for 'BMP' file types.
    Please advice.
    Cheers,
    Vikram

  • Unable to convert an image (.bmp) to PDF

    I have a written servlet that uses Adobe LiveCycle API to convert files to PDF. This works. I have a problem with one image (.BMP) for which the PDF conversion fails. I then tried converting the image to PDF using Adobe Acrobat. I see the following error:
    I am able to open the image file without any issues. Why does Acrobat think the file is corrupt? Is there a way to find out if an image is OK for PDF conversion, either manually or programmatically? Attaching the image file for reference.

    Hi ,
    For this issue, it looks like your SharePoint server(s) have been patched with MS13-052. 
    Please try to uninstall it and reboot your machine.
    Here is a similar post for you to take a look at:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/eec6e515-6a0a-42f2-963d-51fde59be9c4/sharepoint-server-20102-abnormal-issues-please-help
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Dragging images from browser to a folder force-saves them as .bmp, how to fix?

    So here's the thing: I'm using the latest Firefox. If I click an image and drag it from the browser page to a directory/file it saves the image as a .bmp, even if it were .jpg or .gif or whatnot.
    Right-clicking and saving the images works fine.
    I've tried uninstalling and reinstalling firefox, downgrading to a 25 (newest is 26) and this: https://support.mozilla.org/fi/questions/833095
    Didn't fix.
    Downgrading to 25 did fix a sign-in issue related to steam store page, it's back now that I upgraded back to 26, but that's not the main issue here.
    I have AdBlock Plus and Nicofox as addons, but disabling them didn't help at all.
    I noticed this problem after christmas, so roughly a week ago.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • I can't see my photos opened with CS6 - Help with Nvidia GeForce GT issues?

    I just bought a new Toshiba Satellite P855-335 laptop running Windows 8 with a Nvidia GeForce GT 640M video card, but I am only able to open my photos when I disable the Graphics Processor from within CS6 Preferences.  When the check is active, I see a black screen and the photo is shown only in the Navigator. Is really anoying to have a useles yet powerful video card for my photo editing. My guess is that I am still able to work with my photos because the integrated intel HDGraphics400 video card jumps in when I disable the GPU within photoshop.  
    What I have done so far:
    1.- Updated to the latest driver for my set up.  I went to Toshiba website and latest driver was already active. Version 305.46 dated July 2012
    2.- I called Nvidia and tried unsuccesfully to install a newer driver (310.90) because is not compatible with my card, they also suggested to install an older driver 304.709 but the operating system just did not want to update to an older driver
    3.- I went to Photoshop help and followed instructions and none seemed to work: 
    3.1. made sure I had latest version of Photoshop CS6 Extended version 13.0.1 x64
    3.2.- Set GPU settings to basic
    3.3. Reset preferences (Crt+shift+alt) while starting photoshop
    3.4. Checked Cache levels to 4
    Maybe the biggest and unacceptable issue is that the reported NIvidia cards tested with Photosho CS6 doesnt include the 600 Series. It is quite annoying because all the other series are reported: nVidia GeForce 8000, 9000, 100, 200, 300, 400, 500 series
    any ideas to help?
    My system info reported within photoshop is the following:
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows NT
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2395 MHz
    Built-in memory: 12177 MB
    Free memory: 8285 MB
    Memory available to Photoshop: 10864 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    The GPU Sniffer crashed on 23/01/2013 at 23:00:04
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GT 640M/PCIe/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1200, right: 1920
    Video Card Number: 2
    Video Card: Intel(R) HD Graphics 4000
    OpenCL Version:
    Driver Version: 9.17.10.2828
    Driver Date: 20120731000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumd32,igd10umd32,igd10umd32
    Video Mode:
    Video Card Caption: Intel(R) HD Graphics 4000
    Video Card Memory: 2048 MB
    Video Rect Texture Size: 16384
    Video Card Number: 1
    Video Card: NVIDIA GeForce GT 640M
    OpenCL Version:
    Driver Version: 9.18.13.546
    Driver Date: 20120731000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode:
    Video Card Caption: NVIDIA GeForce GT 640M
    Video Card Memory: 2048 MB
    Video Rect Texture Size: 16384
    Serial number: 92628897399600750964
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\ROMME_~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 922.1G, 536.1G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.3
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Collada 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Maximum 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mean 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Measurement Core 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Median 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mezzotint 13.0
       Minimum 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       MMXCore Routines 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Picture Package Filter 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Range 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Skewness 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Sumi-e 13.0
       Summation 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Variations 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       WIA Support 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Unfortunately, it seems that Toahiba has not improved their driver releases. As they repackage the nVidia drivers, a straight nVidia driver will seldom install properly. I had a Toshiba Satellite (biggest, baddest in its day), and it never got a video driver update. No nVidia drivers would install. I found this Web site, and for the five years that I used that laptop, it rewrapped every new nVidia driver, to install on the Toshiba: http://www.laptopvideo2go.com/drivers.
    Predicated on a similar Toshiba thread, I checked for that old Satellite, and Toshiba had not issued a new one, four years later - so their one driver was about 9 years old at that point.
    Good luck,
    Hunt

  • Performance Issues with Photoshop CS6 64-Bit

    Hello -
    Issue at hand: over the course of the last few weeks, I have noticed significant issues with performance since the last update to PS CS6 via the Adobe Application Manager, ranging from unexpected shut downs to bringing my workstation to a crawl (literally, my cursor seems to crawl across my displays). I'm curious as to if anyone else is experiencing these issues, or if there is a solution I have not yet tried. Here is a list of actions that result in these performance issues - there are likely more that I have either not experienced due to my frustration, or have not documented as occuring multiple times:
    Opening files - results in hanging process, takes 3-10 seconds to resolve
    Pasting from clipboard - results in hanging process, takes 3-10 seconds to resolve
    Saving files - takes 3-10 seconds to open the dialog, another 3-10 seconds to return to normal window (saving a compressed PNG)
    Eyedropper tool - will either crash Photoshop to desktop, or take 5-15 seconds to load
    Attempting to navigate any menu - will either crash Photoshop to desktop, or take 5-15 seconds to load
    Attempts I've taken to resolve this matter, which have failed:
    Uninstalled all fonts that I have added since the last update (this was a pain in the ***, thank you Windows explorer for being glitchy)
    Uninstall application and reinstall application
    Use 32-bit edition
    Changing process priority to Above Normal
    Confirm process affinity to all available CPU cores
    Change configuration of Photoshop performance options
    61% of memory is available to Photoshop to use (8969 MB)
    History states: 20; Cache levels: 6; Cache tile size: 1024K
    Scratch disks: active on production SSD, ~10GB space available
    Dedicated graphics processor is selected (2x nVidia cards in SLI)
    System Information:
    Intel i7 2600K @ 3.40GHz
    16GB DDR3, Dual Channel RAM
    2x nVidia GeForce GTS 450 cards, 1GB each
    Windows 7 Professional 64-bit
    Adobe Creative Cloud
    This issue is costing me time I could be working every day, and I'm about ready to begin searching for alternatives and cancel my membership if I can't get this resolved.

    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3392 MHz
    Built-in memory: 16350 MB
    Free memory: 12070 MB
    Memory available to Photoshop: 14688 MB
    Memory used by Photoshop: 61 %
    Image tile size: 1024K
    Image cache levels: 6
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.1 CUDA 4.2.1
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 1024 MB
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTS 450/PCIe/SSE2
    Display: 2
    Display Bounds: top=0, left=1920, bottom=1080, right=3840
    Display: 1
    Display Bounds: top=0, left=0, bottom=1080, right=1920
    Video Card Number: 3
    Video Card: NVIDIA GeForce GTS 450
    Driver Version: 9.18.13.1106
    Driver Date: 20130118000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode:
    Video Card Caption: NVIDIA GeForce GTS 450
    Video Card Memory: 1024 MB
    Video Card Number: 2
    Video Card: LogMeIn Mirror Driver
    Driver Version: 7.1.542.0
    Driver Date: 20060522000000.000000-000
    Video Card Driver:
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: LogMeIn Mirror Driver
    Video Card Memory: 0 MB
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTS 450
    Driver Version: 9.18.13.1106
    Driver Date: 20130118000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTS 450
    Video Card Memory: 1024 MB
    Serial number: 90970233273769828003
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\ANDREW~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 111.8G, 7.68G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/09/10-12:31:21   5.0.4   79.517869
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1686  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.0.20577   2.1.0.20577
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1681  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
    Required plug-ins:
       3D Studio 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       Angled Strokes 13.0
       Average 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 8.1
       Camera Raw Filter 8.1
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Clouds 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Collada 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Embed Watermark 4.0
       Entropy 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Extrude 13.0
       FastCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Maximum 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mean 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Measurement Core 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Median 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mezzotint 13.0
       Minimum 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       MMXCore Routines 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Picture Package Filter 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Pinch 13.0
       Pixar 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Range 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.1.2
       Shear 13.0
       Skewness 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       STL 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Sumi-e 13.0
       Summation 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Variations 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       WIA Support 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       Wind 13.0
       Wireless Bitmap 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

  • A List of Issues and Problems in CS3

    I've been logging concerns I have with CS3 over the course of a few edit sessions. I'll list them and see if anyone has any solutions or ways to make these quarks a little more tolerable. (I'm coming from Pro 1.5 into CS3)
    My Current Configuration:
    Dual socket Xeon Quad-cores (8 cores total)
    4GB memory
    1TB storage drive
    Nvidia Quadro FX4600
    b 1. Can't scroll ahead on timeline when playing the timeline
    It used to be that I could advance my view forward or backwards while the timeline is played. Now it snaps back if I try to scroll outside the area currently playing back.
    b 2. No XDCAM EX Export
    I haven't found an adequate HD export at all in CS3. Does everyone just export uncompressed AVIs when they want to move to AE or Encore? Even a HDV export would be nice, but I don't see that either.
    b 3. Major Memory Issues
    I setup two static PSD files on top of a BMP without any effects or motion settings. Memory warnings came up stating memory was low. Looked at my stats in the Task Manager and I was running ~500MB of a Page File and ~2GB of used memory. Very odd. Set the memory settings in Premiere from performance to memory and it didn't help...
    b 4. Title Window Doesn't Hold Panel Positions
    Each time I open the title window, the configuration is different; the toolbars are usually squished off to one side of the window. Even after resizing these panels and closing the titler, it comes back with a different configuration.
    b 5. Title Window is Slow to respond
    I feel like I'm running Premiere's titler on an old Pentium when I go to add or change text. It lags so much, as if the processors are pegged out, but the computer isn't crunching anything. The processors don't even flinch at this process, yet the titler is furiously sluggish.
    b 6. Resize Program / Source Windows
    The scroll bars stay even when the enitre image at 100% is seen. Tons of gray area around the source window, but it still let's me scroll up/down/left/right... nothing there buy gray void. Why the scroll bars??
    b 7. STILL no batch render
    I've been wanting this feature back since v6.5. It was very handy to render out multiple projects unmanned using the Batch render. Why can't we have this in CS3?
    b 8. AfterEffects doesn't have support for XDCAM...
    I'm off topic a touch, but it does make one wonder how to transpose a XDCAM project from Premiere CS3 into AE CS3 when it doesn't have the ability to support it.
    Well, that's my rant. Any help in any portion of these blunders would be great. You don't have to respond to all of them, just reference the bullet numbers of interest and let's have a discussion.
    Thanks,
    Spires

    And what troubleshooting steps have you attempted so far?
    And updating your device's iOS is always optional.  No one forced you to do so.

  • Nokia N95 8GB Album Art and Album Folders Issue

    I have been hunting for for a resolution for two issues with the N95 8GB Media Player all over the web.
    1. Adding artwork (CD Covers) to audio tracks (or albums) seems to be at best hit and miss. Most of the time it just does not work.
    2. Deleting an album delete all the tracks but deleting the album folder seems almost impossible.
    Well this weekend I decided to try to solve this and I think I may have hit upon a solution.
    Since so may people have the same problem I thought it worth repeating. I would stress this has not been exhaustively tested but it does work reliably so far.
    I am using Nokia Music Manager 2.0. The fix is simply to convert the files to AAC rather than to M4A (which is the default). After this simple change everythig worked find for me. I can add and delete albums from Nokia Music Manager 2.0 (don't forget to refresh on the phone afterwards) AND reliably add Album Artwork.
    So here is how I have been working.
    1. Set the conversion format to AAC. I have been using 'Ultra high' quality setting. Options Menu >> Setting >> Conversion Tab.
    2. Next put in a CD, select all the tracks and choose copy to my collection.
    3. While this is going on I find the artwork on the Web. A simple Google Image search with the album title and artists last name / band name seems pretty 100% to get the on the first page. Download image to My Documents / My Pictures.
    4. Once the CD Rip is complete they will all appear in My Collection. I select all the tracks in my collection for the album in question, and then right click on one of them and select Edit.
    5. I then attach the Album Artwork by clicking on the blue folder and choosing it from my, MY Pictures folder.
    6. Finally select Copy to Phone from the File Menu.
    This has worked for me so far 100% and I have done 20 or so albums.
    NOTES:
    To get Nokia Music Manager 2.0 I uninstalled the version of Nokia Phone Suite that came with my phone and went to
    http://europe.nokia.com/A4144905I (or seach Google for "nokia phone suite"
    I chose the N95 8GB downloaded and installed. At some point shortly after install Phone Suite informed me that there were updates available and Nokia Music Manager 2.0 was one of these.
    I was originaly using this and suffered all the problems you guys have. After searching the web and finding no solution I decided to do some experimenting.
    Hope all this helps.
    PS If you need to delete all your legacy album folders, this is the fix I found on this same site. You can do this at any time.
    1. Enable the option to be able to see Hidden Files and Folders in your Windows Explorer.
    2. Connect your n95 8gb to your computer and choose data transfer mode.
    3. Go to My COmputer >> Nokia Phone Browser >> Nokia N95 8GB >> Memory Card E:
    3. If you have selected Show Hidden Files and Folders (see 1) you should see a folder called Private.
    4. In the Private folder you need to delete the contednts of three folders
    \private\101FFC31 (mpxv1.mpd and pcv5.mpd)
    \private\101f8857\Cache
    \private\101ffca9
    In all the 3 folders delete all the files Not the FOLDER
    Next time you restart the music player it will rebuild the indexes without the deleted albums folders.
    Hope this helps someone. It restored my sanity.

    Album Art
    Basically there are two methods
    Method 1.
    You do it on the phone. Load the album art pictures to the memory card. (Must be JPEG NOT BMP)
    Load also the music files.
    Open Music application in the phone. Open an album then select Options->Album art then Options-> Add, browse for the picture and select Ok.
    Repeat for each ALBUM
    Method 2.
    You do it on the PC.
    Get a Tag editing software like Tag&Rename, WINAMP, etc.
    Edit the files Metadata to include Album Art picutres (again they should be jpeg and also they should be set as Cover Front).
    Transfer the files that have Album Art using File transfer (usb mass storage) don't use MTP or PC Suite as these methods may convert the files and Album Art will be lost.
    Or you can continue using your Method
    Message Edited by el_loco on 04-Feb-2008 10:44 PM
    640K Should be enough for everybody
    El_Loco Nokia Video Blog

  • How do I get Apple to pay attention to IOS Mail Signature Issues?!!!!!

    IOS Signature.....
    OK, so I know this has been answered a number of times before and I have posted this at the request of senior advisors at Apple Customer Service who are also fed up with people complaining about the lack of basic functionality with IOS Signatures.
    So the issue for me is that, with IOS8 Apple introduced continuity. I can sit on my MacBook Air in the lounge, my phone on charge in another room, and genius, I can take a phone call right from my Mac. Perhaps the cynic in me thinks this was designed for the American market and those too bone idol to get of their fat A***'s and answer their phone (Hey every calorie counts after all). But what I continue to fail to get is why I can have a beautiful, Professional signature on my MacBook Air. I have a JPEG of my signature, my details, Facebook and linked in Logo's. It looks very good and often people ask me how I did that!!! But when I am out and i want to send an e-mail from my iPad Mini w Retina or iPhone 5s. Apple think that I don't need that professional signature and that basic text will do! Apple, it won't, its a basic function and you need to do something about it!!!
    This has been a common complaint and oversight from Apple since the original iPhone.
    I have to wait to get home to send a business e-mail from my Mac using the signature. I can cut an paste the signature from an e-mail, it works for 1 or 2 e-mails and then reverts to replacing the images with little grey boxes. I have tried all the workarounds, spend hours, probably days trying to do this and the same result overtime. Clearly Mail can send jpeg, gif, bmp etc.... just not as a signature through the settings menu. This must be a simple fix!!!
    I have come to the conclusion that:
    1/. Tim Cook and the executives at Apple do not use iPads for business use, or this would have irritated them and it would have been resolved. Surely while they are jetting around the world promoting the generally useless Apple Watch they would have noticed this problem?!
    2/. Or Tim Cook and his gang do not use iPads!!!!!!
    So Apple, please, Please, PLEASE fix some of these basics... PDF management in IOS, iCloud management on IOS and let us have more than simple text signatures in Mail in IOS. Its a basic, necessary business function!!!!!!!
    These little things have stopped me upgrading the iPad and iPhone and like others I know who were Apple loyalists and promoted the virtues of Apple products, we now consider other options, with basic functionality. Stop chasing the next major release and give us the basic functionality.
    Please if you know a way of doing this that works time and time again that doesn't mean opening an old e-mail and pasting every time I send an e-mail, let me know...

    apple does not read, log or to a certain extent, care about what's posted here. This is user to user tech support forum and apple's only presence is the moderators and the community specialists that answer unanswered posts.
    Use the feedback link. It's the only way to get your comments to apple in a manner that is read and logged.

  • PSE 11 editor has stopped importing from scanner, no longer permits drag and drop, will not permit cropping, and other bizarre issues

    Windows 8.1, PSE 11
    I am having a number of issues including loss of import functionality from scanner, I can't drag and drop photos into the editor any more as well, or at least not after the first one. The crop function stops working after the first couple of photos.  Then some freezing.  A little added crashing.  A plethora of other bizarre issues as well.  This just stated happening a couple of days ago. 
    What I have tried:
    Uninstall/Install. 
    Deleted preferences both before opening Editor (crontrol-alt-delete) and after opening it. 
    Kindly advise.  Thanks!
    Adobe Photoshop Elements Version: 11.0 (11.0 (20120830.r.32025)) x32
    Operating System: Windows 8 64-bit
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:10, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 8
    Processor speed: 3500 MHz
    Built-in memory: 8139 MB
    Free memory: 5185 MB
    Memory available to Photoshop Elements: 3255 MB
    Memory used by Photoshop Elements: 70 %
    Image tile size: 128K
    Image cache levels: 6
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTX 660 Ti
    Driver Version: 9.18.13.3750
    Driver Date: 20140327000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 2560 x 1440 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTX 660 Ti
    Video Card Memory: -2047 MB
    Application folder: C:\Program Files (x86)\Adobe\Photoshop Elements 11\
    Temporary file path: C:\Users\evan\AppData\Local\Temp\
    Photoshop Elements scratch has async I/O enabled
    Scratch volume(s):
      Startup, 931.2G, 805.4G free
    Required Plug-ins folder: C:\Program Files (x86)\Adobe\Photoshop Elements 11\Required\
    Primary Plug-ins folder: C:\Program Files (x86)\Adobe\Photoshop Elements 11\Plug-Ins\
    Additional Plug-ins folder: not set
    Installed components:
       ACE.dll   ACE 2011/03/29-16:11:44   63.457850   63.457850
       adbeape.dll   Adobe APE 2011/01/17-12:03:36   64.452786   64.452786
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/20-18:39:56   4.1.9   78.509892
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2011/03/29-16:11:44   63.378681   63.378681
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2010/10/12-08:45:30   63.139439   63.139439
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
       adobe_caps.dll   Adobe CAPS   4,0,42,0  
       Adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   2.2.0.4 (BuildVersion: 2.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       AGM.dll   AGM 2011/03/29-16:11:44   63.457850   63.457850
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   1.486530
       aif_ogl.dll   AIF   3.0   1.486530
       amtlib.dll   AMTLib   4.2.0.4 (BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       amtservices.dll   AMTServices   4.2.0.4 (BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00)   1.000000
       ARE.dll   ARE 2011/03/29-16:11:44   63.457850   63.457850
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat   3.3   49.279053
       AXEDOMCore.dll   AXEDOMCore   3.3   49.279053
       AXSLE.dll   AXSLE   3.3   49.279053
       Bib.dll   BIB 2011/03/29-16:11:44   63.457850   63.457850
       BIBUtils.dll   BIBUtils 2011/03/29-16:11:44   63.457850   63.457850
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2011/03/29-16:11:44   63.457850   63.457850
       data_flow.dll   AIF   3.0   1.486530
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ems.dll   Elements Organizer   11.0  
       ExtendScript.dll   ExtendScript 2010/03/05-08:21:15   61.423205   61.423205
       FaceDetector.dll   FaceDetector 0000/00/00-00:00:00   2.0.1.1   2.0.1.1
       FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
       filter_graph.dll   AIF   3.0   1.486530
       hydra_filters.dll   AIF   3.0   1.486530
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_compiler.dll   AIF   3.0   1.486530
       image_flow.dll   AIF   3.0   1.486530
       image_runtime.dll   AIF   3.0   1.486530
       JP2KLib.dll   JP2KLib 2011/03/29-16:11:44   63.196876   63.196876
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       MPS.dll   MPS 2011/05/24-09:45:42   63.464027   63.464027
       MSVCP100.dll   Microsoft® Visual Studio® 2010   10.00.30319.1  
       MSVCP71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       MSVCR100.dll   Microsoft® Visual Studio® 2010   10.00.30319.1  
       MSVCR71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop Elements Editor   11.0  
       platform.DLL   Adobe Help System   1, 0, 0, 1  
       Plugin.dll   Adobe Photoshop Elements Editor   11.0  
       PSArt.dll   Adobe Photoshop Elements Editor   11.0  
       PSViews.dll   Adobe Photoshop Elements Editor   11.0  
       ScCore.dll   ScCore 2010/03/05-08:21:15   61.423205   61.423205
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       Tbb.dll   Intel(R) Threading Building Blocks for Windows   2, 2, 2009, 1011  
       updaternotifications.dll   Adobe Updater Notifications Library   2.0.0.15 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   2.0.0.15
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
    Required plug-ins:
       Accented Edges 12.0
       ADM 3.11x01
       Angled Strokes 12.0
       Auto Divide 11.0.0.0 (11.0 (20120830.r.32025))
       Average 12.0.2
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 7.4
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Clouds 12.0.2
       Color Halftone 12.0.2
       Color Variations 12.0.4 (12.0.4x001)
       Colored Pencil 12.0
       Comic NO VERSION
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Correct Camera Distortion 12.0.2
       Craquelure 12.0
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       Difference Clouds 12.0.2
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Extrude 12.0.2
       FastCore Routines 12.0.4 (12.0.4x001)
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Grain 12.0
       Graphic Novel NO VERSION
       Graphic Pen 12.0
       Halftone Pattern 12.0
       Ink Outlines 12.0
       Lens Blur 12.0
       Lens Flare 12.0.2
       Lighting Effects 12.0.4 (12.0.4x001)
       Liquify 12.0.1
       Matlab Operation 12.0.4 (12.0.4x001)
       Mezzotint 12.0.2
       MMXCore Routines 12.0.4 (12.0.4x001)
       Mosaic Tiles 12.0
       Multiprocessor Support 12.0.4 (12.0.4x001)
       Neon Glow 12.0
       Note Paper 12.0
       Ocean Ripple 12.0
       OnEdge 1, 0, 0, 1
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Pen and Ink NO VERSION
       Photocopy 12.0
       Picture Package Filter 12.0.4 (12.0.4x001)
       Pinch 12.0.2
       Pixar 12.0.4 (12.0.4x001)
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Polar Coordinates 12.0.4 (12.0.4x001)
       Poster Edges 12.0
       Radial Blur 12.0.2
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.0.4
       Shear 12.0.2
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Solarize 12.0.2
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Straighten and Crop Image 12.0.4 (12.0.4x001)
       Straighten Image 12.0.4 (12.0.4x001)
       Sumi-e 12.0
       Texture Fill 12.0.4 (12.0.4x001)
       TextureSelect 12.0.4 (12.0.4x001)
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       Underpainting 12.0
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       WIA Support 12.0.4 (12.0.4x001)
       Wind 12.0.2
       ZigZag 12.0.2
    Optional and third party plug-ins:
       Frame From Video 6.0
       Magic Extractor 12.0.4 (12.0.4x001)
       PhotomergeUI 12.0.4 (12.0.4x001)
    Plug-ins that failed to load: NONE
    Installed TWAIN devices: NONE

    Final Update: ...god willing...
    OK! Check it, like I said in previous posts I seemed to have narrowed it down to specific mp3s not converting and playing in their native sample rate which if paired with another sample would give you the "audio midi sync" error and basically screw up your clock! It appears mp3 files converting to mp3 using iTunes would not convert to the correct sample rate if set to something other than 44 in logic and cause this. A tad peculiar Apple iTunes won't work with Apple Logic. I was able to confirm this on two mac's via my friend in Florida. He's running Tiger and tried the same experiment and Booya! Mickey Mouse! It appears this insane week long adventure has came to an end (...god willing) with a super specific unlucky shot in the dark on my part finally revealed to be an perfectly normal function of Logic (obviously one i'm not fond of..) As far as the errors / crashes / system overloads / kernal panics I think I can sort those out to the mackie onyx satellite not being a good choice and trying to add and remove firewire devices in the middle of the sample rate mayhem. Wow! all I can say is, I'm glad it's over
    Wish me a lot of luck in the future.. I'm sure i'll need it!

Maybe you are looking for

  • Field KOMP-ZZPRCTR1 is not known for condition accesses"

    Hello friends, In a sales order if I put the material I got the error below. "Field KOMP-ZZPRCTR1 is not known for condition accesses" I am not able to incert that perticular material into sales order. Kindly suggest how to go ahead. Regards, Kunal

  • Reference book for Mac OS X Tiger

    Can anyone recommend a good reference manual that goes beyond being a user guide. I haven't used a Unix machine since University (over 10 years ago) and feel I need a comprehensive guide to the inner workings of Tiger. I might even be tempted back in

  • 1424 does not pass diagnostic​s after running program

    Hello, we are using the PCI-1424 card with a Dalsa linescan camera, and are having trouble trying to do ring acquisitions with different buffer sizes. The camera either times out or always returns the number of lines that it is first set to, ie; if t

  • Make Fields Personnel No & Trip No Mandatory in PREC and PRFI

    I wish to appeal for detailed guidance on how to make the following fields mandatory when transaction codes PREC and PRFI are run in travel management. Personnel Number - PERNR and Trip Number - REINR I have gone through the trip schema and really co

  • WAN Connectivity Failure

    My connection on my iMac seems to drop out quite often for seemingly no reason. So i ran Wireless Diagnostics and let it monitor overnight and saw this... 08/15/14 02:55:17.6000 LAN: WiFi interface can ping IPv4 router 172.16.0.1 . . . pass 08/15/14