Crystal form for SO, Invoice, PO, AP

Not sure where I should save the Crystal forms for SO, Invoice, PO, AP invoice ...etc for users to access it to print easily?  I will test in my B1 since I did not install Crystal 2008 to client B1 yet.

Hi
I think you should stick to PLD as much as possible . Crystal report is there to create more complex report and support more business report not to eliminate PLD .
My suggestion :
Crystal report should be used  most for monthly reports or biweekly reports or weekly
My reasons
1.It is an add on
2. It is not well integrated as PLD .
3. I think user will not like to go outside of the screen and print out AR or AP... and print it .'
They would rather like to print it when they view or add report .
Unless you are using Batch invoice processing , then crystal report might be a better solution
Thank you
Bishal

Similar Messages

  • Smart form for commercial invoice

    hi ,
    i have to develop a smart form for commercial invoice for argentina in spanish language only.
    is there any standard smartform in SAP which i can use as a reference for this.
    or any help regarding this you can tell.
    any help is appreciated.

    Hello Amit,
    you search RVINVOICE in sap script.
    goto SMARTFORMS> Utilities>Migrate SAP Script.
    and select your own lang EN and make ur Invoice...make changes as per client requirement.
    and then convert to Ur required language.
    regards,
    Sujeet

  • Smart form for Excise Invoice Printing

    Hi experts,
    I am supposed to convert Standard sap script for excise invoice printing (Driver program name-J_1IEXCP) into smart form. I will be thankful if somebody will provide me standard smart form or oss no available for the same.
    Regards,
    Sanjay.

    Hi
    Welcome to SDN Community
    Have u converted the script to smartform ????
    If No Then follow this procedure
    In smartform Utilities --> Migrate SAP Script Name --> Give your scriptname and below give your Z smartform name and then migrate it
    Regards
    Pavan

  • Smart form for a invoice

    Dear All,
    We have designed a smart form for printing of excise invoice. The invoice is in two pages. The second page printing is not aligned and starts immediately after the finish of the 1st page.
    There is no buffer place between two pages.
    How can we provide a buffer between two pages so as to print the 2nd page in alignment with the pre printed stationary and the first page?
    Regards.
    Milind Dugade

    It very dificult to give you guidance w/o seeing your smartform config. page format. If you are using custom page format or standard page format. Have define next page properly or not. What are line count in first page etc etc.

  • Please advise print form for AR invoice in FI for USA

    Hello everyone,
    Could anybody please advise me name of SAP script form and name of printing program for AR invoice in FI module for USA localization (USA add-on) which can be used for print correspondence.
    Thanks in advance,
    Andrey

    That's right - there is no relationship. so you have to go back to the person who gave this to you and ask him/her to explain just what they want.
    Could it be the unspent amount in the Fund or Funds Center?
    Rob

  • Standard adobe form for AR INVOICE

    Hi,
    can any one tell me the standard ADOBE for AR INVOICE.
    i am triggering this through F.64 and FB70.
    thanks in advance
    Siva

    Check yourself here:
    List of SAP standard Adobe forms: Go to http://service.sap.com/erp  (SAP ERP) -> Media Library - SAP ERP Overview -> Detailed information cross ERP -> Adobe Forms for SAP ERP
    Standard programs: Standard program for Adobe forms
    Regards Otto

  • Crystal layout for electronic invoice

    Good afternoon Friends.
    I wonder if any of you know any printing layout to electronically invoice in crystal that allows editing.
    I am creating a print layout but it does not want to create from the beginning.
    Thanks for the help.
    Regards to all.

    hi,
    There is no any functionality like "Define screen layout" for MIRO transaction.....
    Take help of ABAPer who can resolve your problem via coding....
    you can never ever do a MIRO for 2 vendors at a time.....
    Miro trasaction is possible for only one vendor at a time....
    and if thinking logically its abs correct...why do you need to pay to two vendors at a time..there may be different tax, freight calculation which is placed header....
    hope it helps....
    Regards
    Priyanka.P

  • 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

  • Smart form Driver Prog For Printing Invoice Lists

    Hi Sap Gurus,
    I am using the standard Sap drver prog RLB_invoice which is used for all invoices(ie Invoice,credit,debit,cancellation).Now,plz can anayone let me know the driver pgm used for printing invoice list smartform.
    will the RLB_INVOICE serve my purpose or is there any other Prog.
    Thanks in advance.
    Points will be rewarded for successfull answers

    Hi,
    For Invoice
    Form name = LB_BIL_INVOICE
    Driver Program = RLB_INVOICE
    Regards
    Edited by: K.P.N on Jan 9, 2008 2:53 PM

  • Smart Form for invoice list?

    Hello,
    Has anyone experience with Smart Forms based on a invoice list (transaction VF23). I have been testing with the Smart Form for a single invoice (LB_BIL_INVOICE and program RLB_INVOICE) but get the impression that this cannot be used for the invoice list. My environment is a SAP R/3 Enterprise.
    Kind regards,
    Olaf Pohlmann

    HI,
    TRY F_INTITAR_SF.
    Regards,
    Gayathri

  • Interactive form and program for SD invoice

    Hi,
    is there example of adobe form and print program in ECC 6.0 for SD invoices? I tried also to find some predefined forms on OSS but no success.
    Regards
    Peter

    Hi Chanshini,
    thanks for your answer. I found program "SD_BIL_PRINT01" but form "SD_INVOICE_FORM01" does not exist in transaction SFP.
    Form  "FMCA_INVOICE_SAMPLE_PDF" exists but has different interface like program "SD_BIL_PRINT01".
    I am trying to find program and adobe form that are working together.
    Regards
    Peter

  • Form Attachment for FI Invoice

    Hi
    Is there a place where we can attach a form for printing FI Invoices. I gather that in SD, in config there is a transaction where a customized form maybe attached- do we have any such thing in FI too?
    Thank you
    Rukshana

    Hi:
    You can use correspondence,T.code FB12 - Request and also F.64 - Maintain .Have a look and see if it fits your requirement.
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

  • EDI810== INVOICE== INVOIC02 IDOC == Need Form for output

    Anybody know the the best Sapscript form or Smartform to use in this case. I'll probably be creating the form from the invoice in MIR4.....Thank-You.

    Hi Tom,
    You can use this smartform /<b>SMB40/SDINV_XX</b> (XX can be A, L, UK) and the print program <b>RLE_INVOICE</b>.
    Hope this will help.
    Regards,
    Ferry Lianto

  • Crystal Reports for SAP Print Output requirements like Sales Order O/P

    Hello,
    Has anybody used Crystal Reports for Sales Order or Invoice Print Output type requirements?
    Typically these outputs get triggered via Output Management Configuration on Save of a Sales Order or Configuration.
    Traditionally in the Output Management configuration of say Sales Order, we can specify the "Output Program" and the "Sapscript" or "Smart Form" or "Adobe Form".
    How do we tell SAP t trigger a Crystal Report output if it is a feasible way to go?
    Also can anybody tell what is SAP's strategic direction for Print Output requirements?
    regards,
    Atul

    Hi Atul,
    Do you have answers for your questions? If so, could you please share?
    Thank you in advance,
    Joã

  • F110 for vendor invoices which are debits and for credits BVTYP are used

    Dear all,
    I have the following situation:
    - 1 vendor with many documents to pay
    - some documents have 1 line item that is a debit (positive value in FBL1N)
    - this vendor has 2 bank accounts in master data and I would like to pay the second one, so the Partner Bank Type (BVTYP) field is filled with number 1 and 2
    - before payment at FBL1N, I execute the mass modification of all documents putting the number 2 at the BVTYP field
    - but when I execute the proposal at F110, only the documents with debit have error: No pymt possible because items with a debit bal, but the total is credit for vendor
    I have seen that when I do not fill the BVTYP field in the documents, the F110 is executed normally, I mean, it considers debits and credits (we have previously created a new payment form for this kind of vendors, one that could consider debits and credits).
    PS: at FBL1N, when I open the document with the debit item, it doesn't show the field BVTYP.
    Is there any kind of configuration that I have to make to F110 start considering the filled BVTYP field?
    Thanks in advance.
    Kathia Tsuboi

    Hi Abhi,
    I have created some queries for the same. COuld you help me if I am going in the rite direction.
    I have created a query to find the suppliers which are not being used in the POs for the past one year by using the below query: But for invoices and payments to be included, I am finding it a bit difficult....need help..............
    --FINAL QUERY                                  
    SELECT vendor_id, vendor_name, creation_date, last_update_date
    FROM po_vendors v
    WHERE v.end_date_active IS NULL
    AND v.enabled_flag = 'Y'
    AND NOT EXISTS (
    SELECT 1
    FROM po_headers_all h
    WHERE h.vendor_id = v.vendor_id
    AND h.creation_date(+) BETWEEN (SYSDATE - 365) AND (SYSDATE))
    ORDER BY vendor_id DESC
    Is it possible to send me the program so that it would be helpful for me to use it.
    email: [email protected]
    Help Greatly appreciated.
    Thanks
    Aman

Maybe you are looking for