Crytal report export problem

hi All,
When im trying to export my reports (doesnt matter what format of report such as .pdf, excel, rtf, .doc)  this error occured:
the report was not exported. the selected export format may be disabled on the server
FYI, currently this fuction is working fine but seems this two days this error has occured,
Can anyone help me or have any idea what acctually happened?
Thanks

Hi,
Which version of Crystal report you are using??
If you are using web server, What is the version for that???
Your Issues may due to the missing of some reqired .Dll's
Try to Register these two dlls in the server, then restart the server and check,
ExportModeller.dll
crtslv.dll
And see the similiar link: c2012888

Similar Messages

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • Crystal Report Export Problem

    Hi,
    I have an add-on that could be use to print a few reports.
    I created a SAP Form with UI API that contains parameters then I have a Windows Forms with the CrystalReportViewer. My problem is that,standard export function of the Viewer did not work. I receive a message about a Single Thread Appartment.
    I think that this problem come out beacause the add-on is not a standard WinForm Application.
    Have you any Idea to solve this problem?
    Ciao
    Igor

    Hi Edward,
    thanks for your fast answer but I can not understand how this pice of code works....
    System.Windows.Forms.Form crystal = new CrystalReportViewer();
                      System.Windows.Forms.Form cr = new System.Windows.Forms.Form();
    First line did not work because i can not cast from Windows.Forms.Form to CrystalreportViewer.... Second line
    is never used in the sample...
    My problem, is not how to display a form with the ReportViewer... this work fine... the problem i that i can not use the export function that is itegrated into the ReportViewer.. Any other idea???
    Igor

  • BI Report Export Problem - Selection data missing

    Hi all,
    I´m pretty new to Web reports and now I have a problem which might be easy to solve for you experts.
    The problem appears when exporting a report. If the user exports the report to PDF or Excel, the data is exported correctly but the selection settings, that the user set, are missing. Only the field name are shown, but not the selected item. Its somewhat of a cosmetical problem, but important to the users.
    Interestingly enough, we use many other templates which have the exact same functionality and where it works correctly.
    I compared the XML on code on those templates, but there is no major difference.
    Here is the important code (at least in my understanding) of the template:
    <bi:param name="BUTTON_LIST" type="ORDEREDLIST">
                                      <bi:param name="BUTTON" type="COMPOSITE" index="1">
                                        <bi:param name="CAPTION" value="PDF">
                                        </bi:param>
                                        <bi:param name="ACTION" type="CHOICE" value="INSTRUCTION">
                                          <bi:param name="INSTRUCTION">
                                            <bi:command type="EXPORT">
                                              <bi:param name="ITEM_REF_LIST" type="UNORDEREDLIST">
                                                <bi:param name="ITEM_REF" index="1" value="TEXT_ITEM_9">
                                                </bi:param>
                                                <bi:param name="ITEM_REF" index="2" value="INFO_FIELD_ITEM_2">
                                                </bi:param>
                                                <bi:param name="ITEM_REF" index="3" value="ANALYSIS_ITEM_1">
                                                </bi:param>
                                              </bi:param>
                                              <bi:param name="FOOTER_LEFT" value="DATE">
                                              </bi:param>
                                              <bi:param name="FOOTER_RIGHT" value="PAGEOFPAGES">
                                              </bi:param>
                                            </bi:command>
                                          </bi:param>
                                        </bi:param>
                                      </bi:param>
    <bi:item name="INFO_FIELD_ITEM_2" designheight="50" designwidth="300" type="INFO_FIELD_ITEM">
                              <bi:param name="DATA_PROVIDER_REF" value="DP_1">
                              </bi:param>
                              <bi:param name="INFORMATION_ELEMENT_LIST" type="ORDEREDLIST">
                                <bi:param name="INFORMATION_TYPE" type="CHOICE" index="1" value="VARIABLE">
                                  <bi:param name="VARIABLE" value="IP_VERS_CM01" text="Plan Version">
                                  </bi:param>
                                </bi:param>
                                <bi:param name="INFORMATION_TYPE" type="CHOICE" index="2" value="CHARACTERISTIC_LIST">
                                  <bi:param name="CHARACTERISTIC_LIST" type="ORDEREDLIST">
                                    <bi:param name="CHARACTERISTIC" index="1" value="0G_CWW010" text="ProdGr">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="2" value="0MATERIAL" text="Material">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="3" value="0PROFIT_CTR" text="Planning Unit">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="4" value="469EIDJHD8W7F786UEL29ZJVV" text="Country Statement">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="5" value="ZXCO_NAV3__ZXCO_BUSN" text="BusSeg Nav">
                                    </bi:param>
                                  </bi:param>
                                </bi:param>
                              </bi:param>
                            </bi:item>
    Any input and hints are appreciated.
    Regards,
    Harald

    Hello Harald,
    As per my understanding, the particular characterisitc is not assigned and that could be the reason for displaying only field name. Please lookinto it.
    all the best,
    Kind regards,
    Praveen

  • Report export to csv - no data found in report

    Hi all,
    I've followed the steps to export my report to a csv file. In the Report Attributes, Report Export section I have:
    Enable CSV output: Yes           Separator: ,           Enclosed By:
    Link Label: Export
    Filename: Changes.xls
    But when I open it in excel, no data found is the only test showing in cell A1.
    Is there something else I need to do? I don't understand why it's not exporting my report - there is data on my screen in the report.
    Thanks,
    Dave

    Dave,
    Have a look in my blog:
    http://deneskubicek.blogspot.com/2007/03/csv-export-problem.html
    There is an explanation on how to avoid that.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Crystal Reports export and print fails with SSL / https but works with http

    Windows 2008 Server, 32-bit (IIS7)
    ASP.NET 2.0
    Ajax 1.0
    Crystal Reports version 10.5.3700.0
    http:  printing works, export works
    https:  printing not working, only export to MS Excel and MS Word work.
    I am able to generate reports using both http and https, and the toolbar icons are all showing.  However, I am unable to print or export properly with SSL.
    Printing prompts me with a select printer window, and then a window 'Retrieving Page 1' follow by two messages from Crystal Print Control both stating:
    A communication error occured.  Printing will be stopped.
    Exporting generates various errors depending on which export method is being selected (however Excel and Word work over https).
    I've found the same problem on this site and other forums, but never a resolution to get exporting and printing to work with SSL.  Will someone please provide me assistance or possibly relay what settings they're using if they have Crystal Reports export or printing working over SSL in IIS7?  Everything works fine when I change the address from https to http.
    Please let me know if I can help by providing further information.  We've gone through a great deal of possible solutions with code and I'm currently looking in to IIS settings again.
    Thank you.

    Thanks Ludek. I got it by searching KB number.
    Unfortunately, it didn’t fix my problem even my IE (IE8 and IE 9) has correct setting.  I double check my version. PrintControl.CAB is version 10.2.0.1146. we use VS 2005 Crystal report and VB .NET. It works fine on HTTP. But when we use HTTPS (SSL Certificate from go daddy).
    1: Crystal report export
                Export to MS Excel, Word: pop us “File download”, then click “Save”. It says “Internet Explorer cannot download ReportView.aspx from my site. Internet Explorer was not able to open this internet site. the requested site is either unavailable or cannot be found. Please try it again later”
                Export to RPt, Rich text format: It says “Internet Explorer cannot download ReportView.aspx from my site. Internet Explorer was not able to open this internet site. the requested site is either unavailable or cannot be found. Please try it again later”
                Export to PDF : nothing happened.
    2: Print:
                Pop up dialog to select printer, click “Print” “. Shows windows “Crystal Report Viewer” and pop us error message box. Title is “Crystal Print Control”. Message is “An communication error occurred. Printing will be stopped”. Click “OK” and pop up error message box again.
    Please advise.
    Thank you very much!

  • Apex 4.0.1 classic report export

    Hello once again all you Application Express experts.
    I am having some difficulty getting an apex classic report to export the results of the report grid.
    This is a classic report being run, not interactive.
    It is also as an SQL Query (PL/SQL function body returning sql query) for the report identification type.
    The function body is of decent size, maybe 200 lines at most, but i have narrowed it down a couple of problematic lines.
    The report runs perfectly when I take out the follow line from the function...
    v_return := v_return || 'AND instr('':'' || ''' || :p3_status || ''' || '':'','':'' || xel.employment_status || '':'') > 0 ';
    So :p3_status is a checkbox item on the page, with three options: Active, Terminated, Retired.
    In the repeatable failure scenario :p3_status = 'Active'.
    One of the interesting parts is the report grid always returns the right results to the screen, it is just the report export that fails.
    It never errors, it just returns a no data response to the file being exported.
    This is Application Express v 4.0.1 running on Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit.
    Any thoughts or any troubleshooting hints anyone can provide?
    Thanks,
    Hayden

    Hayden,
    Why do u need to append the item value in the PLSQL function body when apex will take of that(using its bind value).
    Your predicate is actually a static one since only the item value changes (and that can be handled by its bind value). So avoid concatenating it in the function body to build the clause(which has the additional problem of passing in the item value to the function)
    Change it to
    v_return := v_return || q'!AND INSTR(':'||:p3_status||':',xel.employment_status) > 0!';
    Notice that the :p3_status item evaluation happens only in the apex page
    Also making use of the q function to escape quotes, it makes life much more easier in these cases.

  • Dynamic file name for report export to csv

    If "Enable CSV output" = "YES" for a report region titled "Invoices", the default file name is "Invoices.csv". If I have a parameter, Pn_MONTH, for the month (e.g. Jan 2010, Feb 2010, etc.) and the report only shows data for that month, I would like to have the resulting file named "Invoices_Jan_2010.csv".
    I've tried setting the Report Export Filename to "Invoices_&Pn_MONTH..csv" and setting the region title to be "Invoices_&Pn_MONTH." but the resulting file name is coming up as "Invoices_.csv"'. I even tried "Invoices_:Pn_MONTH.csv" just to be sure but that makes it "Invoices_:Pn_MONTH.csv"'.
    How can I get this to work?

    This same method works for generating dynamic column headings from other page items, but I've never tried it for the download file name.That's the problem. The parameter P_MONTH is itself a page item and this is not consistent with other dynamic substitution. Looking at the page source, the export link is
    f?p=102:9:8985946323211742:FLOW_EXCEL_OUTPUT_R2805111921107129_en-uswhere presumably "FLOW_EXCEL_OUTPUT_R2805111921107129_en-us" is an application process and "2805111921107129" is the internal id of the region. The filename is not part of the link.

  • Report export (CSV) results in page not found error

    Hello,
    I'm having this strange error which i cannot seem to figure out. I have enabled report export through CSV in a report (report attributes). When i click the link in the report i get a page not found error (http 404). At first i thought it was a problem with the http-server. But as other applications (on different databases) don't have this problem i'm thinking it has to do with this apex-instance. Till 2 days ago it did work on this instance too.
    I'm really out of ideas, so if anyone can push me in the right direction i would really appreciate!
    Apex 3.2
    DB 10.2.0.4
    Thanks,
    Patrick

    Does this compare to the same as the url for your page?
    Has your server changed?
    Have you changed the dad file recently?
    have you checked the Apache access/error logs right after the 404 error is encountered ?
    Gus..

  • Extraneous html included in Report Export (csv) for Version 3.1

    Hi, I'm not hopeful of anyone being able to resolve my problem, as none of my colleagues are experiencing it, which occurs in my application for all new reports that I have created since the upgrade to 3.1 (from 3.0).
    I have many existing reports which utilise the Report Export facility and they still work as they should. However, for any new report created after the upgrade, the file created contains an html tag:
    At the top of the first column: div id="report_1562114506105406_catch"
    with the corresponding tag at the bottom of the column /div
    Initially, I thought that the complexity of the report might have been relevant, but not at all. I have added report regions to existing pages with an SQL query of SELECT sysdate FROM dual
    I deleted and restored an earlier version of the application, but the problem recurred. As I said, my colleagues cannot reproduce the issue (happily - for them!) and neither could I when I created a new application (using the same theme - Blue and Tan), but I still experienced the problem with my application working at a colleague's PC. Also, if I activate the Report Export for an existing report, the file created is fine, which seems to indicate the problem relates to the report creation rather than the Report Export facility.
    Any suggestions gratefully received,
    David

    Additional info
    Where previously I thought that the number included in the "_reportnnnnnnnnnnnnnnnn_catch" was randomly generated, I have now found out that it is actually specified within the "Print URL" on the Print Attributes tab.
    This doesn't seem to be any different to the other reports (that were created before the upgrade), but of course until now I had no reason to view the Print Attributes tab, so was unaware of this.

  • Reports + export help

    Ok It's been 2 days now and I'm forced to ask for help. It's such a tiny detail but it's making me crazy. My boss is going to kill me.
    This particular report exports to excel, and when a frame doesn't fit the current page, it moves the complete frame and all it's content to the next page. This is OK, it's a reports feature and it works perfectly.
    This problem is when exporting to excel and tries to export the non-fitting-in-the-first-page frame, I get the rows that didn't fit in the first page AND the rows that finally make to the NEXT page. So I'm getting duplicate rows.
    At the moment I'm trying separate repeating columns with srw.get_page_num(<global var in pkg>), but I fail.
    excel output: (the report output works fine)
    first page
    20/01/2006     Final     0097-00002138     -4078.75
    20/01/2006     Parcial     0097-00004803     -2448
    20/01/2006     Parcial     0097-00004804     -6092.44
    23/01/2006     Parcial     0097-00004817     -2444.4 **whoops there's no more space**
    starts again complete in next page
    20/01/2006     Final     0097-00002138     -4078.75
    20/01/2006     Parcial     0097-00004803     -2448
    20/01/2006     Parcial     0097-00004804     -6092.44
    23/01/2006     Parcial     0097-00004817     -2444.4
    23/01/2006     Parcial     0097-00004818     -2839.24
    23/01/2006     Parcial     0097-00004819     -1112.29
    24/01/2006     Parcial     0097-00004825     -2463.44
    25/01/2006     Final     0097-00002152     -716.78
    25/01/2006     Final     0097-00002153     -2874.26
    25/01/2006     Parcial     0097-00004827     -8753.34
    25/01/2006     Parcial     0097-00004828     -728.49
    Am I making myself clear? Thank you so much, and please sorry my english.
    THANKS!

    ok. I changed the report height to 9999, set the DESFORMAT to delimited, and the MODE to character but nothing happened.
    I would like to know how to find out the page number in PREVIEWER, because of this:
    IN EXCEL:
    0097-00002138     -4078.75 Previewer Page: 10 Item Page: 10 starting new section
    0097-00004803     -2448 Previewer Page: 10 Item Page: 10
    0097-00004804     -6092.44 Previewer Page: 10 Item Page: 10
    0097-00004817     -2444.4     Previewer Page: 10 Item Page: 10 no more space, repating!!
    0097-00002138     -4078.75 Previewer Page: 11 Item Page: 11
    0097-00004803     -2448 Previewer Page: 11 Item Page: 11
    0097-00004804     -6092.44 Previewer Page: 11 Item Page: 11
    0097-00004817     -2444.4 Previewer Page: 11 Item Page: 11
    0097-00004818     -2839.24 Previewer Page: 11 Item Page: 11 ending full section in new page
    PREVIEWER:
    0097-00002138     -4078.75 Previewer Page: 11 Item Page: 11*starting new section*
    0097-00004803     -2448 Previewer Page: 11 Item Page: 11
    0097-00004804     -6092.44 Previewer Page: 11 Item Page: 11
    0097-00004817     -2444.4 Previewer Page: 11 Item Page: 11
    0097-00004818     -2839.24 Previewer Page: 11 Item Page: 11 ending full section in new page
    i need to get the REAL previewer page. the SOURCE for the text label that shows the page number in previewer is "Page Number" and ths is not a variable for me to ask for at runtime.

  • Expense Report Export Program keeps on running normally for hours

    Hi and assalam o alay kum Gurus
    I am facing a problem in creating of invoice through expense report export program, I create expense report and run the program "Expense Report Export" but the issue is the program keeps on running for several hours we also raised SR for this issue but no solution provided after 6 months.
    We are currently on R 12.1.2 can any one please guide me what to do, maybe any some one faced the same issue before, I really need your help just to check whether I missed any setup part or this is some kind of bug.
    Best Regards
    Danish.

    Did you ever find a solution to this question? My internet expense templates are set to receipts are required for CASH and CREDIT CARD over a certain amount. Also, internet expense setup and admin is set to place the report on hold if receipt has not been received. I ran the Expense Report Export and they imported even though receipts were not received. Thank you.

  • Export problems- it's renaming my MOVs to strange things and they're huge!

    Hey guys,
    strange fcp export problem. I have a 10 minute anim compressed fcp project, 1920x1080, 30fps on a top-of-the-range macbook pro with external terabyte HD. I did a test export a couple of days ago, because our deadline is really soon, and that all worked fine - a 10 minute quicktime, 100% anim codec, was 26GB. That was fine. I did another test clip, just a spinning bitmap for 10 mins, from AfterEffects with similar, succesful, results and file sizes.
    Now, however, when I export, it comes out as 60GB, and FCP changes the filename to something which is the first half of the filename I chose, and a strange number for the second half which is different each time I try it. Something like "filena#CF342.mov", for example. This file seems to have video in it OK, but it's 3 times the size, and the data rate is much higher, too high to play back.
    The only changes I've made since my successful test are replacing many of the low res previews with hi res versions, and adding 1 minute to the end. And I changed my QMaster setup, not sure if that's anything to do with it.
    Anyone got any ideas? I'm getting pretty worried.....
    thanks in advance....

    Thanks for the quick reply! No, don't think that's the problem. The new render doesn't have an alpha channel - it's Animation 100% Millions (not Millions+), and I don't think that would add more than 25% to the file size anyway. It also wouldn't account for the strange renaming of filenames. And the increase in length is only 10%. The file size has tripled!
    The final delivery format was going to be animation, 1920x280, because it's going to projected on a 30m wide cinema screen and live TV tomorrow night but our playback solution (while it handles the test files ok) can't handle the data rate of these strange new files: it's 800mb/s, which is pretty ridiculous.
    The renaming of the files suggests (to me at least) some kind of bug/error, but it doesn't report any kinda error in either fcp or quicktime.
    Plan B is to recompress the strange big file using h264 which gives an ok quality and is 10% of the size. Reason I'd like to do it animation is I need to do several versions with different gamma, so I need to do further processing on the rendered file after it's dumped from FCP.
    Any thoughts? I'd like to get to the bottom of this.
    one thought - I didn't tick "recompress all files" and some of the source DOES have alpha - would it be taking the alpha channel even though I didn't ask for it?

  • Error when use Crytal Reports with Delphi.

    Delphi 2010  and CR2008
    When i code :
               Crpe1.ReportName := 'c:\temp\invoice.rpt';
               Crpe1.Output :=  toPrinter;
               Crpe1.Print;
    Problem with Print Method !
    Error : 538
    Error in File invoice.rpt:
    Parameter has invalid structure size.
    PrintOptions.GetCopies <PEGetPrintOptions>
    Pleave help me fix this error !

    Looks like you are using the VCL? Where did you get the VCL?
    I'd also like to draw yor attention to the following blogs;
    http://weblogs.sdn.sap.com/pub/wlg/14384? [original link is broken] [original link is broken] [original link is broken]
    Crytal Reports for Delphi Support
    /people/trevor.dubinsky/blog/2009/10/09/introduction-to-delphi-prism-applications-development
    /people/trevor.dubinsky/blog/2009/10/19/delphi-prism-how-to-setup-the-environment-for-crystal-reports-2008-and-bobj-enterprise-r3-development
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Web report Export to Excel Issue

    Hi,
    I've tried to look at one of the issues already logged about the Export to Excel functionality and I was not able to find a solution to my problem.
    In my organization we are using BW 3.5. And when I run a web report, and try to export to excel a 15000 line report, I'm always getting only the first 400 or 500 rows. If I go to the last line and try to do the same, I will then get the full report exported to excel.
    Any idea why this is happening?
    Thanks,
    JS

    Try to run the report using the 0ANALYZER template and see whether you can replicate the issue.  If the behavior is same with 0ANALYZER then it will be a issue with SAP code.

Maybe you are looking for

  • 6 Plus, longer time to charge

    Is it my imagination, or does the iPhone 6 Plus (64 GB, iOS 8.1) take about twice as long to charge (at the end of its working day) than my 4S (16 GB) did?

  • Error code -50 on a Mac

    Hi, I purchased a whole album and all the songs but one downloaded just fine. Every time I try to re-download that song, I get "There was an error downloading your purchased music. An unknown error occurred (-50)." When I write Apple Music Store supp

  • Issues with Adobe LifeCycle Designer & SAP Netweaver

    Hi, I m using Adobe Lifecycle Designer 7.0 with SAP NetWeaver 7.0.11 on Windows XP.I m facing these 2 problems in that. 1. I have few subforms in my form & for those i have set Auto fit property as true,Expand to fit property is true ,Allow multiple

  • One TRFC connection how many idoc we can send?

    Hi Experts, singel TRFC connection,how many Idoc can we send?appreciate any can tell me size also? Thanks Narendra

  • Iphone 5 probleme wifi

    bonjour a tous, voila en me mettant a cote de mon routeur, mon iphone capte le reseaux et se conect en wifi. je passe dans la piece a cote il capte toujours le wifi (un peux moins fort) mais plus moyen de se connecter. quelqu un peut me dire pourquoi