Invoice layout problem

My AR Invoice layout is set to A4 size which is showing as 841 height, 595 Wide ( I am not sure what these mean?) However my problem is that after printing 16 lines (transactions), the report goes to page 2 and leaves a 4 cm gap between the repetitive area and the Footer section. I have tried changing parameters as follows but nothing seems to change the fact that I cannot print more then 16 lines per page:
1. I have changed the Duplicate repetitive are/Lines per repetitive are to  25, or 30 - it did not make a difference.
2. I have ticked the Area Hight Box, or unticked - no difference
3. I have increased or decreased the repetitive area footer size - No difference
4. I have decreased the Page Footer Height - No difference
Any ideas what determines the number of Transaction lines in the Repetitive area and how to increase this?
Than you
Robert

Hi
Page Footer was 50, but reduced it to 10 - this made no difference.
End of report - was 10, now increased it to 100 - this made no difference.
The number of lines per page seems to be fixed on 16 lines.
I have looked up my order layout which is similar to my invoice layout but it does not have the same issue?
Robert

Similar Messages

  • Installment invoice layout

    Hi All,
    I have a requirement whereby the invoice is separated into 2 installment. Let's say 90% on 30 days and remaining 10% is 60 days.
    If i setup in the payment terms, it is able to produce 2 installament invoice that having the same invoice number but different amount respectively.
    However, I have problem on printing Invoice layout for 90% amount and then another invoice for 10% amount. Is there any function or layout can cater to this need? Appreciate if anyone can help, thanks.
    Regards,
    MH

    Hi,
    Initially i thought so too that different invoice numbers will be use if amount is different.
    But if you setup the payment terms with installment, like 30 days - 90% and then 60 days - 10%.
    Once you enter the invoice for example $1000, system will automatically breakdown the invoice into 2 but with same Invoice number. First invoice is $900  and second invoice is $100. However, if you go to the invoice screen, it is still showing $1000. Basically you are unable to view the invoice itself in $900 and $100 respectively.
    But if you go to that BP's Balance from BP Master Data, you will see 2 lines of the same invoice but first line will be $900 and second line is $100. My question is how can i print out the invoice in $900 and $100 respectively?

  • Database OSCN field on A/R invoice Layout

    Hey,
    I'm trying to get a specific Costumer BP catalog no. in my A/R invoice Layout.
    I added a text field and selected source type :Database,
    picked Table OSCN.
    Col BP Catalog No.
    now heres my problem.
    if on relate to I select my itemcode I just get the first BP catalog no.
    Is there way to pick the specific Catalog no. for a specific predefined costumer. ? (which is different than the current A/R invoice BP)
    Thank you ,
    Nadav.

    Hi Nadav,
    PLD does not support SQL. So in case your need join two conditions, you have to either use UDF by FMS, or create your own report by Crystal Report.
    Thanks,
    Gordon

  • Sapscript layout problem

    Hi Guys,
    i have one commercial invoice layout , but problem is with Ship-to-party address.
    In Print Preview and in Debugging Adress is printing correctly, but when i take the output from a line printer, Address is changing to some other address.
    the output in print preview is correct as per the billing document.
    Pl suggest some idea. Trying but not able to solve.
    Good Answers, max. points.
    Regards,
    vamsykrishna.

    Write a perform to get address details.
    In perform write code as below.
    Pass customer number and pass the partner function WE to VBPA and take the address number.
    Then pass this address number to ADRC, then address date in script.

  • CSS Layout Problem?

    Can someone please help me with a layout problem.
    As far as I can tell the page looks as it should in Netscape,
    Firefox, etc., but IE6 and 7 refuse to work correctly.
    The page I am working on is:
    http://www.vmtampademo.com/localangler/testpage.html
    Most of the picture caption and headline of the middle column
    is behind the picture. I attempted to force the info with a
    seperating div which seems to work sometimes. I doubt that this is
    the correct solution. What am I doing wrong?
    Thank you for the help!

    It looks fine in Firefox 2.0.0.1, Opera 9.10, and IE 7.

  • Layout problem in PDF conversion

    Hi all,
    i am downloading spool data using the function module CONVERT_ABAPSPOOLJOB_2_PDF. But i am facing layout problem. e.g. RFBILA00(financial statement generation program) has written balancesheet data to the spool. This spool data has some 6 columns. but CONVERT_ABAPSPOOLJOB_2_PDF is writing only first 3 columns to the generated PDF file. i used 'GET_PRINT_PARAMETERS' function module also with values like layout as 'X_65_132' and 'X_90_120'. but no success. if anybody knows the answer, please let me know.
    Thanks in advance,
    Naveen

    Hi All,
    i am following the below approach to download the information from spool.
    program/spool output is an ALV List output data having 8 columns. but below approach is converting only first 5 columns in to PDF format. other 3 columns are getting truncated.
    FUNCTION /ngl/download_spoolinfo_as_pdf.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(I_SPOOL_REQUEST) LIKE  TSP01-RQIDENT
    *"     REFERENCE(I_FILENAME) LIKE  RLGRAP-FILENAME
    *"  EXCEPTIONS
    *"      DOWNLOAD_ERROR
      TABLES tsp01.
      DATA: mtab_pdf LIKE tline OCCURS 0 WITH HEADER LINE,
            mc_filename LIKE rlgrap-filename.
      DATA: mstr_print_parms LIKE pri_params,
            mc_valid(1) TYPE c,
            mi_bytecount TYPE i.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
          copies                 = '1'
          cover_page             = space
          destination            = 'locl'
          expiration             = '1'
          immediately            = space
          mode                   = space
          new_list_id            = 'X'
          no_dialog              = 'X'
          user                   = sy-uname
          line_size              = 200
          line_count             = 65
         layout                 = 'X_65_200'
          layout                 = 'X_90_120'
          sap_cover_page         = 'X'
        IMPORTING
          out_parameters         = mstr_print_parms
          valid                  = mc_valid
        EXCEPTIONS
          archive_info_not_found = 1
          invalid_print_params   = 2
          invalid_archive_params = 3
          OTHERS                 = 4.
      IF sy-subrc EQ 0.
        CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = i_spool_request
            no_dialog                = 'X'
            dst_device               = mstr_print_parms-pdest
          IMPORTING
            pdf_bytecount            = mi_bytecount
          TABLES
            pdf                      = mtab_pdf
          EXCEPTIONS
            err_no_abap_spooljob     = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_destdevice       = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11
            OTHERS                   = 12.
        IF sy-subrc EQ 0.
          mc_filename = i_filename.
          DATA: lv_filename TYPE string.
          lv_filename = i_filename.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize = mi_bytecount
              filename     = lv_filename
              filetype     = 'BIN'
            TABLES
              data_tab     = mtab_pdf
            EXCEPTIONS
              OTHERS       = 22.
          IF sy-subrc EQ 0.
            WRITE:/ mc_filename, 'CONVERTED TO PDF AND DOWNLOADED'.
          ELSE.
            WRITE:/ 'PROBLEM WITH DOWNLOAD'.
            RAISE download_error.
          ENDIF.
        ELSE.
          WRITE:/ 'PROBLEM WITH PDF CONVERSION'.
          RAISE download_error.
        ENDIF.
      ELSE.
        WRITE:/ 'PROBLEM GETTING PRINT PARAMETERS'.
        RAISE download_error.
      ENDIF.
    ENDFUNCTION.

  • Layout problem - multiple repeating frames

    Hi, I have a layout problem, pls help!
    Short report description:
    - Repeating Frame1 - gives 1 record, contains all other frames, variable vertical elasticity
    - - Frame2 - contains all frames beneath - variable vertical elasticity
    - - - Frame3 - variable vertical elasticity
    - - - - some boilerplates
    - - - - Repeating Frame 2 - various number of records, fixed vertical elasticity, height 100
    - - - - Repeating Frame 3 - various number of records, fixed vertical elasticity, height 30
    - - - - .. other repeating frames ..
    When reaching the bottom of a page, and there is not enough room to print a record for Repeating frame 2, a record from Repeating frame 3 is printed in the bottom.
    Next page starts with the remaining records from Repeating frame 2.. and then the remaining records from Repeating frame 3.
    For example:
    Page 1:
    Rep frame 2 - Record 1
    Rep frame 2 - Record 2
    Rep frame 2 - Record 3
    Rep frame 3 - Record 1 -- not enough space to print Record 4, so this record is printed
    Page 2:
    Rep frame 2 - Record 4
    Rep frame 2 - Record 5
    Rep frame 3 - Record 2
    How can i ensure that all records from Rep frame 2 is printed before records from Rep frame 3?

    Hi, thanks for helping me out!
    I tried to use anchors, but they had no effect when connecting top of 3 to bottom of 2, got the same layout.
    I then tried to create frames with vertical elasticity expand around both rep frame 2 and rep frame 3, and it seems to do the job.
    - Repeating Frame1 - gives 1 record, contains all other frames, variable vertical elasticity
    - - Frame2 - contains all frames beneath - variable vertical elasticity
    - - - Frame3 - variable vertical elasticity
    - - - - some boilerplates
    - - - - Frame 4 - vertical elasticity expand
    - - - - - - Repeating Frame 2 - various number of records, fixed vertical elasticity, height 100
    - - - - Frame 5 - vertical elasticity expand
    - - - - - - Repeating Frame 3 - various number of records, fixed vertical elasticity, height 30
    and so on..
    Thanks again

  • Final invoice layout.

    My requirement as follows.
    The layout for the Final Invoice consist of 3 different parts:
    1.     The actual Final Invoice Layout (normal or Pauschal)
    2.     The u2018Rechnungsanlageu2019 Layout
    3.     The Overview Sheet Layout
    The Final Invoice layout should only be used for billing type YFSO.
    This layout is common for Germany (company code: 220)
    There are 2 types of partial invoices needed for Germany.
    1.       The u2018normalu2019 invoice including specific information for each equipment that is part of the invoice.
    2.       The u2018Pauschalu2019 Invoice which displays the total amount for several equipments together without showing specific details per equipment.
    This difference is only of influence to the item overview part of the layout. Dependent on the value of the field VBAK-KVGR1 it will be determined which logic for the item overview is used (with or without item details.
    If VBAK-KVGR1 equals u201CC01u201D, then the Pauschal overview is needed
    If ELSE then the u2018normalu2019 overview will be used.
    Each layout of the item overview is described separately below. The preferred way to handle this is to create two separate pieces of logic (code) and for each print out do a test based on the field VBAK-KVGR1 to determine which logic to use in each case.
    above is my requirement .
    I want to print 3 layouts for one output type depend upon the condition pls suggest me how to approach for this smartform.

    Hello,
    Apart from printing the data, if layout is same for all the three conditions go for a single smartform and based on the conditions display respective data. If changes are more, then i would suggest go with the indivitual forms.

  • Invoice Layout configuration for a specific customer within a sales org.

    Hi,
    I have a situation where the invoice layout need to be configured for one particular customer within a sales org in a different style from rest of the customers.
    Could someone let me know how to do it please.
    Thanks.
    Best regards,
    Srikrishhna

    By u201Cinvoice layoutu201D, I assume you mean layout of the print output.  If so, then
    u2022     Set up a new output type as a copy of your standard output type.  Assign an access sequence containing customer. 
    u2022     Add the new type to your active output determination procedure and assign an appropriate requirements routine (if any). 
    u2022     Assign a layout set (smartform, sapscript, adobe, etc.) that meets your customeru2019s requirements. 
    u2022     Maintain the condition record.
    And away you go.
    Regards,
    zKen

  • Want shipping Point address(not Number) in the invoice layout

    Dear Experts
    Please tell me tables and fields  how get the shipping point address in invoice layout, if i give likp-vstel, it picks the shipping point number only,
    issue resolution is very urgent
    Thanks and regards
    Janardhan

    Hi janardhan,
    i am also working on the same type of requirement. here i am giving the details. i think it will helpful to u..
    Sold to: VBRK_KUNAG
    Ship To: VBPA-KUNNR where VBPA-PARVW=”SH”
    Invoice No: VBRK-VBELN
    Name OF Finished Product
    Material Code: VBRP-MATNR
    Cases : VBRP-VRKME where MVKE-VRKME=”CSE”
    Pallets : VBRP-VRKME where MVKE-VRKME=”PAL”
    Price per case in Unit of measure: KONV-KBETR
    Price in Unit of measure: RV61A-AWEIN
    Net weight : VBRP-NTGEW
    frieght without VAT: VBRP-NETWR + VBKD-INCO1
    Vat 20%: 20% of KONV-KBETR where KONV-KSCHL=”ZVAT”
    total with VAT: VBRP-NETWR (VBRP-NETWR + VBKD-INCO1) + VBRP-MWSBK where KONV-KSCHL=”ZVAT”
    Only VAT : KONV-KBETR where KONV-KSCHL=”ZVAT”
    Ammount in words ( if value is 10rs, that should be come in ten repees only): VBRP-BRTWR
    1. My Client requires the company code address ( Name , city, pincode, phone number, etc) and his bank details in the layout
    VBRK-BUKRS – Com. Code
    ADRC-NAME1—Name
    ADRC-STREET—Street
    ADRC-CITY1 --- City
    ADRC-COUNTRY – Country
    ADRC-REGION—Region
    ADRC-POST_CODE1- Postal code
    ADRC-TEL_NUMBER – Telephone number
    2.He requires the customer Address like name , street, house number, pincode, phone number, and fax number)
    KNA1-NAME1 -
    Name
    KNA1-STRAS --- Street and house number
    KNA1-ORT01 --- City
    KNA1-REGIO --- State
    KNA1-PSTLZ -
    Pin code
    KNA1-LAND1 --- Country Key
    KNA1-TELF1 -- Telephone number
    KNA1-TELFX --- Fax number
    3. Total without VAT: VBRP-NETWR
    4. Freight without VAT : VBRP-NETWR + VBKD-INCO1
    5. Shipping Point Address has to come to layout
    ADDR1_DATA-NAME1 --- Shipping point name
    ADDR1_DATA-STREET --- Street
    ADDR1_DATA—HOUSUE_NUM1—house number
    ADDR1_DATA-CITY1 --- City
    ADDR1_DATA-REGION --- State
    ADDR1_DATA—POST_CODE1—postal code
    ADDR1_DATA—COUNTRY-- Country
    6. Plant Address address has to come to layout
    VBRP-WERKS -- Plant
    VBRP-WKREG—Region
    VBRP-WKCTY -- City
    VBRP-WKCOU -- Country
    these r the fields needs to be taken based on the requirement..
    Reward if helpfull.
    Regards,
    Praveen kumar.D

  • Layout Problem in swings

    I have an Layout problem. My Applications consists of a label and a panel in which some more labels are present.
    The panel should contain the scrollbar in order to view all the label that excced the size of the panel.This label and a panel should be adjacent to each other.
    My problem is, I am not getting the scroll bar to the panel when I am adding the label that excced the size of the panel, when I am adding the label adjacent to this label.

    Did you use JScrollPanel? If not, use it.

  • AR Invoice Layout

    Hi there,
    1.  Can someone please tell me which file I need to change in order for the AR invoice layout to change?
    2.  Is it possible to have different layouts depending on the currency of a customer? In other words one layout for local sales, and another for export sales?
    Thank you in advance!

    Hi ,
    Have you created / modified any Layout Previously ?
    If yes !
    Then
    Just you have to create as many Layout as no of your currencies
    like
    A/R Layout - USD
    A/R Layout - GBP etc
    Then you have to assign the default Layout to individual Business Partner.
    using Layout Designer --> set as default --> choose Set as Default for Specified BP --> And assign Layout to  the business Partner according to their Currency.
    Hope it helps !
    Regards
    Ashish

  • [solved] layout problem in amarok 2.02

    Hi,
    Here, I have a bad layout problem with amarok 2.02. Amarok does not fit on my screen which is 1400 pixels large! I cannot reduce the part where the collection is shown. So that it is really unpractical to use.
    I uploaded a snapshot to illustrate the problem (it is the full screen!):
    emmanuelfavrenicolin.free.fr/Public/Sna … ok202.jpeg
    Someone have the same problem ?
    I tried to install svn version but I stopped after 3 hours of compilation, it is quite a big application.
    Last edited by manouchk (2009-05-23 06:28:43)

    Well, I tried amarok2-devel 2.0.90-1 but the problem of graphic layout remains similar, no improvement. Is it normall? Maybe amarok is only available for computer with screen >= 1600x1200  or is there an hidden configuration file where I could tweek this?
    Last edited by manouchk (2009-05-18 02:41:03)

  • Urgent: Layout problem in "light inner page"

    Hi Experts,
    I am facing a problem in portal content area on external facing portal. I see a vertical scroll bar which restricts application from being displayed on entire screen.
    I am getting this problem after a patching of EP 7.0, before patching every thing was running fine.
    To me it looks like a layout problem in "light inner page", When I use "Light - 1: column (Full width)" layout I get a vertical scroll bar on portal. When I use default layout then this vertical scroll bar disappears but I see an empty navigation bar on left side which is not required.
    Can some one advise a solution for this.
    -Lave

    hi,
    Similar problem in this thread. check it out
    Desktop inner page lost
    Regardss,
    Ganesh N

  • Div layout problem

    Hi - stuck on what I think should be a fairly basic layout problem:
    I have 2 divs, equal widths but varying heights, one floated to the left and one to the right so that they appear next to eachother on the page.  The one on the left contains varying amounts of text, the one on the right contains a flash player so never varies.
    Where the text for the left div is long, I want it to start off next to the player, but then flow beneath it rather than continuing downwards at the same width as the div.  If I remove the width of the left div, so that it reverts to the container width, the player div positions itself below it, so I can't work out how to get the effect.
    Can anyone help?

    Hi,
    hope I understood in the right way: I used (translated from German DW) "modify table" and so I got one more row and two columns in your Main_Content. In one of the new columns I copied the image and beneath I took the text (you now can replace with image and text of your choice), like this:
    If that's not a help for your question, please ask me again.
    What concerns the width of the pictures, I would format them with PS or a similar program in the same wide.
    Hans-G.

Maybe you are looking for