Text overflown in the first page is not getting printed in the next page

Hi Experts,
I have a text field, where the users can enter the comments. In this text field if the user enters more than a page, a scroll bar appears in the print preview where the users can view the complete text what they have entered, but while printing the text which exceeds more than a page is not getting printed in the next page.
I have set the subform properties as "Flowed" and the check box "Allow Page Break within content" is also been enabled, but still the extra contents is not getting printed in the next page.
Please help me regarding this.
Thanks & Regards,
Karthik MD

Hi,
This issue is in ADOBE, I think there is no concept of Window in ADOBE,
The text box is placed inside a Subform.

Similar Messages

  • Text overflown is not getting printed in the next page in ADOBE

    Hi Experts,
    I have a text field, where the users can enter the comments. In this text field if the user enters more than a page, a scroll bar appears in the print preview where the users can view the complete text what they have entered, but while printing the text which exceeds more than a page is not getting printed in the next page.
    I have set the subform properties as "Flowed" and the check box "Allow Page Break within content" is also been enabled, but still the extra contents is not getting printed in the next page.
    Please help me regarding this.
    Thanks & Regards,
    Karthik MD

    Hi Lohitha,
    Even "Expand to fit" is been enabled.
    Thanks & Regards,
    Karthik MD

  • Running Time Machine for the first time, how that I make sure that some information I have in the external drive does not get erase in the prosess

    Running Time Machine for the first time, how that I make sure that some information I have in the external drive does not get erase in the prosess

    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Note: This is now your Library. It's not a Back Up, and you need another disk for backing up.
    Regards
    TD

  • [svn:fx-trunk] 11546: fix so the textLayout. swc does not get modified during the build process.

    Revision: 11546
    Author:   [email protected]
    Date:     2009-11-06 15:42:05 -0800 (Fri, 06 Nov 2009)
    Log Message:
    fix so the textLayout.swc does not get modified during the build process.
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/build.xml

  • Image is not getting printed on the page.

    Hi,
    I am using oracle apex 3.2 and Oracle 10g XE database. I am creating a email template based on the plsql and html content
    DECLARE
      l_header VARCHAR2(8000);
      l_content VARCHAR2(18000);
      l_footer VARCHAR2(8000);
    CURSOR contract IS
        SELECT DISTINCT contract_number, l.company_name
        FROM ib_support_contracts_mv c, customer_products p, customer_locations l
        WHERE c.serial_number = p.product_serial_number
        AND   p.location_id = l.location_id
        AND   c.contract_number = :P5_CONTRACT_NUMBER
        AND   ROWNUM <= 1
        AND   sub_line_status != 'TERMINATED' 
        AND   line_status != 'TERMINATED'
        AND   header_status != 'TERMINATED';
    --    AND   header_status = 'ACTIVE'
    --    AND   line_status = 'ACTIVE';
      CURSOR product (v_contract_number IN VARCHAR2) IS
        SELECT DISTINCT order_number, installed_at_name, ship_to_name, bill_to_name, item_description,
           serial_number, service_start_date, service_end_date, cust_po_number, service_description,
           ship_date
        FROM ib_support_contracts_mv v1
        WHERE contract_number = v_contract_number
        AND   NVL(order_number, 99999) =
              (SELECT max(NVL(order_number,99999)) FROM ib_support_contracts_mv v2
               WHERE  v1.serial_number = v2.serial_number
               AND    v1.contract_number = v2.contract_number
               AND    v2.line_status != 'TERMINATED')
        AND ROWNUM <= 100
        AND  sub_line_status != 'TERMINATED' 
        AND  line_status != 'TERMINATED' 
        AND  header_status != 'TERMINATED'
        ORDER BY item_description;
    --    AND   header_status = 'ACTIVE'
    --    AND   line_status = 'ACTIVE'
    --    AND   ship_date IS NOT NULL
    BEGIN
      l_header := '<table width="100%">
                     <tr>
                       <td align="left">
    *<img src="#WORKSPACE_IMAGES#merunetwork.jpg">*
                       </td>
                       <td align="right"><h2>Support Contract Certificate</h2>
                       </td>
                     </tr>
                     <tr>
                       <td colspan="2"><br/>
                         <p>Thank you for purchasing award winning product and services from Meru Networks.<p>
                         <p>Below are the details of your service order, confirming support order completion.</p>
                       </td>
                     </tr>
                   </table>' || utl_tcp.crlf ;
      FOR c IN contract LOOP
        l_content := '<div style="text-align: center;"><h2>CID: ' || c.contract_number || '</h2><h2>' || c.company_name || '</h2></div>' || utl_tcp.crlf ;
        l_content := l_content || '<table width="100%" cellpadding="3" cellspacing="0" border="0" class="tab0">' || utl_tcp.crlf ;
        l_content := l_content || '  <tr class="tab0">' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Products Covered</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Service Ordered</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Serial Numbers</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Begin Date</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">Expires</th>' || utl_tcp.crlf ;
        l_content := l_content || '    <th class="tab0">PO</th>' || utl_tcp.crlf ;
        l_content := l_content || '  </tr>' || utl_tcp.crlf ;
        FOR p IN product(c.contract_number) LOOP
          l_content := l_content || '  <tr>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.item_description || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.service_description || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.serial_number || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.service_start_date || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.service_end_date || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '    <td class="tab0">' || p.cust_po_number || '</td>' || utl_tcp.crlf ;
          l_content := l_content || '  </tr>' || utl_tcp.crlf ;
        END LOOP;
        l_content := l_content || '</table>';
      END LOOP;
      l_footer:= l_footer|| '<h3>Meru Assure Reference Links:</h3>' || utl_tcp.crlf ;
      l_footer:= l_footer|| '<a href="http://www.merunetworks.com" target="_new">http://www.merunetworks.com</a>' || utl_tcp.crlf ;
      l_footer:= l_footer|| '<p>If at any time you have questions regarding the activation of your service contract or any other questions please contact our customer group at Meru Networks.</p>' || utl_tcp.crlf ;
      l_footer := l_footer|| '<h3>How to reach Meru Customer Support group:</h3>' || utl_tcp.crlf ;
      l_footer := l_footer|| '<ul><li>24x7x365 online support portal <a href="http://support.merunetworks.com" target="new">http://support.merunetworks.com</a>.</li><li>Toll-free numbers:<br/>   <strong>In United States: </strong>1 888 637 8952<br/>   <strong>In United Kingdom: </strong>0800 085 7381<br/>   <strong>In France: </strong>080 554 0108<br/>   <strong>In Norway: </strong>800 30 354<br/>   <strong>In Sweden: </strong>020 160 5667<br/>   <strong>In Denmark: </strong>80 600 087<br/>   <strong>In Japan: </strong>0120 924853</li><li>Direct number:<br/>   Regions outside toll-free areas: 1 650 385 3114</li><li>Email address:<br/>   [email protected]</li></ul>' || utl_tcp.crlf ;
      l_footer := l_footer|| '<p>We look forward to working with you in the future and thank you for purchasing a MeruAssure support plan.</p><br/>Sincerely,<br/><br/>Trevis Schuh<br/>Vice President - Worldwide Support & Services' || utl_tcp.crlf ;
      l_footer:= l_footer|| '' || utl_tcp.crlf ;
      l_footer:= l_footer|| '';
      :P5_CONTENT := '<STYLE>.TableBorder {border-top: 4px solid #b3394e;border-right: 4px solid #b3394e;border-left: 4px solid #b3394e;border-bottom: 4px solid #b3394e;padding: 10px;}
    .formLabel {font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;font-size: 11px;font-weight: bold;color: #000000;}
    .GroupBox {border-top: 1px solid #BDC7D6;border-right: 1px solid #BDC7D6;border-bottom: 1px solid #BDC7D6;border-left: 1px solid #BDC7D6;}
    body { font: 12px/16px Verdana, "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; color: #555; margin: 0 auto; }
    table.tab0 { background: #eee; vertical-align: top; font: 0.9em sans-serif; border: solid 0px #b3394e; }
    th.tab0 { padding: 6px; margin:1px; color: #b3394e; font: 0.9em sans-serif; text-transform: uppercase; font-weight: bold; border-top: 4px solid #b3394e; border-bottom: 1px solid #b3394e; border-left: 0; border-right: 0; background-color: #fff; text-align: left;}
    td.tab0 { padding: 5px; vertical-align: top; border-bottom: 1px solid #b3394e; background-color: #fff; }
    tr.tab0 { }
    td.tab0s { padding: 5px; vertical-align: top; border-bottom: 1px solid #b3394e; background-color: #fff; white-space:nowrap; font-weight: bold;  }
    td.tab0 a { color: #08c; }
    td.tab0 a:link, a:visited, a:active { text-decoration: none; }
    td.tab0 a:hover { text-decoration: underline; }
    h1 { font-weight: bold; font-size: 24px; margin-top: 5px; margin-bottom: 8px; color: #b3394e; line-height: 26px; }
    h2 { font-weight: bold; font-size: 18px; margin-top: 5px; margin-bottom: 8px; color: #b3394e; line-height: 24px; }
    h3 { font-weight: bold; font-size: 14px; margin-top: 5px; margin-bottom: 8px; color: #b3394e; line-height: 20px; }
    h4 { font-weight: bold; font-size: 10px; line-height: 18px; color: #b3394e;}
    .smallcaps { color: #333; font: 0.8em sans-serif; text-transform: uppercase; }
    </STYLE>' || utl_tcp.crlf ||
           '<div>
              <table width="98%" cellpadding="5" cellspacing="5">
                <tr>
                  <td>' || utl_tcp.crlf ||
                    l_header || l_content || l_footer ||
           '      </td>
                </tr>
              </table>
            </div>' ||  utl_tcp.crlf;
    END;Problem am facing here is i am trying to dispaly a logo in the template which is uploaded in the workspace. Its not getting display please suggest me how to fix this issue.
    Thanks
    Sudhir

    This question has been answered here:
    Inconsistant translation of #WORKSPACE_IMAGES# by server
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Script 2nd page-data not getting printed

    Hi Folks,
    I have a script which is related to TDS Certificate.The problem is I am having all the data in the table that is used to print the data but I am not getting only the tabular column i.e contigious data printed for the next page.The rest all getting printed correctly.
    To be clear
    first page is having
    index,belnr,total amount,educess,sur charge etc.
    1/10100/22.00/33.00/44.00/77.00
    in the second page again it should print again
    index belnr total etc but it is not getting printed.
    blank
    But the final  table is having 2 belnrs data.Where I am going wrong?
    Thanks,
    K.Kiran.

    Hi,
    During test print, you cannot see the second page.
    The second page will be visible only when there is data flow from page 1 to page 2.
    Execute with actual data and check if it flows through to page 2.
    Also Please try this:
    After your first page, include this:
    CALL FUNCTION 'CONTROL_FORM'
    EXPORTING
    command = 'NEW-PAGE'.
    and then call the the write form with text element in second page,
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    element = 'PG2'
    window = 'INV'
    EXCEPTIONS
    element = 1
    function = 2
    type = 3
    unopened = 4
    unstarted = 5
    window = 6
    bad_pageformat_for_print = 7
    OTHERS = 8.
    Reward points if found helpful…..
    Cheers,
    Chandra Sekhar.

  • Barcode is not getting printed in the SmartForm

    Hi All,
    I am trying to print BARCODE in a SMARTFORM but it is not getting printed.
    I have created a barcode ZTest_Barcode from the transaction SE73. Then I have created a Character Format C1 with this barcode ZTest_Barcode.
    In the SmartForm I have applied this character format like this <C1>&WA_VBAK-VBELN&</C1>.
    But in the preview of this SmartForm barcode is not getting printed while this field is printing like <C1>220<C1>.
    I have also tried with some SAP barcodes like BC_CD39, C128A_01, etc. But the result is same.
    Please help me to resolve this issue.
    Regards,
    Avaneet

    hi avaneet,
    check this site for barcode.
    http://help.sap.com/saphelp_nw04/helpdata/en/66/1b45c136639542a83663072a74a21c/content.htm
    it may help you.
    thanks
    Sachin

  • Help please - have a Nano and a Shuffle and neither are working! The Nano wheel appears to have stopped working - I can't get it to do anything. I've done the reset,it worked the first time but not since. And the shuffle won't sync with my library!

    Hi,
    I have an iPod shuffle 4th generation and an iPod Nano 5th generation . The Nano wheel appears to have stopped working - I can't get it to play or anything. I've done the reset and it worked the first time, but now the only way I can get it to play anything is to shake it and go with the shuffle choices - I can't change volume, song, pause or turn it off.
    So, I decided to start using the Shuffle which I was given as a present last year. I've plugged it into my laptop (running windows 8 and newest version of iTunes). It appears in iTunes on the left hand side, but when I click to sync (whether I tick sync all or choose artists) it says synched but has no music. It seems to not be linked to the music library - when I tick synch all songs, next to the "sync music" it says 0 songs?
    Any help to fix either would be really appreciated - I'm without any music at the moment and I'm going away this weekend!
    Thanks

    Hi Bblairjones,
    If you are having issues with your Nano and Shuffle, you may want to try the Troubleshooting Assistants on the following page:
    Apple Support: iPod Troubleshooting Assistants
    http://www.apple.com/support/ipod/five_rs/
    Regards,
    - Brenden

  • Text element is not getting printed in the output

    Hi all,
    I'm trying to print address from table KNA1in address window through a text element.
    The corresponding code being :
    In Delivery Prg,
    Data : lv_kna1 type STANDARD TABLE OF kna1,
              lv_adr6 type STANDARD TABLE OF adr6.
    DATA : WA_ADR6 TYPE ADR6.
      SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBPA-KUNNR.
      SELECT SINGLE * FROM ADR6 INTO WA_ADR6 where ADDRNUMBER = kna1-adrnr.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'DELIVERY_ADDRESS'
       WINDOW                         = 'DELIVADR'
    and calling the same text element 'DELIVERY_ADDRESS' as follows in the Script:
    /E           DELIVERY_ADDRESS
    /:           IF &LV_KNA1-TELF1& <> &SPACE&
    IL           Tel.: &LV_KNA1-TELF1&
    /:           ENDIF
    /:           IF &LV_KNA1-TELFX& <> &SPACE&
    IL           Fax : &LV_KNA1-TELFX&
    /:           ENDIF
    /:           IF &LV_ADR6-SMTP_ADDR& <> &SPACE&
    IL           E-mail : &LV_ADR6-SMTP_ADDR&
    /:           ENDIF
    But,this text element is not printing in the output.
    Any pointer on this would be of great help.
    Regards,
    Vamsee Priya.

    yes, it is.
    I'm trying to get the e-mail address from adr6 table with the corresponding address number  from table kna1.
    so I created two tables as below:
      Data : lv_kna1 type STANDARD TABLE OF kna1,
             lv_adr6 type STANDARD TABLE OF adr6.
    DATA : WA_ADR6 TYPE ADR6.
      SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBPA-KUNNR.
      SELECT SINGLE * FROM ADR6 INTO WA_ADR6 where ADDRNUMBER = kna1-adrnr.
    now, I'm trying to fill e-mail adress from lv_adr6. but the problem is lv_adr6 is not getting filled.
    data is coming to work area wa_adr6.
    SAP is not allowing me to write the below statement:
    SELECT SINGLE * FROM ADR6 INTO LV_ADR6 where ADDRNUMBER = kna1-adrnr.
    Now, will any move-corresponding statement from work area to its table works?? Is that logically correct??

  • The ToC node is not getting selected although the help result pane displays the correct help page

    I have followed steps given below for a merged project system:-
    1.  I created 3 projects Module_1 and Module_2.
    2. Created the CHM output for the above 2 projects.
    3.  Created a Main project.
    4.  Merged the above 2 CHM in the project.
    5.  Created a new window and added Main.hhc in the TOC option under advance properties.
    6. Generated html output for entire project Main.chm.
    7. Decompile the ‘Main.chm’ and extracted the ToC file ‘Main.hhc’.
    8. For each module project, imported ‘Main.hhc’ as a Baggage File, created window definitions same as Main project and with reference to ‘Main.hhc’.
    9. Again generated html output for all the modules and copied both the CHM at the same place.
    10. Now regardless of my entry point I am able to see entire ToC.
    Issue: When I open Module_1.chm, the chm is displayed as follows, but Main book is highlighted instead of module 2 Book. As I have selected both the options, i.e. Auto-synchronize ToC and Always Show Selection option (when generating chm), Module 1 book should get selected.
    Is there a way to control the selection in the LHS pane?  I am working on a project which has 15 module chms and the chms are integrated with the application. When I press F1 on a module, the default topic is getting displayed and the respective module is not selected in the LHS pane.
    Best regards,
    /Vikas

    I have followed steps given below for a merged project system:-
    1.  I created 3 projects Module_1 and Module_2.
    2. Created the CHM output for the above 2 projects.
    3.  Created a Main project.
    4.  Merged the above 2 CHM in the project.
    5.  Created a new window and added Main.hhc in the TOC option under advance properties.
    6. Generated html output for entire project Main.chm.
    7. Decompile the ‘Main.chm’ and extracted the ToC file ‘Main.hhc’.
    8. For each module project, imported ‘Main.hhc’ as a Baggage File, created window definitions same as Main project and with reference to ‘Main.hhc’.
    9. Again generated html output for all the modules and copied both the CHM at the same place.
    10. Now regardless of my entry point I am able to see entire ToC.
    Issue: When I open Module_1.chm, the chm is displayed as follows, but Main book is highlighted instead of module 2 Book. As I have selected both the options, i.e. Auto-synchronize ToC and Always Show Selection option (when generating chm), Module 1 book should get selected.
    Is there a way to control the selection in the LHS pane?  I am working on a project which has 15 module chms and the chms are integrated with the application. When I press F1 on a module, the default topic is getting displayed and the respective module is not selected in the LHS pane.
    Best regards,
    /Vikas

  • Selection in the master table is not getting reflected in the child table

    <p> I have a 4 level master detail relationship.I have a bounded taskflow where I have a master in the first view.The child (The other two levels as a tree) in the second view.I move to second view when i click the command link(Each row has a command link) of the master table (present in the first view).</p>
    <p>At the very first time when i try to insert a row in the child it's successful .I am able to see the same in the second view (The corresponding child of the master row which i have clicked).The 2 view is not refreshed i have panel strech layout in the 2 view which i am refreshing(PPR) on inserting the row. The master table is not refreshed as it is in the 1 view.I am not manipulating the master table but it was being set to the first row the second time .Added to that the 2 view doesn't have parent table .
    </p>
    Thanks,
    Raj.

    Hi Frank,
    I am using jdev 11.1.1.6 and integrated wls.
    I have a single taskflow.I have a 4 level master detail.The vo's are connected through a view link . I have dropped the first level as a table . On selecting a row the corresponding children are displayed.The children are displayed as a tree. I have a tree context menu where i have inserted a row using popup . When the user clicks on the ok dialog i am commiting the data and refreshing the tree.
    Now the problem is when i first create the row it's working properly . After when i try to create another row this time the currency of the first level is reset to the first row.
    As suggested by you i have tried disabling the commit opertion . But the issue still occurs.
    Thanks,
    Raj
    Edited by: RajaSekharReddy.M on Feb 26, 2013 6:03 PM

  • Chnages in the Graph properties are not getting reflected in the Browser.

    Hi,
    I have made some changes in the Graph properties in web template,
    Eg. : 1. change in color of a series for a columnar type graph
             2.change in the Text properties of Graph Series..
    When I save the template and try to run in the Browser, these changes are not getting reflected.
    Can anybody help me in this aspect ?
    Thanks.
    Regards.
    Amol Bade

    Same here :´(
    Thanks In Advance
    Juan

  • Certain pdf pages do not get printed but print blank

    I am a mac user (OS X Yosemite v. 10.10.2) and have used acrobat xi pro 11.0.10.
    I notice once that some pages did not print from a pdf and after updating all drivers of the printer still I have the same problem.
    My printer is Canon ImageClass MF 8580 CDW.
    For example, I do see on the screen pages 1 through 80 of a pdf but when print only certain pages get printed and some just get printed blank.
    The result is same when I print all pages or current page from the option.
    Anyone has same experience?
    I just tried to "save as" postscript and it is saved exactly it were to print out via a printer - print certain pages and certain pages printed blank.
    This is happening even though I see all pages properly scanned in the pdf and I can see every single page in the pdf.
    Not knowing how pdf and actual printing works, it is hard to figure out what is wrong with this scanned pdf to print out all pages.
    Message was edited by: Wooseok Chang

    I resolved this problem -
    The problem was - a pdf file scanned from a scanner fails to print pages having only black; but print pages having at least two color combination (i.e. black + blue)
    What I did was -
    Click "advanced" and checked when "Print As Image" was unchecked.
    Then click OK and Print.
    Then it printed all the pages that I had trouble with, apparently having all black.
    Sara Foresberg, Staff, was helping me in troubleshooting and may be able to explain why "print as image" was the key to this situation.
    It is so simple solution but it took me a couple of hours... Hope this would be helpful for someone similarly situated like me.

  • Values not getting printed in the Output

    Hi all,
        Iam facing strange problem.
    In the debug mode iam seeing the values for all variables ( Variable windows) but after printing no value is getting printed. MAIN window is there but no element is being called from the MAIN window.
    Can anyone help me in this regard.
    Rehards,
    Indrajit

    hi Indrajit ,
    check that in print program you have created the element same as using in main program , also declare temporary variables inside loop at table so that **** sign doesnt gets printed ..
    Hope this will help you

  • I received a "Ghost e-mail" (duplicate of another e-mail. I could delete the original, but can not get rid of the "Ghost" e-mail from my inbox?

    I received a ghost, or duplicate e-mail on my Mac and am unable to delete the duplicate from my inbox.  There is no message when you open it, The message came from Gacebook.  What can I do to get this deleted?

    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox
    Comcast online email is considered '''web mail''' so you need to scroll down that support page to the web mail section.

Maybe you are looking for