CSV output does not show speacial characters properly

Hi,
I scheduled a report to generate csv output. Data contains some Czech, French, German characters which are not coming properly in csv. But if generate excel output, I can see it comes properly.
Please help me to resolve. I can not give long instructions to the users to use Import data options, define encoding etc.(available in MSexcel) while open the csv file in order to get coorect characters.
Kind Regards.

UTF-8 encoding is used for CSV output and please make sure you open it in UTF-8 encoding mode of your editor.

Similar Messages

  • 8859-1  PDF does not show french characters.

    Hi All,
    I am stuck in this issue for 2 days now and finally i decided to post it here.
    I have created a custom oracle report(10G) with BI to open in PDF. The XML prolog Value is defined as <?xml version="1.0" encoding="iso-8859-15"?>
    Now when i run the report in R12 the pdf file shows junk character for french characters(É shown as "%o"). These characters are displayed properly if i look at the XML file. When we run that output from the server we get the weird characters but if we take the same output (XML) file and run it locally using desktop publisher the PDF document shows the French characters
    I check the nls_characterset and it is defined as AL32UTF8(which supports french)
    I read some articles they advise to copy fonts from *$FND_TOP/resource* to *$OA_JRE_TOP* and *$AF_JRE_TOP(lib/fonts)* , but it does no work.
    Also, one of the article says to add files in $JAVA_HOME. But i was not able to find JAVA_HOME and the dba says we have $JAVA_TOP and we are not suppose to change anything here.
    we are using EBS R12.1.3
    oracle reports : 10.1.2.0.2
    Any help on this will be appreciated.
    Regards,
    K

    I believe your only option is to setup Pasta
    How to Setup Pasta Quickly and Effectively [ID 356501.1]
    How to Generate PDF Output With UTF8 in R12? [ID 778970.1]
    HTH
    Srini

  • FSG report output does not show column headers (XML Publisher)

    Hi everyone
    Iam required to create a template for an FSG report with 20 columns. Used copy of FSG:Fixed number of columns Template(FSGTEMP) to create the template because i need to do some conditional formatting(need to show negative values in red color).
    here is the problem:
    when i use the template and run the program the output i can see the row data but not the column headers..column headings are blank!
    regarding the conditional formatting, can anybody tell me how to give the condition
    iam able to give the condition for oracle reports but not for FSG reports as i dont see the column name in the 'data field' in conditional format
    Regards
    sam

    Open the report in Edit Mode Click on the reports and in the properties section Uncheck the
    Enable Document Cache Property and your issue should be resolved.

  • NSMutableString getCString misbehaves, does not show some characters

    Hi everyone,
    This is my first time here.
    I have written a small tool for Cocoa / MacOSX 10.5 and I am trying to save a text to a file, but some characters such as # appear as hex 0x0.
    Source: -----
    int len = [results length] * sizeof(char);
    char *buffer = malloc(len);
    [results getCString: buffer maxLength: len-1 encoding: NSWindowsCP1250StringEncoding];
    NSData *dt = [NSData dataWithBytes: buffer length: len];
    [fileManager createFileAtPath: @"/Volumes/MacBackup/results.sh" contents: dt attributes:nil];
    The # and the final 2-3 characters appear as 0x0 in a hex viewer. I have tried almost all encodings, but to no avail. Can anyone tell me how to make it work? Do I have to enter the # directly in the char buffer as ASCII char or am I missing something about the encoder?
    Btw, I am a newb at Mac programming, but I come from a solid Windows programming background, but please don't hold that against me :P.
    Message was edited by: TTDeath
    Message was edited by: TTDeath

    Hi TT, and welcome to the Dev Forum!
    TTDeath wrote:
    I have written a small tool for Cocoa / MacOSX 10.5 and I am trying to save a text to a file, but some characters such as # appear as hex 0x0.
    int len = [results length] * sizeof(char); // <-- need to add one here
    char *buffer = malloc(len);
    The NSString length method doesn't count a terminator; i.e. it's analogous to strlen(), so if you convert an ASCII C string to a NSString object, the return from [results length] will be the same as strlen(source). I'm not sure there wasn't something else going on at your end, since this length error only strips the trailing char from the source string. In any case, the following code should work for you:
    // made from MAC OS X->Command Line Utility->Foundation Tool template
    #import <Foundation/Foundation.h>
    int main (int argc, const char * argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    // insert code here...
    NSLog(@"Hello, World!");
    NSString *results = @"A string with # embedded
    int len = [results length] * sizeof(char) + 1; // <--
    char *buffer = malloc(len);
    BOOL bError = [results getCString: buffer
    maxLength: len encoding: NSWindowsCP1250StringEncoding];
    NSLog(@"getCString returns %d", bError);
    NSData *dt = [NSData dataWithBytes: buffer length: len];
    NSLog(@"dt=%@", dt);
    NSFileManager *fileManager = [NSFileManager defaultManager];
    // I don't recommend testing in a system directory -
    // remember to substitute your home dir name here:
    bError = [fileManager createFileAtPath: @"/Users/Ray/results.sh"
    contents: dt attributes:nil];
    NSLog(@"createFileAtPath returns %d", bError);
    [pool drain];
    return 0;
    // [Session started at 2009-12-05 16:47:41 -0800.]
    // 2009-12-05 16:47:41.045 TT[463:10b] Hello, World!
    // 2009-12-05 16:47:41.048 TT[463:10b] getCString returns 1
    // 2009-12-05 16:47:41.049 TT[463:10b] dt=<41207374 72696e67
    // 20776974 68202320 656d6265 64646564 0a00>
    // 2009-12-05 16:47:41.054 TT[463:10b] createFileAtPath returns 1
    // rays-imac:~ Ray$ cat results.sh
    // A string with # embedded
    - Ray

  • Ps2pdf convert does not show right characters.

    I have a PS file generated from a software system. It has characters è and é which are converted into the \350 and \351.
    When I use ps2pdf to convert this ps file into pdf I get Ł and Ø instead.
    the file is encoded in ISO8859-15 encoding.
    Actual Name : Société Financière
    PS file : Soci\351t\351 Financi\350re
    PDF file : SociØtØ FinanciŁre
    Follwoing is the PS code. Please help me get the right characters on the pdf.
    %!PS-Adobe-3.0
    %%Title: stdout
    %%Creator: idttex 8.00.02.01 Copyright (c) 2007 Intec Telecom Systems PLC
    %%CreationDate: Thu 22 Nov 2012 05:41:33 AM UTC
    %%Pages: (atend)
    %%PageOrder: Ascend
    %%Orientation: Landscape
    %%BoundingBox: 0 0 612 791
    %%DocumentMedia: letter 612 791 0 () ()
    %%DocumentNeededResources: font Courier Helvetica-Bold Helvetica
    %%EndComments
    %%BeginProlog
    %%BeginResource: procset TextCommands
    /idttexdict 209 dict def
    idttexdict begin
    /rna 0 def
    /a{/rna exch def}bind def
    /df{exch findfont exch scalefont setfont}bind def
    /X{/xc exch def}bind def
    /R{xc add /xc exch def}bind def
    /L{xc exch sub /xc exch def}bind def
    /Y{/yc exch def}bind def
    /U{yc add /yc exch def}bind def
    /D{yc exch sub /yc exch def}bind def
    /t{xc yc moveto show}bind def
    /tr{xc yc moveto rna rotate show rna neg rotate}bind def
    /lw{setlinewidth}bind def
    /l0{[] 0 setdash}bind def
    /l1{currentlinewidth 6 mul currentlinewidth 3 mul 2 array astore currentlinewidth 3 mul setdash}bind def
    /l2{currentlinewidth currentlinewidth 2 mul 2 array astore 0 setdash}bind def
    /ln{xc yc moveto rlineto stroke}bind def
    /rb{xc yc translate rna rotate}bind def
    /re{rna neg rotate xc neg yc neg translate}bind def
    /ro{
    rb 0 0 moveto
    1 index 0 lineto
    1 index 1 index neg lineto
    0 1 index neg lineto
    0 0 lineto closepath pop pop
    }bind def
    /ra{
    rb dup 0 moveto
    2 index 1 index sub 1 index neg 2 index 90 0 arcn
    2 index 1 index sub 2 index neg 2 index add 2 index 0 270 arcn
    dup 2 index neg 2 index add 2 index 270 180 arcn
    dup neg 1 index 180 90 arcn closepath pop pop
    }bind def
    /rs{
    gsave [{/moveto load}{/lineto load}{/curveto load}
    {/closepath load}pathforall]cvx
    3 1 roll 2 copy cos mul 3 1 roll sin mul translate
    exec fill grestore gsave 1 setgray fill grestore
    }bind def
    /rf{gsave fill grestore}bind def
    /rl{stroke re}bind def
    /rn{newpath re}bind def
    /sb{.1 .1 scale}bind def
    /se{10 10 scale}bind def
    /boc{gsave sb}bind def
    /eoc{grestore}bind def
    /bos{gsave se}bind def
    /eos{grestore}bind def
    /bod{userdict /start-hook known{userdict begin start-hook end}if}bind def
    /bop{
    save exch
    userdict /bop-hook known{userdict begin bop-hook end}if
    pop boc
    }bind def
    /eop{
    eoc
    userdict /eop-hook known{userdict begin eop-hook end}if
    restore showpage
    }bind def
    /bls{gsave translate 90 rotate}bind def
    /els{grestore}bind def
    /bb{boc}bind def
    /eb{eoc showpage}bind def
    /eod{userdict /end-hook known{userdict begin end-hook end}if}bind def
    end
    %%EndResource
    %%EndProlog
    %%BeginSetup
    %%IncludeResource: font Courier
    %%IncludeResource: font Helvetica-Bold
    %%IncludeResource: font Helvetica
    idttexdict begin
    /f0{/Helvetica 80 df}bind def
    /f1{/Helvetica 70 df}bind def
    /f2{/Helvetica-Bold 80 df}bind def
    /f3{/Courier 80 df}bind def
    /f4{/Courier 100 df}bind def
    /f5{/Helvetica-Bold 90 df}bind def
    /f6{/Helvetica-Bold 100 df}bind def
    /f7{/Helvetica-Bold 70 df}bind def
    /c0{0 0 0 setrgbcolor}bind def
    bod
    %%EndSetup
    %%Page: 1 1
    612 0 bls
    0 bop
    0 a
    f5
    c0 3432 X 5491 Y()t
    f6
    317 R 177 D()t
    f2
    177 X 146 D(Invoice ICA: 14176 Soci\351t\351 Financi\350re)t
    5627 R(Invoice #)t
    f0
    342 R(: 129990000000046)t
    f2
    177 X 80 D(abc)t
    5627 R(Customer VAT #)t
    f0
    622 R(: 123456)t
    f2
    177 X 80 D(Paris, )t
    5627 R(Currency)t
    f0
    351 R(: USD)t
    f2
    177 X 80 D(FRANCE)t
    5627 R(Billing Cycle Date)t
    f0
    676 R(: NOV 08 2012)t
    f2
    676 L 240 D(Page: )t
    f0
    240 R(1 of  2)t
    f5
    2662 L 247 D(BILLING ACTIVITY DETAIL)t
    177 X 95 D l0 4 lw 7554 0 ln
    14 D 7554 0 ln
    f2
    4135 R 97 D(Quantity/)t
    177 X 94 D(Event Code)t
    567 R(Event Description)t
    2305 R(Affiliate)t
    366 R(UOM)t
    942 R(Amount)t
    1152 R(Rate)t
    921 R(Charge)t
    812 R(Total Charge)t
    177 X 36 D 7554 0 ln
    14 D 7554 0 ln
    157 D(Activity ICA: )t
    f0
    498 R(14176  )t
    f2
    267 R(Name: )t
    f0
    267 R(Soci\351t\351 Financi\350re)t
    f2
    177 X 80 D(Collection Method: )t
    f0
    742 R(Clearing)t
    f2
    1894 R(Billable ICA: )t
    f0
    494 R(14176)t
    f2
    177 X 160 D(Service Code: )t
    f0
    556 R(KQ  )t
    f2
    160 R(Name: )t
    f0
    267 R(KQ)t
    f1
    177 X 75 D(2BE56457)t
    567 R(LUO TOTAL CARDS AT QUARTER END)t
    2737 R(Q)t
    1061 R(100)t
    965 R(20.00)t
    926 R(2,000.00)t
    1026 R(2,000.00)t
    f2
    177 X 103 D(Total for Service: )t
    f0
    676 R(KQ KQ)t
    5541 R(2,000.00)t
    1026 R(2,000.00)t
    f2
    177 X 160 D(Total for Collection Method: )t
    f0
    1085 R(Clearing)t
    5132 R(2,000.00)t
    1026 R(2,000.00)t
    f2
    177 X 154 D(Total for Customer: )t
    f0
    765 R(14176 Soci\351t\351 Financi\350re)t
    5452 R(2,000.00)t
    1026 R(2,000.00)t
    f2
    177 X 166 D(Total for Invoice: )t
    6217 R(2,000.00)t
    1026 R(2,000.00)t
    eop
    els
    %%Page: 2 2
    612 0 bls
    1 bop
    0 a
    f5
    c0 3432 X 5491 Y()t
    f6
    317 R 177 D()t
    f2
    177 X 146 D(Invoice ICA: 14176 Soci\351t\351 Financi\350re)t
    5627 R(Invoice #)t
    f0
    342 R(: 129990000000046)t
    f2
    177 X 80 D(abc)t
    5627 R(Customer VAT #)t
    f0
    622 R(: 123456)t
    f2
    177 X 80 D(Paris, )t
    5627 R(Currency)t
    f0
    351 R(: USD)t
    f2
    177 X 80 D(FRANCE)t
    5627 R(Billing Cycle Date)t
    f0
    676 R(: NOV 08 2012)t
    f2
    676 L 240 D(Page: )t
    f0
    240 R(2 of  2)t
    f5
    3007 X 247 D(BILLING ACTIVITY SUMMARY)t
    177 X 95 D l0 4 lw 7554 0 ln
    14 D 7554 0 ln
    f2
    77 D(Service Code)t
    567 R(Service Description)t
    6074 R(Charge)t
    425 R(Total Charge)t
    177 X 37 D 7554 0 ln
    14 D 7554 0 ln
    156 D(Activity ICA: )t
    f0
    498 R(14176  )t
    f2
    267 R(Name: )t
    f0
    267 R(Soci\351t\351 Financi\350re)t
    f1
    177 X 76 D(KQ)t
    567 R(KQ)t
    6077 R(2,000.00)t
    638 R(2,000.00)t
    f2
    177 X 157 D(Total for Customer: )t
    f0
    765 R(14176 Soci\351t\351 Financi\350re)t
    5840 R(2,000.00)t
    638 R(2,000.00)t
    f2
    177 X 240 D(Total for Invoice: )t
    6605 R(2,000.00)t
    638 R(2,000.00)t
    eop
    els
    %%Trailer
    eod
    end
    %%Pages: 2
    %%EOF

    You need to reencode the needed fonts to ISOLatin1Encoding to match the encoding used in your PS file.
    How to do this, see the PLRM, rd. edition, section "5.9.1 Changing the Encoding Vector" on page 349 ff.
    As the file states that is has been created by an application "idttex", you should file a bug report
    to the vendor of that application.
    Helge

  • Bursted Output does not show the data.

    I have bursted a report to shared location. The output file gets bursted to the destinated location but it is empty without data.when i click view i am able to see the output with data. i have split the data and delivered to 3 folders in shared drive. am getting the empty
    files in all 3 folders.
    am using BIP 10.1.3.3.1 version.
    Kindly help me in resolving this issue.
    Regards,
    Vinoth.

    10.1.3.3.1 version is very old version, I would suggest to try against latest version.

  • Technical: Port Forward Does Not Show Requesting IP Properly

    I have a server that blocks failed attempts to login via FTP but after my switch to the AEBS, I realized that when the unit forwards requests through to my server, it forwards the request from the router's IP itself of 192.168.1.1 instead of showing the IP number of the requesting entity. As such, when my server goes to block the failed login, it blocks my router entirely, which prevents any legitimate logins from working unless I remove the 192.168.1.1 address from the blocklist on my server. Is there some kind of way to adjust the AEBS to show the appropriate IP number during the port forwarding process?
    Message was edited by: Chuck H.

    I figured it out.  I'm trying to access the port from my work network and the firewalls are blocking the outbound traffic on that port.  I just tried an accessing the iport from my mobile phone and I was able to get a reply.  So the lesson learned is try and access the ip/port from another network because there may be a firewall blocking your access.

  • Headphone audio does not work.  The external output does NOT appear in system preferences at all

    It does NOT have a red light.  I have had that issue before ad was able to fix it.  My external output does NOT show up in my system preferences at all.

    Pram reset
    http://support.apple.com/kb/ht1379
    (Try a few times as you may not get the correct sequence 1st time)
    also plug headphones in a few times in case switch sticking

  • RH 5.5 output does not work properly in RH 7

    I inherited a WebHelp project created in RH 5.5. I have RH 7.
    When I open the files, make modifications, and recompile them, the
    output does not work properly once I put it on our hardware box.
    Those infamous red squares are present and there seems to be a lot
    of .js files being called, but even when I do a straight 1:1 copy
    and include all the files, and delete the red squares, it still
    doesn't work right.
    Also, oddly, when I open the original (5.5) files in my v7 --
    even without making ANY changes at all -- the TOC has
    disappeared.

    When you view the upgraded source files in RH7, are the red
    squares seen the editor?
    When you generate to a local folder and view the output
    there, are the red squares present? Are there any other issues with
    the generated output?
    Have you applied all three patches to RH7? Help About should
    show 7.0.3.

  • I transferred itunes library from old PC to new PC. The content all shows when I launch iTunes on the new PC now. The previous content does not show in iTunes but folder still looks like it is on hard drive on new PC. Suggestions on how to properly merge?

    I transferred itunes library from old PC to new PC. The content all shows when I launch iTunes on the new PC now. The previous content does not show in iTunes but folder still looks like it is on hard drive on new PC. Suggestions on how to properly merge?

    Before you connect any device to a new library go to the Devices tab of the the preferences panel via Edit > Preferences (Windows) or iTunes > Preferences (Mac) and ensure the box next to Prevent iPods, iPhones, and iPads from syncing automatically is ticked. You can now safely connect the device to your computer without the danger of media being automatically deleted or overwritten.
    To get all your content off your connect your iPad to your new computer.
    Then use a 3rd party piece of software to transfer your content
    I have found Senuti useful but there are others listed in the article I linked to in a previous post.
    https://discussions.apple.com/docs/DOC-3991
    That will let you transfer your non purchased content
    For Purchased content log in to iTunes on the new computer
    In Itunes Store click on Purchased under the Quick Links section on the right.
    Download any music by clicking on the cloud button

  • After updating to Yosemite Finder does not show anymore office docs in recent history. Everything else ist displayed properly. Any idea? Thanks :=)

    Hi there,
    after updating to Yosemite the Finder does not show anymore office docs in recent history. Everything else ist displayed properly. I can see recent used apps or files but not the word files (which i use mostly) Any idea? Thanks :=)

    Hi there,
    after updating to Yosemite the Finder does not show anymore office docs in recent history. Everything else ist displayed properly. I can see recent used apps or files but not the word files (which i use mostly) Any idea? Thanks :=)

  • Fiscal Year / Periods does not show properly in WebI and compunding

    Hi,
    I have few reports where I am using Fiscal Year /Period as filter.
    I have created a Universe on the top of a SAP BI Query and did not do any customization.
    Then I created a WebI report. In this report I created various filters beside Fiscal Year / Period. When I run report, filter window opens. I can select all other filters but when it comes to Fiscal Year / Period it does not show me the values I want to see. It shows AUG 0001, APR 0025 etc. I want to see AUG 2010, MAR 2009 etc so that I can select them and get the data of the required Fiscal Year / Period. In Cube I have the required data. If I select MAR 0010 etc I donu2019t get any data.
    On the other hand if I put fiscal Year / Period in columns or rows it shows the right value.
    If also run SAP BI Query and Fiscal Year / Period in Variable then on variable screen I can see the right value from where I can select and get the required result.
    Do I have to do any step at Universe level or something else?
    It seems that Fiscal Year / Period is compounding.
    Is there any help?
    Thanks
    Bashir Awan

    Ingo,
    for thanks for igniting my thoughts in this regards.
    Yes these values do exist in SAP BW.
    It is some how compunding the values at filter level.
    It does not let me see the whole value when filter screen popup in BOBJ.
    In SAP whole value shows when variable screen popup, I see three columns Fiscal Year / Period. Text, Posting Period Key, and Posting Year Key.
    Fiscal year / Period Text which shows Aug 2009, Posting Period Key which shows our period 1 to 16, and Fiscal year key which shows 2009 etc.
    Is there any setting in BOBJ which compunds the year for variable screen so that we may see the whole values for filters?
    thanks

  • Satellite Pro U200 - External VGA monitor does not show any output

    I have bought this device as used from ebay. It is working fine except that the External VGA connection does not work. I am using win 7 and have it does recognize the external display correctly and I can configure it as an extended display. However the external display does not show anything. The external VGA monitor is fine as it works with other Laptop machines. I have tried using UBUNTU Live CD on this machine and tried to make the external display work (and it can also recongize the external display and configure it) but there is no picture. I also connected the external display to the vga port and then re-booted the machine but still no picture. I have tried changing the bios settings for the display as well but all my actions point to a hardware fault.
    I am not sure if it is a manufacturing fault ? Do you know if this issue has been reported earlier to you. Is there a product recall issued for this?
    Please advise as I need to connect this external display but am sure that it is a hardware fault with your device.

    Hi buddy,
    Have you already tested it with factory settings? I mean the preinstalled Windows from Toshiba with all drivers and tools. If you have the Toshiba recovery disk you should boot from this disk and install Windows with all drivers and tools.
    Furthermore you can switch between external and internal monitor using FN+F5 key combination. Does this work?

  • Adobe Creative Cloud does not show all my apps as registered.

    Adobe Creative Cloud properly shows my Adobe Photoshop CS6 as registered.  However, it does not show my Adobe Acrobat XI Pro, or my Adobe Photoshop Lightroom 4.4 as registered.  How can I get these programs to be properly registerd as "MY APPS" in Adobe Creative Cloud?  I am running Windows 8 and have had photoshop for a number of years. I installed Acrobat XI Pro in December, but it has never been recognized in Adobe Creative Cloud as registered.

    Hey Pete,
    I'm not sure why Acrobat XI is not recognized. It is on my system. Maybe try uninstalling and reinstalling it.
    You can uninstall through the OS
    Control Panel > Programs & Features
    and then reinstall it through the Creative Cloud app or https://creative.adobe.com/products

  • My itunes in pc fails to secure link with itunes store it shows the process bar it automatically quits the process it also does not shows any on the screen. i am using windows xp service pack 3. what shoul i do?

    my itunes in pc fails to secure link with itunes store it shows the process bar it automatically quits the process it also does not shows any on the screen. i am using windows xp service pack 3. what shoul i do?
    Diagnostics test
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    ECS G31T-M7
    iTunes 10.5.2.11
    QuickTime 7.6.9
    FairPlay 1.13.37
    Apple Application Support 2.1.6
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.97
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 0012ABAC07F3CCB0
    Current user is an administrator.
    The current local date and time is 2011-12-31 14:06:21.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is not supported. (16005)
    Video Display Information
    Intel(R) G33/G31 Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {7599FAD1-1BB9-4AC6-80AF-404253DC519E}
    Description:            Atheros L2 Fast Ethernet 10/100 Base-T Controller - Packet Scheduler Miniport
    IP Address:             192.168.1.5
    Subnet Mask:          255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:      Yes
    DHCP Server:         192.168.1.1
    Lease Obtained:     Sat Dec 31 13:46:09 2011
    Lease Expires:       Tue Jan 03 13:46:09 2012
    DNS Servers:         192.168.1.1
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    SSL 3.0 Support:     Enabled
    TLS 1.0 Support:     Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was unsuccessful.
    The network connection timed out.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-12-31 14:00:02.
    **** Device Connectivity Tests ****
    iPodService 10.5.2.11 is currently running.
    iTunesHelper 10.5.2.11 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    Connected Device Information:
    rawkiss’s iPhone, iPhone 3G running firmware version 4.0
    Serial Number:       86931UEAY7H
    **** Device Sync Tests ****
    Sync tests completed successfully.

    I have found a fix after doing additional research through this forum. Tech Note #328730 addresses this problem and it works for Photoshop Album 3.2 even though it was written for release 1.0.
    Here is a link that will take you directly to the Tech Note:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=328730
    When using this fix the Tech Note indicates:
    "Imported image data and tags are lost when you re-create the My Catalog.psa file, so you need to reimport images and reapply any tags"
    however it did retain the captions (at least it did for me).

Maybe you are looking for

  • Unable to connect second monitor

    Hi everyone I have recently bought a refurbished imac and I still have my old Dell monitor that I'd like to use as a second display alongside my imac. I've purchased the thunderbolt to vga adaptor to connect the two together but my monitor is always

  • Save and load variables in java

    Hi , I need a help about Save and load . I have a project(tool) which have JText, JRadioButton and other things also. I want to save all the changes for the next execution ( fresh startup or fresh bring up of the tool). Please let me know what will b

  • Disabling ipv6 in iOS 8 and/or Airport base station

    I recently replaced my iPhone 4 running iOS 7 with an iPhone 6 running iOS 8.0.2.  The iPhone 4 never had any problem accessing wifi, whether at home, at work, or at various other locations. Ever since getting the iPhone 6 I've been unable to get the

  • Hide selection screen  in BDC

    Hi Experts, i created a bdc for VA01 transaction. i use include bdcrecx1 in my code every time while i run the prog it shows a selection screen to select generate session or call transaction methode, but i want to hide that screen for user by automat

  • Event for input validation in custom table (table maintenance generator)

    Hello all, I look for a solution to execute an event after the modification of a table field of a custom table to validate the user's input. I already tried event 07 (Execution : Before correcting the contents of a selected field) of the table mainte