Report linking GL Expense AC with supplier invoice number

Hi All,
I need to generate a report that gives GL expense Acs with corresponding supplier invoice number and payment docu number.
I am new to FI and not aware of the tables invloved
Can anyone tell me the tables involved and the link?
Regards,
Anu

>
Anuradha Ramanathan wrote:
> I need to generate a report that gives GL expense Acs with corresponding supplier invoice number and payment docu number.
Hello Anu,
You must have a look into the Vendor Closed Item tables - BSAK.
GL Expense A/C --> BSAK-SAKNR or BSAK-HKONT
Payment Docu. Number --> BSAK-AUGBL.
Hope this helps.
BR,
Suhas

Similar Messages

  • Will the supplier invoice number come to FA when the asset is capitalised f

    Will the supplier invoice number come to FA when the asset is capitalised from proejcts?

    Dear Suresh,
    Do you mean while setting Capital project type, we need to set up the Grouping?
    Can you pls elobrate, if i'm wrong?
    Rgds
    Edited by: user12990981 on 21 Aug, 2011 11:55 PM

  • Error in workflow while linking goods receipt document with parked invoice

    Hi All,
    I parked document using Tcode MIRO, when WF has been executed and goods receipt document has been created.At the time that we tried to link this goods receipt to parked invoice document in the workflow,The problem happens with work item saying the status as Error. See the below error.
    MIRO Invoice: 801061193 2010 Item: 000001     13.09.2010     09:24:58     Error     AP Workflow for MIRO/MIRA Parked Invoice
    Can anyone advice why it is coming so?
    Thanks in advance.

    Hi
    In SWEL go to workflow trace and see what exactly is the error. This error description is too generic to arrive at soln.

  • Blocking the change of Supplier Invoice Number on update using SP

    Hi Mentors,
    Just wondering if blocking the change of Supplier Invoice No. (OPCH.NumAtCard) is possible using SP_TransactionNotification?
    I've been trying to make it work with the following code:
    --Prevent Duplicate Supplier Ref. No. in AP Invoice
    if @object_type = '18' and (@transaction_type in ('A' ,'U'))
    begin
    declare @RefNo as varchar (100)
    declare @CardCode as varchar (100)
         if (@object_type = '18')
              begin
                 select @RefNo = NumAtCard, @CardCode = CardCode from OPCH T0 where docentry = @list_of_cols_Val_tab_del
                 begin
                   if (@RefNo is not null)
                     begin
                       if 1!= (select count (docentry) from OPCH  where (NumatCard = @RefNo) and (cardcode = @CardCode))
                         begin
                            select @error = 10
                            select @error_message = 'Duplicate Supplier Reference Number!'
                         End
                       End
                   End
              End
    End
    --Prevent Supplier Ref. No. in AP Invoice from being changed during update mode.
    if @object_type = '18' and (@transaction_type = 'U')
    begin
    declare @DocEntry as int
         if (@object_type = '18')
              begin
                 select @RefNo = NumAtCard, @CardCode = CardCode , @DocEntry = DocEntry from OPCH T0 where DocEntry = @list_of_cols_Val_tab_del
                 begin  
                       if (@RefNo != (select NumAtCard from OPCH where (CardCode = @CardCode) and (DocEntry = @DocEntry)))
                         begin
                            select @error = 10
                            select @error_message = 'Changing of Supplier Reference Number is not allowed!'
                         End
                       End
              End
    End
    I'm not sure if this is really possible,and that I could be just beating the wind by trying.
    Thanks in advance!
    Sean

    To avoid modifiing the vandor reference use this:
    IF @Object_type = N'18' and @transaction_type = N'U'
    BEGIN     ---
    declare @li int
    declare @pref nvarchar(100)
    set @li=
    (select max(t.LogInstanc)   from ADOC t
       where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del)
    set @pref=
    (select isnull(t.NumAtCard,'')    from ADOC t
        where t.ObjType=18 and t.DocEntry=@list_of_cols_val_tab_del
          and t.LogInstanc=@li-1)
    If @pref !='' and @pref !=
    (select isnull(t.NumAtCard,'')   from OPCH t
       where t.DocEntry=@list_of_cols_val_tab_del)
    Select @error = 10, @error_message = N'Changing of Supplier Reference Number is not allowed!'
    END     
    --- To avoid using duplicated reference try this:
    if @object_type = '18' and @transaction_type in (N'A', N'U') -- AP invoice
    BEGIN          ----
    declare @Invoice AS VARCHAR(15)
    declare @Card AS VarChar (20)
    SELECT @invoice = NumatCard, @card = CardCode FROM dbo.OPCH
         WHERE DocEntry = @list_of_cols_val_tab_del
    If exists (SELECT T0.cardcode, T0.NumatCard FROM OPCH T0 where T0.NumatCard = @invoice
               and T0.CardCode=@card and T0.DocEntry!=@list_of_cols_val_tab_del)
    Select error = 10, @error_message = N'Duplicate Supplier Reference Number!'
    END          ----

  • Billing Document to be shift to other customer accounts with same invoice number

    Hi,
    For a long period of time we were maintaining different projects and site of a customer in a single account.
    Now there is a requirement to distribute individual invoices to respective individual customer accounts for that site or project.
    But doing that we also want to shift the invoices with following:
    1) invoice numbers should be same (as it was generate originally)
    2) Keep the same purchase order number
    3) keep the same date of the invoice (as it was raise in the main accounts)
    4) Keep the same salesperson
    5) after doing step 1 to 4, we also want to close the main account by offsetting entries to avoid duplications.
    After practicing above, we want the following result:
    1) individual statement of accounts with the same invoice dates, Purchase Order Number and saleman reference.
    best regards,
    adnan abbasi

    Hi,
    We knew by their PURCHASE ORDER NUMBERS and to separate them from each other,
    we will make a manual list in EXCEL to upload in the SYSTEM.
    customer code: 55555 (merge account for all projects and sites):
    invoice     date           assignment/LPO    value
    1111     12.12.2012   proj1/00001            4000.00
    1112     13.12.2012   proj2/00002            3500.00
    1113      14.12.2012  proj1/00002            2300.00
    1114      14.12.2012  proj3/00001            1500.00
    1115      15.12.2012  proj2/00003            1300.00
    from above we know with reference to LPO that there are 3 projects, so we will make excel sheet for 3 projects as:
    excel sheet1:
    1111   12.12.2012 proj1/00001     4000.00
    1113    14.12.2012 proj1/00002    2300.00
    excel sheet2:
    1112   13.12.2012   proj2/00002    3500.00
    1115    15.12.2012  proj2/00003    1300.00
    excel sheet3:
    1114  14.12.2012  proj3/00001     1500.00
    now to upload in the system I want to make 3 new accounts:
    55556 (for project1)
    55557 (for project2)
    55558 (for project3)
    but problem it that we want to keep date and invoice number exactly the same as originally booked in customer account no. 55555.
    regards,
    adnan

  • Issue Related to Billing Document F2 with same Invoice Number.

    Hi All,
    I have 3 Sales Order with 2 Sales Order belonging to Sales Org A and one belonging to Sales Org B. The Invoice generated for all the deliveries for Sales Order has the same Invoice Number. As per the standard functinality it is not possible to generate same Invoice Number for Sales Order belonging to different Sales Organisation. I have chekced the Table VBFA the preceding document for the Invoice Number I am getting 3 entries. Please could you help me out in analysing his issue. Where the possible error could be ?.
    Thanks & Regards,
    Sam.

    Kindly check as it could be due to the Single Invoice generated for collective three Deliveries.
    As per the standard functinality it is not possible to generate same Invoice Number for Sales Order belonging to different Sales Organisation
    This is not a standard Functionality.But if you have made a Logic in the Copy Control Routine then it could be possible.
    Single Invoice Number can be generated for one or more Deliveries if you process it through VF04.
    Best Regards,
    Ankur

  • At what level is supplier invoice number unique in 12.1.3?

    Latest documentation on etrm is for 12.1.1 and states for comlumn invoice_num on table ap.ap_invoices_all:
    'Invoice number for an invoice. This number entered will be unique per supplier and operating unit.'
    I got a client running payables on 12.1.3 and they can enter the same invoice number multiple times for the same supplier in one operating unit but on different sites.
    So it seems like the constraint has been changed to being unique per pay site. Same story for ap.ap_invoices_interface.
    According to 'Oracle Payables Release Notes for Release 12.1.3 [ID 1179114.1]':
    'Oracle Payables does not contain new or changed features in Oracle E-Business Suite Release 12.1.3.'
    So is this intended functionality or a bug. Anyone knows?
    Thanks,
    Jesper

    This is intended functionality.

  • FBE1 Advise creation with Excise Invoice number

    Hi SAP,
    Is it possible to create a advice in FBE1 with the help of Customer Excise Invoice number???
    I know its possible with help of accounting document number but my client want to create with the help of Excise invoice number.
    In FBE1 if i enter accounting document number and press open item gross amt tab then system automatically give the amount. but the same way i want with the help of excise invoice number.
    How to do?? is it any User Exsit availabe or any note need to apply??
    Its very useful requirment in SAP if we found the solution.
    Good Day!
    Regards,

    Hi SAP,
    Is it possible to create a advice in FBE1 with the help of Customer Excise Invoice number???
    I know its possible with help of accounting document number but my client want to create with the help of Excise invoice number.
    In FBE1 if i enter accounting document number and press open item gross amt tab then system automatically give the amount. but the same way i want with the help of excise invoice number.
    How to do?? is it any User Exsit availabe or any note need to apply??
    Its very useful requirment in SAP if we found the solution.
    Good Day!
    Regards,

  • Crystal Report linked to a table with filter attached

    I have a Crystal Report based on 2 tables and I want it to display every incident in the incident table and to pull the truckID of the
    first truck on the scene from the truck table . So the finished product should look like this…
    IncidentID           IncidentNum     ResponseTime                  First Arriving Truck           Disctict
      1x44452                1258ab55             5:32                                        B8                              2
    *The first arriving truck is the truck in the Truck Table with the same IncidentID and  the earliest ArrivalTime.  There will be multiple trucks for each incident but I want it to only show the one that arrived first (ArrivalTime).  So one line per incidentID.
    Incident Table
    IncidentID
    IncidentNum
    ResponseTime
    District
    Truck Table (Will contain many trucks for one incident with the following info
    Truckkey
    IncidentID (Link to Incident Table)
    ArrivalTime
    TruckID
    I figure I probably need to build a formula with the min function or perhaps an OnCommand – I’m just not sure.
    The biggest issue is the overall report has 4 filter settings.  They can select a date range, a location, an incident type and a range for the response time. So I do this with the Select Expert
    I can get all of that to work except I cannot figure out how to get it to pull the First Arriving Truck without duplicating the incident
    line.  Also, if there is a Truck with an ArrivalTime of Null I want it to ignore that Truck Table record.
    Can anyone help???

    Hi Debbie,,
    You may try this:
    1) Go to the Group Expert > Create a Group on the 'Incident ID' field from the Incident Table
    2) Insert a summary on the 'Arrival Time' field and place the field on the Group Footer
    3) Move all the fields from the Details section to the Group Footer
    4) Go to the Group Selection Formula (Report > Selection Formulas > Group) and use this code:
    {Truck.ArrivalTime} = Minimum({Truck.ArrivalTime}, {Incident ID})
    5) Suppress the Details Section
    -Abhilash

  • Inventory listing report to view item balance with the model number in R3

    Hi,
    Anyone have any ideas does R3 provide standard report to view the report with inventory listing on balance,description,model number?
    Kindly provide the t-code.

    Hi Karen,
    Check the below reports (t-code's)
    MB52, MMBE, MB5B, MB51
    If you need additional info revert.
    if helpful award points
    Regards,
    Vivek

  • Possibility of getting serial report with sales invoice details

    Hi All,
    We are Telco company and there is a requirement to view the serial numbers issued to a customer along with the invoice number, invoice date and invoice value.
    Is this possible? If yes, please let me know the tables which can be used in SQVI.
    Thanks,
    Savindi

    Hi,
    Refer the below link it may help you.......
    Re: Invoice details related to Serial Numbers

  • Is thr SAP functionality to have 301 movement type report with supplying pl

    Dear all,
    Please tell me is there any standard functionality to have report on 301 movement type with supplying plant.
    Please guide.
    Regards,

    Hi,
    Goto SPRO > MM > Inventory Management and Physical Inventory > Reporting > Define Field Selection for Material Document List > Here add field MSEG-UMWRK for program RM07DOCS and mark "Selection" and "output" both.
    And check in MB51 Report, you will get Plant (WERK - Supplying Plant) and Receiving Plant (UMWRK) both fields available.

  • Purchase Order history is not updated with Invoice number

    Hello Experts ,
    Please suggest some inputs/solution for my problem.
    Scenarios is :
    PO --> SO --> Invoice
    I am creating the invoice with the medium EDI , when I click on Save button IDOC is generated with the message " IDoc 'xxxxxxxxxxxxx' was created and forwarded for transmission " and it showing the status as 03 i.e, The IDoc was sent to an R/3 System or an external program via a transactional RFC ...but the problem is if I got to the Purchase Order history Its not updated with the Invoice number.
    What could be the problem , please suggest.

    Hi!
    I'm not sure, in which process you link PO and SO. There are some different ways, which are totally different scenarios - if you need help here, describe more detailed.
    Your invoice is probably only created with reference to SO, so check the invoice itself. In this case also the SO history should include the invoice.
    Regards,
    Christian

  • Linking between Activity network with Billing Document

    Hi Gurus,
        I have a requirement that I need to link between Activity, network with Billing Document number. By standard we can link only WBS-Element and Billing Document Number. How can I link between Activity, Network with Billing Doc. I want to develope a report for this.
    Kindly help me regarding this. I need some clue regarding this.
    Thanks,
    Ravi

    revenue can only be posed to WBS
    networks are meant for cost capture and scheduling
    so as per std sap what you want is not possible

  • Post an Incoming Payment starttng with Invoice Number.

    My client needs to create an Incoming Payment for a customer but wants to start with the Invoice number instead of the BP number.  They are using SAP B1 version 8.8.  Do you have a solution?

    Bill,
    This is quite common and I think this is what you will need...
    Save the below query and link it as a formatted search on the CardCode field on the Incoming Payment
    SELECT T0.CardCode FROM [dbo].[OINV] T0
    WHERE T0.DocNum = '[%0]'
    After you add this formatted search query to the CardCode field.  The user would press Shift+F2 on the CardCode field when processing an Incoming Payment. A window would pop-up asking to Enter DocNum which is the Invoice number.  This will do the reverse lookup.
    SUDA SAMPATH

Maybe you are looking for

  • Mac mini does not recognize M-Audio Fast Track Pro device.

    I recently installed M-Audio Fast Track Pro with the latest driver for (10.9.2). I'm running the OSX mavericks 10.9.2. The installation succeed but once i connected the device and turn it on, my mac does not recognized it and it shows "device not con

  • Adjusting date and time does not work for pictures from one camera.

    I have a set of pictures taken with a Casio EX-Z20 camera in my Aperture 2 library. Because the clock of this camera was off by a few hours I changed them all at once with the option "Adjust date and time...". This worked well and when I sorted the i

  • OraLink is NOT WORKING. I cant believe a simple issue is such a pain 2 FIX

    I dont know why it has to be so much complicated over the hover event in CSS skinning. It is not that I have not tried enough. I have extensively searched over the web, oracle forums and metalink but just can not find the reference to hover mechanism

  • Can't open pse file

    Somehow a file got saved as "type 11" file & now I can't open it. When I right-click the file icon for properties, it says "opens with photoshop elements". Lies, lies! Please help!

  • HP Pavilion dv6-3043ee Realtek Network Adapter not found in Device Manager

    Hi I own an HP Pavilion dv6-3043ee, 64bit and running Windows 7. And somehow the network adapter for the LAN got uninstalled for some reason. Now after posting something on the site I finally downloaded the driver for my laptop. Now another problem,