Want to maintain manual invoice number and amount in SAP

Hi Experts!
Currently I am facing one issue to keep tracking of the manual invoices that were actually submitted to customer.
Amount in Manual invoice may be the club of SAP Invoices.
To provide customer a error free Statement of Account, we need to maintain the manual invoice with following parameters:
1.  Invoice Number (Manual)
2.  Manual Invoice Date
3.  Manual Invoice LPO Number
4.  Manual Invoice Amount
Also I want to know with which transaction the statement will print alongwith manual invoice references for making error free final statement of account.
best regards,

Hi Adnan,
Not sure if I understand your requirement. Are you worried about the periodic (?) statement of account, or about posting of invoices in a way that they show up correctly?
As for account statements, there are two main standard options:
a) "Periodic account statements" - trans. F.27. You can schedule them regularly or ad-hoc. To make them work, you need to maintain a form behind a selected correspondence type (e.g. SAPP3) and then maintain an "account statement" indicator in vendor/customer master record (KNB1-XAUSZ, in Correspondence screen, has to be configured).
b) Balance confirmation letters - trans. F.17 for customers or F.18 for vendors. They provide more flexibility in the layout of the form (e.g., first request, reminder, blind request, etc.) but in general are focused on "open items as of key date" which may not be what you require.
Now, what do you need to print for each invoice? Invoice number can be either FI document nr (BELNR) or Reference (XBLNR) if you keep track of invoice numbering separately. Date and amount can also be printed on both types of statements (you need to make a choice between document and posting date). What is LPO number?
Check these options and let us know what further question you have.
Good luck,
Jan

Similar Messages

  • Excise Invoice number and Internal Number

    Hello Friends
    I have some queries ,I will be thankful to you if you could guide me, in understanding themu2026
    1) When we see the document in J1IEX ,in excise invoice tab, we see two fields :Excise invoice number and Internal Number.
    For Internal number we define the range in object J_1INTNUM, but how do we define range for Excise invoice  number
    2) Where do we maintain the relation between GRPO (Excise Transaction type) with the Excise Invoice number
    3) When do we require updating of register ,is it done on daily bases, and  how can we see the entries of RG23A part 1.
    4) We have excise invoice number  range of posted ,in process and cancel documents which is  assigned to GRPO transaction type, while running J1I7 though we select last option   part 1 posted  and part 2 not  posted, still the system shows the cancelled documents, How can I avoid  the cancel documents
    Thanks
    Siddharth

    1) When we see the document in J1IEX ,in excise invoice tab, we see two fields :Excise invoice number and Internal Number.
    For Internal number we define the range in object J_1INTNUM, but how do we define range for Excise invoice number
    -->> Ex inv nbr will be entered based on the vendor ex invoice .. this is external nbr assignment
    2) Where do we maintain the relation between GRPO (Excise Transaction type) with the Excise Invoice number
    --->> there is no relation between grpo vs. ex inv nbr
    3) When do we require updating of register ,is it done on daily bases, and how can we see the entries of RG23A part 1.
    >> u can see in J1I7 or thru table J_1IPART1
    4) We have excise invoice number range of posted ,in process and cancel documents which is assigned to GRPO transaction type, while running J1I7 though we select last option part 1 posted and part 2 not posted, still the system shows the cancelled documents, How can I avoid the cancel documents
    >> wait for others answers..

  • Invoice number and Check number for FI

    Hi Friends,
                    What does the above for FI mean? I need to pull the invoice number and the check numbers from AP and report . My question how do I recognize
    which field from 0FI_GL_4 stores this information? Any advice would be greatly appreciated,
    Assumption : Are the check numbers in FI nothing but the document numbers for a particular document type?
    Thank you,

    FI means Financial accounting.  0FI_GL_4 does not contain the check number as a standard field in the extractor. You would have to modify the extractor. the check number is in the table PAYR field CHECT linked to the clearing document  number VBLNR . The clearing doc is in 0FI_GL_4 so that is your connection. You probably would be futher ahead to create an extracotr for PAYR then connect to your data from 0FI_GL_4 in an MP or info set.  By the way 0FI_AP_4 is the extractor for accounts payable so you may want to use this instead. Depends if  like they are requsting accounts payable information. The invoice number will be in the reference field which is XBLNR.
    pls assign points to say thanks.

  • Invoice Number and Performa invoice number

    Hi all
      I want to get the combination of invoice Number and Performa invoice number, I have got the VBFA Table, but it’s very slow, any alternative program or function please help me
    Thanks
    Kanishka

    Try AC_DOCUMENT_RECORD. It returns all kind of accounting documents.

  • Make "invoice number" and "description" fields both mandatory on payables

    I want my 'invoice number" and "description" fields both manadatory on quick invoice to force users to fill in the fields.

    995170 wrote:
    I want my 'invoice number" and "description" fields both manadatory on quick invoice to force users to fill in the fields.Please see my reply to your other thread -- https://forums.oracle.com/forums/thread.jspa?threadID=2514322
    Thanks,
    Hussein

  • Link between invoice number and accounting document number

    Hi Frnds,
    When i receive a partial receipt (of an invoice) from a customer, i am getting the link between invoice number and accounting document number from a table (BSEG), but when i am receiving the final settlement amount from the customer, i m not getting the link between the inv. no. and accounting document number. Can anyone tell me how can i get the same?

    hi
    try these tcodes
    FBL5N
    FB02
    regards

  • In order confirmation i need invoice number and delivery number.

    Dear Experts,
    I need invoice number and delivery number in order confirmation.
    how can i get the delivery number an invoice number.
    Program name: RVADOR01
    Regards
    Ahmed

    Hi
    In the Order confirmation Only sales order details will be there
    You better write a PERFORM  statement in Script and in the subroutine fetch the Delivery number and Invoice number with the following links and display them in script
    LIPS-VGBEL = VBAK-VBELN
    LIPS-VGPOS = VBAP-POSNR
    VBRP-AUBEL = VBAK-VBELN
    VBRP-AUPOS = VBAP-POSNR
    You can also can use the VBFA table
    using Prev doc type = C (order) and Subsequent doc type = J to get the Delivery
    and Sunsequent type = M for getting the Invoice Number
    see the sample code for subroutine
    REPORT ZMPO1 .
    form get_freight tables in_par structure itcsy out_par structure itcsy.
    tables: ekko,konv,t685t.
    data: begin of itab occurs 0,
             ebeln like ekko-ebeln,
             knumv like ekko-knumv,
           end of itab.
    data: begin of itab1 occurs 0,
             knumv like konv-knumv,
             kposn like konv-kposn,
             kschl like konv-kschl,
             kbetr like konv-kbetr,
             waers like konv-waers,
             kwert like konv-kwert,
           end of itab1.
    data: begin of iout occurs 0,
             kschl like konv-kschl,
             vtext like t685t-vtext,
             kbetr like konv-kbetr,
             kwert like konv-kwert,
           end of iout.
    data v_po like ekko-ebeln.
    read table in_par with key 'EKKO-EBELN'.
    if sy-subrc = 0.
       v_po = in_par-value.
       select
         ebeln
         knumv
      from ekko
      into table itab
      where ebeln = v_po.
      if sy-subrc = 0.
        loop at itab.
          select
            knumv
            kposn
            kschl
            kbetr
            waers
            kwert
          into table itab1
          from konv
          where knumv = itab-knumv and
                kappl = 'M'.
        endloop.
        loop at itab1.
          if itab1-kposn <> 0.
            select single * from t685t
                              where kschl = itab1-kschl
                                and kappl = 'M'
                                and spras = 'EN'.
            iout-vtext = t685t-vtext.
            iout-kschl = itab1-kschl.
            iout-kbetr = itab1-kbetr.
            iout-kwert = itab1-kwert.
            append iout.
            clear iout.
          endif.
        endloop.
        sort itab1 by kposn.
        loop at iout.
          sort iout by kschl.
          if ( iout-kschl eq 'GSDC' OR
               iout-kschl eq 'GSFR' OR
               iout-kschl eq 'GSIR' ).
            at end of kschl.
              read table iout index sy-tabix.
              sum.
             write:/ iout-kschl,iout-vtext,iout-kwert.
          out_par-name = 'A1'.
          out_par-value = iout-vtext.
          append out_par.
          out_par-name = 'A2'.
          out_par-value = iout-kwert.
          append out_par.
              endat.
            endif.
          endloop.
        endif.
      endif.
    endform.
    IN THE FORM I AM WRITING THIS CODE.
    /:DEFINE &A1& = ' '
    /:DEFINE &A2& = ' '
    /:PERFORM GET_FREIGHT IN PROGRAM ZMFORM_PO1
    /:USING &EKKO-EBELN&
    /:CHANGING &A1&
    /:CHANGING &A2&
    /:ENDPERFORM
    &A1&
    &A2&
    This Code is to be written in the PO form under ADDRESS window.
    /:DEFINE &A1& = ' '
    /:DEFINE &A2& = ' '
    /:DEFINE &A3& = ' '
    /:DEFINE &A4& = ' '
    /:DEFINE &A5& = ' '
    /:DEFINE &A6& = ' '
    /:PERFORM GET_VENDOR IN PROGRAM ZMFORM_PO
    /:USING &EKKO-EBELN&
    /:CHANGING &A1&
    /:CHANGING &A2&
    /:CHANGING &A3&
    /:CHANGING &A4&
    /:CHANGING &A5&
    /:CHANGING &A6&
    /:ENDPERFORM
    &A1&
    &A2&
    &A3&
    &A4&
    &A5&
    &A6&
    Regards
    Anji

  • Report ( invoice number and delivery number)

    Hi
    Is there any report in SAP, which can show invoice number and delivery document number, I know the SAP table, but is SAP standard report available?
    Example:PO: 5500075241, plant abraod delivery number 3510000174 and plant abroad Invoice number 3550000019, we need report which gives Delivery and Invoice no.
    thanks

    No standard reports shows both delivery and billing references in a single report.  You can develop a query in SQVI by table joining VBFA, LIKP and VBRK.
    thanks
    G. Lakshmipathi

  • Invoice number and document number not printed in payment advice

    Hello Gurus,
           I am executing reprint check through transaction fch7, In that Invoice number and document number not printed in payment advice. I have created zscript for that and also assinged regup-belnr and regup-xblnr and used standard program RFFOUS_C.
    other fields from regup table are displayed but above two mentioned fields are not displayed.
          I even tried debugging standard RFFOUS_C prog, in that regup-belnr and regup-xblnr are coming but it is not printed on form.
    With regards,
    Vikram

    Hi,
    Debug you Zscript and check the invoice no and document no. Have assigned that script in FBZP..? check the which form is calling FCH7 in debugger mode..?
    Rgds
    Aeda.

  • Invoice Number and Document Number

    Are Invoice Number and Document Number in FI AR same?
    Dont they differ, I could find only one infoobject 0INV_DOC_NO relating to both.
    Is there any seperate infoobject which gives the document number in 0FIAR_C03.
    Please comment.
    Thanks.

    hi,
    are you looking for clearing doc number ?
    http://help.sap.com/saphelp_nw04s/helpdata/en/ee/cd143c5db89b00e10000000a114084/frameset.htm
    0CLR_DOC_NO - source field BSID-AUGBL
    hope this helps.

  • Printing invoice number and purchase order

    Hi All,
             I am newbie to SAP scripts.By using standard script ( f110_prenum_chk  ) modifying the script layout.and also need to print some extra fields.those are ,
                                --  Invoice number
                                --  Purchase order number
                                --  TDS
    from the above  i am able to display TDS by using the field &regud-sqste& .Is this right field to print the TDS ?
    and from which table i can fetch the details of invoice number ,and PO number ?i have the document number (reguh-vblnr).can i use this field to fetch the details of  invoice and PO numbr.please Help me out.
    Thanks and regards
    Naresh
    Edited by: naresh bammidi on Oct 12, 2011 2:17 PM

    Hi,
    You ERP system should be upgraded to Enhancement pack 3 to avail this datasource. Could you confirm the patch level of your ECC system. Or you can use 2lis_06_inv datasource to get the PO Number and accounting information.
    Thanks,
    RRR.
    Edited by: Rammi on Feb 18, 2010 10:11 AM
    Edited by: Rammi on Feb 18, 2010 10:12 AM
    Edited by: Rammi on Feb 18, 2010 10:12 AM

  • Display Distribution Lines, Invoice Number, and the PO Number

    In Toad, I'm trying to make a query that will display the invoice number and all distribution lines as well as if it's tied to a PO or not, and if so, what is the PO number - is this possible? This is what I've made so far and I don't think the outer joins are correct.
    from ap.ap_invoices_all inv
    ,po.po_vendors vend
    ,ap.ap_invoice_distributions_all idstr
    ,gl.gl_code_combinations distr
    ,po.po_distributions_all pdstr
    ,po.po_line_locations_all shipm
    ,po.po_lines_all polin
    ,po.po_headers_all pohdr
    where vend.vendor_id = inv.vendor_id
    and inv.invoice_id = idstr.invoice_id
    and idstr.dist_code_combination_id = distr.code_combination_id
    and idstr.po_distribution_id = pdstr.po_distribution_id(+)
    and pdstr.line_location_id = shipm.line_location_id (+)
    and shipm.po_line_id = polin.po_line_id (+)
    and pohdr.po_header_id (+) = polin.po_header_id

    Hi,
    If your PO is in SRM (and replicated into R/3), and the GR is created directly in R/3, then there is no reference of this R/3 GR in SRM. The only way to get it it to read the backend PO history.
    To do this, you can try to call the BBP_PD_PO_GETDETAIL is SRM, with I_READ_BE_DATA = 'X'.
    You will get your R/3 reference (R/3 material doc number) in export tables E_HEADER_REL and E_ITMLIM_REL, and actual item values in E_ACTVAL.
    Rgds
    Christophe
    PS: please reward points for helpful answers

  • How to find ar invoice number and order_number in gl

    hai all
    plase send ane one pfd are some other documents how to find the ar invoice number and order number in gl tables are in gl_interface

    11i (11.5.10.2+ virtual) Documentation Library
    http://download-uk.oracle.com/docs/cd/B25516_14/current/html/docset.html
    Release 12.0.4 Documentation Library
    http://download.oracle.com/docs/cd/B40089_09/current/html/docset.html

  • To get the invoice number of amount applied in view prepayment applications

    hi all
    In AP abc Manager-Invoices--when we give invoice number in the invoice number field we get to see supplier name etc in the same Invoices Form there is a
    tab called General from which we can get Amount Paid ,
    Similarly there is a tab called View Prepayment Applications ,when clicked on this tab we can see Amount Applied and invoice number corresponding to that amount applied
    KIndly help me from which table or view this invoice number can be obtained
    i got amount applied from the view AP_UNAPPLY_PREPAYS_V,but i cant find the invoice number.
    kindly guide
    thanking in advance
    Edited by: makdutakdu on Dec 19, 2011 11:29 AM

    Thanks Robin,
    i was able to get a work around for this. For the time being i am using the following code snippet, i will try using the one u sent an will see if this works too.
    // create nodeinfo object for the node that table will bind to
    final IWDNodeInfo nodeinfo = wdThis.wdGetContext().node<NODENAME>().getNodeInfo() ;
    //get the structure of the node
    final IStructure struct = nodeinfo.getStructureType() ;
    Iterator iter = nodeinfo.iterateAttributes() ;
    if (null != struct)
    totalFields = struct.getNumberOfFields();
    else
    for ( Iterator i = nodeinfo.iterateAttributes(); i.hasNext(); i.next() )
              totalFields++;
    for(count = 1; count <= totalFields; count++)
         fieldName = nodeinfo.getStructureType().getField(count).getName();

  • Manual Invoice number duplication message

    Hi All,
    We were wondering if someone could clarify the following situation:
    Whilst working on 2 TEST company databases we have encountered a small problem. We have 2 BP accounts "Example1" and 
    " Example2" , both had invoices with the reference 1234567 , entering in to "Example1"was fine, but when we tried to enter this ref No. for "Example2" the system told us we had already entered it and would allow no further processing.
    We think we will come across different suppliers that have the same series of reference nou2019s from time to time, how is this dealt with within SAP B1?
    Thank you,
    MB

    Hi Matthew,
    The manual number you are entering is normally your internal reference for Purchase Invoices in SAP.  Therefore you cannot enter a duplicate number. All of our customers have this set as an automatic numbering series.
    Most clients would put the suppliers invoice number in to the Customer / Supplier Ref No. field (numatcard).
    The numatcard will still check for duplicate invoice numbers, but only for one supplier.  So, you cannot enter 1234567 on the same BP account twice without warning, but you can enter 1234567 across 2 supplier accounts.
    Regards,
    Adrian

Maybe you are looking for

  • Can you use Apple education discount in store?

    I'm a sixth form student, and I have a UniDays student discount which allows me to get up to 15% off a Macbook on the Apple store. Can I use this discount to buy a Macbook in an Apple store? And also because the Apple education pricing states univers

  • How to upload a photo on a Facebook page, NOT in the profile?

    Hi, I have the problem to publish an album on a Facebook page, but I'm only capable to publish the album (or the photo) in the profile. Any suggestion? Thanks

  • GIS Integration on Win 8 - Work manager 6.1

    I understand that OpenUI API can be used to write native code ( .NET) to integrate GIS app wih Agentry app on Windows. If someone has implemented this on Windows, Please provide insights on this. I know that one can implement the GetExtensionString(S

  • Export and Import Users in UCM

    Hi, Does anyone know how to move all users, alias and role definitions from one ucm to another ucm? Thanks.

  • 21cn upgrade connection fee

    Jst got this months bill looks like I may have been charged a 30 quid connection fee as my bill is exactly 30 quid extra. If this is the case iam really nt happy this was never mentioned when I signed up for it. All I got told was I would be entering