Need to increase no of lines in smartforms

Hi,
In the smartform for invoice customner wants to print address in detail. At present there are total four lines.Want to increase number of lines.What changes will be required to increase number of lines in address.
Please help

Hi Sharma ,
You can do changes in smartform. There is one field "Number Of Lines To Be Used' . This can be used for any partner Function ( Sold to party /Ship to party/ Payer etc etc.). You can change number of lines to be used .
Also priorities among the field can be defined for printing on smartform.e.g in customer master Address1,Address2 , address3 are maintained . Priorities can be set among them.
Please refer Standard Function module ADDRESS_INTO_PRINTFORM . In this function module formats od address as per countries are given which are standard.
Regards,

Similar Messages

  • Need to Increase more than LINE-SIZE 255?

    Does anybody know what the next larger Line-Size value I can bump this up to on a Std report? Or, doesn't it matter, meaning I can make it whatever I want.
    Thanks.

    Hi,
    You can have the line-size up to 1023 max.
    But as Rich suggested there format and all have to be considered if you are not able to take the print nicely.
    Cheers!!
    VEnk@

  • How to draw horizontal line in smartform after end of the all line items

    Hi Friends,
    I am working on the smartform. I have created TABLE node in Main window.
    i want to draw a horizontal line after end of the main window table node. i mean after printing all the line items of the table, I need to print one horizontal line.
    Could you please help me how to resolve this issue.
    FYI: I tried with the below two options. But no use.
    1. desinged footer area in the table node of the main window.
    2. tried with uline and system symbols.
    please correct me if i am wrong. please explain in detail how to draw horizontal line after end of the main window table.
    this is very urgent.
    Thanks in advance
    Regards
    Raghu

    Hello Valter Oliveira,
    Thanks for your answer. But I need some more detail about blank line text. i.e thrid point.
    Could you please tell me how to insert blank line text.
    1 - in your table, create a line type with only one column, with the same width of the table
    2 - in table painter, create a line under the line type
    3 - insert a blank line text in the footer section with the line type you have created.

  • Need to increase size of Scroll bars

    Hi.... i need to increase the size of the scrollbars (need to make them longer) in my code..... could some one please help me some tips ??
    package number2_rlc;
    import java.awt.Graphics;
    //import javax.swing.JApplet;
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    //import javax.swing.JButton;
    //import javax.swing.JTextArea;
    //import javax.swing.JTextField;
    //import javax.swing.ComponentInputMap;
    * @author Hasula
    //public class NewAppletX extends Applet  //public class NewAppletX extends java.applet.Applet
    public class NewAppletX extends Applet implements AdjustmentListener{
              private Scrollbar slider;
              private Scrollbar slider2;
              private Scrollbar slider3;
              private Button button1 ;
              private Button button2 ;
              private TextField jtf1;
              private TextField jtf2;
              private TextField jtf3;
              private TextField jtf4;
              private TextField jtf5;
              private int sliderValue;
             public void init(){
                 slider2=new Scrollbar(Scrollbar.VERTICAL,0,0,0,100);
                 slider2=new Scrollbar(Scrollbar.VERTICAL,0,0,0,100);
               slider=new Scrollbar(Scrollbar.VERTICAL,0,1,0,100);
                 button1=new Button("Charge");
                 button2=new Button("DisCharge");
                 jtf1=new TextField();
                 //jtf.setBackground(Color.PINK );
                // jtf.setVisible(true);
                //this.setBackground(Color.BLUE);
                //repaint();
                  slider.setBounds(100, 100, 50, 50);
                      slider.setVisible(true);
                      repaint();
                 //slider.setLocation(100,100);
                 add(button1);
                 add(button2);
                 add(jtf1);
                 add(slider);
                 add(slider2);
                 slider.addAdjustmentListener(this);
             public void paint(Graphics g){
                 showStatus("Scrollbar value is"+sliderValue);
                 //g.drawRect(40, 80, 60, 100);
                // g.fillRect(40, 80, 60, sliderValue);
                 //COMMENT FROM HERE FOR ORIGINAL CODE
                  super.paint(g);
        g.drawLine(15,50, 100,50); // Upto Hope
        g.drawLine(15,50,15, 100);
        g.drawLine(10,100, 20, 100); // negative plate
        g.drawLine(5,105, 30, 105);  //possitive plate
        g.drawLine(15,105,15, 200); //after positive plate
        g.drawLine(15,200,400,200); // Bottom line
        g.drawLine(400,200,400,130); // upto Capacitor
            g.drawLine(380,130 ,420,130);//btm capactior plate
            g.drawLine(380,110,420,110);//topcapacitor plate    
        g.drawLine(400,110,400,50); // Capacitor to Top line
        g.drawLine(150,50,400,50); // Top Line   
        g.drawLine(150,200,150,100); // upto Capacitor
        g.drawLine(150,130,150,50); // *********************************** Line which should Swing
                 //END COMMENT HERE
             public void AdjustmentValueChanged(AdjustmentEvent e){
                 sliderValue=slider.getValue();
                 repaint();
        @Override
        public void adjustmentValueChanged(AdjustmentEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
    }

    Before offering the solution, a few suggestions about improving the way you post code.
    -- Don't post commented-out lines unless they are really illustrative of what you tried (and didn't work) to solve the problem
    -- Don't leave multiple blank ines. Do leave a blank line between methods.
    -- Don't post the package statement, nobody's likely to create the same package to test your code.
    -- Remove totally irrelevant stuff like the ActionListener in this case.
    Now about the actual code.
    -- You don't need to call setVisible on a component added to a container, it is visible by default.
    -- You don't need to call repaint() in init(), painting takes place when the applet is displayed.
    And the solution:
    -- Don't call setBounds (...), call setPreferredSize (...),
    Here's your code reworked.public class NewAppletX extends Applet {
       private Scrollbar slider;
       private Scrollbar slider2;
       private Scrollbar slider3;
       private Button button1 ;
       private Button button2 ;
       private TextField jtf1;
       private TextField jtf2;
       private TextField jtf3;
       private TextField jtf4;
       private TextField jtf5;
       private int sliderValue;
       public void init () {
          slider2 = new Scrollbar (Scrollbar.VERTICAL, 0, 0, 0, 100);
          slider = new Scrollbar (Scrollbar.VERTICAL, 0, 1, 0, 100);
          button1 = new Button ("Charge");
          button2 = new Button ("DisCharge");
          jtf1 = new TextField ();
          slider.setPreferredSize (new Dimension (20, 100));
          add (button1);
          add (button2);
          add (jtf1);
          add (slider);
          add (slider2);
       public void paint (Graphics g){
          super.paint (g);
          showStatus ("Scrollbar value is"+sliderValue);
          g.drawLine (15,50, 100,50); // Upto Hope
          g.drawLine (15,50,15, 100);
          g.drawLine (10,100, 20, 100); // negative plate
          g.drawLine (5,105, 30, 105);  //possitive plate
          g.drawLine (15,105,15, 200); //after positive plate
          g.drawLine (15,200,400,200); // Bottom line
          g.drawLine (400,200,400,130); // upto Capacitor
          g.drawLine (380,130 ,420,130);//btm capactior plate
          g.drawLine (380,110,420,110);//topcapacitor plate
          g.drawLine (400,110,400,50); // Capacitor to Top line
          g.drawLine (150,50,400,50); // Top Line
          g.drawLine (150,200,150,100); // upto Capacitor
          g.drawLine (150,130,150,50); // *********************************** Line which should Swing
    }I would also suggest you draw all those lines once to a BufferedImage and drawImage the BI in the paint override.
    db

  • Please arrange BT to increase my broadband line ba...

    Hi
    A few months back I had a lot of broadband problems and my connection would keep dropping out etc frequently.
    I`m on BT`s ADSL2 service and have a connection sync rate speed of about 4900kbps but the exchange (DLM) has heavily
    capped my line banding+sync rate+line profile down so I can`t get anymore than 2.5MB and my line won`t sync any
    higher than 3072kbps.
    I was wondering if one of the forum mods would be able to arrange BT to increase my broadband line banding a little bit
    more so I can get a bit more of my line sync rate back? because despite my previous problems are now gone and my connection
    has been stable for months now, my line speed hasn`t returned.
    Thanks for the response and help.
    Sylver123.

    it sounds like all your disconnections/resets have resulted in your line being put in a banded profile until it stabilises.  can you post the adsl stats from your router may need to 'show detail' to get all stats (if hub enter 192.168.1.254 in your browser and navigate to adsl or use a-z, if netgear enter 192.168.0.1) and run btspeedtester http://speedtester.bt.com and post the results.
    are you connected to the master or test socket or somewhere else
    do the quiet line test   dial 17070 option 2  should hear nothing   best done with a corded phone
    Someone may then be able to offer assistance
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • How to print horizantal lines in smartforms?

    hi friends,
                       how to print horizantal lines in smartforms.
    waiting for ur valuble replies.
    Thanks,
    Kiran

    HI,
    If u use templates or table,then use borders to print the horizontal lines.
    Eg : Create template-->Table painter->click select pattern button->Display framed pattern->select 3rd one.it will display only horizantal lines.
    if want to print horizantal line under the text, then create one paragraph or character formate with Underline in smartstyles.Use that paragraph or character to u r text element

  • Need to Increase the Font Size of a screen field in a Dialog Screen ?

    Hi ppl,
    I have a requirement wherein i need to increase the font size of one field on a dialog screen .
    i was going through the threads and found this which has beautiful example given by vijay
    Increase text size in Screen
    But I'm facing a problem in implementing it since the value in the field (of which the font size needs to be increased) depends on a nother field filled by user at runtime only.
    Can anyone gimme some suggestions or alternative way to solve my problem
    Thanks
    Sachin Soni

    Hi Sachin,
    There is not way to change the font style.
    But you can add ur own text through icons or graphics.
    Create your own graphics or icons and include it in ur module pool.
    Or,
    Goto the Layout Editor of your Screen.
    Double click on the text field .. Double clk the text fild, and from the Botton right u can see an arrow icon -> click on that -> will open a Popup -> in that set Area Title to TRUE.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

  • How to suppress blank lines in smartforms

    Hi all,
         How can we suppress blank lines in smartforms?
    In my scenario I am having customer address details in main window.
    i.e. Name
         Street
          P O Box
          P O Box Location
          Post Code
          Telephone
          Fax.
    Suppose if there is no value for P O Box Location the address is getting displayed as
          Name
         Street
          P O Box
                          -> Leaving blank space
          Post Code
          Telephone
          Fax.
    But I want it as
         Name
         Street
          P O Box
          Post Code
          Telephone
          Fax.
    i.e The blank line should not be displayed.
    Kindly let me know how to do this.
    Regards,
    Neethupriya.

    Hi Neethu,
    Are you using ADDRESS option in smartforms or code to get address from customer master?
    If you are using code, you can give condition like P O Box Location <> SPACE in condition tab.
    Pranav

  • How to protect the lines in smartforms

    hi gurus
    i want to know how to protect the line in smartforms..
    regards
    baskar

    Check this link.
    http://www.saptechies.com/smartforms-protect-lines-in-main-window/
    if you are using tables, there are two options for protection against line break: – You can protect a line type against page break. – You can protect several table lines against page break for output in the main area.
    Protection against page break for line types – Double-click on your table node and choose the Table tab page. – Switch to the detail view by choosing the Details pushbutton. – Set the Protection against page break checkbox in the table for the relevant line type. Table lines that use this line type are output on one page.
    Protection against page break for several table lines – Expand the main area of your table node in the navigation tree. – Insert a file node for the table lines to be protected in the main area. – If you have already created table lines in the main area, you can put the lines that you want to protect again page break under the file using Drag&Drop. Otherwise, create the table lines as subnodes of the file. – Choose the Output Options tab page of the file node and set the Page Protection option. All table lines that are in the file with the Page Protection option set are output on one page
    Regards,
    Maha

  • How to draw a line in smartforms!

    Hello ABAPers,
    In smartform, I am having a table. Every 3 rows I want to draw a line. How can I do that in Smartforms?
    Thanks,

    hi Naren,
    Check these links out
    drawing line in smartforms
    Re: Smartforms - Line Height
    Re: smartforms blank line
    Regards,
    Santosh

  • How to get 2nd line in smartforms using template

    how to get 2nd line in smartforms main window using template. i have also defined loop .

    if possible can you try with the TABLES..
    Put one TABLE in your MAIN window
    create table lines as per your requirment...consider all lines like 6 for header, 1 for main, 1 for total
    Now, you will find three section under the tables: header, main, footer...
    in header section, create a table line, assign one of the proper lines from the line types.. repeat for your all lines.
    in main section, you can access your data form the loop.
    the footer secion will be called, just after the main will be finished.
    Regards,
    Naimesh Patel

  • How to find end of the Page in Crystal ? or I need to add one Horizontal line at the end of the page.--- URGENT HELP NEEDED

    Hi friends,
    I need to add one horizontal line  for the detail section at the end of the page.
    I tried to put that line in page footer and i tried with Box also. Both are not properly working. Some space problem is coming.
    Is there any feature to find end of the Page.
    I want report format like this.
    set id  |  set name |  date  Name
      1         x           dddd   vijay
                            dddd   sarathi
                            dddd    reddy
    (End of the page)
    Thanks in advance...
    vijay.

    Do you know how many detail records are showing up per page?
    If you do - you could create a Details B section that is suppressed except for on Record N (where N is a counter, and N is the last Detail record that will show up on a page).
    The Page footer is indeed built so that it will be rendered at the bottom of your physical page of paper.

  • HT1535 When I plug my ipad into the computer to sync a message pops up saying it can not sync because there is not enough memory in the itunes library. Do I need to increase the memory in my itunes library and how?

    When I plug my ipad into the computer to sync a message pops up saying that the ipad can not sync because there is not enough memory on the itunes library. Do I need to increase the itunes library memory and how do I do this, or do I just need to trasnfer things out of itunes? Thanks.

    Try
    iOS: Device not recognized in iTunes for Windows
    I would start with              
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    Before you reinstall the Apple software, also remove iCloud vi Control Panel Remove programs. The reinstall the Apple programs
    New cable and different USB port?
    Runs this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Try on another computer to help determine if computer or iPod problem

  • How do I copy a few lines from a pdf document to a Word document?  I'm not looking to convert the whole document, just need to copy a few lines here and there.

    How do I copy a few lines from a pdf document to a Word document?
    I'm not looking to convert the whole document, just need to copy a few lines here and there.
    ps.  Wow, what a user UNFRIENDLY site this is!

    In most cases you can just select the text and copy/paste. You can do that unless the file is a picture/scan.

  • Using Numbers, I need to time-stamp each line in a table for when it was entered

    I need to time-stamp each line in a table for when it was entered.
    I have a formula which is
    "=IF(F18="","",NOW())"
    it gives me the answer I want, but every time I edit any data in the formula is recalculates the date/time to reflect the most recent edit. I do not want to do this. I am open to any and all solutions including using a script. I do not really know anything about scripts except that they are really easy to use once it's written.
    I have a formula i use in excel but it requires circular references in excel. I tried using this formula in numbers but I get the error that says I cannot reference a cell that references back to the cell i’m inputting the formula into (circular reference. It is easy to use in excel just by limiting the # of iterations in preferences. I can’t seem to find any such preference in numbers. Do you know of one? here is the formula:
    "=IF(D4=”",”",IF(B4=”",NOW(),B4))"
      I use it to time stamp each line in a spreadsheet. It is the only way to keep all the previous line from recalculating everytime I add a new line. If I can’t use this formula, do you know of a way to timestamp each line without having it update everytime I add a line or edit the form?
    Thanks in advance- I know this isn’t exaclty an easy question but I have honestly looked everywhere
    emely

    Hi Emely,
    Check the Insert menu:
    The highlighted item is slightly misnamed, requiring a bit more than a simple selection (or keypress combination*) to act as a time stamp.
    Simply choosing the menu item willproduce the result shown in A2: A time and date value is entered, but only the Date part is displayed.
    Setting the cell format to Date and Time, with both parts displayed (as I've done in column B) does show both parts of the Date and Time value, but as you can see, the time part is set to midnight, as it is in any cell where you have entered only the Date part of a Date and Time value. The date was entered here in the same manner as in A3.
    To enter both the current Date and current Time, the process has a few more steps:
    Select the cell
    Go Insert > Date & Time
    Before confirming the entry, double-click the cell (now showing the Date) to open this small dialogue:
    Click the pop-up menu under Choose Date format:
    Choose the last item in the list.
    Results as shown in A4 and B4 of the table above.
    Regards,
    Barry
    •Regarding the KB shortcut shown: The Mac OS lets you define a KB shortcut for any top-level menu item. The one in the menu is a user-defined keypress combination, made to be easily remembered, not to be physically convenient to use. If doing your own, you may want to try for something eassier to get your fingers on.

Maybe you are looking for