Displaying 2 invoice numbers for one customerin report

Hi All,
I had a report which is pre printed form report.
in my database one transaction have customers.
both completed invoice.
when i run the report by giving customer name as parameter still im getting invoice number of other customer in report output.
for example 14601 is transaction number
abc is one customer with invoice no 101522 and
xyz is another customer with invoice no 14294
both are credit memos
when i run the report by giving customer name as parametr im getting 101522 and14294 in report in palce of invoice number.
plz tell me how to rectiify this issue.
Thanks in Advance,
Regards,
Radha

Most likely this should be an issue with the reports query . Please verify that the same is having where criteria to filter the records based on the customer record that you are passing. May be you can provide the query and we can have a look at it....
Thanks

Similar Messages

  • Invoice numbers for a purchase order

    Hello Experts,
    For a particular purchase order, there are 2 invoice numbers in the R/3 system. But when i am running a certain BW report, which displays the invoice numbers for a PO, it is showing ony one invoice number. Please advice.

    Hi,
    I think ur BW report shows the cleared Invoice no. The second invoice no. might not have been extracted to BW system. Check your order no. in Cube whether it has two invoice nos.
    Regards,
    Suman

  • There are two transactions ZJPVCS303 and ZJPVCS303_US for one single Report

    When run as a batch program, (currently this is the case), or withT-Code ZJPVCS303 the selection screen is unchanged (except for additional sales area above)
    - When run as T-Code ZJPVCS303_UL (UL stands for Upload) the selection screen is changed.  The unix file option is no longer available, and the user is able to upload a local file (in the same format as the current unix file, but tab delimited) to the program for processing.
    Requirements:
    There are two transactions ZJPVCS303 and ZJPVCS303_US for one single Report.
    ->When ZJPVCS303 Transaction is executed, the file is uploaded from the Application
      server to SAP R/3. The selection screen parameters would be:
      Logical Filename:
      Sales Organization:
      Distribution Channel:
      Division:
    ->When ZJPVCS303_US Transaction is executed, the file is uploaded from the Presentation Server
      to SAP R/3. When this transaction is executed, it should not have the 'Logical
      Filename' parameter anymore on the selection-screen. Instead it should only have
      Local File name on the presentation server:
      Sales Organization:
      Distribution Channel:
      Division:
        The same thing is applicable for the other transaction ZJPVCS303. When transaction ZJPVCS303
    is executed, it should not have the 'Local Filename' parameter anymore on the selection-screen. Instead it should only have
    Logical Filename:
    Sales Organization:
    Distribution Channel:
    Division:
    So how should I make these parameters invisible depending on the transaction codes execution.
    I have an idea of using MODIF ID, LOOPING AT SCREEN...MODIFY SCREEN.
    I have an idea of using SY-TCODE.
    EX:
    AT SELECTION-SCREEN OUTPUT.
    IF SY-TCODE = 'ZJPVCS303'.
    LOOP AT SCREEN.
    IF SCREEN-GROUPID = 'GRP'.
       SCREEN-INPUT   = 0.
       SCREEN-INVISIBLE = 1.
       MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ELSEIF SY-TCODE = 'ZJPVCS303_US'.
    LOOP AT SCREEN.
    IF .....
    ENDLOOP.
    ENDIF.
    ENDIF.
    But I am not able to get the output which I require. Please help me out.

    Hello Rani
    Basically the transaction determines whether upload starts from application server (AS) or presentation server (PC). Thus, you will have the following parameter:
    PARAMETERS:
      p_as_fil          TYPE filename   MODIF ID unx,  " e.g. Unix server
      p_pc_fil          TYPE filename   MODIF ID wnd.  " e.g. Windows PC
    AT SELECTION-SCREEN OUTPUT.
      CASE syst-tcode.
    *   transaction(s) for upload from server (AS)
        WHEN 'ZJPVCS303.
          LOOP AT screen.
            IF ( screen-group1 = 'UNX' ).
              screen-input = 0.
              screen-invisible = 1.
              MODIFY screen.
            ENDIF.
          ENDLOOP.
    *   transaction(s) for upload from local PC (PC)
        WHEN 'ZJPVCS303_US.
          LOOP AT screen.
            IF ( screen-group1 = 'WND' ).
              screen-input = 0.
              screen-invisible = 1.
              MODIFY screen.
            ENDIF.
          ENDLOOP.
       WHEN others.
       ENDCASE.
    Regards
      Uwe

  • To enter two VAT numbers for one vendor in the same country

    Hello All,
    When we try to enter two VAT numbers for one vendor in the master record and belongs to the same country, the system is not allowing and gives the following message,
    "VAT reg.no. already exists for country BE"
    Message no. F2140
    Kkindly let me know the way to proceed further.
    Many thanks in advance.

    Hello,
    Go to OBA5 and switch off the message for online and batch entries.
    If the message is already not there in OBA5,
    Then go to OBMSG and switch off the same.
    Application Area F2
    Message No.140
    Regards,
    Ravi

  • Need to Concat Invoice Numbers for a partucular Check Number

    Hi,
    There is a requirement where for a Check Number for example 2345 and there are 4 invoice numbers ABC 1013280,CBD 1013456,DEF 5101234 and XYZ 6101234.
    I joineds ap_checks_all,ap_invoice_payments_all and ap_invoices_all.I want the data to appear as in CONCAT Invoice Numbers for partilcular Check Number
    For example the Check Number 2345 the data should appear as
    CHECK_NUM INVOICE_NUM
    2345 ABC 1013280,CBD 1013456,DEF 5101234,XYZ 6101234
    Any help will be needful for me

    Hi 918308,
    Try:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:2196162600402#18313422264397
    Regards,
    Gareth
    http://garethroberts.blogspot.com

  • Page Numbering for the aging report

    Hi,
    Does any one know how I can achieve the following:
    For the customer ageing report we need to print all customer statements at once. On our print layout we currently use the following CurrentPage()/TotalPages() formula fields to dispaly the page number. The result we get is 1/10, 2/10, 3/10....etc.
    We actually need the following, for total 10 pages statement would like to display the page number as follows:
    Customer A: 1/1
    Customer B: 1/3, 2/3, 3/3
    Customer C: 1/1
    Customer D: 1/5, 2/5, 3/5, 4/5, 5/5
    Does anyone know how to achieve the above for continuous print?
    Your assistance in this matter is highly appreciated.
    BR,
    Jimmy

    Hi,
    You are trying to print the detailed aging report. Right?
    It seems that there is no way of "splitting" the page numbers within a collection report.
    The system could not count the pages for EACH customer.The total number per pages will be per whole document, and cannot be per business partner within the same document when using the formula currentpage().
    Regards,
    Jitin

  • Manage two invoice posting for one price condition in sales document

    Hello Experts,
    I am a new user in SD module especially for billing and pricing part, and i have a specific requirement from my client that i cannot find the solution. Could you please help if you have any idea to resolve the following situation:
    I have a plant in UK which create a sales order for a customer X for a material M with a specific amount.
    For the invooice creation, the goal is to create two invoices:
    - One with net value billed in USD,
    - one with GBP to bill the tax.
    I tried to use billing plan, and i was able to generate the 1st invoice without tax through pricing procedure that don't manage Tax condition, however i am blocked when trying to generate the second invoice that contains only the tax.
    Do you have any idea how can it be managed?
    Thanks for help
    I can add more clarification if needed.
    Thanks

    Hello,
    Thanks for feedback.
    In fact the Customer master data currency is USD, and company code is in UK so it is GPB.
    The target is for some business case the customer is invoiced with Net value in USD, and the tax will be invoiced in GBP.
    But the problem is that i cannot manage two currencies and two invoices for one price condition.
    So I am wondering what is the best solution, How i can generate two output types for the same price condition.
    I tried to set up pricing procedure without tax, to manage the Net value, in first line of the billing plan.
    But i am not able to generate a seconde line with only the tax condition.
    DO you think that is possible?
    Thanks

  • Adjusting the display area's size for one user

    For one user account, the display is larger than the area of the monitor such that when we move the mouse the whole picture scrolls since it does not fit on to the display's area.
    I would have thought this had to do with the hardware adjustments with which you can adjust the hor/vert positioning, etc., but I have not been able to address this problem with these controls - In any case, those hardware controls effect all users and this is only an issue for one (of four) users.
    It seems it has to do with the resolution since the fonts are slightly distorted.
    The display system preferences are set correctly - and no matter what resolution is set, the problem is consistent for that user.
    Any suggestions?!

    System Preferences->Universal Access and check that Zoom is off.

  • Need invoice numbers for material masters.

    Dear experts,
    I have a list of approx. 200 PO numbers (not SO numbers) and material masters. I need to find invoice# for each PO#. Could you please help me what is the fastest way to find the invoice# using the data mentioned above? I do not want to enter each order separately and check document flow in order to find invoice, would like to find some faster way to do this
    Hope you can help me!
    Thank you in advance!!

    Hello Abc,
    Apart from the above suggestions, I would like to point out that if you are searching for this as a one time activity this is feasible. But sounds like this would required in future also. To make this very transparent you can consider my view which is described below;
    Process Flow:
    The PO no mentioned in sales order in VA02 will be copied to the billing document in VBRK header when you create billing from a delivery. This PO no will appear here in the Assignment field (VBRK-ZUONR) which will further goes to accounting document of RV in FI which can easily been identified in FBL5N.
    SPRO Configuration:
    In VTFL use the option A-Purchase Order no in the Assignment field.
         2. This will copy the value to VBRK-ZUONR like below;
       3. Finally you can see this from the account side also in standard reports only in FBL5N like below
    So by this way you will be able to manage it by standard configuration as well as in standard reporting ZERO ABAP inputs required here and users can easily learn how to track this requirement from Sales side as well as from Finance end.
    Thanks,
    Suman

  • Invoice numbering for Romania

    We have rolled out our SAP installation to a Romanian subsidiary and we are facing a lot of issues with legal regulations. One of them is invoicing. We are told by accountants in RO that we need to define on a yearly basis a number range for invoices and that for this number range all numbers must be accounted for.
    The problem is that we are using a common number range for all companies in SAP. I am FI consultant, not SD, but from what I can see customizing only lets us define different number ranges if we use different billing types.
    Can anyone explain what exactly are the legal requirements and how can we conform to them in SAP - hopefully without too much redundance and new customizing?

    @Raja: Thanks for the hint - I will probably need that if it turns out to be neccesary to separate the number range:-)
    @Vrajesh: We have already been through the localization documentation and the country manual, but it is very vague on this point and therefore not of much help:-( SAP Romania says to ask our auditor as the legislation is open for interpretation(!), so that will be our next step.
    @Vignesh: I do have acces to the IMG and I do know how to change number ranges. My question is, whether or not it is neccesary to use a different number range for Romanian invoices and the easiest way to achieve this - avoiding new document types.
    I would still very much like to hear from anyone with Romanian subsidiaries!
    Best regards
    Thomas

  • Multiple VAT reg numbers for one customer

    Hi,
    We have one customer who is registered in 3 countries, thus having 3 VAT registration numbers. For the invoice, it is then required to have different VAT nos. depending on where the import takes place.
    I already tried to modify user exit RV60AFZC but it seems that the value for vbrk-stceg gets overwritten with the vat no. in the customer master data by the other include programs on module pool SAPLV60A.
    For those who have worked on a similar scenario, I would appreciate inputs/directions. Thanks!

    I presume, your requirement is fetch the different VAT numbers in output in which case, you can try with either of the following:-
    USEREXIT_KOMKBV3_FILL  in program RVCOMFZZ
    USEREXIT_KOMPBV3_FILL in program RVCOMFZ1
    G. Lakshmipathi

  • Two different invoices created for  one order for two different lines

    Hi All,
    I have an order with four line items that was shipped on the same day, invoiced on the same day and all lines have the same delivery number yet two inovices were created for this order..one for the first three lines and one for the last line.
    Can anyone please explain what can cause this to happen?
    Thanks
    A/A

    Hi Asgar,
    If a single order has been split into two invoices, you should check the values of the mandatory columns. During Autoinvoice, the grouping is based on the madatory columns and also your grouping rules. If any of the mandatory column has a different value, it will split into different invoice.
    Please refer the following metalink note for further details
    Subject: How Autoinvoice Grouping Works
    Doc ID: 98772.1
    Hope that helps.
    Thanks,
    Anil

  • AR Invoice Numbering for Closing

    Hi,
    When we perform our monthly closing, we sometimes need to post invoices dated in the previous month. For example, on Sept 3rd, we might create an invoice with a posting date of 8/31. Of course due to the legal rules of sales doc #'s continuing sequentially with date, we would have to manually enter doc #'s for any invoices actually posted from the beginning of Sept. Here's my question:
    Let's say we want to leave inv # 101-105 open for back dating. In Sept, we manual enter normal inv #'s from 106. It turns out we only use 101-103 for Aug closing. Now there 104 and 105 and still available. We don't want to have to keep manually entering for Sept invoices- we want the system to automatically generate the next available number (108,109,110...). but because of the doc numbering rules, it will always try to grab 104 and 105 and you are not allowed to change the "Next No." for sales docs in the setup.
    Anyway around this or suggestions on how to manage document numbering with respect to monthly closing? Thanks.

    Hi Allen,
    You may use A/R Reserve invoice to keep your number available.  However, if you question is just reserve the invoice number without any information for the invoice, I am afraid there will be not possible unless you just using manual series.
    Thanks,
    Gordon

  • Role content is displayed as blank screen for one user

    Hello,
    Portal version is 6.0 SP 18.
    A page (content 2 iviews; one iView is UWL) was added to a role and assigned to users. Although everybody can see the page via role on the portal, one user gets blank window. Page is not displayed for her and no error message is shown. But if the same user previews the portal page under the portal content, teh same page is displayed properly.
    Where can this blocking be for this user? I clean cache of UWL and all personalizations; role removed from user and added again. Also I removed the page from role and add again as Deltalink. Result is the same.
    I am waiting your reactions, thanks in advance.
    Regards,
    Mesut

    Hi Mesut,
    check below blog which resolves issue
    iView works when previewed but is blanked when assigned to a role/page.
    Koti Reddy

  • Do not display the overall result for one KF

    Hi,
    Question is in the title, here is an explanation of what I want to get with a simple BEx query (without adding extra vba)
    2 KF : KF1 and KF2
    2 Caracteristics : let's say 0PLANT and 0CALMONTH
    0CALMONTH is displayed in line, 0PLANT in column
                         overall result    1701    1709    1710
    0calmonth        KF1               KF2      KF2     KF2
    01.2009           xxx               xxx       xxx     xxx               
    02.2009           xxx               xxx       xxx     xxx
    03.2009           xxx               xxx       xxx     xxx
    Basically what I want is to KF1 only for the aggregation of all plants and I want to display KF2 for each plant
    Do you think this is possible ?
    For now I only succeed in getting 
                         overall result    1701    1709    1710
    0calmonth        KF1  KF2      KF2      KF2     KF2
    01.2009           xxx               xxx       xxx     xxx               
    02.2009           xxx               xxx       xxx     xxx
    03.2009           xxx               xxx       xxx     xxx
    I checked the forum for a while and did not find the answer (zero suppress do not work on result)
    Thanks for you help,
    rgds,
    Sebastien

    Hi,
    I didnt get exactly for what you are looking for ,
    Chars : 0Plant, 0Calmonth....put these two in two new selections by creating a new structure in Rows
    KF:        what ever the KFs you need put them in Columns in a structure,
    then enable the Cell Reference, now you can hide the KF results by cell wise and/or column wise however you need,
    Regards
    ReddY A

Maybe you are looking for

  • How to use reserved word in MAX() function?

    Hello, I migrated from SQL Server 7 to Oracle 8.1.7 and have to keep the same tables, columns etc names as it used to be in sql server. One of my tables have colunm called 'Row' and as far as I understand it's reserved word in Oracle I need to bypass

  • When opening a published folio, how can I always default to launching the first article

    Currently, when our app is launched or open from the iPad, it opens on the last article I was on. I would like the app to always open from the "first" article in the folio. Is this possible?

  • Hdapm - FAILED: APM not supported

    Hello. My system work slow and I always hear my HDD's buzz and clicks ,also its temperature is about 59 C. I was looking for solutions of my problem at internet and found hdapm utility. But I can't make it work. after I installed hdapm I see in conso

  • MBA or MB pro?

    I am trying to find some reasons to get either or for a new portable but running into some issues. I am wondering which I should get if interested in playing some games (ie WoW). I see the new MBA have some graphic upgrades but not sure if it can han

  • Dear Lord, why?!

    I just finished shooting a feature using the JVC GY-HD100U. A fantastic camera all around (after watching the first batch of dailies said he would now never go back to film..), but now it's come time to edit the movie and... ... well, we seem to have