Report has two duplicated line

Hi experts,
in A/P invoice, I new a document with only one item. but when I preview the print of the document. it appears two item line. the second item and quantity is the same with the first one but without price and total. the format is like below: How do I make the second line disappear?
                        Purchase Order
Id:123
Item1        1600 pcs     0.98USD       1568USD
Item1        1600 pcs
  total        3200
PS, In database and A/P invoice, there is only one item(record). but 2 in printed report.
Thanks...

Hi,
When a line in print preview is showing 2 or more times in repetitive area, then most of the time it is due to a field which is present not related to rows table or it is not in the active form.
I would suggest is check all the fields in the repetitive area, make sure even hidden fields are from rows table and it is from A/P Invoice itself.
hope this helps you out
regards,
Shreyas

Similar Messages

  • My sales order is having two schedule lines

    Hi sap gurus,
    my sales order quantity is 36 pcs.
    the same sales order has two schedule lines in that the material availability date is 05/02/2010 for quantity 22 and for second is 15/02/2010 quantity is for remaining 14 quantities.
    so here delivery can be created for quantity 22 becasue the MAD is on 05/02/2010.  upto here no issues.
    here in my production server user is able to create only one delivery document for total 36 quantity which includes the 14 quantity also for which the MAD is at a far date that is 15/02/2010.
    (2).  i opened the delivery there two picking requests has been generated one on 04/02/2010 & for 07/02/2010.  how it is possible by the system.
    how is it possible for a material which is available in the future date that is 15/02/2010.
    can any help on this.
    regards,
    balaja

    Hi,
    Though the MAD is different, same delivery is possible for the two Schedule lines.
    But for the picking request creation for the future MAD (15/02/2009), please check your sales order. That is, go to VA02, and in to the schedule line level and then to the Shipping button and look for the various dates...
    Regards

  • ALV print problems for reports with two sort fields and subtotal at each

    When a report has two sort fields and subtotal at each of them, the print function is not working correctly. Please see the report below.
    The second "" (single star) record (the 10 RL record) and the '*' (double star) record (the 12 RL record)  are not printing.
    This is happening for any standard SAP reports. Any resolution? Any OSS Notes?
         Material/Stock Code          Grade       Units Count     Unit Type     Set Position     LFT
         520085V000          7818     1     RL     A     19,682 LF
         520085V000          7818     1     RL     A     19,682 LF
    *     520085V000               2     RL          
         599098V000               1     RL          
         599098V000               1     RL          
         599098V000               1     RL          
         599098V000               1     RL          
         599098V000               1     RL          
         599098V000               1     RL          
         599098V000               1     RL          
         599098V000               1     RL          
         599098V000               1     RL          
         599098V000          7717     1     RL     A     36,167 LF
    *     599098V000               10     RL          
    **                    12     RL          
    ***                    12               
    Thanks
    Anand
    Edited by: Anand Velayudhan on Feb 9, 2009 11:50 PM

    Hi,
    Check these OSS Notes..
    Note 975777 - ALV total: Subtotals disappear from printout
    Note 1039655 - ALV total: Subtotals disappear from printout II
    Thanks
    Naren

  • N95 has two black horizontal lines, and restarts f...

    My n95 shows two black lines on its screen, restarts frequently and everytime I connect it to charger, it works fine. But when I disconnect it, it turns off quick. Is there any self-solution here?

    Welcome to Discussions, BlackBerry_XD.
    This is likely a hardware problem on your N95. However, you may still try using the Nokia Software Recovery Tool with the phone connected to a charger - http://www.microsoft.com/en-us/mobile/support/faq/?action=singleTopic&topic=FA142987
    Otherwise, you need to send the phone to a Nokia Care Point or to a reliable phone repair shop.
    Good luck

  • How to devolop a report which has two languages in it

    Hi Friends
    I got a requirment where in i need to devolop a report with two languages in it English and Arabic Report is divided into two halves one is in english and another one is in Arabic

    Hi
    Check the code using this...
    DATA: number           TYPE tbtcjob-jobcount,
          name             TYPE tbtcjob-jobname VALUE 'JOB_TEST',
          print_parameters TYPE pri_params.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = name
      IMPORTING
        jobcount         = number
      EXCEPTIONS
        cant_create_job  = 1
        invalid_job_data = 2
        jobname_missing  = 3
        OTHERS           = 4.
    IF sy-subrc = 0.
      SUBMIT submitable TO SAP-SPOOL
                        SPOOL PARAMETERS print_parameters
                        WITHOUT SPOOL DYNPRO
                        VIA JOB name NUMBER number
                        AND RETURN.
      IF sy-subrc = 0.
        CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
            jobcount             = number
            jobname              = name
            strtimmed            = 'X'
          EXCEPTIONS
            cant_start_immediate = 1
            invalid_startdate    = 2
            jobname_missing      = 3
            job_close_failed     = 4
            job_nosteps          = 5
            job_notex            = 6
            lock_failed          = 7
            OTHERS               = 8.
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF.
    ENDIF.

  • SSRS 2008 Report with two tablix have extra blank pages

    I am working on a report in SSRS 2008 that has two tables (or tablices?). My report is set to a width of 11 and height of 8.5, left and right margins of 0.25, top and bottom margins of 0.5. Paper size is Letter, Orientation is landscape.
    With margins accounted for, I basically have 10.5 of workspace for the Body. The first tablix's width is way under 10.5 but the second tablix has lots of columns and would have to span two pages so the Body goes past 10.5 but I
    kept it under 22 (twice one page).  I put a PageBreak after the first tablix. When I run the report and do a Print Layout, the first tablix prints with a blank page after every printed page of that table. The second tablix prints just fine, no extra
    blank pages in between. So I suspect that it is the "empty space" to the right of the first tablix, which is caused by the second tablix's width, that is the problem.
    However when I tried to switch the tables in my report and have the wider tablix print first and the narrower tablix print after it, I did not get any extra blank pages on both; the reports prints just fine.
    Unfortunately, I cannot have the wider tablix print first with the report I need. I would like to know if this is a bug in SSRS 2008? It appears that there is something with the order report objects are printed and their size. Has anyone figured this out
    yet?  Thanks.

    I found
    this post on the MSDN forum that offers the following solutions that worked for a few people responding to that thread.  You might want to try one of these:
    "I found the problem cause.  In Reporting Services, report body width must be <= (report width - report margins width).I reduced the margins to zero width, and the pagination problem disappeared!"
    "I have solved my problem. With SSRS you must be very careful with the way you place objects
    Growing objects will push those on their right, even if they are not on the same line /!\
    Consider a textbox 2 inches large centered, and a growing matrix beneath it. on the left, 1 inch large. At run time the matrix will grow and the title will be pushed aside. And this may cause blank pages.
    A workaround is to create 1 rectangle per object. The rectangle should occupy all the body space available while objects occupy only a part of their embedding rectangle."
    Carla
    Carla Sabotta

  • Matrix report with two across groups

    Hi all,
    I am facing a problem in making a multi line matrix report.
    actually I need to make a matrix report with two "across groups", but unable to get desired result.
    if any body has any idea, please share with me.
    regards
    Ata

    No,
    you must have only 1 query which extracts all your data:
    A,q1,10
    A,q2,20
    A,q3,30
    B,q1,40
    B,q3,50
    C,q2,60
    C,q3,70
    Open report builder and create a new report from wizard.
    Select the first option accordingly with your requirements and go next.
    Type a name for your report in the title field then select "Matrix" as layout and go next.
    Select SQL Query and go next.
    Type your query.
    Select the data you want on the rows (i.e. A, B, C...) and click on the ">" button in the Matrix Row Fields section, then go next.
    Select the data you want on the columns (i.e. q1, q2, q3...) and click on the ">" button in the Matrix Column Fields section, then go next.
    Select the data you want on the cells(i.e. 10,20,30...) and click on the "Sum >" button in the Matrix Cell Fields section, then go next.
    Add some totals, if you need them.
    Go next and finish.
    Now you have a report with the following layout:
             Q1           Q2            Q3       TOT
    A        10           20            30        60
    B        40                         50        90
    C                     60            70       130
    TOT      50           80           150       280Bye
    Raffy

  • Two header line in one column of alv grid.

    Hi Experts,
    My requirement is that I have to create an ALV report with columns having two lines of
    headings. Like a main heading called Consultants under which 5 to 10 columns of departments
    and then Contractors underwhich there would be 5 to 10 departments. Right now my report has
    the depts of contractors and consultants in one line but the headings above that I am not
    able to generate.
    Will anybody please be able to provide a sample code if this is possible.
    like,,,
               Heading 1        |  Heading 2   |     Heading3       |                   line 1     
    hed4  |  hed5  |  hed6  |                     |  hed7   |  hed8    |                  line 2

    Unfortunately the current ALV framework doesn't support multiple line headers in ALV. There are some nasty hacks available. But none of them are full-proof.
    BTW there are many posts related to similar requirements.
    BR,
    Suhas

  • XML Publisher report errors out when RDF report has no data

    Hi everyone,
    I created a template and attached it to an RDF. When i run the oracle report with the attached template, if the report has 'not data exists' the report is erroring out. is it the normal functionality of XML publiher??. Because i remember at my earlier client i have run some reports for which if 'no data exists' still the program would complete normal but the output would be blank.
    The xml output is creating the tags for the elements.
    any help appeciated.
    Thanks
    sam

    Hi Sam,
    Yes this will happen depending on what the template is repeating on etc. You can handle this quite easily using sub-templates.
    Firstly create your normal template as a sub-template (so surrounded by the <?template:TEMPLATE_NAME?> tags)
    Then create a second template that contains the text "NO DATA FOUND" as another sub-template.
    Create a third template (this will be your main template called by the report), which imports the two sub-templates, then using a choose statement, count the number of occurences of you main repeating group in your XML. If the count = 0 then call the "NO_DATA_FOUND" sub-template, otherwise call the normal sub-template.
    I hope this helps, if you need an example I can send you one, just let me know your email address.
    Regards,
    Cj

  • How to print a crystal report in Tally MT691 line printer?

    I have recently developed a crystal report with version 8.5 in windows-based operation system (windows xp). My client today told me that the report has to be able to print to a network printer - line printer (Tally MT691); otherwise, the crystal report I developed becomes useless. I have no experiences with line printer. Could you please give me some instructions on how to make it happen?
    Any help is greatly appreciated. Thanks again.
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on May 7, 2009 11:05 AM

    Hi
    Unfortunatelly you need to worry about the printer, please don't consider the last replies.
    As far I can see this model is a dot matrix printer, only the following models are supported for SAP B1:
    For 2005A those are the supported models:
    - Citizen PROdot 300    
    - Epson FX-880          
    - OKI MICROLINE 320 Elite
    - Epson FX-890          
    For the 2007
    - Citizen PROdot 300    
    - Epson FX-880          
    - OKI MICROLINE 320 Elite
    Please note that some workaround can be found to use different printer but only the mentioned devices are supported. Those workarounds may work in one patch but may stop to work after patch or version upgrade.
    Also a multipurpose (combine fax, printer, scanner) devices are also note supported (SAP Note 925841).
    Paulo Calado
    SAP Business One Forums Team

  • How to process reports with two different date fields

    Morning all,
    This question is somewhat similar to what I asked few days back. I created two different reports for two different departments (Credit Control and Free of Charge Control).
    These two reports pull data from two different date fields and has different status check ups.
    Few days back my director requested me if he can have both reports in one report. That is when I asked question from all of you regarding two reports.
    Anyhow, that was created by implementing two sub reports however, the director asked me to combine the two different reports into one in such a way that the output records should be added up with each other hence one single report with all combined data of Credit Control and Free of Charges (not two sub reports in one report).
    The problem here which I am getting is that, both reports uses two different date fields. I can live with two different statuses as that can be easily done within formula/RT however how to create a report with Report Selection Formula condition which looks in both date fields and produces results accordingly?
    I have tried this by not putting any condition in report selection formula and ran the report, it produced total results from past 6 years.
    Any ideas how to produce combined report which has two different date fields?
    Many thanks in advance
    Regards
    Jehanzeb
    What I

    Charliy,
    No the both dates are from two different databases, tables and fields. The Credit date field is from KLAB database under max table where as the FOC date field is from SAE database under maxmast table. Klab date is under credit2 table where as foc date is under order header table.
    So its more like this:
    Klab->Max-Credit2--->Credit_date
    Sae->Maxmast->Order_header---Date entered.
    two dates totally different tables, dbs
    however, I will try your idea too and see if that works.
    Regards
    Jehanzeb

  • [APEX 3] Requested source data of the report has been modified

    Hello APEX-Friends,
    I have a common problem but the situation is a bit different here. Many of you might know the "invalid set of rows requested the source data of the report has been modified" problem. Often it occurs on submit. That means, you have a report, you select rows, you do things, you submit the page and everything blews up.
    This is because you enter some values into fields the report depends on and so you modify your report parameters and the source data changes.
    But:
    In my case I have a dynamically created report that blews up before any submits occur or values change.
    My query is a union of two selects. Both query different views. Those views use a date field as parameter and some compare functions.
    I read the field with a V-Function i wrapped arround the apex V Function - declared as deterministic. My date compare function is also declared deterministic (I doubt this makes any differences as it might be only important for the optimizer, but as long as I don't know exactly what APEX evaluates, I go for sure).
    I ensured, that the date field is set by default with the current date (and that works, because my interactive report initially displays correct data from the current date).
    So everything is deterministic and the query must return same results on subsequent calls, but APEX still throws this "source data has changed" error and I am to 99.99% sure, that this cannot be true.
    And now the awesome thing about this:
    If I change the value of the date field, an javascript performs a submit. The page is reloaded (without resetting pagination!) and everything works fine. I can leave the page, reenter, do things - everything works well.
    But if I log into the application and directly move to the corrupted report and try to use the pagination without editing fields or submitting the page the error occurs.
    Do you have any Idea what's happing there? I could try to workaround this by submitting the page the first time it's entered to trigger this "mystery submit" that gets everything working. But I would like to understand this issue and have a clean solution.
    Thanks in advance,
    Mike aka UniversE

    Okay, I found a solution, but I do not understand it - it might be a design flaw in APEX.
    I mentioned the date field that is used in the query. I also mentioned that it is set with the current date by default. I did not mention how.
    There are some possibilities in APEX to do so.
    1. Default-Setting in the element properties
    2. Static assignment if no value is in session cache
    3. Computation before header
    I did the first and second.
    BUT:
    An interactive report seems to work as follows. A query is executed to get all rows of the report. Then a second query is executed to get the rows that shall be displayed. And the order is screwed up, I think.
    1. The first report query to get all rows
    2. The elements are loaded and set to default values
    3. The second report query to get the display rows
    And that's the reason why nothing worked. Scince I added a computation before header the date field is set before the report queries are executed and everything works all fine now.
    But I think it's a design flaw. Either both queries shall be executed before Regions or afterwards but not split as field values might change when elements are loaded.
    Greetings,
    UniversE

  • Can you have two phone lines?

    I was just wondering if you can have two phone lines going to the same house one for home and one for business?
    If yes how would they do it? Just connect another line from the telephone graph to the house?
    Many Thanks Luke

    You can have as many phone lines to your house as you like: each pays rental.
    I work from home so have two.
    One is for phone calls only, t'other has my broadband and BTV on it.
    The phone calls only has unlimited 24/7 calls; the second comes with after 1900-0700 and free weekend calls.
    Shame BT are phasing out BT BB Talk; under that regime every customer has two phone number/lines on one copper/fibre connection
    AQ.
    "Welcome to Royston Vasey - You'll never leave."

  • My iPod Touch has had random lines appearing on the screen at certain times (videos, typing)

    My iPod 5 (32gig) has recently started to do this thing where it will show random lines on the screen when either typing quickly or watching certain videos. They are close to the thickness of your fingernails and occasionally vary in color. I've had this iPod for around a year and a half now and it hasn't suffered any significant trauma. When it happens on the keyboard, the lines only appear on the keyboard. When it happens during a video it only happens where the video is playing (ie. if not on full screen, it only happens on the rectangle where the video is, not the empty space). And it also only happens on certain videos. It happened earlier on a news segment clip on the Fox website, but not on a music video I watched on YouTube three minutes later. For videos, it can be up to three of these lines at once. It first started happening to my keyboard and has since furthered itself to the videos. The screen has two small scratches but other than that it's fine. I'd also like to add even though it may not be relevant that my apps have been crashing more recently as well.
    What do you recommend I do? Why is this happening? Thank you in advance!

    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                                              

  • Wife's iPhone keeps shutting off randomly and does it even when on calls, restarts and has a dark line in center of the screen then the apple logo. At times it does it several times or won't power up, and the iPhone4 is only five months old. What do we do

    Have an iPhone 4 that is now shutting off randomly including during calls. The iPhone is roughly about five months old. When the iPhone shuts down and tries to restart it usually take two or three times before it stays on, but when it does it sometimes has a dark line down the center and shuts off. Not very happy about the iPhone doing this. The store we had purchased the iPhone 4 from suggested that we contact Apple to see about a replacement, or send it away for service. As you can tell we are not happy at this point since the iPhone is crucial part of our day for work and family. What should we do at this point?

    Thanks for the suggestions!
    Except I tried all those before I even made this topic lol, but thanks!
    I Already popped out the Sim Card & let my phone sit without it for a few minutes then put it back in. Sometimes it will work again & it will say it recognizes the SIM Card but more times then not it still says it cant recognize it! So I have to take it out & reinsert it multiple times.
    & I have done a complete restore 2 times & a back up restore 3 times. Nothing seems to be working.
    I am planning on going to the Apple Store this week, wish me luck!
    But keep the suggestions coming if you have any, I'd appreciate it!

Maybe you are looking for

  • I purchased an episode from my laptop how can I re-download on another device ?

    I have purchased an episode of Dallas new serie, from iTune with one of my 2 computers, using my apple account. But now, on the 2nd computer, it says "purchased" in Itunes store, so I can not download it again here on this 2nd comptuter. So, how can

  • VIDEO_TS to H.264 workflow

    Hello, I would like to transcode a video DVD to an H.264 file in order to access it with Front Row. Any hints how to import the VIDEO_TS folder to Compressor 3? Thank you. Fernando

  • Oracle Database 10g Express Edition (ORA-01031: insufficient privileges)

    Hello, I am new to 10g Express. I am working on Windows XP and I have Oracle App Server and JDev install on my box. I just installed 10g Express. When I try to connect to the database but I get the following error msg: SQL> connect sys/admin as sysdb

  • Adding new groups to weblogic

    Is there a way of adding new groups to weblogic without using the console ? I need to add a list of group names (~100) from a flat file to weblogic. Is there a way I could automatically add those groups instead of me creating each of those groups fro

  • How to tune queries genearated by third party tools

    Hi, I am not able to tune queries generated by third party software.In my DB we have seibel application which generates sql queries and they run these queries against DB which always a problem.We can't change the code because it is automatically gene