Unwanted blank lines inserted into the page bean

For some reason after using the visual editor and then switching to the java view, I notice that there are extra blank lines inserted between lines in the file. The extra lines can accumulate making the file very large and unusable. This has only started happening after installing the latest hot fix. Is there a fix for this?
Thanks,

Hi mitsu,
We did send out some updates via UpdateCenter just two days back. One of the fixes in there would fix the extra empty lines issue.
Please get this update downloaded and installed on your Creator Installation.
It should fix your issue.
Could you please confirm if this fixes your issue?
Regards,
Sakthi

Similar Messages

  • Unwanted Blank Line at Top of Page

    Hello.
    When a paragraph ends at a page bottom, the blank line (which normally appears between paragraphs) appears at the top of the next page.
    But this looks stupid. And I don't see which setting can resolve all instances of this.
    I really don't want to manually remove these - if I add a line of text somewhere in my book, it will affect all of the manual fixes.
    Thanks very much!

    Thanks for your endorsement, Yvan, but please don't rush so quickly into the future. I've lived through two-thirds of Century XX and so far have survived one decade of Century XXI but I have no desire to witness Century XXII. I'm guessing that your "I" key burped.
    Seriously, there are still a surprising number of people who carry over the typewriter habits of double spacing after sentences and double returning after paragraphs. This causes them some grief, as shown by the problem reported by the OP.

  • Unwanted Blank line appearing in the output

    Hi all,
    we are trying to print the line items of a Order.
    There is no issue in first page. But in second page, after prinitng the first record...a blank line is coming followed by the second record.
    Now, we need to remove this blank line.
    There is a check box at the end of each record and the field which is prior to this check box has got offset. Tried to remove this offset and check...but it didn't work.
    As the first page output is perfectly fine and the issue is with the second page ( output has got 2 pages in total ), I believe
    something has to do with the page break setting.
    Any inputs on this would be of great help.
    Thanks in advance,
    Narayan.

    Could be caused by many reasons.
    Is the paragraph format set to skip a line the first time it is printed (SPACE AFTER setting)?
    Is the data causing it to overflow across the line?
    Is there a line feed in the actual SAPscript (like a "/" paragraph format)?

  • Extra Blank line inserted at the end of the target file

    Hi,
    This is File to File senario and target files created with a extra blank line at the end of the file.
    Below is the source file structure and the content.
    <ns0:MT_MOD_FL xmlns:ns0="http://file2file/MES">
       <EMPLOYEE>
          <ID>12</ID>
          <Name>SREENI</Name>
          <Designation>M2</Designation>
       </EMPLOYEE>
       <EMPLOYEE>
          <ID>121</ID>
          <Name>RAJA</Name>
          <Designation>M3</Designation>
       </EMPLOYEE>
    </ns0:MT_MOD_FL>
    Below is the generated target file
    12     SREENI     M2
    121     RAJA     M3
    Here Generated target file suppose to have only two line instead of 3.
    What exactly do i need to change to generate the file with 2 line.
    I am not using any mapping as both source and target message structure are same.
    IN FCC i used only fieldSeparator, even i have not used endSeparator.
    Thanks in Advanace...

    Hi! Raghu,
    Just go through the below Help..documantation
    [http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm]
    NameA.endSeparator
    To define an additional string as a separator after the last column in a row, specify it here. The system skips this string when it processes the last column (otherwise the system would treat it as part of the last column).
    NameA.fieldSeparator
    If you make an entry here, the system expects that the structure contains the specified character string (one or more characters) as a separator between the individual columns.
    If you have not made an entry for fieldFixedLengths, this is the only specification to identify the individual columns in a row.
    If you made a specification for fieldFixedLengths, the extra length of the separator is taken into account, but no further consistency checks are performed.
    Regards::
    Amar Srinivas Eli

  • Blank lines inserted at the end of the flat file generated

    Hi,
    my scenario is idoc to flat file. for each item node in the idoc, one flat file has to be generated. i have used FCC with variable substitution method.
    structure is something like this
    <TOItem>
      <field1>
      <field2>
    </TOItem>
    <FieldNode>
    < Filename>
    the filename value is used to generate the file name  in variable substitution. this field should not appear in the output file. so we have used
    Filenode.fieldFixedLengths = 0 and FileNode.fixedLengthTooShortHandling=Cut
    with this 2 blank lines are being inserted in the output file.
    these lines should not appear in the output file. can anyone guide me how to achive.
    Best Regards
    Deepika

    Do not add this as a separate node. Keep it inside the field strucuture at the end and mentione the length of the field 0. Your problem will be solved.
    VJ

  • TEI class- want to instantiate a Bean into the page

    I have a TEI class which I am using to add an object to the page.
              I am able to address this object by using (psuedo code below)
              <%= object.getName() %>
              however, if I try to call the object with a usebean tag, like
              <jsp:getProperty name="object" property="Name"/>
              I get an error:
              /myfile.jsp(40): object is not defined as bean
              probably occurred due to an error in /myfile.jsp line 40:
              <jsp:getProperty name="object" property="Name"/>
              any ideas on how to instantiate an object into the page so that it is a
              bean?
              right now I am using the code from the API_taglib.html document:
              public VariableInfo[] getVariableInfo(TagData data) {
              return new VariableInfo[] {
              new VariableInfo("object",
              "fully.qualified.classfilename",
              true,
              VariableInfo.NESTED),
              

    Josh, I think you have to use "useBean". i.e. <jsp:useBean id="object"
              class="java.lang.Object" scope="page | request | session | application">
              before you can reference.
              -E
              Josh Lannin wrote:
              > I have a TEI class which I am using to add an object to the page.
              > I am able to address this object by using (psuedo code below)
              >
              > <%= object.getName() %>
              >
              > however, if I try to call the object with a usebean tag, like
              >
              > <jsp:getProperty name="object" property="Name"/>
              > I get an error:
              >
              > /myfile.jsp(40): object is not defined as bean
              > probably occurred due to an error in /myfile.jsp line 40:
              > <jsp:getProperty name="object" property="Name"/>
              >
              > any ideas on how to instantiate an object into the page so that it is a
              > bean?
              >
              > right now I am using the code from the API_taglib.html document:
              >
              > public VariableInfo[] getVariableInfo(TagData data) {
              > return new VariableInfo[] {
              > new VariableInfo("object",
              > "fully.qualified.classfilename",
              > true,
              > VariableInfo.NESTED),
              > };
              > }
              

  • Extra blank line inserted after page break

    Hello,
    I am currently having trouble with alignment using templates in BI Publisher.
    I am trying to create a template that will be printed on a pre-printed form.
    Each group in the report should be separated by page so the group has a <?split-by-page-break:?> right before <?end-for-each?>.
    However, when the next page begins, there is a blank line inserted. This messes up the alignment altogether.
    Code is like this:
    <?for-each-group:G_Document;./DOCUMENT?><?sort:current-group()/DOCUMENT;'ascending';data-type='text'?><?for-each:current-group()?>
    ----INSERT Table TEMPLATE HERE---
    <?split-by-page-break:?><?end-for-each?>
    Output turns out like this:
    (Page1)<TABLE TEMPLATE>
    <Page Break>
    (Page 2)<New Line>
    <TABLE TEMPLATE>
    <Page Break>
    (Page 3)<New Line>
    <TABLE TEMPLATE>
    <Page Break>
    I have found this old thread Split-By-Page-Break inserting extra line that has the exact same problem, however, I have tried all suggested solutions even the last one, and I still am encountering the problem.
    Any help would be greatly appreciated.
    Regards,
    Jovee

    Thanks Varma, for the solution you provided.
    The code for page break was inserted right after the for-each tag, and looks like this:
    <?for-each:current-group()?><xsl:attribute name="break-before">page</attribute>
    Template now works without the extra blank line.

  • Is it possible to have a link/button inserted into the end of my flash video that makes up the first page of my web site

    i am not sure if this will make sense so please tell me if it
    doesn't. is it possible to have a link/button inserted into the end
    of my flash video that makes up the first page of my web site. the
    video plays showing the name of the site then fades to show the
    text "enter" which i want to make the link to the next page.

    > the video plays showing the name of the
    > site then fades to show the text "enter"
    in FLASH set a gotourl action on the last frame of the move.
    If this is a "splash page" and has a dancing company logo and
    a throbbing
    drumbeat- reconsider. Just make the homepage of the website
    the homepage.
    Don't make people wait to see some content.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Taking More Time while inserting into the table (With foriegn key)

    Hi All,
    I am facing problem while inserting the values into the master table.
    The problem,
    Table A -- User Master Table (Reg No, Name, etc)
    Table B -- Transaction Table (Foreign key reference with Table A).
    While inserting the data's in Table B, i need to insert the reg no also in table B which is mandatory. I followed the logic which is mentioned in the SRDemo.
    While inserting we need to query the Table A first to have the values in TableABean.java.
    final TableA tableA= (TableA )uow.executeQuery("findUser",TableA .class, regNo);
    Then, we need to create the instance for TableB
    TableB tableB= (TableB)uow.newInstance(TableB.class);
    tableB.setID(bean.getID);
    tableA.addTableB(tableB); --- this is for to insert the regNo of TableA in TableB.. This line is executing the query "select * from TableB where RegNo = <tableA.getRegNo>".
    This query is taking too much time if values are more in the TableB for that particular registrationNo. Because of this its taking more time to insert into the TableB.
    For Ex: TableA -- regNo : 101...having less entry in TableB means...inserting record is taking less than 1 sec
    regNo : 102...having more entry in TableB means...inserting record is taking more than 2 sec
    Time delay is there for different users when they enter transaction in TableB.
    I need to avoid this since in future it will take more time...from 2 sec to 10 sec, if volume of data increases mean.
    Please help me to resolve this issue...I am facing it now in production.
    Thanks & Regards
    VB

    Hello,
    Looks like you have a 1:M relationship from TableA to TableB, with a 1:1 back pointer from TableB to TableA. If triggering the 1:M relationship is causing you delays that you want to avoid there might be two quick ways I can see:
    1) Don't map it. Leave the TableA->TableB 1:M unmapped, and instead just query for relationship when you do need it. This means you do not need to call tableA.addTableB(tableB), and instead only need to call tableB.setTableA(tableA), so that the TableB->TableA relation gets set. Might not be the best option, but it depends on your application's usage. It does allow you to potentially page the TableB results or add other query query performance options when you do need the data though.
    2) You are currently using Lazy loading for the TableA->TableB relationship - if it is untriggered, don't bother calling tableA.addTableB(tableB), and instead only need to call tableB.setTableA(tableA). This of course requires using TopLink api to a) verify the collection is an IndirectCollection type, and b) that it is hasn't been triggered. If it has been triggered, you will still need to call tableA.addTableB(tableB), but it won't result in a query. Check out the oracle.toplink.indirection.IndirectContainer class and it's isInstantiated() method. This can cause problems though in highly concurrent environments, as other threads may have triggered the indirection before you commit your transaction, so that the A->B collection is not up to date - this might require refreshing the TableA if so.
    Change tracking would probably be the best option to use here, and is described in the EclipseLink wiki:
    http://wiki.eclipse.org/Introduction_to_EclipseLink_Transactions_(ELUG)#Attribute_Change_Tracking_Policy
    Best Regards,
    Chris

  • Spool output conatins unwanted blank line

    Hi all,
    I've just written a new program that outputs a report to the spool when run in batch mode. The report looks great aside from an unwanted blank line that appears in the middle of the report when I view the spool...if I run the program from the command line and set the sy-batch variable to write the spool contents to the screen I see no blank line. how do I get rid of the blank line?  Thanks in advacne for any assitance provided.
    Mat

    Hi Mat,
    The blank line you see on the spool (as distinct from the screen) is probably a page break.  The spool will always apply a page format and split the list according to the length of the page.
    I guess you can get round this by creating a page format with the maximum number of lines (99999 lines).
    Regards,
    Nick

  • Final total cannot appear when the last line item reached the page end

    Hi All,
    My report included 2 pages. Problem is the final total cannot appear when the last line item reached the page end. (page 2)
    final total will appear on the middle of last page (page 3) when i comment (type    = 'BOTTOM').
    Below is the program.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device   = 'PRINTER'
          dialog   = 'X'
          form     = 'ZBOTM_VOUCHER'
          language = sy-langu.
      sort itab by vblnr.
      LOOP AT itab INTO wa_itab.
        move wa_itab-vblnr to reguh-vblnr.
        move wa_itab-lifnr to reguh-lifnr.
        move wa_itab-rbetr to reguh-rbetr.
        reguh-rbetr = reguh-rbetr * -1.
        CALL FUNCTION 'WRITE_FORM'
          EXPORTING
            window  = 'MAIN'
            element = 'DETAIL'.
        t_rbetr = reguh-rbetr + t_rbetr.
        AT LAST.
          CALL FUNCTION 'WRITE_FORM'
            EXPORTING
              window = 'LINE'.
          CALL FUNCTION 'WRITE_FORM'
            EXPORTING
              element = 'TOTAL'.
              type    = 'BOTTOM'
              WINDOW  = 'MAIN'.
        ENDAT.
    Thanks.

    Hi,
    Where should I include the code for bottom?
    How to open text editor?
    Thanks.
    Edited by: Alice8 on Feb 7, 2011 9:09 AM

  • Sites w/ .pdf or .ashx documents as the full page or as an insert in the page don't load the .pdf or .ashx documents - I get an Problem Report window that says "Firefox Plugin Process quit unexpectedly"

    Sites w/ .pdf or .ashx documents as the full page or as an insert in the page don't load the .pdf or .ashx documents - I get an Problem Report window that says "Firefox Plugin Process quit unexpectedly" and sends the error to Apple so I have had to revert to Firefox 3 getting rid of 4. Anybody have any thoughts?? (I'm runnng OSX 10.6.7)
    pdf was at
    <http://www.brigham.com/MSDS/Dust%20Mop-dust%20cloth%20treatment.pdf>
    ashx was my utility bill on
    <www.pse.com>

    OK, I think I have this solved. After reading my post over, I decided to rethink the problem. First thing I did was download Chrome and I tried using that and IE again and surprise! I was having the same problem on those browsers as well. So now we know it wasn't Firefox. I then figured maybe a slow computer meant a virus, so I ran scans. I've had both Avast and IOBit for months now and I've never had a problem with either of them before. Then I downloaded Malwarebytes and ran a third scan. They all picked some stuff up, but nothing serious. Then I tried disabling all the antivirus stuff and that didn't solve anything. But then I decided to keep Malwarebytes and I uninstalled IOBit Security and whammo - problem solved.
    I have no idea why out of the blue IOBit would be causing a problem like this so if someone knows, please let me in on the secret. Additionally, IE was working fairly well last night but not this morning. I also don't know why removing IOBit would take care of the nsAppShell issue, because supposedly, that's related to Firefox plug ins. And one more thing...when Comcast hooked my neighbor up to cable, they did it by putting a splitter on my line. They were messing about with the lines yesterday before I got on my computer last night trying to decide how to rerun them and today they did that, taking the splitter off my line and giving my neighbor his own line. That was finished about 30 minutes before I uninstalled IOBit. So....who knows?
    But I ain't about to look a gift horse in the mouth. I have my Firefox back and I am so sorry for bad mouthing you last night - I love you, Firefox!

  • Is there a way to create a .dmg file for a DVD inserted into the system

    I am wondering if Snow Leopard has integrated any tools that can create a .dmg file for the CD or DVD inserted into the system?
    If not, any recommendations for freeware 3rd party tools? Thanks

    Insert the disc you want to create the .dmg from, then choose the disc in the left hand pane of Disk Utility. From the File menu, choose New > Disk Image from (name of disc).
    EDIT: This is basically how it's done; however, there may be other steps involved, depending on the type of disc you're trying to copy and what your goals are with the .dmg. If you provide more details about what you're trying to achieve, maybe we can help you further.
    Message was edited by: Tuttle

  • "Message from Webpage (error) There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."

    I created a site column at the root of my site and I have publishing turned on.  I selected the Hyperlink with formatting and constraints for publishing.
    I went to my subsite and added the column.  The request was to have "Open in new tab" for their hyperlinks.  I was able to get the column to be added and yesterday we added items without a problem. 
    The problem arose when, today, a user told me that he could not edit the hyperlink.  He has modify / delete permissions on this list.
    He would edit the item, in a custom list, and click on the address "click to add a new hyperlink" and then he would get the error below after succesfully putting in the Selected URL (http://www.xxxxxx.com), Open
    Link in New Window checkbox, the Display Text, and Tooltip:
    "Message from Webpage  There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."
    We are on IE 9.0.8.1112 x86, Windows 7 SP1 Enterprise Edition x64
    The farm is running SharePoint 2010 SP2 Enterprise Edition August 2013 CU Mark 2, 14.0.7106.5002
    and I saw in another post, below with someone who had a similar problem and the IISreset fixed it, as did this problem.  I wonder if this is resolved in the latest updated CU of SharePoint, the April 2014 CU?
    Summary from this link below: Comment out, below, in AssetPickers.js
    //callbackThis.VerifyAnchorElement(HtmlElement, Config);
    perform IISReset
    This is referenced in the item below:
    http://social.technet.microsoft.com/Forums/en-US/d51a3899-e8ea-475e-89e9-770db550c06e/message-from-webpage-error-there-was-an-error-in-the-browser-while-setting?forum=sharepointgeneralprevious
    TThThis is possibly the same information that I saw, possibly from the above link as reference.
    http://seanshares.com/post/69022029652/having-problems-with-sharepoint-publishing-links-after
    Again, if I update my SharePoint 2010 farm to April 2014 CU is this going to resolve the issue I have?
    I don't mind changing the JS file, however I'd like to know / see if there is anything official regarding this instead of my having to change files.
    Thank you!
    Matt

    We had the same issue after applying the SP2 & August CU. we open the case with MSFT and get the same resolution as you mentioned.
    I blog about this issue and having the office reference.
    Later MSFT release the Hotfix for this on December 10, 2013 which i am 100% positive should be part of future CUs.
    So if you apply the April CU then you will be fine.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How do I print pictures from a disc inserted into the Apple Superdrive connected to the 2011 MacBook Air?

    How do i print pictures from a disc inserted into the Apple Superdrive connected to the 2011 MacBook Air by USB port?  Thanks

    How do i import them?  The only place i can find them is on "Finder" and I don't know how to get them to a place where I can print them.

Maybe you are looking for

  • Capture problem: no video

    I'm trying to capture a video clip to FCP and I'm getting the following error: "This operation could not be completed as there is no video." The Log & Capture window shows color bars, with "Preview Disabled" over-printed. Nonetheless, the vcr control

  • Populating a master detail on the same form

    Hi everyone, Here is my use case using the HR as an exemple. I need to create a form where I can create an new department (master) and a number of employees for that department (detail) on the same page. On my model I have a Employee view and Departm

  • Firewall ASA as Master NTP

    Good Morning We are facing this issue regarding network infrastructure of some customers we take care. In those infrasctructure, only the network layer 3 is allowed to consult an NTP Master Server (as stratum 0 for example). Although this layer 3 dev

  • Ios 7 failed to download

    What's going on? I'm using an ipad 4.

  • IBook G4 1.42 GHz shut down when battery storage is lower than 60%

    Hello everybody. My iBook G4 has been used for 10 month and updated to OSX 10.4.6. Three days ago, it shut down immediately without any warning. After this experience, I checked the battery information at two situation: Battery is charged: Battery In