No blank line between address node in smartform

hi all ,
customer want to delete the blank line between address , is there a way to solve this ? i just want to use the address node.
regards
Kevin

For the paragraph format used with the ADDRESS command, indicate that you don't want blank lines.
Eg.    /: ADDRESS PARAGRAPH ZD
So for this Paragraph Format 'ZD'  check the checkbox 'No Blank Lines'.

Similar Messages

  • TB 31.4 when compsing a message, has introduced a spurious blank line between the address boxes and subject box.

    When writing a new message I used to see two lines of address boxes followed by the subject line. So, when sending an email to a single recipient, that persons address would remain on screen as I composed the email.
    As of version 31.4 the initial "Write" window shows a single address line, the subject line, and a blank line between them. The consequence is that, upon entering the recipient's address, it immediately scrolls up and can no longer be seen. This happens regardless of how I enter the address i.e. start to type, select from address book and hit ENTER or TAB, or indeed if I choose an address from the address book sidebar. (See "capture1.png")
    If I increase the space available for the header data in the "Write" window I still get a blank line between the address lines and the subject line (see "capture2.png"). Furthermore, the next time I go to compose an email I am back with the original version of the "Write" window, as shown in "capture1.png".

    You might want to drop the author an email and let him know. It is not a major thing, but something that would probably require only a minor fix.
    I have found him helpful, but slow to reply. He is always on holidays when I email him.

  • Export Excel Data only causes blank line between 2 lines of records

    Hi,
    I wrote a complete winform application using CR2008.
    For information :
    C# Framework 3.5
    Windows XP SP2 or Windows Server 2003 SP1
    CR2008 SP1
    Application allow to preview report. In the preview window (CR activx) there is a "letter icon" to export report in several format.
    -RPT
    -PDF
    -DOC
    -XSL
    -XSL Data only
    When I export with "Excel Data only" format, I always have a blank line between 2 lines of records in Excel.
    Is there a way to supress them from VS2008 ?
    Thanks a lot for your reply,

    Hello, Jonik;
    Do you see the same blank lines when you export to Excel Data only in the Crystal Reports designer?
    Elaine

  • 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

  • Need a Blank line between Text field data

    hello friends, Happy New Year..
    i have a varchar2(200) size field and i am Entreing data into it like this;
    Chairman  Name1
    Member    Name2
    Member    Name3
    Member    Name4
    Member    Name5
    Member    Name6
    Secretary Name7what to do is, insert an a blank line between all lines of this text field. The output to like this ;
    Chairman  Name1
    Member    Name2
    Member    Name3
    Member    Name4
    Member    Name5
    Member    Name6
    Secretary Name7The names are separated by pressing Enterkey (i dont know its equivalent chr(10) or chr(13).
    TYVM.

    You can also try the below :
    Assumption here is that you will always have data in that column in 7 lines.
    rec.rowno in (2,4,6,8,10,12,14) is included to create empty row in between each row.
    create table test(a varchar2(200));
    insert into test values('Chairman  Name1
    Member    Name2
    Member    Name3
    Member    Name4
    Member    Name5
    Member    Name6
    Secretary Name7');
    commit;
    select
           case
             when rec.rowno = 1 then
                   substr(a,1,instr(a,chr(10),1,1) - 1)
             when rec.rowno in (2,4,6,8,10,12,14) then
                  null
             when rec.rowno = 3 then
                   substr(a,(instr(a,chr(10),1,1)+1),instr(a,chr(10),1,2))  
             when rec.rowno = 5 then
                   substr(a,(instr(a,chr(10),1,2)+1),instr(a,chr(10),1,3))                          
             when rec.rowno = 7 then
                   substr(a,(instr(a,chr(10),1,3)+1),instr(a,chr(10),1,4))              
             when rec.rowno = 9 then
                   substr(a,(instr(a,chr(10),1,4)+1),instr(a,chr(10),1,5))
             when rec.rowno = 11 then
                   substr(a,(instr(a,chr(10),1,5)+1),instr(a,chr(10),1,6))
             when rec.rowno = 13 then
                   substr(a,(instr(a,chr(10),1,6)+1))                                            
           end name1,
           null signature,
           null "DATE"
      from test, (select rownum rowno from dual connect by level <= 14) rec;Edited by: neel_s on Dec 31, 2009 1:07 PM

  • Blank line in address display for country mexico

    Hi All,
    I am using address node to print the addrees using address no in smart forms. It is working fine but when the country is mexico the one blan line is printing after street address. 
    Please let me know how to avoid blank lines.
    Your quick responses are higly appriciated and points will be rewarded as well.

    Hi Venkat,
      Try using ADDRESS-ENDADDRESS for the address text element:
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/80318f454211d189710000e8322d00/frameset.htm
    Regards,
    Ravi

  • Insert a blank line between records

    Hi,
    I am creating a sqlplus report and want to insert a blank line or some seperator to seperate the records between the start and end points of the loop to make it more readable.
    ex : The output currently look like this.
    ColumnA       ColumnB
    1                  2
    2                  3
    3                  1
    4                  5
    5                  6
    6                  4I want the output to look like this
    ColumnA       ColumnB
    1                  2
    2                  3
    3                  1
    4                  5
    5                  6
    6                  4Thanks for the help in advance!

    Hi,
    You probably work with this table every day, and you probably struggled with this particular query for a while before posting a question, so you're very familiar with the table, the data, and the application.
    Perhaps no one else in the world is in that position. Don't assume we know what your data is, or where it came from.
    Are you getting the data from a query like this?
    SELECT     columna
    ,     columnb
    FROM     table_x
    START WITH          columna     IN (1, 4)
    CONNECT BY NOCYCLE     columna     = PRIOR (columnb)
    ;If so, that's the kind of thing you should say clearly in your first message, rather than hint at in your third.
    As Ow said, you should manufacture a column for use in the BREAK command, and use COLUMN ... NOPRINT if you don't want to see it in the results?
    The question here is, what is an appropriate column? CONNECT_BY_ROOT seems to work perfectly for your example
    BREAK     ON my_break_column     SKIP 1
    COLUMN     my_break_column     NOPRINT
    SELECT     columna
    ,     columnb
    ,     CONNECT_BY_ROOT     columna     AS my_break_column
    FROM     table_x
    START WITH          columna     IN (1, 4)
    CONNECT BY NOCYCLE     columna     = PRIOR (columnb)
    ;The rest of this message is an merely a tangent. I find it interesting, but feel free to skip it.
    You might think CONNECT_BY_ISCYCLE was an obvious choice for a BREAK oclumn: you want to skip a line after every output row where CONNECT_BY_ISCYCLE = 1.
    Unfortunately, BREAK always works when a column value changes. That is, you can't tell it "Please skip one line after rows where columnz = 1"; all you can say is "Please skip a row before rows where columnz is different than it was on the previous row". (At least that's what I think: I would love it if someone proved me wrong!)
    So we have to manufacture some column that keeps its value for an entire loop. The SUM of CONNECT_BY_ISCYCLE (in DESCending order, as returned by the CONNECT BY query) would work. Analytic ORDER BY clauses seem to destroy the order imposed by CONNECT BY, so you'd have to do the CONNECT BY in a sub-query, capture the ROWNUM to preserve the order, and use the analytic SUM function in the main query:
    WITH     oq     AS
         SELECT     columna
         ,     columnb
         ,     ROWNUM               AS r_num
         ,     CONNECT_BY_ISCYCLE     AS cycle_val
         FROM     table_x
         START WITH          columna     IN (1, 4)
         CONNECT BY NOCYCLE     columna     = PRIOR (columnb)
    SELECT     columna
    ,     columnb
    ,     root
    ,     SUM (cycle_val) OVER (ORDER BY ROWNUM DESC)
    --               AS my_break_column
    FROM     oq
    ORDER BY     r_num
    ;The only reason for actually doing this is to learn about CONNECT BY queries. CONNECT_BY_ROOT, as shown above, works much better for your requirements.

  • Blank Lines in a table in Smartforms

    Hey fellas,
    Why m i getting 2 blank lines after each table line...?
    My Line Spacing Setting in Smartstyle is exactly 1 LN...if changed to less output is jumbled...
    And my internal table doesn't contain any blank line too...
    Plzz HELP !

    HI,
    Check the number of rows in main area of table.
    only one is required.
    Regards
    Sreekanth

  • Blank line Between Page

    Hi All
    I want to generate text file by report.
    but my output have one blank record at between page but I don't want it.
    I want to list data in tabular style like using
    sql script select statement but I have to use a report.
    Please Tell me.
    null

    doble click on report_name
    and in property section
    go report_escape then in after page value
    clear this
    <hr size=5 noshade>
    siddharth singh
    null

  • Blank lines between [ pre ] tags are now being removed

    Using [ pre ]
    SQL> select 'where has the space gone' from dual;
    'WHEREHASTHESPACEGONE'
    where has the space gone
    Elapsed: 00:00:00.60Using [ code ]
    SQL> select 'where has the space gone' from dual;
    'WHEREHASTHESPACEGONE'
    where has the space gone
    Elapsed: 00:00:00.60Unfortunetley [ code ] does not recognize internal [ b ] tags for bold
    Can this be fixed?
    Message was edited by:
    3360
    Sorry, forget it. I had to use IE instead of Firefox a couple of weeks back and it is just the browser, I checked and the posts look fine in Firefox.
    Message was edited by:
    3360
    Message was edited by:
    3360

    2 years later, is it possible to get a fix regarding this inconvenient for the IE users ?
    Or does Firefox usage became mandatory to read properly the code ?
    Nicolas.

  • Smartform  : blank line created with out any reson  , why  ?

    I have regular letter.
    Line a
    Line b
    Line c......
    but from some reason  ,  some blank line created and cause spaces between the lines , why  ?
    For example:
    Line a
    Line b
    Line c
                Blank/space line
    Line d
               Blank/space line
    Line e

    Hi Dakota Piper,
    I don't think theres any problem in ur table.
    I think u have gone wrong in ur formatting.
    u can try the following...
    1)  try to remove all the blank spaces, manually.
    2) try to create right paragraph formats. paragraph formats will give a proper look, font, spaces & tabs to ur paragraph or to the text to which u assign that paragraph format.
    assign the same paragraph format to all the lines.
    3) if already the lines have some paragraph formats then check their line spacings.
    line spacing is an attribute in paragraph format, where u can mention the amount of space between 2 lines called.
    it is possible that the 1st 3 lines have been assigned the paragraph format with 0.5 LN line spacing
    and next with 1.00 line spacing...so the rest of the lines appear as if theres a blank line between them
    like this :
    line 1
    line 2
    line 3
    line 4
    line 5
    please try doing this...hopefully it should help u. it definitely seems to be some minor problem, which maybe is getting ingored by us. check every line properly.
    Note: since i'm not infront of SAP window now, so not very sure...but in sap scripts we have this option in menu
    GOTO -> LIST DISPLAY   in this, the form is seen in list format...it clearly shows whether u have a blank line inbetween or no. thats the best format to check in.
    not much sure abt smartforms, but please check.
    regards,
    Radhika

  • I am trying to display three lines of text but blank lines are being inserted between them.

    I have a section on the right side of my homepage for upcoming events.  It was displaying fine until I changed the data and now the three lines are displaying blank lines between each one. 
    Here is the code.
    <h2 class="meeting"> </h2>
          <h2 class="meeting"><a href="http://www.astm.org/MEETINGS/filtrexx40.cgi?+-P+TERM+D02+searchresults.frm">ASTM D02 2014</a></h2>
       <img class="news-image" src="images/news/Sheraton San Diego.jpg" width="100" height="61" /> 
       <p class="news-text">December 7-11, 2014</p>
          <p>Sheraton San Diego Hotel and Marina</p>
          <p>San Diego, CA</p>
      </div>
    ASTM D02 2014
    December 7-11, 2014
    Sheraton San Diego Hotel and Marina
    San Diego, CA
    The picture is displaying to the right but I want to get rid of the blank lines between the text. I am using Dreamweaver CS5 Version 11.0 Please help.

    Sorry I inserted the wrong code. 
    <div id="rightsideUpcomingevents">
       <h2 class="upcoming">Upcoming Events</h2>
          <h2 class="meeting"><a href="http://www.gulfcoastconference.com">Gulf Coast Conference</a></h2>
       <img class="news-image" src="images/news/hotel_moody.jpg" width="100" height="61" /> 
       <p class="news-text">October 14-15, 2014</p>
          <p class="news-text">Moody Gardens Convention Center</p>
          <p class="news-text">Galveston, TX</p>
          <h2 class="meeting"> </h2>
          <h2 class="meeting"><a href="http://www.astm.org/MEETINGS/filtrexx40.cgi?+-P+TERM+D02+searchresults.frm">ASTM D02 2014</a></h2>
       <img class="news-image" src="images/news/Sheraton San Diego.jpg" width="100" height="61" /> 
       <p class="news-text">December 7-11, 2014</p>
          <p class="news-text">Sheraton San Diego Hotel and Marina</p>
          <p class="news-text">San Diego, CA</p>
      </div>
    .rightside-text
    {padding:0px; color:#172B61;}
    .news-image {float:right; margin-right:10px; }
    .news-text { padding:0px; color:#000;}

  • Drag and Drop in JTree / Show line between Nodes as DropTarget

    Hello folks,
    I am using the posted DnDTree.
    My problem is to show a line between two nodes when I am drgging another node over them.
    The idea is to have the posibility to sort nodes in the same level.
    Has anybody an idea how to solve that?
    Thanks and best reards,
    Florian

    "My problem is to show a line between two nodes when I am drgging another node over them."
    Try this dragOver method:
    public void dragOver(DropTargetDragEvent dtde) {
    Point p = dtde.getLocation();
    int closestRow = getClosestRowForLocation(p.x, p.y);
    Graphics g = getGraphics();
    try {
    if (closestRow != -1) {
    DnDNode node =(DnDNode)getPathForRow(closestRow).getLastPathComponent();
    Rectangle r = getRowBounds(closestRow);
    g.setXORMode(getBackground());     
    if (p.y >= r.y && p.y <= r.y + r.height) {
    dtde.acceptDrag(DnDConstants.ACTION_COPY_OR_MOVE);
    drawNewLine = false;
    drawNewRectangle = false;
    if (!node.getAllowsChildren() && ((r.x != x1 || r.y + r.height != y1) || rectangleDrawn)) {
    drawNewLine = true;
    parentNode = (DnDNode) node.getParent();
    index = parentNode.getIndex(node) + 1;                    
    } else if (node.getAllowsChildren()) {
    if ((isCollapsed(closestRow) || (isExpanded(closestRow) && node.getChildCount() == 0)) && (rectangleDrawn || (!lineDrawn && !rectangleDrawn)) && p.y > r.y + r.height - 5) {
    drawNewLine = true;
    parentNode = (DnDNode) node.getParent();
    index = parentNode.getIndex(node) + 1;
    } else if ((lineDrawn && p.y <= r.y + r.height - 5) || ((rectangleDrawn || (!lineDrawn && !rectangleDrawn)) && (r.x != x || r.y != y))) {
    drawNewRectangle = true;
    parentNode = node;
    index = 0;
    // Marks where the drop will occur
    if (drawNewLine || drawNewRectangle) {
    if (lineDrawn) {
    g.drawLine(x1, y1, x2, y2);
    lineDrawn = false;
    if (rectangleDrawn) {
    g.drawRect(x, y, w, h);
    rectangleDrawn = false;
    if (drawNewLine) {
    x1 = r.x;
    y1 = r.y + r.height;
    x2 = getWidth() - 5;
    y2 = r.y + r.height;
    g.drawLine(x1, y1, x2, y2);
    lineDrawn = true;
    if (drawNewRectangle) {
    x = r.x;
    y = r.y;
    w = getWidth() - r.x - 5;
    h = r.height - 1;     
    g.drawRect(x, y, w, h);
    rectangleDrawn = true;
    } else {
    dtde.rejectDrag();
    index = -1;
    if (lineDrawn) {
    g.drawLine(x1, y1, x2, y2);
    x1 = -1;
    y1 = -1;
    lineDrawn = false;
    if (rectangleDrawn) {
    g.drawRect(x, y, w, h);
    x = -1;
    y = -1;
    rectangleDrawn = false;
    } finally {
    g.dispose();
    Hope this works for you...
    Good luck
    /Tomas

  • Skipping Blank Lines in text File

    I am working on an assignment in which i have to read from a text file and store the strings individually. The problem i have is that the text file has blank line between each set of strings. So i figured to use "fin.nextLine();" to skip that blank line and continue with storing the values. but i get
    "Exception in thread "main" java.util.NoSuchElementException: No line found
         at java.util.Scanner.nextLine(Unknown Source)
         at processmsg.ProcessMessages.choice1(ProcessMessages.java:68)
         at processmsg.ProcessMessages.main(ProcessMessages.java:25)"
    which is where the fin.nexLine() is at. How can i just skip that blank line?
    System.out.println("Please enter the file location");
              Scanner stdin = new Scanner(System.in);
              String fileName = stdin.nextLine();
              // read the information from the file
              try {
                   Scanner fin = new Scanner(new File(fileName));
                   String tSendName = fin.nextLine();
                   while(tSendName != null)
                        String tRecieveName = fin.nextLine();
                        String tPhoneNumber = fin.nextLine();
                        String tDate = fin.nextLine();
                        String tTime = fin.nextLine();
                        String tStatus = fin.nextLine();
                        String tMessage = fin.nextLine();
                        PhoneMessage phonemessage = new PhoneMessage(tSendName, tRecieveName,
                                  tPhoneNumber, tDate, tTime, tStatus, tMessage);
                        fin.nextLine();
                        tSendName = fin.nextLine();

    don't know if you want the whole code, the whole code is kind of large and spread out over 3 different classes. and yes the text file is standard
    sender
    reciever
    phone number
    date
    time
    status
    message
    sender
    reciever
    phone number
    date
    time
    status
    message
    sender
    reciever
    phone number
    date
    time
    status
    message
    private static void choice()
              // scan the file location from the user
              System.out.println("Please enter the file location");
              Scanner stdin = new Scanner(System.in);
              String fileName = stdin.nextLine();
              // read the information from the file
              try {
                   Scanner fin = new Scanner(new File(fileName));
                   String tSendName = fin.nextLine();
                   while(tSendName != null)
                        String tRecieveName = fin.next();
                        String tPhoneNumber = fin.next();
                        String tDate = fin.nextLine();
                        String tTime = fin.nextLine();
                        String tStatus = fin.nextLine();
                        String tMessage = fin.nextLine();
                        PhoneMessage phonemessage = new PhoneMessage(tSendName, tRecieveName,
                                  tPhoneNumber, tDate, tTime, tStatus, tMessage);
                        // skip blank line between entries
                        fin.nextLine();
                        // test date string for correct format
                        int month = Integer.parseInt(tDate.substring(0,2));
                        int day = Integer.parseInt(tDate.substring(3,5));
                        int year = Integer.parseInt(tDate.substring(6,10));
                        // test time string for correct format
                        int hour = Integer.parseInt(tTime.substring(0,2));
                        int minute = Integer.parseInt(tTime.substring(3,5));
                        int second = Integer.parseInt(tTime.substring(6,8));
                        tSendName = fin.nextLine();
                        msgList.add(phonemessage);
                   fin.close();
              } catch (FileNotFoundException e) {
                   System.out.println("The file " + fileName + " was not found!");
              } catch (java.lang.NumberFormatException e) {
                   System.out.println("The date and/or time is not of the correct format");
         }

  • Small square boxes appearing on blank lines (UPDATED) - The question is, how to get rid of them?

    *******  As to my display name "All I tried were in use" - when I registered at the Adobe site to use the Browser Lab, I tried something like 10 or 12 user names and finally gave up and went with "All I tried were in use" - my name is Bob
    ------------------------------- UPDATE --------------------
    The problem, small square boxes showing on lines in Freetext Tool comments, is not limited to blank lines, as I originally reported here. These boxes are showing up at the end of every line. It does not matter if the line break is hard or soft, whether the line is empty or not.
    Please read the original post bearing mind that the  problem is occurring at the end of all lines.
    Also - here is a screen capture of a part of one comment box, showing the square lines. I didn't show the entire box because the material above the area I'm showing is a tad private or confidential. Here is the image showing the boxes - note that there is no box at the end of the last line in the comment.
    -------- Original Post ------------
    We have a copy of Acrobat 5.0. and up until now it has done what we need, which is not much more than adding bookmarks, links, and some touch up. I know it is very old and I know things change. I'm hoping this has nothing to do with the release we are using. I would think this would be a backward compatibility issue if it is a problem with newer Reader versions dealing with PDFs "edited" with 5.0.
    I am having small square boxes showing up on blank lines. (read my update above  - the boxes are at the end of all lines, soft break or hard break))
    I'm a programmer (37+ years in most all aspects of Data Processing) and I decided to learn the PHP programming "language" to add some server side processing to some of my web sites. So, I found a fairly good manual on PHP in PDF form and have been using it.
    I quickly found that the PDF didn't have a single link in it and no bookmarks, so I've been adding them as I look up a particular subject. I'm also adding comments and notes to document things not in the original manual or to add comments that would help other programmers` (who know  other languages) to adjust to PHPs' way of thinking - for example: in all the other languages I know (perhaps two dozen) to get rid of a file, you "delete" it. In PHP you "unlink" it.
    I've added a lot of comments and notes like that and when I view the PDF in Reader (on this computer I have 9.4.2) I'm seeing small square boxes on empty lines. The lines were created when I pressed Enter twice to insert a blank line between paragraphs. (again, read the update at the top of this message - the boxes are at the end of all lines, soft break or hard break)
    How can I get rid of them?
    They are not present when I've got the PDF open with Acrobat, only when I'm using an Acrobat Reader.
    They are also not present if I look at the comments using the Comments navigation panel - that is, they still show on the page, but they don't show in the copy of the comment displayed in the navigation panel.
    They are not present in Notes or when I use one of the shape tools (Square Tool, Circle Tool, or Line Tool) to create notes. They are only present in Freetext Tool comments
    They are clearly being show where there are successive line feed/carriage return characters - but how do I get rid of them?
    I JUST THOUGHT OF SOMETHING - I realized that I'd not printed any of the pages on which I have placed comments and wondered if the boxes show when printing the PDF with Reader -- they do. They are not present if I use Acrobat, not a Reader, to print the same page.
    Any assistance you can provide will be greatly appreciated.
    Please don't tell me to get a newer version - an expenditure like that is simply and totally out of the picture. For us, this is a Depression, not a Recession - we are self-employed and our businesses have been severely hammered since 2006 - we are down to about 1/4 of our income before the big guys trashed the economy.
    Bob
    P.S. Do you know that you can have a heart attack without chest pain, shortness of breath, or left arm  pain? Well, you can! I've had two and the first one nearly killed me because I had no clue it was a heart attack. You can read about it first one here.  Pass this on, it could save a life.
    My second heart attack occurred on October 4, 20112 - it began, around 3:15 AM, as the first one did, with a headache. It turned out the stent implanted in 2002 had been completely clogged by too much tissue grown. The doctor put another stent inside the first one.

    Problem Resolved - it is a font issue. Apparently Acrobat can't handle particular fonts and it is best to stick with a very small slection of fonts - Arial, Helvetica, Times Roman.
    I haven't test a lot of fonts. If I do, I'll post there results here.
    Bob

Maybe you are looking for