Damaged image files in gallery of 311 - 5.92

hi, when tapping accidentally on a picture in the gallery while it is still scrolling, there is a great chance (in my case 100%; I have been able to reproduce it) that this picture file will be damaged, leaving only about some lines of pixels visible or even nothing. The thumbnail is not affected. The damaged file may even resist to be deleted; after shutdown & restart I have been able to delete the image file.
Beware of accidentally touching the gallery while it is still scrolling 
May be one day even the nice Asha 311 will have robust software ...
per aspera ad astra
neti neti

hi, after searching for possible reasons for the effect of damaged image files, I now suggest the following candidates: There are in fact damaged files on the 2GB microSD card, that came with the 311. I moved the card to another asha 311 & there again have been the thumbnails of my photos OK, but the respective images opened in some strange way: either only about 2 lines of pixels, leaving the rest of the screen grey, or for a very short time, less than half a second, a kind of blurred preview appeared and thereafter the 2 or thre lines of pixels, as before.
But that is probably not the full story. I looked into the directory of the card with the DOS Terminal DIR command where all files, especially those that did not open correctly, seemed to be OK, having file size, dates etc. But could not be opened using the Windows Explorer of WIN XP. But: In the parent dircetory i detected a damaged entry of a directory with a name (related to <<attachement received>> ?), but the other entries missing (see attachements).
The damaged files all have come from the camera, i.e. small 300x300 px files which I copied the 2GB microSD in the phone where not affected.
Just to get rid of the damaged files I then formatted this microSD, to see if will be usable again, after putting the blank card into the 311, the counter of  new photos did not start at zero, but obviously from the old count, leaving the question: Bug or feature? (The card to date is OK in the other 311 which I use for testing)
In summary: The card may have contributed to the loss of photos, but I'm not fully convinced. In future I will try to save photos more often to my desktop PC.
per aspera ad astra
neti neti
Attachments:
Terminal1.png ‏127 KB
Terminal2.png ‏121 KB

Similar Messages

  • Damaged image file

    I'm trying to copy an iPhoto library using the Finder, and keep getting the following error message:
    The finder cannot complete the operation because some data in "IMG_2255.CR2" could not be read or written.
    (Error code -36)
    I've tried searching for this file using Spotlight (the libraries are on an external Firewire hard-drive), but it doesn't find it.
    However, searching for it in iPhoto itself yealds results as I find 2 RAW and 2 JPG versions of this image. They're all perfectly viewable.
    What's going on?

    Did you tell LR to add the exported photo to the library upon export and are now by mistake trying to work on the "re-imported export"?

  • View image files in gallery on N95

    I can not view the pictures in the gallery that is saved to my 1gb memory card, any ideas...

    Have you placed them in the folder called IMAGES?
    640K Should be enough for everybody
    El_Loco Nokia Video Blog

  • Problem using email to upload image files to Mobile Me gallery

    I will cross post this question to both Mail and Mobile Me discussion groups because I don't know where my problem lies.
    I have published a gallery page from iPhoto to my Mobile Me gallery. There are two ways to upload additional photos. I am not having trouble adding image files with the Upload feature. I cannot get the email function to work. The emails I send to the email address for the gallery bounce back to my mail inbox.
    Subject: Delivery Notification: Delivery has failed
    and in the body of the bounced email:
    Recipient address: [email protected]
    Reason: SMTP transmission failure has occurred
    Diagnostic code: smtp;521 5.2.1 Fatal failure of WOA
    Remote system: dns;post.mac.com (TCP|10.150.69.91|51195|10.13.19.27|25) (mbin002.mac.com ESMTP [2.3.3/gso-r197-19Feb2007] ready to rumble)
    Original-envelope-id: [email protected]
    Reporting-MTA: dns;asmtp028-bge351000 (tcp-daemon)
    Original-recipient: rfc822;[email protected]
    Final-recipient: rfc822;[email protected]
    Action: failed
    Status: 5.2.1 (SMTP transmission failure has occurred)
    Remote-MTA: dns;post.mac.com (TCP|10.150.69.91|51195|10.13.19.27|25)
    (mbin002.mac.com ESMTP [2.3.3/gso-r197-19Feb2007] ready to rumble)
    Diagnostic-code: smtp;521 5.2.1 Fatal failure of WOA
    One of the images I am trying to attach is a jpeg file of 61 kb.
    I have tried to drag the image from my desktop to the body of the email. I have tried using the "attach" function and selecting the file name. I am not sending any text with these files.
    When I built these albums, I checked and enabled all the options.
    I am having this same issue when I try to upload via email to any of my Mobile Me gallery pages.
    There is currently one photo displayed here:
    http://gallery.me.com/tplattenberger#100352
    If anyone wishes to try to upload to that gallery using email (Send to Album) that would be great and if successful, that might provide a clue to my problem.
    As I say, I currently have one photo there. If you find a lot more, please do not add.
    What's the problem?
    Tom

    The images I am trying are newly created and old.
    A weird hint perhaps...
    I just copied an image from Apple's home page and pasted it into the email and tried again...
    it worked.
    So I tried again, dragging from iPhoto and it did not work... the email bounced back.
    So I tried again, this time using copy and paste (like I did from Apple's page) from iPhoto... it did not work.
    Tom

  • Problem with Image file

    Hi,
    Iam facing with one problem.I have one swing interface through which I can upload files(back end servlet programme).Now I can upload all types of file but problem with image file it uploading perfectly that means size of the uploaded file is ok but its format damaged.It can not be open.My backend servlet programme is ok coz i tested it with html form it is working perfectly.Problem with swing interface.Plz guide me where I done a mistake.Below r my codes:-
    ImageIcon Upload=new ImageIcon("images/Upload.gif");
         Button=new JButton(Upload);
         Button.setToolTipText("Upload");
    Button.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
              int returnVal = fc.showOpenDialog(ActionDemo4.this);
              if (returnVal == JFileChooser.APPROVE_OPTION) {
              File file = fc.getSelectedFile();
    String aa=file.getAbsolutePath();
              textArea3.append(aa);
                   textArea2.append("Local URL:");
    long l=file.length();
              try
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff);
              String str1=textArea10.getText();
    url = new URL ("http://127.0.0.1:7001/servletUpload?x="+str1);
         urlConn = url.openConnection();
         urlConn.setDoInput (true);
         urlConn.setDoOutput (true);
         urlConn.setUseCaches (false);
         urlConn.setRequestProperty("Content-Type","multipart/form-data;boundry=-----------------------------7d11e410e500f2");
         printout = new DataOutputStream (urlConn.getOutputStream ());
    String content ="-----------------------------7d11e410e500f2\r\n"+"Content-Disposition: form-data;"+"name=\"upload\"; filename=\""+aa+"\"\r\n"+"Content-Type: application/octet-strem\r\n\r\n\r\n"+conffile+"-----------------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);
    printout.flush ();
    printout.close ();
    Best Regards
    Bikash

    The errors are here:
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff); (conffile is a String object containing the image)
    and here:
    String content ="-----------------------------7d11e410e500f2\r\n"+"Con
    ent-Disposition: form-data;"+"name=\"upload\";
    filename=\""+aa+"\"\r\n"+"Content-Type:
    application/octet-strem\r\n\r\n\r\n"+conffile+"--------
    --------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);conffie is sent to the server but
    it's non possible to treat binary data as String!
    Image files must be sent as byte[] NOT as String ......

  • How can I repair damaged pdf files?

    I have several hundreds of damaged pdf files and want to repair them. I need to know how to repair them, for example with a software!

    Hello Sukrit,
    thank you for your reply!
    I have deleted the PDF Files and needed to recover them. The size will be shown, but I can't open all of them.
    I would like to recover them again or change them again to PDF files, if possible.
    With regards,
    Stephan
    Von meinem iPad gesendet
    Am 24.04.2015 um 15:41 schrieb "sukritd15" <[email protected]>:
    How can I repair damaged pdf files?
    created by sukritd15 in PDF Forms - View the full discussion
    Hi Stephan ,
    Acrobat is capable of repairing the damaged PDF' ,however it depends on the requirement as to how do you want to repair them.
    There could be several reasons that can damage a PDF.
    We need to know the cause that has damaged those PDF' and how exactly you want to repair them in order to assist you accordingly .
    Regards
    Sukrit Dhingra
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7474818#7474818 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7474818#7474818
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in PDF Forms by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Hard drive recently failed and iPhoto brings a -36 error when copying need help accessing image files

    I recently updated my computer to mountain lion and after doing so my computer would no longer boot up.  I took it to the apple store and they told me that the hard drive was damaged and needed to be replaced.  They were booting my computer with an external drive and in doing so could access my computers HDD.  Upon starting to drag and drop files to a new hard drive I started to get a lot of -36 errors.  I proceeded to go go,e and create my own bootable thumb drive and try doing the same process with more time to look through it.  I have up till now been able to copy most of my files but have run into a problem with iPhoto.
    I have been searching around for a while now and have yet to find a method that helps me in my particular situation so I am now asking for help myself. I will explain what my current system of file recovery is and see if anyone can help me out.
    I have since then replaced the HDD in my computer and purchased a SATA external HDD enclosure for the original drive.  This allows me to still access all files and folders from the original drive.  I have managed to recover a majority of the files but have recently run into a problem with the iPhoto library.  Every time I try to drag and drop the iPhoto library to my new HDD it fails after "transferring" 2.02GB and tells me it has encountered a -36 error because some files cannot be read or written.  I believe I am using iPhoto '09, I will check and confirm that later.
    I am looking for a way to open iPhoto's library and access the image files it seems to be hiding from me. Please understand that I cannot open the iPhoto library either, I have lost access to the library entirely and want to see if there are any image files that I can save.  I dont have the computer backed up recently and want to save my photos.  Thanks for looking and I'm hoping someone can help.

    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command). Rebuild it to the Pictures Folder. This might overcome the -36 issue.
    (This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.)
    Failing that you're into recovering your Originals from the damaged Library and creating a new Library and starting over from scratch.
    Regards
    TD

  • Can't load images for photo gallery

    Hi All,
    This is my first stab at using Spry and I've run into a small
    problem. I can't get my images to show up for the thumbs or the
    large image. And when I read the article for this I only got more
    confused.
    quote:
    Now you can make use of these new data points in the album.
    Start by replacing the hard coded image folder paths to the values
    used in the XML file.
    In the thumbnail 'src' path, remove the 'thumbnails/' and
    replace it with the XML value. Make sure to remove the forward
    slash since that is already stored in the XML value for the path.
    Repeat for the main IMG tag. Remove the 'images/' from the
    'src' field and replace it with the XML value.
    Now you have to tell the dynamic region that you will be
    using data from the new dataset. Add the data set name to the
    spry:region attribute, separated by a space.
    When it says "replace it with the XML value", how do I do
    that? What XML value? Can someone give me an example? Do I spec out
    the directories in the XML file or within the code on my
    gallery.html page?
    Here's my dir structure
    gallery.html
    -photo_gallery (dir)
    --photo.xml
    --gallery (dir)
    ---pic1.jpg
    ---pic2.jpg
    ---pic3.jpg etc.

    Hi Petron,
    Sorry for the confusion.
    You can do either. It depends on how you structure your XML.
    The most flexible way would to just have the image name in
    the XML file. That will let you change your folder structure
    without having to update the file.
    So your XML can say:
    <photos>
    <photo name="pic1.jpg" />
    <photo name="pic1.jpg" />
    </photos>
    And your <img> tag can be:
    <img src="gallery/{@name}">
    {@name} is the data reference for your data set which
    contains the image info.
    But, if you have the full path in the XML:
    <photos>
    <photo name="gallery/pic1.jpg" />
    then your img would be <img src="{@name}" />
    Either way, the full path has to be built to the .jpg file.
    The first way is probably better...
    In my gallery tutorial, we start out with one gallery. But
    later on, we expand it to use multiple galleries. We use one XML
    file to tell use the image directory:
    <galleries>
    <gallery>china</gallery>
    <gallery>egypt</gallery>
    Where we can use these values as folder names.
    Let me know if this helps. I don't want to give too many
    unnecessary details that might confuse the issue.
    If you have a sample URL, we can accurately help you.
    Thanks,
    Don

  • No Thumbs or Main Image with Spry Gallery Demo

    Hi everyone, DW CS3 newbie here.
    I hope this topic hasn't been beaten into the ground yet.
    I'm trying to put together a site
    (members.cox.net/rangersbu9/gallery.html) for my son's soccer team
    and am running into a wall getting the original, dynamic Spry
    gallery demo to work. I've done my best to collect and modify the
    required files and place them appropriately but, when the files are
    loaded on the live server (the wrap div contents are all but
    invisible when I view with IE7 locally, apparently due to the PC
    not be set up as local server) the thumbs are 'x's and the main
    image is a 1px x 1px dot.
    The controls will highlight between the empty thumbs and the
    gallery pull-down will select between the two options I've put in
    the XML file but that's about it. Perhaps it is my ignorance, but
    it seems like a ( src= ) tag is missing in the 'mainImageOutline'
    div because I cannot understand where the main picture is coming
    from otherwise.
    Any insight from the source at the link above? Please keep in
    mind I have two week's experience with DW and website building but
    do have a programming background (from a few decades ago :->). I
    believe I have the un-updated CS3 Spry version, if that matters.
    Many thanks to Don and others here for posts that have helped
    me get this far.
    -Kurt

    Update:
    Got the thumbs to appear. Had them physically sized larger
    than the XML fields stated. However, they will not grow/shrink. In
    digging through gallery.js, I see that those two functions call
    Spry.Effects.SizeAndPosition() - I cannot find that function in any
    of the includes (i.e. SpryEffects.js). Spry.Effects.Size yes, but
    not SizeAndPosition. Wondering if this gallery.js calls a later
    version of SpryEffects.js than I currently have installed (it's
    Spry 1.4). I will download 1.6 and check it out but if anyone has
    any other input, please let me know.
    Still no main image. In gallery.js I found ShowCurrentImage()
    which had a hardcoded path to the images that did not match mine.
    Corrected the path but no change.
    Any suggestions?
    Thanks.
    -Kurt

  • Why does ibooks author automatically resize all images of a gallery?

    The point here is, I have more than one graphic files (not pictures taken by a camera) to put into one gallery widget of an iBooks Author document. Unfortunately, not all figures have the same height/width aspect ratio. If I put them together in the gallery, some of them have cropped widths others have cropped heights. Impossible to losslessly fit all into the same gallery. If I scale alle figures to the same width, the result is acceptable for the figure with the highest heigth, all other figures are cropped again.
    Well in a first time, I was not that much concerned, but the iBooks Author Quality check refused to publish such eBooks, where some picutes appear cropped in the small view (not in the full-screen view).
    Now, why is the iBA software automatically sizing all images of a gallery w.r.t. the center of an image? It would be of much more help, to leave some white background boarders on images of un-equal height, as long as the width of all images is exactly the same. The crop-pan function would then be useful to individually place a smaller-than-the-rest image in that frame of its larger precedecor image.
    Can this autosize function be turned off? Am I really forced to paste smaller images into a white image of the maximum height/width of the galery's largest image?

    If you have differently shaped (height/width) images that you want to place in one gallery....
    The first image you place will determine the shape (max height and width) of your gallery mask, so choose it wisely.
    Before you add each image to the gallery go to photoshop and:
    1. Size the IMAGE to be at the max height OR width of your gallery mask -- do this if you want at least one dimension (height or width) to fit all the way across or up and down in the gallery mask.
    2. Size the CANVAS to the same height and width of your first image (the size of your gallery mask).
    I hope this makes sense and is helpful. Yes, it's ridiculous, but it's the only way I found to make images of different dimensions fit in a gallery.

  • Still image file confusion.

    Got an unusual problem...
    Importing folders of JPG still images into CS5 to product a slide show.....
    On random occasions Premier confuses individual image file names and replaces them with alternate files from within folders imported on the time line....
    Ive re checked the original source of the files affected and they are unaltered...
    At first I thought files may be damaged by a virus..... However I;ve used other editing software and they work perfectly........Wondering if anyone has a solution....

    I've seen this same thing...drove me nuts!  I reported it as a bug, so Adobe knows about it. Hopefully a fix will come along soon.  A work around is to right-click on the files in the bin, choose Edit in Photoshop, then in Photoshop just do a Save As, and re-save over the old file using the same name and format. When you go back into Premiere Pro, it should be fine. Be sure to back up your original files somewhere...just in case.  Hope that helps!

  • PSE7 Are People and other Tags Stored in Image File

    Does anyone know if the People and other tags are stored by PSE7 in the image file? Since there are well defined "Keyword" data fields in both the IPTC and XMP metadata standards, I would think PSE would store them in the image file in addition to whatever it puts in the Catalog. However, none of my other programs that read image metadata (PhotoME, PIE, iExif) are finding anything. Other programs such as Windows Photo Gallery put the keywords in the image file.
    I don't have a lot of experience with PSE so perhaps I am just missing something obvious.

    PSE stores the "truth" about keyword tags, dates, captions, notes, star ratings, stacks, version sets, albums, and projects in its "catalog" file.  If you change a date, caption, note, or star rating, PSE also writes it back into the file's metadata (the "EXIF").  But for keyword tags, you need to give the command File > Write Keyword Tag to get it written back.

  • Pixelated jpg image files

    Muse 7.2, OSX 10.9.2
    I have inline images and a gallery slideshow on a site.  Some of these images are extremely pixelated on the rendered web page.  All the images were sized in Photoshop to the exact pixel dimensions and saved as  saved-for-web jpegs in Photoshop.
    Several of the inline images have been on my site for about a year and only recently appear pixelated.  I'm making some edits to my site but have not touched any of the images that are now pixelated.  Also, I have embedded the links to all images so Muse need not search through my computer for the image source files.
    I did replace one pixelated inline image with the same source file, but with a different file name.  For some reason this image now renders properly.  However this technique did not have any benefit on several images in a slideshow gallery that has both thumbnails and full size image.
    What's your opinion why these images appear pixelated, and what suggestions might overcome the trouble?
    Best regards,
    Tim

    Zak,
    A second thought on pixellated images.  Currently I have overcome the problem by replacing all the affected images with a replacement image (the same original) but using a different file name.  These same images are used elsewhere in the site, but at different sizes.  Likely the file name was the same as the images that became pixellated.
    The odd thing is that other images that have not pixellated have the same treatment.  In several places (pages) the images are the same with the same file name but at a different size.
    I have not made this site active yet but these odd problems have made for lots of extra work to sort out.  You can see this site at:  www.fractalfotos.com/debV3/index.html
    Thanks, Tim

  • When Generating  Flash web pages; images files incorrectly reported as missing.

    Using LR 2.2 or 2.3, <br /><Web, Export, (to local directory > <br /><br />As Program executes, <br />in the upper left corner of screen,  LR displays tiny version of image being processed, and path of web image; <br /><br />THEN, <br />upon completion, displays the following error message <br /><br />----<br />Export did not complete successfully.<br />( Window with list of following:)<br /> Original image file is missing: ( complete file path and name for raw image)<br /> etc. <br />-----<br />(even though the files exist at the specified location!)<br /><br />Options selected in generating web page:<br />- Flash gallery<br />- Layout: paginated<br />- large images size: large<br />- thumbnail images size: large<br /><br />Machine data:<br />Lightroom version: 2.3 [539407]<br />Version: 10.5 [6]<br />Application architecture: x86<br />Physical processor count: 8<br />Processor speed: 2.8 GHz<br />Built-in memory: 6144.0 MB<br />Real memory available to Lightroom: 4096.0 MB<br />Real memory used by Lightroom: 616.5 MB (15.0%)<br />Virtual memory used by Lightroom: 1197.2 MB<br />Memory cache size: 801.8 MB<br /><br />Source files (on external firewire drives):<br /><br />  |-- subdirectory 'Show name'<br />     - selected images<br />     - Dress rehearsal<br />     - performance 3<br />     - performance 4<br />     - performance 5<br /><br />My History with bug:<br />Using LR 2.2,  web pages created successfully from 'Performance 5' and 'selected images', but not from others and got error messages as above. <br /><br />Using LR 2.3, web pages for 'performance 4' and 'performance 3' successfully created, but get error message as above for 'Dress rehearsal'. Quit LR, tested catalog integrity and made backup, and tried again, but same error results. <br /><br />All image files, identified above as missing, were available to LR and found in 'Library' and 'Develope'd prior to selection for <Web, Export, ...><br /><br />Other Things I have tried:<br />- test for library integrity, at startup;<br />- Using LR 2.2, I copied the 'problem' images to separate directory and tried to <Web, export, ...> but still got same error message (for the new location)!<br /><br />Is this a User error or mysterious program bug?<br /><br />Comments, work-arounds, suggestions greatly appreciated.<br /><br />Thanks in advance for any help on this. <br />Woody

    I am not expert in these, but please check out the following things and see whether it would solve your issue. (All these changes can be easily rolled back in case I'm wrong :). So make note of what you do)
    As per your httpd.conf, you have chosen an automatic configuration of Apache by OWCI installer itself. What it does is create an imageserver.conf file in a separate directory and these settings will be included in your httpd.conf as you can see in the first line: Include "C:/bea/alui/plumtreeconf/".
    If you check the imageserver.conf in that location, you would find a line like: Alias /imageserver/ "C:/bea/alui/ptimages/imageserver/". This aliases the original path "C:/bea/alui/ptimages/imageserver/" to /imageserver"
    To confirm whether this is done right, check the following:
    1. Acces 'http://<server ip / server name / localhost >/' from your browser
    This should display the Apache home page (as per your httpd.conf, it uses the default port 80; so no port number required)
    2. Access 'http://<server ip>/imageserver/' from your browser
    This should display the directory structure (if its not disabled) inside your 'C:/bea/alui/ptimages/imageserver/' folder. Also confirm that all the subfolders are accessible.
    3. If all the above is right, it means that your imageserver settings are right. Please check your portalconfig.xml for the correct settings: For example, <setting name="HTTPPort"> should be 7001 in your case. If its something else, change it and restart Weblogic for the settings to take effect.
    Hope this helps.

  • Jpeg Image file size for a Downloadable Product

    I'm creating a site in BC for the client to sell digital download copies of their original photographs. The purpose of the product for the consumer would be to use the low res download as a screen save or for viewing in a gallery on a desktop, tablet or smartphone device. BC accommodates such products but I haven't a clue as to what size to upload the image files in the BC Product Details page.
    Does anyone have any relevant information to share?

    If the client intends on selling digital copies of the images, then I would make sure to make the previews small.  Like 600 x 800 small.  If it gets too big people aren't going to be inclined to pay for bigger.
    I usually upload my photos in 1040 or 1280 on social media.  But 1280 looks pretty good on most laptops.  That'll change as screens get denser, but as of now I would think if I was trying to sell images and had previews at 1280 a lot of people would just take the 1280 and run.

Maybe you are looking for

  • Case statement with group by clause

    SELECT STP, CASE WHEN Alternate IS NULL THEN 3 ELSE 4 END as Ind, CASE WHEN Alternate IS NULL THEN 'New Address' ELSE 'New Location' END as Description , Count(*) Rec_Cnt FROM t_Ids group by STP, CASE WHEN Alternate IS NULL THEN 3 ELSE 4 END, CASE WH

  • Attach BP Url via Code

    Hi experts!! I am using cl_crm_documents=>create_with_url to create attachments via URL, in BPs. The problem is that the attachments are uploaded as application/octet-stream, hence i cannot open . When i manually attach URLs to BP they are displayed

  • Difference in incoming orders and sales:

    Hi, I have a doubt while creating Logistics Information system reports, I am getting two columns. 1) Incoming Orders 2) Sales Because in general all incoming orders gets translated into sales, so please highlight what is the difference and why. Regar

  • Opening raw files from Canon G15

    I have a Canon G15 and cannot open raw files using Elements 9 on my Mac laptop which I believe has Mountain Lion but may be only Snow Leopard.  Is there an Adobe patch I should download?  I tried the 8_2 DNG and that didn't work.  Using Lightroom 5 s

  • Satellite P30-145: Don't have an audio device in 'Sounds and Audio devices'

    Hi guys, I've only just fixed one problem with the help of one fantastic member but now I have another! All of a sudden my speakers decide not to work!! I checked the volume etc and alll was fine but when I went in control panel>sounds and audio devi