Missing one line in FOOTER window in SMARTFORMS

hi experts,
In the footer one line is missing in the print preview for ME23N Tcode.
what should be the problem. Actually in the Footer window, in the template i have mentioned the 25,50 CM width and 19,00 MM height. I have divided the width into 2 columns, 1st column i have taken 5,00 CM and 2nd column 20,50 CM. In the 2nd column I cannot able to see last line.
Please let me know how to solve my problem.
Regards
Vinay

Hi Vinay,
    I hope its not a problem with the width, can you check height.
Regards,
Dj
reward for all useful answers.

Similar Messages

  • FBL5N: missing one line item while viewing the report in spool

    Hi Experts,
    I 've got a problem while viewing FBL5N report in spool. The report is missing one line item, but when I
    execute it in foreground, the report was ok.
    Can somebody explain?
    TQ.

    Hello,
    It seems you should implement notes 1100728 and  1166251 !
    Best Regards,
    Glayds xing

  • How print address in Single line in Address window in Smartform

    Hi All,
    How print address in Single line in Address window in Smartform?
    Thanks in advance.
    Message was edited by: Vipin Nagpal

    Hi Vipin,
    if u r defining the variables for the address manually,
    then u can define all the fileds in a single line in the edit mode of address window u will get the address in the single line only
    if u r using the standard format
    modify the address format by using the user exit:
    "EXIT_SAPLSADR_001"
    Check OSS Note : 454987
    or in the least case u can use the address window setting to change the format and lines
    May be this will help you.
    Regards,
    Naveen

  • EMPTY LINE IN MAIN WINDOW OF SMARTFORM

    Hi All!
    I am designing  a smartform in which i had included several windows.I have a query on the main window.
    My main window is displaying several line items through table one by one.Now my requirement is to put one blank line in between every line item i.e. for every line item printed in the main window through a table I want a blank line in between.
    Please suggest me how to achieve this..
    Regards
    Praneeth

    Hi Praneeth,
       I will tell you one simple technique to display. You dont have to do anything in the smartform at all while displaying.
       The value in the internal table will be obtained by some method in your <b>code</b>. So while adding a record or appending a record to your internal table just append an empty line to your internal table. So while displaying the smartform will display all the records in your internal table including the blank lines. Hope this solves your issue.
    LOOP AT i_vbak.
      MOVE i_vbak-vbeln TO i_output-vbeln.
      APPEND i_output.
      <b>APPEND INITIAL LINE TO i_output.</b>
      CLEAR i_eanl.
    ENDLOOP.
    Reward if helpful.
    Regards,
    Tushar
    Message was edited by: Tushar  Marshall Dass

  • Only one line is getting printed in Table in Smartforms (ECC 6.0)

    Hello Sir,
    I am new in ABAP and doing Smartforms (ECC 6.0) on project from customer side.
    I have to deliver the object in time and it is already late, please help me.
    This is my question:
    Object :  Stock Transport Order.
    =======================
    I have created Table in main window after Program Line Node.
    >Main Window
    >>Code2
    >>Table1
    >>>Header
    >>>>Row1
    >>>>>Cell1 to Cell10
    >>>Main Area
    >>>>Row2
    >>>>>Cell1 to Cell10
    >>>Footer
    >>>>Row3
    >>>>>Cell1 to Cell10
    I have mentioned internal tabel as well work area table in "DATA" tab in table Node.
    In Row1 I have created Text Node in every cell having Column Heading.
    In Row2 I have created Text Node in every cell having variable.
    In Row3 all cells are blank.
    On output only one line is getting printed
    What could be the reason.
    =====================================================================
    This is Code1 (is in the beginning of the form in window1)
    ==========
    *& Selection of Purchasing Document No,Plant,Short Text,Quantity,Material No,
    *& Gross order value in PO currency
    select single ebeln werks txz01 menge matnr brtwr
    from ekpo into
    (v_ebeln,v_werks,v_txz01,v_menge,v_matnr,v_brtwr)
    where ebeln = DOCNO.
    *& Selection of Plant address
    select single adrnr from t001w into v_adrnr
    where werks = v_werks.
    *& For Selection of phone,fax
    select single name1 tel_number fax_number from adrc into (v_name1,phone,fax)
    where addrnumber = v_adrnr.
    *& For E-Mail Selection
    select single SMTP_ADDR from adr6 into mail where addrnumber = v_adrnr.
    *& For CST No.,GST No.
    select single J_1ICSTNO J_1ILSTNO
                  from J_1IMOCOMP into (CST,GST)
                  where werks = v_werks.
    *& Selection of Vendor Address No., PO date
    select single reswk aedat from ekko into (v_reswk,v_aedat) where
    ebeln = v_ebeln.
    *& Selection of Supplying (Issuing) Plant address
    select single adrnr from t001w into vendor
    where werks = v_reswk.
    *& Selection of storage location
    select single lgort from ekpo into v_lgort where werks = v_werks
    and ebeln = v_ebeln.
    *& Selection of description of storage location
    select single lgobe from t001l into v_lgobe where werks = v_werks.
    *& Fetching data into internal table from ekpo
    select ebeln ebelp matnr txz01 menge brtwr from ekpo into corresponding fields
    of table iekpo where ebeln = v_ebeln and werks = v_werks.
    Fetching data into internal table from marm for Pck
    select * from marm into corresponding fields of table imarm for all entries
    in iekpo where matnr = iekpo-matnr.
    Fetching data into internal table from mara for Pack Type Code
    select * from mara into corresponding fields of table imara for all entries
    in iekpo where matnr = iekpo-matnr.
    Fetching data into internal table from tvegrt for Pack Type Description
    select * from tvegrt into corresponding fields of table itvegrt
    for all entries in imara where magrv = imara-magrv.
    Fetching data into internal table from eket for Receipt Date
    select * from eket into corresponding fields of table ieket
    where ebeln = v_ebeln.
    Selection of Order Type from mepo_topline
    *select single bsart from mepo_topline into v_bsart where ebeln = v_ebeln
    *and superfield = v_werks.
    *if v_bsart = 'UB'.
    xhead = 'Replenishment Order'.
    *eleseif v_bsart = 'ZSTO'.
    xhead = 'Purchase Order'.
    *endif.
    *& Defining of variable for Printing Line Serial Number,Total Quantity,
    *& Total Value
    =====================================================================
    This is Code2 (is in the main window)
    ==========
    xln = 0.
    tmenge = 0.
    tvalue = 0.
    Loop for printing table
    loop at iekpo into wekpo.
      xln = xln + 1.
      xmatnr = wekpo-matnr.      " Material Number (Code)
      xtxz01 = wekpo-txz01.      " Material Name
      xmenge = wekpo-menge.      " Line Quantiy
      xbrtwr = wekpo-brtwr.      " Basic Rate
    *& Pck
      read table imarm into wmarm with key matnr = wekpo-matnr.
      xpck = wmarm-umren.        " Packing Size
    *& Num
      xnum = xmenge / xpck.      " Numbers of Packing
    *& Line Value
      xvalue = xmenge * xbrtwr.  " Line Basic Value
    *& Packing Type
      read table imara into wmara with key matnr = wekpo-matnr.
      xpacktype = wmara-magrv.   " Packing Type Code
    *& Packing Type Description
    read table itvegrt into wtvegrt with key magrv = imara-magrv.
    xpackdesc = wtvegrt-bezei. " Packing Type Description
    *& Receipt Date
      read table ieket into weket with key ebeln = v_ebeln.
      xrcpdt = weket-eindt.      " Receipt Date
    *& Report Total
      tmenge = tmenge + xmenge.
      tvalue = tvalue + xvalue.
    *& Serial No. increment
    endloop.
    =====================================================================
    Thanks and Regards,
    Yogesh Pathak

    Did you debug and check the umber of values in internal table before calling the TABLE Node....
    seeing all SELECT SINGLE along with WHERE = condition and no loop call on them, my assumption  is there will be on record only. Check in Debug mood. Search forum to find how to debug a smartform.

  • Problem with printing one variable in one line in smartforms

    Hi,
           Please help me.  It's my first time to use smartforms, and my problem is that I am trying to print one variable on one line and I just don't know why the variable splits and prints the other half on the next line.  On my paragraph format, I only chose the "Left-aligned" as my alignment choice and line spacing as one.  I used a character format for the variable just to make it bold.  The width of the window is 19.9cm.  Please, really hope someone could help me.  Thanks.
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Oct 13, 2009 9:16 AM

    Yes.  There are actually 3 variables on that window:
    SURNAME   <E1>&wa_surname(C)&</>
    FIRSTNAME <E1>&wa_fname(C)&</>
    MIDDLE NAME <E1>&wa_midname(C)&</>
    The variable for the firstname is the one being split to the next line.  It's like half of the firstname is combined with the middlename as shown in the example:
    FIRSTNAME    FIRST
    MIDDLE NAME NAME MIDDLE NAME
    When it should be:
    FIRSTNAME    FIRST NAME
    MIDDLE NAME MIDDLE NAME
    Thanks.

  • Desktop, One line of icons frozen, and a window frozen on the side, top bar shadows of icons frozen.

    So on my desktop, one line of icons is frozen, although the same icons are also on my desktop and actually working. Also the edge of a window is frozen. Lastly, on the right of the top bar, the little icons like battery, wifi, etc. are frozen as shadows underneath all the working icons... Basically everything is working right, just "copies" of the others are frozen...

    Check in System Preferences>Universal Access and see if Zoom is on. If you have toddlers or cats this can accidentally turned on by hitting a group of keys that include Option + Command + 8.
    To prevent this being accidentally activated in the future go to System Preferences>Keyboard>Keyboard Shortcuts>Universal Access and uncheck all the boxes.

  • Leaving one line space before starting the text in smartforms

    Hi,
    I want to leave one line space before starting a text.
    i LEFT one line space on the text node but it's not working.
    eg: i need to print "Header text". Before printing this i need one line space. Created a blank node for space still not working. Can anyone help me on this.
    Thanks,
    Rose.

    Hi Rose,
                Enter a Line Feed in the Smartform Editor.
    in the editor type as ,
      "Header text"
    where / is Line feed and * is a Default Paragraph Format.
    Regards,
    Balakumar.G.

  • Smartform : Require a dotted line for a window

    Hi,
    Can you please provide a way to have a dotted line for a window in Smart forms.
    I have used the ‘Template’ options ‘Dashed Lines’ (of the Tab ‘Grid’), but not successful.
    Regards,
    Karuna Reddy

    Hi Karuna,
       I dont think it is possible to draw a dotted line dynamically for a window. Whereas you can do one thing, in a text element draw underscore's(_) or dots(.) but this should be the last to be displayed in the window. Make sure the window width is for the full width of the page or else you wont get the dotted line for the full width of the page.
    Reward if helpful.
    Regards,
    Tushar

  • Overflowing one line after my main window box

    hi,
    in my form in main window i designed a box and it holds 24 lines . after the end of the box in first page another one line is
    showing that means i want that 25 th line should go to the next page .how to do it???
    because here by default in my first page it is displaying 25  lines.
    please let me know how to do it???
    my bos i defined like this
    ubb, 12.05.1999 -
    draw the MAIN-BOX v-lines -
                             on every page
    POSITION XORIGIN '-0.5' MM YORIGIN '-0.5' MM
    SIZE WIDTH '1' MM HEIGHT '1' MM
    SIZE WIDTH '284' MM HEIGHT '77' MM
    BOX FRAME 10 TW
    BOX WIDTH '30'  MM  HEIGHT '77' MM  FRAME 10 TW
    BOX WIDTH '85'  MM  HEIGHT '77' MM  FRAME 10 TW
    BOX WIDTH '148' MM  HEIGHT '77' MM  FRAME 10 TW
    BOX WIDTH '167' MM  HEIGHT '77' MM  FRAME 10 TW
    BOX WIDTH '176' MM  HEIGHT '77' MM  FRAME 10 TW
    BOX WIDTH '201' MM  HEIGHT '77' MM  FRAME 10 TW
    BOX WIDTH '214' MM  HEIGHT '77' MM  FRAME 10 TW
    BOX WIDTH '237' MM  HEIGHT '77' MM  FRAME 10 TW
    BOX WIDTH '252' MM  HEIGHT '77' MM  FRAME 10 TW
    DEBASHIS
    BOX WIDTH '284' MM  HEIGHT '77' MM  FRAME 10 TW
    thanks.

    Hi,
    Reduce the Height of The Window and Box
    or increase The font Size
    Automatically The 25 Line will go to next page
    With Regards,
    Vinu.R

  • Smartforms footer window printing problem

    Hi ,
    As  i  have  many  line types   records  in  footer window but  i need  to  print  all  footer  window's  record  in  last  page  only.
    Could  you  please  suggest   or  give  any  condition  for  footer window on the same.
    Regards
    Alok

    hi ,
    i have also tried the same method but still  i m not able to see  footer window in last page only again i have create new  window  below the main  window and cut  the footer window's  item and pasted in to new window.
    Please give me the another way to resolve this  issue.
    Regards
    Alok.

  • Smartform utilisation of the footer window space dynamically

    Hi All
             I have created a smart form with a main window and footer window below the main window, in all pages where the table data is printing over the main window ,the space is left for the footer window since the footer window data will be printed only after completion of main window only. Now in all the pages space is left below the page... How to utilize the space dynamically for footer window only after completion of main window.
      If main window data is there then footer window space should be utilized by main window in all pages. and if main window data is completed then only the footer window space should be considered and printing the footer text.
    How to achieve this....... please guide me
    Regards,
    Lokesh.

    Hi Lokesh,
    just place your this template after all of your data in main window (as shown after the table in screenshot below), i.e. after your table and make its usual flow , as shown in below screenshot, whenever your all data get printed then the text in these smartform will get printed.
    i.e, put your this template as last element in your smartform, and let it be printed as usual
    If you are not able to do it like as shown above, then go to the template and Double Click it, then Go to its Conditions Tab, and Check the "only before end of Main window."
    Let me revert , if still your problem persist.

  • Rectifications of different sizes for all the three table lines in footer.

    Hi friendz,
                    i am working in ecc6 system(smartforms).
                    i am using 3 table lines in the footer one for total, the second one for tax calculation, and the third one for the grand total.
    But in the output screen display - the total, tax and grand total(in different table lines) are displayed with different heights, which gives unprofessional look for the form.
    i want all the table lines in the footer to display with equal heights.

    Hi,
    first you create LTYPE follow below sequence
    Go table tab--> details tab--->give suitable heights for ltype
    next go to FOOTER in the main window
    create three table lines under footer like
    FOOTER1
    FOOTER2
    FOOTER3
    for three table lines we need to assign line type LTYPE
    Go FOOTER1 ---> output options -
    > give LTYPE.
         FOOTER2 ---> output options -
    > give LTYPE.
         FOOTER3 ---> output options -
    > give LTYPE.
    reward points if helpful.
    Regards,
    Bhupal.
    Edited by: bhupal reddy on Jul 22, 2008 11:55 AM

  • How can I display one line at a time on a PPT slide

    I am using OFFICE for the Mac (2008).
    In the past, I have known how to do this using PPT on a Windows PC..
    But something has changed and I can no longer figure out how to get each line on a PPT slide to appear one line at a time every time I click it.
    It's not that difficult, but I can't figured out where they moved the "Appear" option.
    I am NOT using KEYNOTE, but PowerPoint from OFFICE for the Mac (2008)
    Can someone help me.
    Thanks,
    Tom

    Since this is a Keynote discussion forum, there may be no one here that knows. I personally hate PP and could care less about how to make one line display at a time. It is easy on Keynote and that is all I need to know. You might want to look for a PP forum and ask there.

  • Nested If condition in Routine - Literals that take up more than one line

    Hi All,
           I am writing following code at object level of routine but its giving following exception: Please help me on this.
    Exception:
    E:Literals that take up more than one line not permitted.
    CODE:
    IF SOURCE_FIELDS-/BIC/TOTAL >= 900.
        RESULT = 'A.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 800 AND SOURCE_FIELDS-/BIC/TOTAL < 900.
        RESULT = 'B.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 700 AND SOURCE_FIELDS-/BIC/TOTAL < 800.
        RESULT = 'C.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 600 AND SOURCE_FIELDS-/BIC/TOTAL < 700.
        RESULT = 'D'.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 500 AND SOURCE_FIELDS-/BIC/TOTAL < 600.
        RESULT = 'E'.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 400 AND SOURCE_FIELDS-/BIC/TOTAL < 500.
        RESULT = 'F.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 350 AND SOURCE_FIELDS-/BIC/TOTAL < 400.
        RESULT = 'G.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 300 AND SOURCE_FIELDS-/BIC/TOTAL < 350.
        RESULT = 'H.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 200 AND SOURCE_FIELDS-/BIC/TOTAL < 300.
        RESULT = 'I.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 0 AND SOURCE_FIELDS-/BIC/TOTAL < 200.
        RESULT = 'J.
    ENDIF.
    Thanks in advance.
    Anitha.B

    Hi Anitha
    Just check
    RESULT = 'A.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 800 AND SOURCE_FIELDS-/BIC/TOTAL < 900.
    RESULT = 'B.
    ELSEIF SOURCE_FIELDS-/BIC/TOTAL >= 700 AND SOURCE_FIELDS-/BIC/TOTAL < 800.
    RESULT = 'C.
    Whether it needs to be under two quotes. I feel one is missing. it should be 'A' and not just 'A.
    Regards
    Sriram

Maybe you are looking for

  • HP5524 with Mac 10.5.8

    Hi I bought this printer thinking it would be easy to install.. haha...  after playing around with the wireless WAP password on the touch screen on the printer it finally worked! Connected wirelessly.. next problem installed the CD into my Macbook an

  • 2 users on the same computer.  Full iTunes shows up on only one

    There are 2 users on this computer.  Only the iTune downloads appear on one.  How can I get the full iTunes library on the other?

  • Rowtype parameter in stored procedure

    Hi, Trying to call a stored procedure/function in C++ using OCI libs, with ROWTYPE parameter. Any ideas on how to do this? Thanks!

  • Unable to delete JCA resource adapters

    Hi All, I am unable to delete resource adapter. Please help Here is the error "Deleting JCA Connection Factory: InboundRA_QN1_100 failed due to: Removing or adding connection definition "InboundRA_QN1_100" failed because "It is not allowed to remove

  • About select-options field name

    hi expects,     in my select-options screen , i am gettting the field name ex .kunnr,land1,name1,but i want the name as "customer number ,name,country".how can i do this thing .please help me.