Item AR Invoice Status: "Open - Printed"

Hi
I upgraded SAP B1 8.81 PL07.
In new verson, i have a problem in AR Invoice
In case of Service Invoice: Status: "Open", which is correct.
In case of Item Invoice, Status: "Open - Printed"
                        even i did not print that document.
Is it bug in new verson?
Nilesh Shah

Hi,
Check whether the document you are talking about which has the 'Open-Printed' status is using the Manual numbering series.
If yes, then you can check this Note. Note No. : [1577486|https://b1-support.wdf.sap.corp/sap/support/notes/1577486]
Kind Regards,
Jitin
SAP Business One Forum Team

Similar Messages

  • Set Invoice status to printed using the SDK

    Hello Experts,
    Do anybody know if its possible to set the Printed property to "Printed" of a A/R Invoice with the sdk for Sap Business One 2007 And / Or 8.8 and successfully update a document.
    We are still using v2005 and this property is in read-only.
    Thank you!
    Simon

    Hi Simon,
    The printed property is still read-only in 2007A and 8.8. I don't think that's likely to change so the only way to change the value is to print the document via the UI.
    Kind Regards,
    Owen

  • "open Printed" status on all "manual" type invoices

    Hi All!
    When entering a "manual" invoice, the invoice status automatically defaults to "open-printed" even if the invoice has not
    been printed.
    I tested in the SAP demo 8.8 and it gives the same result. Can anyone explain to me why this is the way it is?

    Hi Deborah,
    If you search the SAP Notes you will find one on this. This is changed functionality, the rationale being that if the document is manual, it has been produced from a different system & likely been printed from there.
    It has caused us some headaches as well!

  • Some AR Invoice status are Closed but some AR invoice status are Open-Print

    Hi,
    I have seen some AR Invoice status are Closed but some AR invoice status are Open-Printed.
    There are any reason for this.
    Regards,
    Mzian

    Hello Mizan - if you add an AR Invoice and it immediately and automatically goes to "closed" status, then you have a big system problem on your hands.  There is no way SAP B1 should automatically close an AR Invoice unless someone has done a manual reconciliation or has created an AR Credit Memo or has made a payment or has closed/cancelled the AR Invoice manually.
    Call your SAP Partner or SAP Support immediately!!!
    Regards - Zal

  • Sales AR Item Type Invoice Print Layout Design "Sub Total" per Page

    Dear Forum Team
    We need some advice on how to modify, fomulate(?) [Sub Total] for each page's 'amount' on the Sales AR Item Type Invoice.
    Currently the 'sub total amount' on each page is showing Grand Total instead of sub total.
    Thanks

    Hi,
    In you PLD, In repetitive area, you might have linked the fields like Item name, Item Description, and so on. In these fields one of the field will be Total for line items.  Am i right?
    If it is so, then in repetitive area footer, Create one Formula field and give formula PageSum("Field_025") (in your case)
    Ie., Field_201 = PageSum("Field_025")
    Field_025 - contains the Line Total of Row items.
    I hope this could help you.
    Raja.S

  • Invoice status is "Closed" after posting from Partial Delivery Notes

    Hi everyone,
    My add-on posts PARTIAL draft documents to posted delivery notes without reference to a Sales Order up to invoices. I've noticed that after invoice posting, my document (invoice) status was closed while my delivery notes document is open. Should'nt my invoice status still open? Please tell me if I am missing something on my code below. Thanks in advance!
    public SAPbobsCOM.Documents PostDeliveryReceipts(SAPbobsCOM.Company company, SAPbobsCOM.Documents draft, ref int result)
    SAPbobsCOM.Documents delivery = (SAPbobsCOM.Documents)company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDeliveryNotes);
    delivery.HandWritten = SAPbobsCOM.BoYesNoEnum.tYES;
    delivery.DocDate = draft.ShipmentDate;
                delivery.DocDueDate = draft.ShipmentDate;
                delivery.CardCode = draft.CardCode;
                delivery.CardName = draft.CardName;
                delivery.NumAtCard = draft.NumAtCard;
                delivery.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items;
    for (int i = 0; i <= draft.Lines.Count - 1; i++)
                    draft.Lines.SetCurrentLine(i);
                    //components of a bom
                    if (draft.Lines.TreeType != SAPbobsCOM.BoItemTreeTypes.iIngredient)
    delivery.Lines.ItemCode = draft.Lines.ItemCode;
                        delivery.Lines.Quantity = draft.Lines.Quantity;
                        delivery.Lines.WarehouseCode = draft.Lines.WarehouseCode;
                        delivery.Lines.VatGroup = draft.Lines.VatGroup;
                        delivery.Lines.UnitPrice = draft.Lines.UnitPrice;
                    if (i != draft.Lines.Count)
                            delivery.Lines.Add();
    return delivery;

    hello, friend.
    in addition to what the others have said, please check your customer master, particularly in the Sales Area Data > Shipping tab.  look at the partial deliveries.  there may have been settings that tell the system if a delivery has been created with reference to the sales order, the order will be completed even if the quantity is only partially delivered.  if the entry in the 'partial delivery per item' field is 'B', then this will explain your situation.
    this can also be manually set in the sales order, so you have to take a look at the order as well, at item level.
    regards.

  • Invoice Status

    Hi All,
    I need to get the status of an invoice i.e.,invoice is cancelled or open or closed or error.
    Is there any way i can get the invoice status?Is there a Function module which can get the invoice status?
    Thanks,
    Regards,
    Srikar

    VBUK and VBUP will tell you if an SD document is completely/partially processed or if it is open.
    If you want to know if an SD invoice is cancelled then check VBRK-FKSTO. All other statuses at header level can be obtained from the field VBRK-RFBSK.
    If you want to know if a particular item is incomplete either pricing or generally, then look at VBRP-UVPRS(for pricing incompletion) and VBRP-UVALL(for general incompletion).
    Reward accordingly and close if this helps,
    Srinivas

  • Need sql query to find out same item is used in open po and closed po

    Hi Experts,
    I have an requirement is that, i need to find out the item is used in open po and closed po.
      example: A is the item is used in closed PO and Open PO.
      i need to write down the scripts how many same items is used in open po and closed po.
    if any sql script is there please share.
    Please let us know if any concerns.
    Thanks
    bmn

    Hi
    Please try below query
    select
    distinct c.segment1
    from
    po_lines_all a,
    po_line_locations_all b,
    mtl_system_items_b c
    where
    a.po_line_id= b.po_line_id
    and a.item_id=c.inventory_item_id
    and b.closed_code='OPEN'
    and a.item_id in ( select 
    item_id
    from
    po_lines_all d,
    po_line_locations_all e,
    mtl_system_items_b f
    where
    d.po_line_id= e.po_line_id
    and d.item_id=f.inventory_item_id
    and e.closed_code in ('CLOSED','FINALLY CLOSED','CLOSED FOR INVOICE','CLOSED FOR RECEIVING'));

  • PO (Line Items wise) Payment Status Report

    Hi Friends,
    Is it possible to get a PO (Line Items wise) Payment Status Report.
    My client wants PO Line wise payment status as a MM report development.
    We have Down Payment, Residual & Retention money as a business practise with our vendors
    Following is the MM-FI flow in our company code..
    Create & Release PR u2013 MM - Creating PR
    Create & Release PO (ME21N) u2013 MM u2013 Creating PO
    F-47 Down Payment Request u2013 MM u2013 Creating DPR
    F-48 Post Vendor Down Payment u2013 FI - Posting DPR
    FBZ5 Print Check for Payment Document u2013 FI - For printing cheques for DP only
    MIGO/ML81N, GR u2013 MM u2013 SES/GR for PO
    MIR7/MIR6 IR - MM/FI u2013 Parking & IR
    F-44 Clear Vendor u2013 Linking advance with IR (as residual clearing)
    F-53/F-58 u2013 Posting Payments after deducting Retention
    F-04 Post with Clearing u2013 Clearing Outgoing account entries with Main account
    Thanks in advance.
    Regards,
    Vikrant Sood

    as per my knowledge you can configue a new Z table or prepare a Query using EKPO table you will your desired result.
    regards,
    Ninad Kshirsagar

  • Prevent of invoice for open PO

    hi gurus,
    is there any way to prvent invoice for open PO,
    rgds

    hi
    u mean to say that u want to prevent Invoice before any GR happens
    then u can do so by cheking the GR based IV indicator at the item level in the PO.
    Then it will not allow to do invoice bfore GR.
    Hope it helps
    reward if useful
    Rohit

  • Field for Vendor Invoice status

    Hi guys,
    We have to fetch the vendor invoice status for the given invoice.
    I checked with the table RBKP there the field RBSTAT shows the status, but it shows only status like (PARK, POSTED etc)
    but the requirement is to get the status like (PAID, VOID, OPEN etc).
    I searched through the SDN and SAP, did not found the exact solution.
    Is there is any field for that, or any code sample/ logic any one have..
    Thanks,
    Anmol.

    Clossing the threat,
    tried using BSIK and BSAK used payment block from BSIK.
    If entry exist in BSAK-paid
    if A in payment block - Blocked
    if payment block is initial - invoice only

  • Rounding-off difference in Line Item vs Invoice

    Can anyone help on how to correct the rounding-off difference in the amount per line item display vs the amount printed in the invoice?  In viewing the document, the line item has an amount of 187.09, meanwhile, when invoice was printed, the amount was 187.10.

    Hi
    Ask ABAPer to modify the format for the invoice amont number field not to round off to nearest value in invoice form.
    Regards
    Laxmiprasad

  • Create Item AR Invoice to Service AR Credit Memo

    Hi Expert,
    Customer is running 2007A PL30. We understanding that it is impossible to copy Item AR Invoice to service AR credit memo. It is customer business practice to issue same AR invoice to all customer for same item and later issue service AR credit memo to customer. Customer wants the item information to be copied to service AR credit memo rather than keying multiple rows to indicate discount given on which items. It is not possible to include discount at original AR invoice.
    Any workaround or solution to solve this problem?
    Regards
    Thomas

    Please note the following:
    Item and Service type documents do not have a one to one match of the row level fields.  So the ItemCode from the AR Invoice could not be copied to a AR Service CM as the ItemCode column is not exposed and these are 2 different types of documents.
    This is what you could do....
    Open the AR Credit Memo...Enter the Customer Code....
    Add a formatted search to the Description field to Display the list of Items and take the Invoice number from the user as a parameter.
    Query same below
    SELECT T0.ItemCode FROM [dbo].[INV1] T0 INNER JOIN [dbo].[OINV] T1 ON T0.DocEntry = T1.DocEntry
    WHERE T1.CardCode = $[$4.0.0.] AND T1.DocNum = '[%0]'

  • How to get Invoice status value in oracle payable

    Hi guys,
    I am new in oracle apps plz tell me how to get invoice status value of prepayment invoice type in payable.
    Navigation ->Payables->Oracle Payables ->Invoices->Inquiry->Invoices ->go to Invoice status block and open to Status LOV
    plz provide me sql query to find those status lov values and accounted values for any supplier & invoice num.
    it's urgent plz .......................
    Thanks guys.......

    The invoice approval status does not come from any table / lookup.
    Instead, Oracle builds it by calling the ap_invoices_pkg.get_approval_status function.
    You can also call it by passing invoice_id, payment_status_flag and invoice_type_lookup_code.
    All these 4 columns are present on the ap_invoices_all record.
    Hope this helps
    Sandeep Gandhi
    Independent Consultant

  • J1IEX Vendor invoice status

    Dear Experts
    In j1iex vendor invoice  status is showing as in process even after posting has done. becuase it is showing under ParI and Part II posted items in J1I7 but status is not updated as posted
    what could be the reasons
    can any one tell me the solution
    Thanks and Regards

    Hi
      If you have only few documents for which though the part1 and part2 posting is done and status of the documents shows IN PROCESS then you can change the status of those documents at table level as P -POSTED. This is only recommended only you have limited documents. You have to change the status for both ITEM and as well as HEADER table.
      Also Please seach for SAP notes for this.
    Regards
    MBS

Maybe you are looking for

  • XML DATA INSERTION INTO TABLE

    I have xml data in this format and need to store in the lineitem table by generating three new values for each row ie line identifier(sys_guid),begin_date and end_date. <LineItems> <LineItem> <BASE_TYPE>SRV</BASE_TYPE> <ORDER_NUM>124089304</ORDER_NUM

  • How can I close all windows in Preview?

    Hi all I can't seem to find a way to close all windows in Preview. Can somebody try this and see if they get the same result I do. 1. Copy an image into the clipboard. 2. Open Preview 3. Hold down command-N for about 20 seconds. You should end up wit

  • IPhoto sample images

    I am new to iPhoto so pls bear with me.  I seem to have these sample photos which I believe come from iPhoto, (soccer photos, AZ vacation photos.....), and I want to delete them.  The only problem is, I can't find them to nuke em.  Can somebody help?

  • DB Adapter is not polling

    Hi All, I implemented DB Adapter polling in one of my services. It was working fine for last 3 months. Today I tested service, it is not polling to DB table, so it is not picking any data from table. Can Any one tell me, what could be possible reason

  • HT201269 iPhone to iPad photo transfer

    Hi, My problem is not having a PC. Can someone explain how i can transfer photos from iPhone to iPad and back (if needed). So the simple question is: 1.      Is it possible to transfer photos from one IOS device to another without 3rd party device, A