Empty Pages

Hi there,
I try to figure out how I can automatically insert a empty page. I have a double-sided layout so I need an empty page, if the text ends at a right side. But all I got so far is, that FrameMaker inserts a left page to complete the double-sided layout. But the template of my left side has a header and a footer, but I need a complete empty page.
Any ideas how this works?
Thanks!
Greetings.

The only way I have managed something like this is as follows:
Make your default master pages “empty”, i.e. no headers/footers.
Create new master pages with headers and footers called, e.g., LeftBody and RightBody.
Make a master page mapping table that linking LeftBody/RightBody to one or more paragraph formats that will appear on normal “text” pages (Body, for example).
Use Apply Master Pages to apply LeftBody/RightBody to all text pages, leaving the blank pages blank.
This works, but one oddity has persuaded me that the game isn’t worth the candle: I find that empty pages based on LeftBody/RightBody are not deleted on save as one would expect. So if, for instance, editing or reformatting a twenty-page document cuts it down to 18 pages, pages 19 and 20 will be empty apart from the header and footer and will need to be deleted manually. So you win in one area but lose in another.
Would be interested to know if you can make it work.

Similar Messages

  • APEX listener - empty page ??

    Hi,
    I have installed tomcat / APEX listener on Oracle Enterprise Linux 5 (with 11gR2 database)
    The configuration seems to be done ... but the page: http://oel52server:8080/apex/apex give me an empty page ?
    do you know what's wrong ?
    Cyryl

    Thanks for the answers.
    I have a similar problem-- but I believe it may not be because of JDK ver. (becaue I already use ver. 6.0).
    Although I am able to see the Apex login page. http://localhost:8888/apex/, but no images are displayed. Moreover it asks for Workspace, Username, Password which I am unaware of (it did not ask for any such information while installing apex). It looks like none of the buttons/links are active. Did I do anything wrong while installing apex?
    This is how I installed Apex.
    1. Downloaded and installed tomcat application server and Apex Listener as per the instructions given in the link:
    http://www.oracle.com/technology/products/database/application_express/html/apex_listener_install_web.html
    (section B. Installing with Apache Tomcat in the installation )
    2. The images are copied to the following location (as given in the instruction):
    C:\apache-tomcat-6.0.24\webapps\ROOT\images
    3. Started both oracle db server and tomcat app. server
    4. Opened the page http://localhost:8888/apex/Config
    at this point I get the login page with no images and inactive links/buttons.
    Appreciate any help.
    Thank you,
    Pravy

  • How to print a empty page in a Layout

    Hi experts,
    i have a small requirement in forms. In my sapscript form i have 2 pages. its displaying properly the invoice layout.
    But the new requirement is the user want to print a empty page as 1st page and remaining as per now current setting.
    How to print a empty first page in a layout using sapscript?
    Anyone help this issue?
    Mohaha

    Hi Mohana,
                    Create one new page and one window of almost page size with no contents.  Move that window to this page.  Keep this page as first page and give earlier first page as next page to this newly created page.
                    Hope this should solve the problem.
    Regards
    Sravan

  • Supress empty page which is due to dynamic page (smartforms)

    hi all,
    i' ve got the problem that i get an empty page at the end of my printout.
    the forms is defined as following:
    first_page - following page: next_page
    next_page - following page: next_page
    and in the main window i have a dynamic page (via command node)
    confirmation_page - following page: manual_guide_page
    manual_guide_page - following page: first_page
    the problem is the following page of my last dynamic page, but it is not possible to leave the following page in that case empty and it is necessary to use a page with a main window.
    has anyone an idea how i can solve this problem??
    it it possible to stop printing a page that is empty in smartforms, as i can't set any conditions for the page itself.
    thanks!

    you can put condition like in your program lines
    DESCRIBE TABLE gt_lips LINES gv_lines.
    gv_tabix = sy-tabix + gv_tabix.
    in COMMAND node  put condition like GV_TABIX LE GV_LINES
    you wont get empty pages...

  • CRM 2007 - WebClient UI: Empty page is coming

    Hi,
    For Webclient UI, i did the configuration as mentioned in the document "C04_BB_ConfigGuide_EN_DE[1].doc".
    When i run the application, i am getting an empty page.
    In fact if i use technical profile "DEFAULT_IC" for my business role i am getting IC Webclient application. If i use the "DEFAULT" technical profile i am getting empty page.
    What can be the problem?
    -Chandra.

    Hi,
    try the followining:-
    1. Changing this parameters in t-code RZ11.
    login/accept_sso2_ticket must be set to 1
    login/create_sso2_ticket must be set to 2
    Default values are 0 initially for both of them
    2.
    Use transaction SICF to activate the following SICF services(via note 1115493):
    /default_host/sap/public/bc/icons
    /default_host/sap/public/bc/ur
    /default_host/sap/public/bsp/sap/system
    /default_host/sap/bc/bsp/sap/crm_ui_frame
    /default_host/sap/bc/bsp/sap/crm_bsp_frame
    /default_host/sap/bc/bsp/sap/gsbirp
    /default_host/sap/bc/bsp/sap/thtmlb_scripts
    /default_host/sap/bc/bsp/sap/thtmlb_styles
    /default_host/sap/bc/bsp/sap/crm_thtmlb_util
    /default_host/sap/bc/bsp/sap/bspwd_basics
    /default_host/sap/bc/bsp/sap/bsp_wd_base
    /default_host/sap/bc/bsp/sap/crmcmp_hdr
    /default_host/sap/bc/bsp/sap/crmcmp_hdr_std
    /default_host/sap/bc/bsp/sap/uicmp_ltx
    all services under /default_host/sap/crm
    Regards....

  • How to delete empty pages in in-design document?

    Hi All,
           How to delete empty page which may contains text frame with no contents, or may be no text frame...
    Plz provide me the script...
    Thanks in advance,
    Vel....

    Indesign CS5.
    My script is,
    doc=app.activeDocument;
    pageObj=doc.pages.item(0);
    txtObj=pageObj.textFrames.item(0);
    var temp=doc.pages.length;
    for(var i=0;i<temp;i++)
        if(doc.pages[i].textFrames.item(0)!=null)
                if(doc.pages[i].textFrames[0].contents!=null) // here, i used "contents" instead of "lines". but also not working well...
                    alert(doc.pages[i].textFrames[0].contents);
                    alert("True");
                else
                    doc.pages[i].remove();
                    i=i-1;
                    temp--;
        else
          alert("False");
          doc.pages[i].remove();
          i=i-1;
          temp--;
    I've a sample document which contains a empty page without a text frame and another empty page with text frame with no contents on it... but my script remove only the empty page and not the empty page with txt frame...
    pLZ HELP JONGWARE...

  • When I click a link only an empty page opens, now the link does not open anything at all

    when I click a link only an empty page opens, now the link does not open anything at all

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to get an empty page to fill content?

    every time we open a new template page, we get this pic, all was filled with words, how to get a n empty page or delete the words auto?

    Thank you all,
    but I intent to have a layout like that without words, so that I can put down the content.

  • Can't delete an empty page

    Hi,
    I have an empty page between my title page and the first page of my script.  I've tried the method suggesting in another post but it doesn't work.  Anyone got any ideas???
    Thanks
    Anna

    Hi,
    Could you please try the following-
    1) Press Ctrl+A with the cursor on blank page and see if any selection appears on it.
    2) If yes, modify your selection to include that page only and press delete.
    If this doesn't work, we would appreciate if you could share your script  at 'rjindal at adobe dot com' , so that we can look into the issue ASAP.
    Thanks
    Rashi - Story team.

  • Crystal generates empty pages for a datasource with a lot of data

    Hi, I hope someone have some hints to solve my problem with generating large reports.
    I have SAP Crystal Reports runtime engine for .NET Framework 4 32-bit installed on my Microsoft Windows 2008 R2 Enterprise Server.
    Since I update Crystal Reports to 13.0.2.469 large Reports have only empty pages. If I print those Reports the data are visible, the report is displayed correct.
    I solved the problem temporarily by setting SeparatePages to true for the CrystalReportViewer Control, but for the future I need the complete report displayed at once.
    I would be very pleased about your help / hints.
    Regards, Sabine

    Thank you for your answer.
    My report has only one cross table in it. I can generate it for a dataset with 26 rows. If there are 27 rows the report is empty.
    If I use a diffrent report without a crosstab only with repeatable sections and less data, I can make a select for 150 rows. That shows me 5 - 7 pages.
    It also makes a difference how the page settings are. If I configurate a smaller border for the top and bottom border I need to change my select to select less record rows and if I configurate a greater border there can be more record rows.
    Here an example how I can reproduce my problem:
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using CrystalDecisions.CrystalReports.Engine;
    using System.Data;
    using System.Net;
    namespace EASWebOffice.Pages
        public partial class ReportTest : System.Web.UI.Page
            private HttpWebRequest request;
            protected void Page_Load(object sender, EventArgs e)
                if (!Page.IsPostBack)
                    request = (HttpWebRequest)WebRequest.Create(@"http://localhost:54332/Pages/ReportTest.aspx");
                    AddOnPreRenderCompleteAsync((BeginEventHandler)BeginAsyncOperation, (EndEventHandler)EndAsyncOperation);
                    if (Session["Report"] != null)
                        this.CrystalReportViewer1.ReportSource = Session["Report"];
            IAsyncResult BeginAsyncOperation(object sender, EventArgs e, AsyncCallback cb, object state)
                if (Session["InitialiseReport"] == null)
                    ProcessingReportData();
                return request.BeginGetResponse(cb, state);
            void EndAsyncOperation(IAsyncResult ar)
                if (Session["InitialiseReport"] == null)
                    Response.AddHeader("Refresh", "1");
                    Session["InitialiseReport"] = "performed";
            private void ProcessingReportData()
                CrystalReport2 report = new CrystalReport2();
                // 26 rows works, 27 shows an empty report
                string sql = "select top 26 Auftraggeber as Customer, Kostenträgername as Project, Beschreibung as Description, Stundenanzahl as Hours, UMusername as Ressource from V_MonthEvaluation";
                DataTable data = WebSQLTools.ExecuteToDataTable(sql, Global.Connection, Global.Logger, "");
                DataSet dataSet = new DataSet("DataSet1");
                data.TableName = "DataTable1";
                dataSet.Tables.Add(data);
                report.SetDataSource(dataSet);
                Session["Report"] = report;
    Do someone have a similar problem? Is there a solution?
    Edited by: wohlsobena on Jan 16, 2012 3:34 PM

  • ITunes stores comes up with empty page

    Ok Guys,
    I upgraded to iTunes 10.4.0.80 and things went south with iTunes store.  It won't show anything when i click on the iTunes stores.It appears that it is trying to connect to the stores, but comes back with the empty page and showing nothing but a big iTunes apple logo. I also noticed that, it is taking **** of a time to sync to iPhone too, i meant to say it got stuck at backing up operation, I have to unplug and restart the itunes for it to work.  This is all see when i click on Itunes store.  Please let me know if you guys find a solution to correct this problem.
    Thanks
    -Balaji

    There is a solution. First off look into any antivirus that
    At he running and also if you all uninstalled iTunes then did you
    All also delete the folders that exist in your respective
    Programs files folders? That is a required step and really cannot
    Stress enough how much antivirus effects iTunes look into the
    Things it blocks the sheer fact is the problem is the iTunes
    Store cannot contact the server.
    Take a first or second look at these articles and follow all the
    Listed steps and before you do them disable your five
    Protection programs.
    Here are helpful articles:
    http://support.apple.com/kb/HT1527
    http://support.apple.com/kb/HT1923
    You must follow step 2 exactly for the reinstall to work properly.

  • Merge pdf - Empty page

    Guys,
    I am trying to merge some pdf files into one file. This is my code
    - (BOOL) concateFiles:(NSArray *) filePaths {
        PDFDocument * outputDocument = [[PDFDocument alloc] init];
        NSUInteger pageIndex = 0;
        for (id file in filePaths) {
            PDFDocument * inputDocument = [[PDFDocument alloc] initWithURL: [NSURL fileURLWithPath:file]];
            for (NSUInteger page = 0; page < [inputDocument pageCount]; page ++ ) {
                [outputDocument insertPage: [inputDocument pageAtIndex:page] atIndex:pageIndex++ ];
        //BOOL done = [outputDocument writeToFile: @"/Users/bubuzzz/test.pdf"]; // does not work
        NSError *error = nil;
        NSString * filePath=@"/Users/bubuzzz/test.pdf";
        NSData * data = [outputDocument dataRepresentation];
        BOOL done = [data writeToFile:filePath options:NSDataWritingAtomic error:&error]; // does not work either
        NSLog(@"Write returned error: %@", [error localizedDescription]);
        return done;
    There is no error during run time. However, the created file only has empty page, though the number of page is correct. The only thing I find out is using CGPDFContextClose to close the context to make it work fine, since it is stated in the document
    After closing the context, all pending data is written to the context destination, and the PDF file is completed. No additional data can be written to the destination context after the PDF document is closed.
    However, I have no idea how to integrate the CGPDFContextClose into my code. Any suggestion, please?

    Just change the above code to do a page by page vopy like yours and it works
    #import <Foundation/Foundation.h>
    #import <Quartz/Quartz.h>
    int main(int argc, const char * argv[])
        @autoreleasepool {
            // insert code here...
            PDFDocument * inputDocument;
            PDFDocument * outputDocument = [[PDFDocument alloc] init];
            NSUInteger pageIndex = 0;
            NSURL * pdfFile = [NSURL  fileURLWithPath:@"/Users/frank/Desktop/Hold/TX-SR304_En_0124.pdf"];
            // open old PDF
            if ((inputDocument = [[PDFDocument alloc] initWithURL: pdfFile]) == NULL) {
                NSLog(@"error opening");
                return 0;
            // copy old PDF to new PDF
            //outputDocument = inputDocument;
            for (NSUInteger page = 0; page < [inputDocument pageCount]; page ++ ) {
                [outputDocument insertPage: [inputDocument pageAtIndex:page] atIndex:pageIndex++ ];
            //write new PDF
            [outputDocument writeToFile:@"/Users/frank/Desktop/Hold/testCard.PDF"];
        return 0;
    When this is done testCard.PDF has the contents of the input file.

  • Netstorage wrong hostname & virtual office empty page

    Hi,
    I updates our oes box (linux) with the latest patches (not sp's) and
    ofcourse: Nothing works anymore.
    When I login into virtual office, click on the netstorage link, I get the
    following message :
    NetStorage getData:IOException
    URL = https://virtualoffice.<mydomain>:443/oneNet/xtier-login
    HTTPS hostname wrong: should be <virtualoffice.<mydomain>
    So I thought, because of a newer netstorage version, I only need to change
    the link and get rid of the ':443' section.
    I login with the admin account, click under administration on the service
    link and a beautiful empty screen appears.
    Every link under the administration gives an empty page.
    So anyone experienced this before?
    Can I change the link in a text file or do I really need to change it by use
    of the VO administrators links?
    Anyone any suggestions?
    regards,
    Peter

    Peter,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Getserver cookie - returns empty page

    Hi,
    I am using MVC,
    I have firstpage - a controller for that and a model class.
    I have second page - a controller for that and the model is the same as the first one.
    I am using a single model class but multiple controllers and multiple views. I am trying to use server cookies to set and get attributes between the pages.
    First Page - I have 2 attributes - on Do_init - I instantiate Model. Do_request - loads the firstpage. Do_handle-data - once the data is entered in firstpage, gets it from form fields and loads it into cookie.
    Do_handle_event - gets the values from the cookie and processes it and makes a table to be passed to the seconf page. I loaded this table in the cookie and - call second.do
    Second page - in controller  - DOInit - i have again instantiated Model - in Dorequest - I try to read from the cookie for the table data...But I am getting an empty page. I debugged it and in the Do request - where I call the get_server_cookie - nothing happens, just returns empty page...
    Does anyone know why?? can I not access the cookie by name in more than once controllers??
    Is this a right way of navigating between pages?? I want all the objects in the pages accessible across all the pages...should be able to read and write as per events...please suggest...
    Thanks
    Thilothama

    Hi,
         Put that cookie in the navigation->set_parameter and paas it to the next page in the page attributes as an 'AUTO'.
              Hope this may help you.
    Jyoti

  • Block Corruption in empty pages in Oracle 11g

    I am using Oracle 11.1.0.7.1 on HP UNIX 11i.
    On several occasions, I have been seen that block corruptions are reported by rman. I have never seen this problem in previous release of databases; but I have seen it more than once in Oracle 11g.
    However, when I run dbv command; I do not see any corruption in data and index blocks; so my conclusion is block corruption is in empty pages.
    Anyone has ideas why block corruption occurs in Oracle 11g. Has Oracle’s algorithm for checking block corruption have changed in 11g; I.e.; these corruptions existed in older Oracle releases but not reported by rman,
    Another strange thing I noticed:
    1.     When doing export backup, export backup reports about corrupted blocks.
    2.     When I do expdp no errors are reported.
    So question is why is exp command checking empty blocks?
    Any insights in above will be appreciated.

    Can some one explain following ooutput from dbv; what is difference in
    total pages failing and corrupt pages. I see
    total pages marked corrupt as 1345; yet I do not see any data or index
    pages marked corrupt; and there is only 1 empty page. So where are
    those 1345 corrupt pages.
    DBVERIFY - Verification complete
    Total Pages Examined : 371200
    Total Pages Processed (Data) : 328622
    Total Pages Failing (Data) : 0
    Total Pages Processed (Index): 38
    Total Pages Failing (Index): 0
    Total Pages Processed (Other): 41194
    Total Pages Processed (Seg) : 0
    Total Pages Failing (Seg) : 0
    Total Pages Empty : 1
    Total Pages Marked Corrupt : 1345
    Total Pages Influx : 0
    Total Pages Encrypted : 0
    Highest block SCN : 3430163491 (2476.3430163491)
    DBVERIFY: Release 11.1.0.7.0 - Production on Sat Aug 14 00:25:24 2010

Maybe you are looking for