Loosing Empty Line In Print

The topic summary pretty much says it all. Although my
paragraphs are formatted within RoboHelp, properly separated, with
an enter I believe, when the document is printed these empty lines
are gone and the paragraphs are right up against each other.
Any suggestions?
Thank in advance.
Dave

Are we talking about the difference between how things look
in the online help and when you generate a printed document?
If Yes, what option are you selecting in the last page of the
print wizard? (Use CSS Styles or Word template).
If No, what printed output are you referring to.

Similar Messages

  • Getting empty lines while printing a form

    HI ,
    I am working with a smart form related to Physical inventory document.
    While displaying the items in the list, there is some issue.
    It is displaying 1 blank line, 1 line item, again 1 blank line, 1 line item..like that.
    It is displaying all the line items but with blank line after every line item.
    The balnk lines should n't be dispalyed.
    Could any one help me in this regard.
    Thanks in advance.

    Hi Nagapallavi V Adhikarla ,
    As Florian Kemmer said, there is a blank line in your table in the smartform.
    Before posting any question check throughly and post. Dont ask basic questions.
    Thanks & Regards,
    Rock.

  • When I open up an e-mail attachment a box pops up PRINT TO FILE below that line OUTPUT FILE NAME with an empty line for the file name vs. simply going to my default printer?

    when I open up an e-mail attachment a box pops up PRINT TO FILE below that line OUTPUT FILE NAME with an empty line for the file name vs. simply going to my default printer?

    Make sure that '''''Print to File''''' isn't selected in the native print dialog box ''(see screenshot below)'' middle-right, and make sure your Printer is selected at the top of that dialog box.
    ''I'm a little confused why an email attachment would need to go directly to the printer, but that's what you asked about.''

  • 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

  • Empty line in report output

    Hi All,
    we have pipe delimited report when we saving the output in excel sheet we are getting a
    empty line.
    Please advice me
    Thanks,
    Anu-

    Hi Rangarao,
    Make sure your page breaks are within the group statement or wrap page break in "if" statement so it doesn't print.
    Make sure your form fields are on their own line without space either side.
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • I need a method for ignoring empty lines

    Hi to all,
    i need a method for ignoring empty lines when my program reades a file like that
    start of file
    print "xoxox"
    //ignore this line
    println"xaxaxa"
    //ignore this line
    end of file
    cheers

    Are you having trouble detecting these empty lines? Or are you having trouble not processing them once you've detected them?
    For the first case, you neeed to define "empty." I assumed it meant "containing no characters," and that's what the first solution shows. Your example looks like "empty" means "starts with comment characters."
    For the second case, you ignore them by just not doing anything: read a line
    if (it is not empty) { // by whatever criteria you define for "empty"
       do something with it
    }

  • Skip the empty line while processing

    Hi all
    i'm reading from a file and i want to skip the empty line and process the line which has some data, but it seem that i doesnot process the "\n"as an empty line
    for example i have the following data
    i went to school
    (empty line)
    5 days a week
    (empty line)
    and i have the following code
        while((line = in.readLine() ) !=null) 
                 if(line!="\n")
                      codes=line.split("   ");
                      }//if else
                      else
                      //do nothing
                      }

    thanks dmbdmb
    it works
    may i ask another question
    i have a file which has several sentences but the spaces between these sentences are not unique i.e some time 3 empty lines some times more or less
    i have a code to make all the spaces just 1 between any sentece but it work with system.out.print but not with files any ideas
    here is the code
            StringBuffer buffer=new StringBuffer();
            try{
                BufferedReader read=new BufferedReader(new FileReader(fname));
    BufferedWriter br = new BufferedWriter(new FileWriter("111.txt"));
                String line=read.readLine();   
                boolean isNewLine=false;
                while(line!=null){
                    if(line.length()==0 && !isNewLine){
                        buffer.append("\n\n");
                                       isNewLine=true;
                    }//if
                    else if(line.length()!=0){
                        buffer.append(line);
                        System.out.println("in ELSE");
                        isNewLine=false;
                    }//else
                    line=read.readLine();
                }//while
                br.write(buffer.toString());
                 read.close();
           br.close();
            }//try
            catch(IOException ioe){
                ioe.printStackTrace();
            }

  • SAPScript - controlled empty Line

    Hello,
    I have a Problem in a Sapscript: in den MAIN, between all items, we need to print an empty line to separate the items. The problem is, if at the end of the MAIN, after an item they is not enough space for this empty line, this line is printed automatically at the begining of the next new page. I want to avoid this empty line at the end of page. Is this possible?
    I have make test with "Protect" and "Endprotect", it's works but in this case, the new page is trigged and the complete last item of the page is printed at the next page. This is not a good solution because we lost to much place at the end of the MAIN.
    Is any other solution possible? It is possible to controll this empty line?
    Thanks for answer.

    Hi SaiRam,
    I have already try this, i think it's the same solution as yours and it doesn't work:
    (For the test, the empty line is replaced by variable, that's shows the page numers)
    /: DEFINE &SAV_PAGE& := 1
    /: IF &SAV_PAGE& NE &NEXTPAGE&
    /: &SAV_PAGE& = &NEXTPAGE&
    /: ENDIF.
    /: IF &PAGE& EQ &SAV_PAGE&.
       page = &PAGE&, nextpage = &NEXTPAGE&, save = &SAV_PAGE&
    /: ENDIF.
    Here an example of the result:
    Item 10
    page = 1, nextpage = 2, save = 1
    Item 20
    page = 1, nextpage = 2, save = 1
    Item 30
    page = 1, nextpage = 2, save = 2
    Item 70
    End-Of-Page
    New-Page
    page = 2, nextpage = 3, save = 1
    Item 80
    Item 90
    Item 100
    We see that the system doesn't have enough place after "item 70" to print the Page-Line, so it trigged a new page. Normaly, he doesn't have to print the Page-Line at the bottom of the line, but it doesn't work. I don't know how avoid the print of this line at the bottom of a page. On a New-Page, i wan't start the Print with an item-line and not with a Page-Line.
    Have I do something wrong?
    Thanks for your answer.
    Marc

  • HasMoreTokens detecting and counting empty line

    Hi programmers!
    how can i count empty line in a text file which has the data?
    suppose the text file with data is as follows:
    =====================
    c 500
    c 2100
    // <== empty line
    p 550
    c 5950
    c 3000
    =====================
    I want to display "Invalid record" when that empty line comes
    I tried following to execute "IO.print("Invalid record") line
    if(str.equals(" "))  / / also/  if (str.nextToken == false) /also / if (string.hasMoreTokens())
                   IO.print("Invalid record");
             }

    If (line.equals(""))
    or
    if (line.trim().length() == 0)

  • How to delete multiple empty lines in item assignment block in WebUI

    Hi Experts,
       When i am reading 'BTAdminI' context node data, I am getting empty lines along with data. I can able to delete only one empty lines when its executing second empty line its failing in loop. Can you suggest me how can i delete multiple empty lines. I am using below code.
    DATA: lr_entity1           TYPE REF TO cl_crm_bol_entity,
            lr_current          TYPE REF TO if_bol_bo_property_access,
            lr_iterator         TYPE REF TO if_bol_bo_col_iterator,
            lv_strukname        TYPE strukname,
            dref                TYPE REF TO data,
            lv_thtmlb_tableview TYPE REF TO cl_thtmlb_table_view,
            lr_cn               TYPE REF TO cl_bsp_wd_context_node_tv,
            cr_mixed_node_tv    TYPE REF TO cl_bsp_wd_mixed_node.
        FIELD-SYMBOLS: <fs_line_structure> TYPE data.
        lr_iterator = me->typed_context->btadmini->collection_wrapper->get_iterator( ).
        TRY.
            lr_current = lr_iterator->get_first( ).
          CATCH cx_root.
        ENDTRY.
        WHILE lr_current IS BOUND.
          lr_entity1 ?= lr_current.
          CHECK lr_entity1 IS BOUND.
          lr_entity1->get_attr_struct_name( RECEIVING rv_result = lv_strukname ).
          IF lv_strukname IS NOT INITIAL.
            CREATE DATA dref TYPE (lv_strukname).
            ASSIGN dref->* TO <fs_line_structure>.
            IF <fs_line_structure> IS ASSIGNED.
              lr_current->get_properties( IMPORTING es_attributes = <fs_line_structure> ).
              IF <fs_line_structure> IS INITIAL.
                me->typed_context->btadmini->collection_wrapper->remove( lr_current ).
                EXIT.
              ENDIF.
            ENDIF.
          ENDIF.
          TRY.
              lr_current = lr_iterator->get_next( ).
            CATCH cx_root.
          ENDTRY.
        ENDWHILE.

    Hi Nitish,
    Try below code instead of your code,
    Data:
    lt_empty_lines  TYPE TABLE OF REF TO cl_crm_bol_entity,
    lr_entity TYPE REF TO cl_crm_bol_entity.
    After getting collection from BTadmini use the below code.
    lr_iterator ?= lr_coll->get_iterator( ).
        lr_entity ?= lr_iterator->get_first( ).
        WHILE lr_entity IS BOUND.
          IF lr_entity->is_send_active( ) EQ abap_false.
            APPEND lr_entity TO lt_empty_lines.
          ENDIF.
          lr_entity ?= lr_iterator->get_next( ).
        ENDWHILE.
        LOOP AT lt_empty_lines INTO lr_entity.
          typed_context->btadmini->collection_wrapper->remove( lr_entity ).
          lr_entity->delete( ).
        ENDLOOP.
    Best Regards,
    Dharmakasi.

  • How to get rid of empty lines in a file?

    How can read a file "text.txt", delete all the empty lines and restore it to same filename "text.txt" without using a temporary file?

    Ages ago I ruined an 8" floppy disk drive by doing something similar to
    this: let b1 b2 ... bn nl be a series of blanks followed by a newline
    character (nl) and let c1 ... cm be a sequence of other characters. Let
    the total relevant sequence be:
    b1 b2 ... bn nl c1 ... cm
    Reverse the entire sequence: cm ... c1 nl bn ... b2 b1 and then
    reverse the first m bytes: c1 cm nl bn ... b2 b1. Now repeat the entire
    thing for the sequence c1 ... cm by checking for more blank lines in it.
    After this has all finished, simply truncate the file.
    The advantage of this method was that I only needed to be able to swap
    two bytes in a file; the disadvantage was that the floppy disk drive
    couldn't handle it ;-)
    kind regards,
    Jos

  • HP Officejet Pro 8610 bought 2 weeks ago. giving vertical lines while printing.

    Dear Sir,
    I bought new officejet pro8610 . 2 weeks ago. its giving vertical lines on printing any document from printer. scanner is absolutely fine just problem while printing and copying. i clear printhead few times. 
    i just check that when i am printing any paper from windows photo viewer,there are lines like this.
    but when i copy the same image in Ms Word 2007 and print it from there. the paper is clean without lines. its strange. while i have anyother printer HP Laserjet Color CP1025 attached with same computer . i print the same image from CP1025 from Windows Photo viewer, its clean from there without lines. can any one help me out from this issue

    Dear Sir,
    I bought new officejet pro8610 . 2 weeks ago. its giving vertical lines on printing any document from printer. scanner is absolutely fine just problem while printing and copying. i clear printhead few times. 
    i just check that when i am printing any paper from windows photo viewer,there are lines like this.
    but when i copy the same image in Ms Word 2007 and print it from there. the paper is clean without lines. its strange. while i have anyother printer HP Laserjet Color CP1025 attached with same computer . i print the same image from CP1025 from Windows Photo viewer, its clean from there without lines. can any one help me out from this issue

  • How do you get a list of your contacts nick names and their phone numbers on line and print them out?

    How do you get a list of your contacts nick names and their phone numbers on line and print them out?  I've been trying to figure out how to get the list to print out but I can't even find a complete list to view on Verizon's web site.  Does anyone know how to do this?

    Log into your online account. In the, 'I want to', box type, Manage Contacts.
    Place your cursor over any contact, a pop screen will appear with the option to print your contacts

  • Empty line handling in sender fileadapter FCC

    Hi Al,
      How do we ignore empty lines in the fixed length file by using FCC?
    In my input file,i would be having emply lines at last and as per my curect FCC configurations,it is reading that emplty line also and due to this,message got failed in message mapping.How do we ignore this in sender file adapter?
    I do not want to change any mapping condition.

    Hi Rajesh,
    Just a short in the dark . There is a parameter by the name of NameA.keepIncompleteFields
    This parameter is only evaluated if you enter a value for NameA.fieldFixedLengths.
    ○       If you enter NO and the last field found in the structure is shorter than specified in NameA.fieldFixedLengths, processing is terminated with a corresponding error message.This is the default.
    ○       If you enter YES, the last field found in the inbound structure is transferred to the outbound structure, even if it is shorter than specified in NameA.fieldFixedLengths.
    Caution
    You use this parameter to control the behavior of the conversion routine for the last field in a structure.
    Use the NameA.missingLastFields parameter to define the behavior at runtime when the structure contains less fields or no fields (as in your case a blank line) in total that specified in NameA.fieldFixedLengths.
    Regards
    joel

  • Dynamic file name in receiver - empty line problem with content conversion

    Hi,
    I do a variable substitution from a filename node in my xml structure. Because I don't want to have the the filename in my flatfile i supress the output with the conversion parameters:
    filename.fixedLengthTooShortHandling = Cut
    filename.fieldFixedLengths = 0
    It's working but: the adapter is puting an empty line at the end of the file. If I even put the filename node at the top of the xml struture it generates the empty line at the top of the flatfile.
    Anyone has an idea? is there an other way to set the filename or how can I supress this empty line( I have to) ?
    Regrads
    J.

    Jorg,
    Actually speaking we cannot get rid of this with XI. You have to write a OS script to remove this.
    Else
    you add one more parameter as .endSeparator as backspace ie., 0x08. It will definitely remove the line but I think it is putting a square box at the end of previous line. Please check by giving this and let us know the updates.
    Regards,
    ---Satish

Maybe you are looking for

  • Problem with Flexmotion 7344, UMI 7764 and servo driver parts

    Hi to all of you, I've a great problem with my motion system. This is formed by: 1.Flexmotion 7344, cable and UMI 7764 (NI-kit) 2. 2 servomotor and 2 incremental encoder 3. 2 Motor drivers The problem is that the motor drivers (AXOR MICROSPEED) can'

  • Mac mini Server (Late 2012) memory issue

    kernel_task consumes a lot of RAM. Take a look at the screenshot and everything will be clear without word. Already read many times here in discussions and many users complain about the exact same problem, but Apple is silent and is permissible to re

  • How come my scans are being saved as pdf files, I want them saved as JPEG or JPG

    I am a member of ancestry.com and need to upload my photos into my ancestry program, however, when I scan a photo, it automatically is generated as a PDF and I cannot upload it. Can you tell me what to do to get my scanned docs to save as a JPG file?

  • Material availability to vendor.

    Hi, We have a requirement from our customer that he want his vendor to see the material availability in SRM. Is there any wayout? SUS has any such functionality. Kindly help. Reg., Sridhar.

  • How to implement a foreach cycle through Office 365 Calendar appointments?

    Hi everyone, I am looking for a way to implement a foreach cycle that is better than what I could create already, so I would like to have your feedback. Basically, I have an Office365 Calendar and I want to count the number of appointments per day, s