Print report in SAP

Hi,
  i want to print a report WITH column 190. But i found the biggest format X_65_255 has only 170 column.
any advice?

Hi !
What you can try is the following:
- Call the SPAD
- Press the button "Full administration"
- Go to "Device Types"
- Press "Format Types"
- Choose "Format -> Create" from the menu
- Create a new format type using the type
  "Format type for ABAP list"
- Set the Number or rows and colums as you'd like them
- Assign this format type to your device type *** follows
- Go back to the SPAD "DeviceTypes" TabStrip
- Give it the name of the DeviceType you're using
- Press "Device Types"
- Press "Formats"
- Press "Create"
- Add your new format-type
... see if it works...
Regards
Rainer
Some points would be nice if that helped a bit.

Similar Messages

  • Print a report from SAP Mobile

    Hi,
        I want to print a report (not a screen shot) from iPad (SAP Mobile/SAP BI), but there is no option there for printing.  I don't think this feature is available in the current SAP Mobile (6.1.11).  Can anyone have a way to work around it?  Can SAP add this feature as an enhancement in the future releases?
        Thanks.
                    James

    Hi,
    The feature is not available in Mobile BI App. You can search an existing idea and vote up or post a fresh at IDEA Place SAP BusinessObjects Mobile: Ideas.
    Would be helpful if you provide the following details
    - What is the business use case
    - How many users would be using this feature
    - What content types you are expecting to print
    - How should the printed report look like - mobile view, web view, pdf view
    - Primary used device - IOS/Android
    Regards,
    Ashutosh

  • Print Preview using crystal report in SAP B1 slow.

    Dear all,
    I face another problem. Print preview using crystal report in SAP B1 is very slow. Although i have create a query view in SQL server but it's still slow for my user. First time i create using table in crystal report. just drag the table. It's take more than 10 minutes. After that i move all the query to view in SQL server , it's take 1-2 minutes to print preview some time more.. But i think that it's still slow. Does any one know how to print preview fast. Just like in PLD.
    Thanks in advance
    bodhi86

    Hello,
    How do you answered to this question ?
    Malika
    Edited by: Malika Sanoune on May 13, 2011 1:48 PM

  • Print preview using crystal report in SAP B1 is very slow.

    Dear all,
    I face another problem. Print preview using crystal report in SAP B1 is very slow. Although i have create a layout in AR invoice form  and applying the print sequences (ie 4 prints). Does any one know how to print preview fast. Just like in PLD.
    Thanks in advance
    Kamlesh Naware

    Hi,
    Basically Crystal report run with SQL statement, I would suggest to do well performance tuning on SQL query / Store Procedure.
    Structure your query in DBA manner that will make some how faster such as use ( inner join, less condition,...)..
    also if it simple query then use Command in Crystal report rather store Procedure..that make some how Faster your report.
    Thanks
    Kevin
    Edited by: Kevin Shah on May 27, 2011 4:21 PM

  • Error when print out SAP Crystal Report in SAP B1

    Dear all,
    I have encountered the following message when I tried to print out SAP Crystal Report at client pc:
    Could not load file or assembly 'CrystalDecision.Windows.Forms, Version = 12.0.2000.0, Culture=neutral, Publickey Token=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
    On the other hand, there's no error when I print out the SAP Crystal Report on server.
    Can anyone advice on the error message as above?
    Thanks alot.

    Hi All,
    I have SAP 2007 B,Visual Studio 2008 and Crystal report 2008 Add-on.  I am facing the same problem,
    "Could not load file or assembly 'CrystalDecision.Windows.form,Version=12.0.2000.0, Culture=neutral,Publickey Token =692fbea5521e1304' or one of its dependencies. The system can not find the file specified."
    I have uninstalled SAP B1 and Crystal report 2008. Still I am getting the same Error message. Kindly give me your suggestions.
    Regards,
    Tom.

  • Problem when trying to print standart invoice crystal report for SAP

    Hi All, I have the following problem when trying to print a system invoice report in crystal reports for SAP
    I pass params and load the report using this code
    Private Sub DisplayThreadReportSeq()
    Dim oView As New frmViewReport
    Dim strReportPath As String = ""
    Dim strParamName As String = ""
    Try
    Dim CR As New ReportDocument
    CR.Load(oReport.CrstPath)
    ' Declare the parameter related objects.
    SetReportValues(CR)
    Dim crParameterDiscreteValue As ParameterDiscreteValue
    Dim crParameterFieldDefinitions As ParameterFieldDefinitions
    Dim crParameterFieldLocation As ParameterFieldDefinition
    Dim crParameterValues As ParameterValues
    ' Get the report's parameters collection.
    For Each oPar As cslParam In oReport.Params
    crParameterFieldDefinitions = CR.DataDefinition.ParameterFields
    crParameterFieldLocation = crParameterFieldDefinitions.Item(oPar.ParName)
    crParameterValues = crParameterFieldLocation.CurrentValues
    crParameterDiscreteValue = New CrystalDecisions.Shared.ParameterDiscreteValue
    crParameterDiscreteValue.Value = oPar.Value
    crParameterValues.Add(crParameterDiscreteValue)
    crParameterFieldLocation.ApplyCurrentValues(crParameterValues)
    Next
    If pPrint Then
    If oReport.Printer "" Then
    CR.PrintOptions.PrinterName = oReport.Printer
    End If
    CR.PrintToPrinter(IIf(oReport.Copies = "", 1, oReport.Copies), False, 0, 0)
    SBO_Application.StatusBar.SetText("Printed Document Successfully", SAPbouiCOM.BoMessageTime.bmt_Medium, SAPbouiCOM.BoStatusBarMessageType.smt_Success)
    Else
    oView.Text = pReport
    oView.TopMost = True
    oView.Viewer.ReportSource = CR
    oView.Hide()
    oView.ShowDialog()
    End If
    Catch ex As Exception
    Util_GenErrorLog("DisplayReport", ex)
    End Try
    End Sub
    This code works fine when the report invoke to print is developed in crystal reports version for .net 2008 or .net 2005
    when trying to print a report standart getting from SAP BO 8.8.1 using this code I getting the following error:
    Error in File C:UsersecombaAppDataLocalTemp5ARInvoiceStandartSap {300B9A68-DF05-4D7B-8F3B-1670A4493BEE}.rpt:
    Error in formula .
    'Shared numberVar SectionTotalMaxHeght;
    A number, currency amount, boolean, date, time, date-time, or string is expected here.
    This report is the standart report that SAP 8.8.1 includes and works fine on SAP.
    I referenced this dlls CrystalDecisions.CrystalReports.Engine.dll, CrystalDecisions.CrystalReports.Shared, version 10.2.3600
    How I can get these dll´s version for Crystal Report 2008 for SAP Business one or How I can solve this problem
    thanks in advance,
    Ezequiel.

    Hi Ezequiel,
    You can try to search in SAP Business One Reporting & Printing forum section or post there.
    nd.Q

  • Crystal Report for SAP B1 8.8

    Hi All !
    I can not finish for designing template layout for Sales Quotation by Crystal Report 2008 for SAP 8 8
    I have already done for template of sale quotation but when i print preview in SAP for this one, system did not understood and it get all data from Sale quotation in database. I would like to assign specify Sales Quotation Doc number which i want to Print preview on my template.
    How can i assign or how can i have to create what parameter.
    Thanks!

    Hi,
    Try this:
    For Sales Order
    The DocKey@ token is mandatory in a Crystal Reports .rpt file that you want to use as a
    layout. The DocKey@ token is used to identify the current active document. SAP Business One
    populates its value when you preview or print a layout.
    When you apply the DocKey@ token, in the Select Expert window, you need to specify a filter
    condition, such as:
    {ORDR.DocEntry}={DocKey@}
    If the DocKey@ token does not exist, create a new parameter with the following settings:
    In the Name field, enter DocKey@
    In the Type dropdown list, select Number
    In all other fields, leave the default settings
    Then Save report as layout to B1
    Try previewing this layout as you will notice it will no longer ask for a parameter.
    This likely behaves as a standard layout
    Try searching forums or channel portal regarding Parameter Tokens
    Thanks,
    JP

  • How to add/create additional page in Crystal Report Layout SAP B1

    Hi,
    I wanna ask about How to add/create additional page in Crystal Report Layout SAP B1 ?
    I want when user print Purchase Order then on last page also print some page like Penalty Clause etc.
    Pls help me to find the solution.
    Br,
    Thomas Marsetyo

    Hi,
    In your report footer, set it to create a new page before it is printed (In 'Section Expert', select the Report Footer -> 'Paging' tab -> Check 'New Page Before' checkbox). Throw your Terms & Conditions into the Report Footer section.
    If you already have a Report Footer that you want to keep, just split the footer into two sections (Right-click the Report Footer section -> 'Insert Section Below') and follow the same procedure for the newly created section.
         Check this Link
    http://stackoverflow.com/questions/9232239/adding-an-additional-page-to-end-of-a-crystal-report
    http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=18960
    Regards,
    Manish

  • Crystal Report Print report on different paper size (A4/Letter)

    I develop the crystal report 2008 with VS.net 2008. The report runs on web.
    when I preview or debug with VS on my local computer, the crystal report using A4 (8.3 * 11.7 in), Which is correct.
    However, after I deploy the program to the server, and try view and print report through IE, the print out is actually using Letter size (8.5 * 11 in).
    Both on my local computer and the server, the default printer is set to A4 size. And on the crystal report, in the printer setup, the paper size is A4 as well.
    I try on firefox, and safari. No luck. Same as IE.
    The crystal report need to print barcode, and the paper size must be A4, cuz the barcode page is designed and printed on A4 Avery Laser Barcode sheet.
    I tried on my PC by using remote server data souce, the printing works perfectly in A4 size (8.3"*11.7").
    And I don't know why same program after deploy to the server, then it using Letter size (8.5" * 11"), which the size I never set to.
    So strange.
    Thanks

    A few ideas \ suggestions:
    1) Make sure you are using FP 3.3 runtime:
    https://smpdl.sap-ag.de/~sapidp/012002523100016807202010E/cr2008fp33_redist.zip
    2) Try a simple win app - use saved data report (crystalreportviewer1.reportsource = <path to saved data report>). Does this print correctly?
    3) What print mode are you using; PDF or ActiveX?
    4) Try export to RPT and PDF from your web app. Does it export correctly?
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Print report from CXR0

    Dear Experts,
    I would like to print directly from SAP through tcode CXR0 : system- list - print is grey.
    I have checked if authorization is missing from nsu53 but my authorization already successful.
    Please advice me how to print report from CXR0 and what is the authorization object?
    Thank you.

    Hi,
    your problem is not related to authorizations. The section System -> List works only if you have a list displayed on your screen.
    Cheers

  • Connecting Crystal Reports to SAP BW BEx query

    Post Author: mfrank
    CA Forum: Data Connectivity and SQL
    We have used Crystal Enterprise 8.5 to connect to an SAP BW BEx query in the past, however we are having some difficulties.  Rather than trying to upgrade our old CE system, I've been told that we should be able to connect Crystal Reports (2008?) directly to the BW BEx query.  I've been trying to accomplish this, but can't seem to find any drivers that will allow the connectivity.  When I try to set up a connection using OLAP, the only two options listed are Hyperion and Microsoft OLAP.  I have an old version of Brio Query (now Hyperion, now Oracle) that does show up with a driver for BW, but this doesn't show up in my Crystal options.
    Can someone give me some advice as to how to connect Crystal Reports to SAP BW?  I realize there are licensing issues with running live data without using Crystal Enterprise (or later BO products), but I'm just looking to print a report to a PDF.
    Thanks

    Post Author: A Kumar
    CA Forum: Data Connectivity and SQL
    Hi mfrank,
    I am also facing a similar kind of a problem. Did you get any solution to your problem. If yes, kindly let me know.
    Thanks
    A kumar

  • How to create a print format in SAP

    Hi,
    I dont know if this is the right forum to ask this, but I have not done this for a long time. Does anybody know how to maintain a print format such as "X_65_200" that you use when printing a report in SAP? I'm trying to create a format that will use a Legal size paper. Useful answer will be rewarded.
    Thanks,
    Ricky
    Message was edited by: Ricky Orea

    Hi,
    The Print formats are maintained in TSP1D Table.. it is usually done by the BASIS folks..
    Regards,
    Suresh Datti

  • How to Hide Print Privew Option (Sap Script)

    hi friends,
    i dont want print privew option (SAP SCRIPT) after executing the program the report shows output directly insted of showing print privew option.
    please reply.
    thanks in advance.
    regards,
    bhaskar

    Hello,
    When using the OPEN_FORM
    Set the field of the <b>
    ITCPO-TDNOPREV = 'X'
    </b>
    VAsanth

  • 1099 Reporting from SAP

    Hi,
    I have not done 1099 reporting from SAP. How and where do we start to do 1099 reporting from SAP? We are in version 4.6C. How do we check if we have set up the vendor information properly in our database?
    Thanks
    Ram

    Hi Ram,
    you can configure 1099 vendors in SAP through vendor master records in Witholding tax tab.
    but if you want to print 1099 vendors with amt paid to them year to date, you will require to have wiholding tax functionality active.
    First of all make sure witholding tax functionality is activated in your co.code, than make sure there no payment made to that vendors before assigning them as a 1099 vendors, if payment has been made to 1099 vendors before assigning them as a 1099 , you will be required to post process line items. through on of the SAP programs.
    SAP has std. forms to print 1099 vendors, you can use one of them to print them later on.
    Assign points if useful

  • Changing default printer settings in SAP Portal

    Hi,
    When i am trying to print the report in SAP Portal, the default page setting is A3 , i need to change it to 8.5 * 11 inches.
    Is it possible??
    Thanks
    Janc

    Hi,
    You can change the Page Settings in your Internet Explorer.
    File --> Page Setup.
    Try doing this.
    Are you on BI 3.5 or 7.0?
    Also, you are using the Query Designer or WAD ?
    In WAD7.0 you can Export the Template with the Query and set the size as A4 or 8.5 x 11 inches.
    While viewing the Query designer output also, you select the size. Default is A4.

Maybe you are looking for

  • Does the channel used by Airport Supreme cause problems?

    I have problems with my wireless system using the Airport Supreme on my Mac Pro.  Streaming movies and internet use on my iPad cut off and often I find that my internet service is down.  I need to contact the cable company which resets the modem. The

  • Alerts are not generated at all

    Hello. Please, help me with following problem. I have Site Server (SCCM 2012 with SP1) installed on server (Win 2008 R2 w SP1). On this server also installed MP, DP, FSP, RSP, Site Database, SUP. On second server (win 2008 R2 wSP1) installed MP and S

  • Motion and Text, I am so frustrated

    Hi, this is the second time, I'm trying to to a project in Motion and not in AFX. But yet again motion dissapoints me. The first time it was the outline bug, that cuts of the outline... really bad, but this time around it is the displaying/rendering

  • My Logitech Pure-Fi anywhere 2 is not working with my iPhone 4

    I got my Logitech Pure-Fi anywhere 2 just under a year ago and now when I plug my iPhone 4 into it the sound only comes out of the iPhone speaker, It will charge but the sound doesn't work with it.

  • Sales Order Creation from IDOC type ORDERS05

    Hi experts,    I have tried to create sales order using IDOC, using FM input IDOC_INPUT_ORDERS. But when I include segment E1EDP05 - IDOC: Document Item Conditions. I got the following errors "Conditions in IDoc E1EDP05 transferred: Check data", with