Print error report

Hello!
When I compile the java pgm i have an error report, which is more then one page.
Is there are a way to print it out.
Thanks

javac -Xstdout
Send error messages to stdout instead of stderr. This makes them easier to redirect to a file in Windows. For some reason this is no longer supported under JDK 1.3, (a result of intercorporate sniping at Microsoft?) It is supported with oldjavac.exe.
You can write your own java solution:
import java.io.*;
public class Errout
{  public static void main(String[] args) throws IOException
{  Process p = Runtime.getRuntime().exec(args);
BufferedReader err
= new BufferedReader(new InputStreamReader(p.getErrorStream()));
String line;
while ((line = err.readLine()) != null)
System.out.println(line);
Then execute the following command:
java Errout javac MyProg.java | more
java Errout javac MyProg.java > errors.txt
if you want to log all errors, then change the
System.out.println(line);
BufferedWriter bw = new BufferedWriter( new FileWriter("log.err") );
bw.write( line );
bw.newLine();
and later on, bw.flush(); and bw.close();
and catch exceptions.
good luck!

Similar Messages

  • Error message when trying to view/print Crystal reports in B1

    I get the following Error message when trying to view/print crystal reports in SAP B1/Crystal Reports Integration Tool for SAP Business One:   
    " Could not load file or assembly 'Crystal Decisions Windows Forms, version=12.0.2000.0, Culture=neutral, Public Key Token=692fbea551e1304'  or one of its dependencies.  The system cannot find the file specified.  ????

    Hi
    Common issues for this :
    1. Once you install crystall add on ,you need to go to Crystal report Administration >Account setup .
    Put on the user name and password and click on creating ext tables
    Try then running the report .
    If not the case ,
    make sure you install runtime .
    You need :
    1.Crystal report basic from SAP download -(Not necessary if you want only report viewer >
    2.You need to have crystal integration addon (I think service pack is SP1)
    3.Make sure you have runtime install
    When you are installing ,make sure you restart your PC before you do or remove temporary file s
    Hope this solves your issue
    Bishal

  • Error While Printing the Report

    Post Author: saqib
    CA Forum: .NET
    HI All,I have joined this forum recently. I found this forum so helpful. I have one query which is: I am using crystal report 10 with Dot Net 1.1, I have created one web report which consists of 19 pages. Once i press the print button on the report after previewing it shows me the error reporting screen of windows. I have checked in event viewer it gives me the following error detail:The description for Event ID ( 1000 ) in Source ( Microsoft Internet Explorer ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: iexplore.exe, 6.0.2800.1106, printcontrol.dll, 10.0.0.533, 0003bb45. Can any one helps me as i am totally stuck in that. Thanks in advance.  

    Try the following if your printer is a network printer
    1. Add Printers - select Local Printer
    2. In the Add Printer wizard, select "create a new port" option and select "TCP/IP" as type
    3. Write the IP address of the network printer in the "Add standard TCP/IP Printer Port wizard". The port name becomes IP_<ip addr>. Click Next.
    4. Select the printer and printer type in "Add Printer" wizard.
    5. Select a driver and Write a printer name. This completes the setup. Use this printer name to print from Oracle reports.
    Hope this helps..
    Yogesh
    I am getting this error message while printing the report on Network Printer.
    "REP-1849: Failed while printing"
    Reports Server is not installed on my machine.
    On shared printer, it has no problems.
    Platform is Win2000. Report Builder 6.0.8.11.3
    Plz help !
    Thanks in advance !

  • Error - Printing a report directly to printer

    Hi,
    i'm using oracle forms 9i and i'm trying to print a report directly to printer. I using the code above:
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_SERVER,GetReportTnsName);
    IF ReportDesType = 'CACHE' THEN
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_DESTYPE,CACHE);
    ReportServerJob:=RUN_REPORT_OBJECT(ReportId, PList);
    rep_status := report_object_status(ReportServerJob);
    IF rep_status=’FINISHED’ THEN
    JobId := substr(ReportServerJob,length(GetReportTnsName)+2,length(ReportServerJob));
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid'||JobId||'?server='||GetReportTnsName,'_blank');
    ELSE
    message ('Error’);
    END IF;
    -- logic for sending report directly to printer
    ELSIF ReportDesType = 'PRINTER' then
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_DESTYPE,PRINTER);
    SET_REPORT_OBJECT_PROPERTY(ReportId,REPORT_DESNAME,:parameter.p_print);
    ReportServerJob:=RUN_REPORT_OBJECT(ReportId, PList);
    rep_status := report_object_status(ReportServerJob);
    IF rep_status=’FINISHED’ THEN
    message ('Report sent to printer successfully');
    ELSE
    --handle errors
    message ('Error’);
    END IF;
    end if ;
    i get this error :
    REP-50157: Erro no envio do ficheiro para a impressora lp65. Sair com o código de erro 64
    NEED HELP !!
    Regards,

    The printer has to be known on the server where the Reports service runs.
    Also, the user who runs the Reports service has to have access to that printer. If you are running on Windows, Reports Service runs as Local system by default. Change that to a real (domain) user, who has access to the printer.

  • Crystal Report Print Error

    Hi I am having the strange issue.
    When my application is running as windows service, the RAS engine is not printing the report.
    I am getting the below error.
    //Code Snippet
         PrintReportOptions printOptions = new PrintReportOptions();
         printOptions.setPrinterName(printername);
         printOptions.setPaperSource(PaperSource.auto);
         printOptions.setPaperSize(PaperSize.paperLetter);
         printOptions.setNumberOfCopies(1);
         printOptions.setCollated(false);
         rcd.getPrintOutputController().modifyPageMargins(850, 250, 250, 250);
         //Print report.
         rcd.getPrintOutputController().printReport(printOptions);
    Any one could help me on this?
    Thanks
    Sumathi
    Msg:java.awt.print.PrinterAbortExceptionStack:com.businessobjects.crystalreports.viewer.core.f.print(Unknown Source)
    sun.print.RasterPrinterJob.printPage(RasterPrinterJob.java:1936)
    sun.print.RasterPrinterJob.print(RasterPrinterJob.java:1431)
    com.businessobjects.crystalreports.viewer.core.f$a.a(Unknown Source)
    com.businessobjects.crystalreports.viewer.core.f.a(Unknown Source)
    com.businessobjects.crystalreports.printer.bean.a.ck(Unknown Source)
    com.businessobjects.crystalreports.printer.bean.ReportPrinter.print(Unknown Source)
    com.businessobjects.crystalreports.printer.bean.ReportPrinter.print(Unknown Source)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)
    com.crd.report.crystal.CrystalReportUtil.exportReport(CrystalReportUtil.java:2094)
    com.crd.report.biz.CRDReportingFactory.exportReport(CRDReportingFactory.java:336)
    com.crd.report.app.ReportingImpl.generateReport(ReportingImpl.java:115)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    com.crd.services.ServiceProxyFactory$LocalHandler.invoke(ServiceProxyFactory.java:374)
    $Proxy19.generateReport(Unknown Source)
    com.crd.exporter.router.DefaultReportWriter.generateReport(DefaultReportWriter.java:50)
    com.crd.exporter.router.Router.route(Router.java:286)
    com.crd.exporter.router.Router.dispatchPackage(Router.java:191)
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException: Report could not be printed.---- Error code:-2147467259 Error code name:failedStack:com.businessobjects.crystalreports.printer.bean.a.ck(Unknown Source)
    com.businessobjects.crystalreports.printer.bean.ReportPrinter.print(Unknown Source)
    com.businessobjects.crystalreports.printer.bean.ReportPrinter.print(Unknown Source)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)
    com.crd.report.crystal.CrystalReportUtil.exportReport(CrystalReportUtil.java:2094)
    com.crd.report.biz.CRDReportingFactory.exportReport(CRDReportingFactory.java:336)
    com.crd.report.app.ReportingImpl.generateReport(ReportingImpl.java:115)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    com.crd.services.ServiceProxyFactory$LocalHandler.invoke(ServiceProxyFactory.java:374)
    $Proxy19.generateReport(Unknown Source)
    com.crd.exporter.router.DefaultReportWriter.generateReport(DefaultReportWriter.java:50)
    com.crd.exporter.router.Router.route(Router.java:286)
    com.crd.exporter.router.Router.dispatchPackage(Router.java:191)

    Hi,
    Can be a permissions issue.
    Try giving the ASPNET account full control on Temp folder :
        . Right-click the folder and select 'Properties'.
        . Go to the 'Security' tab and click the 'Add' button.              
        . Select the 'ASPNET'. Click 'ADD'. Click 'OK'.
        . Check 'Full Control' from 'Permissions for 'ASPNET'.   
    Sincerely,
    Nikhil Dharme

  • When printing the report , it will show an error

    Post Author: tramp168
    CA Forum: General
    I use crystal report2005 in C#2005 to design several reports, all the reports can be shown normally when previewing on the all user computer, and the reports can be printed on most of user's PCs, but two users can't print the reports,  when printing,it will show below error:
    Error in file c:\docum~1\..............*.rpt
    the request could not be submitted for backgroud processing.
    how to handle the issue.
    thanks all in advance!

    Post Author: V361
    CA Forum: General
    do the two users who can not print, have the same printer types installed as those that the report does print on ?  (May need to add a NEW printer definition to the failing computers, and see if the report works)

  • Report: to see the Invoices with Printing Errors

    Hi.
    Please help us in getting the report: to see the Invoices with Printing Errors
    The problem is that, at first there has been a problem and the invoice was not printed but we did not notice that it was not printed.
    There has to be a report, where we can see the invoices with printing errors.
    Thanks,
    Amar

    Hi,
    You can use the the standard Tcode:VF31.
    Process the record if it has errors the line turns to red.Select the check box and click on the Log(Shift+f6)
    You will be able to see the error messages for the output type:
    Regards,
    Saju.S

  • PDF printing error in some reports

    Hi,
    I am using apache-tomcat-6.0.26 + cocoon-2.1.11 as my PDF print server for Apex. I tested the server and found out that, for simple reports with very limited parameters, PDF download worked find. However, for reports that have certain parameters, it said something like "Adobe Reader cannot open the file because it is either not a supported file type or file is damaged...".
    Also, how can I change the memory size to 512 of Tomcat on Windows?
    Any help?
    Thanks.
    Andy

    Hi Andy,
    Do the parameters that you enter into the report generate any result set?
    I don't really know what is causing the error you experiencing but I found that sometimes I would get a similar error when I attempted to print a report to PDF that contained no data (although I was using BI Publisher). Not sure if this has something to do with it...
    Alternatively, there could be characters within the word document, like brackets (), that could be causing the issue. I think it still causes an issue even if it is in the data itself.
    I would start off with a simple report and then add a little bit of functionality at a time, and then test, to work out which part of the report is causing you grief.
    Amanda.

  • Unhandled COMException Message: No Error. during printing some reports, extend Exception Info

    Hi,
    i'm using Crystal Reports for VS version 13.0.13.1597 with Visual Studio 2013
    Unfortunately I get a COMExeption when trying to Print some reports after previously displaying a preview using the CrystalDecisions.Windows.Forms.CrystalReportViewer Component.
    System.Runtime.InteropServices.COMException was unhandled by user code
      HResult=-2147483648
      Message=
    No Error.
      Source=rptcontrollers.dll
      ErrorCode=-2147483648
      StackTrace:
           at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetPage(PageRequestContext pPageRequestContext)
           at CrystalDecisions.ReportSource.EromReportSourceBase.GetPage(PageRequestContext pageReqContext)
           at CrystalDecisions.CrystalReports.Engine.FormatEngine.QueryPageSettingsEventHandler(Object sender, QueryPageSettingsEventArgs e)
           at System.Drawing.Printing.PrintDocument.OnQueryPageSettings(QueryPageSettingsEventArgs e)
           at System.Drawing.Printing.PrintDocument._OnQueryPageSettings(QueryPageSettingsEventArgs e)
           at System.Drawing.Printing.PrintController.PrintLoop(PrintDocument document)
           at System.Drawing.Printing.PrintController.Print(PrintDocument document)
           at System.Drawing.Printing.PrintDocument.Print()
           at CrystalDecisions.CrystalReports.Engine.FormatEngine.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, PrintLayoutSettings layoutSettings, Boolean reformatReportPageSettings)
           at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, PrintLayoutSettings layoutSettings, Boolean reformatReportPageSettings)
           at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, Boolean reformatReportPageSettings)
           at Soloplan.CarLo.Printing.PrintAdapterCrystalReports2011.Print() in c:\project.net\Soloplan\CarLo\Printing\PrintAdapterCrystalReports2011.cs:Line 1528.
      InnerException:
    As you can see the error message is a bit short on information what went wrong, especially the Message: No Error.
    Is there any possiblity to extend the information on this exception?
    The behavior is reproducible with some reports, while others work just fine, and even with the problematic reports it only when the call of the Print function is done while the preview is shown.
    I hope someone can point me in the right direction.
    Thanks
    Johannes

    Wow. It's been a long, long time since I've seen CR throw error: no error (like v. 4.5 or so...). Used to chuckle about it - I think I even saved a screenshot of it
    It will be good to have more info on this:
    Win or web app?
    Printer used.
    Printer driver name and version.
    The reports that do not work throw the error consistently?
    Code used to print the reports.
    Is this a threaded app?
    Do you get the issue printing from the viewer?
    Do you get the issue printing from the designer viewer?
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow me on Twitter

  • Get error every time I try to print a report.

    Keep trying to print a report and it tells me an error occurred. I have restarted the service and server with no luck. 
    This topic first appeared in the Spiceworks Community

    - OSX and Pages versions:
    OSX 10.9.2
    Pages 5.2 (update is most recent)
    - is iCloud file sync On for Pages
    Yes. But doesn't seem to affect printing (both iCloud files and files from computer wouldn't print)
    - copy of a document shows an error in Pages when printed
    I don't really understand this. No errors appear in Pages or on the computer/printer dialog. The error occurs at the printer.
    - details about workflow before the error occurs; was the file edited
    Sometimes yes, sometimes no. No consistent workflow patterns that result in this error. The only consistency I have found thus far is files with more than one page.

  • Error in Printing Crystal Report Directly to Printer using SDK Code

    Hello ,
    I am trying to print a crystal report created in SAP Crystal Reports 2008 through SDk Code using one parameter
    as (Document Number).But While running the Code the Report is not getting printed and also the system is
    not able to fetch the correct data in the report using the supplied parameter .
    I am using Visual Studio 2005 Crystal Report dll s in my code :-
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports CrystalDecisions.CrystalReports
    Imports System
    Imports System.Data.SqlClient
    Imports System.IO
    For Clarification i am pasting my code below :-
                Dim oRpt As ReportDocument
                oRpt = New ReportDocument
                oRpt.Load(Path)
                With crConnectionInfo
                    .ServerName = Server
                    .DatabaseName = Database
                    .UserID = User
                    .Password = Password
                End With
                CrTables = oRpt.Database.Tables
                For Each CrTable In CrTables
                    crtableLogoninfo = CrTable.LogOnInfo
                    crtableLogoninfo.ConnectionInfo = crConnectionInfo
                    CrTable.ApplyLogOnInfo(crtableLogoninfo)
                Next
                oRpt.ParameterFields("Document Number").CurrentValues.AddValue(Parameter)
                If Printer <> "" Then
                    oRpt.PrintOptions.PrinterName = Printer
                End If
                oRpt.PrintToPrinter(Copies, False, 0, 1)
            Catch ex As Exception
                SBO_Application.MessageBox(ex.Message)
            End Try
    Please suggest me what i have to do in my code to print the report with correct data in report.
    Thanks & Regards,
    Amit

    k

  • Error according printing html report

    I bulid a vi to print HTML report but I have problem printing this report .
    I try ever to used some example which national Instrument bulid , such as Report Generation > Text
    Report, but ever in this example I couldn't print the file (HTML).

    Wisam,
    Could you tell us what procedure are you following to run that example? and also what version of LabVIEW you have?
    The way you have to run that example (Text Report.vi) is that when you open it, in the control that reads: "Report Type" you select HTML, and also in the control that reads "HTML Save Path" you set the path like for example "C:\test1.htm", now run it and you should have now the HTML format type report. I believe that you also have in that same directory of examples another one called : Example HTML Report Report, that one also shows how to print a report to an HTML file. Try the example you mention setting up the controls that I wrote above and it should work. If not please contact us and we can try to send you an original example and see if i
    t works. You can do it by this same means or by direct contact ( www.ni.com/ask ).
    Good luck!...
    Nestor Sanchez
    Applications Engineer
    National Instruments
    Nestor
    National Instruments

  • Run time error while printing ALV report

    Hi,
    At the time of printing a report  output we get a dump GETWA_NOT_ASSIGNED.
    The printer used here is LOCL.
    The length of the report increases dynamically according to no. of months given in range.
    In report , there are 3 static columns & no. of columns increases by 2 for each month. System is printing the report for 1 month ie. (3+2) columns . but if no. of months increased to 2 ..... no. of columns also increases by 2.... in this case system is giving dump.
    Please help.
    Thanks in advance,
    Vijeta

    Hi
    1. check the fieldcat ( ie. CURR field without WAERS field.. )
    2. check if you want to use colours at calling the ALV.. but you don´t fill the deep structure for the colours...
    bestreg Robert

  • Crystal Report Export & Printing Error in Windows 7 (SAP B18.81 PL09)

    Dear Experts,
                          I have installed B1 Client on windows 7 pro every thing working fine but when exporting or printing crystal report B1 goes on not responding. These crystal reports are part of Add on.
    In Standard B1, exporting of Crystal Report is  done successfully but when printing this report B1 crash. Facing this issue on all machines including server.
    Have any one idea regarding this issue.
    Regards
    Rahil Hassan

    Hi Nitin,
    For better advice please post you report related query to the Reporting Forum.
    [Reporting and Printing;
    Regards,
    Rakesh N

  • My Office for Mac keeps getting "Error Reporting" and I find it very hard to open without it closing and "Error Report" I even went through Microsoft support and look for the plist file and keep it on my desktop which solves the problem temporarily.

    Process:         Microsoft Error Reporting [275]
    Path:            /Library/Application Support/Microsoft/*/Microsoft Error Reporting.app/Contents/MacOS/Microsoft Error Reporting
    Identifier:      com.microsoft.error_reporting
    Version:         2.2.7 (2.2.7)
    Build Info:      Unknown-110707~0
    Code Type:       X86 (Native)
    Parent Process:  launchd [112]
    Date/Time:       2012-01-09 23:50:57.914 +0800
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          27616 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  394 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      C05EBED5-CDE0-4A98-9B3B-BD69496D018F
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Library/Application Support/Microsoft/*/Microsoft Error Reporting.app/Contents/MacOS/Microsoft Error Reporting
        __TEXT                 0000000000001000-0000000000062000 [  388K] r-x/rwx SM=COW  /Library/Application Support/Microsoft/*/Microsoft Error Reporting.app/Contents/MacOS/Microsoft Error Reporting
    Application Specific Information:
    objc[275]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x90b85f29 mig_strncpy + 27
    1   com.apple.framework.IOKit               0x92c9a269 io_registry_entry_from_path + 123
    2   com.apple.framework.IOKit               0x92c46c99 IOServiceGetMatchingServices + 51
    3   com.apple.MultitouchSupport.framework          0x956379ed _mthid_copyAvailableDevicesInfo + 268
    4   com.apple.HIToolbox                     0x99bd68c6 TISHardwareSupportsGestureHandwriting + 47
    5   com.apple.HIToolbox                     0x99bd66c2 SyncHandwritingHotKey + 20
    6   com.apple.HIToolbox                     0x99bd5840 _FirstEventTime + 1474
    7   com.apple.HIToolbox                     0x99bcd95f RunCurrentEventLoopInMode + 30
    8   com.apple.HIToolbox                     0x99bd4cc6 ReceiveNextEventCommon + 168
    9   com.apple.HIToolbox                     0x99bd4c0a BlockUntilNextEventMatchingListInMode + 88
    10  com.apple.AppKit                        0x95661040 _DPSNextEvent + 678
    11  com.apple.AppKit                        0x956608ab -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    12  com.apple.AppKit                        0x9565cc22 -[NSApplication run] + 911
    13  com.apple.AppKit                        0x958f118a NSApplicationMain + 1054
    14  com.microsoft.error_reporting           0x000039d9 0x1000 + 10713
    15  com.microsoft.error_reporting           0x000033de 0x1000 + 9182
    16  com.microsoft.error_reporting           0x00003305 0x1000 + 8965
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x90b8890a kevent + 10
    1   libdispatch.dylib                       0x9563fc58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9563e6a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x90b8802e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b79cccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b79e6fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x90b8802e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b79cccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b79e6fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x90b8802e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b79cccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b79e6fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x00000001  ecx: 0x00000200  edx: 0x00000000
      edi: 0x00000000  esi: 0x92c42236  ebp: 0xbffff204  esp: 0xbffff1f8
       ss: 0x00000023  efl: 0x00010283  eip: 0x90b85f29   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 2

    Hi croatia2014,
    Thanks for visiting Apple Support Communities.
    If you have photos in your Photo Stream that you want to save to your iPad, you can save them to your Camera Roll using this method:
    Manage My Photo Stream contents. In the My Photo Stream album, tap Select.
    Share, print, copy, or save photos to your Camera Roll album:  Select the photos, then tap .
    You can find these steps in the iOS 7 user guide here:
    My Photo Stream
    http://help.apple.com/iphone/7/#/iphbfeb468fc
    You may also find this advice useful:
    If there are any photos in My Photo Stream that you want to keep, save them to your Camera Roll, then back up your Camera Roll and other data using iCloud or iTunes.
    From:
    iCloud: My Photo Stream troubleshooting
    http://support.apple.com/kb/TS3989
    All the best,
    Jeremy

Maybe you are looking for