New page trigger always to second page

Hi All,
I have 2 page in my smartforms:
Page1: I have to print customer information
Page2: I dont have to print cust. information but print data if it overflow the first page.
But my issue is if I trigger a new-page if customer changes, Smartforms always trigger the last page but not get into the first page (I use Command node with checked in go to new page set to Page1).
Does anyone know what happen to my form?
Thank you so much,
Thien

I suggest in your case, you design only one page in your smarform whioch would have 2 windows.1 window would ahve teh customer details which would eb displayed if the logic put in the "Conditions" tab is sussesful.(Say u write Trigger it on only 1st page).
And in the 2nd window which should be your main window, you need to ahve the details which would be overflowing.
And teh first page would eb callingitself.
Try it out and get back in case of any questions!
Cheers,
Varna

Similar Messages

  • Pages can't create kind of document  first page on vertical and second page on horizon

    help me i won't create kind of document are  first page on vertical and second page on horizon.

    pages on iOS dosnt support making new documents with landscape view. I think this would also make it so you could not combine the two orientations in a single document.
    I was able to get a landscape document made by making it on the desktop, emailing it to myself, then saving it in pages on my ipad. Not sure if that would work for a combination document.
    Jason

  • "Ghost" page numbers on every second page - how to remove?

    Hi,
    I'm setting a short book with Pages and after importing from Word, I'm seeing duplicate, partially hidden additional page numbers on every second page. I'd like to remove them entirely, keeping Pages' page numbering. Removing and inserting page numbers doesn't help and the second set of numbers can't be selected in any way (clicking, dragging don't work). One solution would be to re-import from word, deselecting page numbers beforehand, but I'd rather like avoid this step as I made many changes in Pages.
    Here's a screenshot showing the duplicate page numbers: http://dl.dropbox.com/u/3304376/pages_bug.png
    Does anybody have an idea how to remove them?

    Hello,
    Sometimes in the process of importing from Word, page numbers are improperly converted to Master Objects or Background Objects. Go to Format > Advanced > Make Master Objects Selectable. Then, with the cursor in the Margin of the document, press the Command Key (Cursor changes to an Arrow) and drag the cursor diagonally across the page number to select it. Then press the Delete key and the number should be gone. You need to check carefully to make sure that you have eliminated all the instances. There may be one per Section.
    Jerry

  • Page Numbers Starting on Second Page as Page Number 1

    I'm writing essays for my AP World History class and I need a cover page that doesn't have a page number as the first page of the document. Then my essays will go in order from the second page, but the page numbers need to start as 1. I have already clicked "First page is different" in the inspector under Section, but it starts the page numbering at 2 instead of the needed one. Any ideas on how to do this?
    Thanks

    Have you tried setting the starting page number to zero? Then the next page should be #1.
    Or you can add a section break & start the numbering of the new section at 1.

  • Page numbering starting on second page...

    I can't for the life of me figure out what I'm doing wrong here. All I want to do is start my numbering from 1 on the second page, leaving the first page (title page) without a page number. I know this can be done because it is formatted this way on the screenplay template, but after searching the manual, online help, and this forum and I cannot find anything that will make this work. I've also tried "view invisible" to see how the template is formatted but I cannot get it to work on a new document. Any help would be greatly appreciated!
    Thanks!
    iBook   Mac OS X (10.4.4)  

    Jynx,
    Try this:
    1. Start with a blank doc and turn on Show Invisibles.
    2. Click on Insert > Section Break
    3. In the Inspector, click on the Layout Inspector (2nd icon from left)
    4. Put your cursor in the second section of the doc
    5. In the Layout Inspector, click on Section tab
    6. Make sure First Page is Different is checked, and Use Previous Headers & Footers is UNchecked
    7. Use the option to begin your numbering where you want it to start
    This work for you?
    -Dennis

  • Paging - Rows in first page also showing in second page: listitemcollectionposition

    Hi,
    I am trying to use the listitemcollectionposition to achieve paging. The pagination is shown, but some of the records in first page are getting displayed in second page as well.
    I have totally 13 records in the list, and paging is applied for 10 items to show. I have set the rowcount to 10.
    private void FillData(string pagingInfo)
    int currentPage = Convert.ToInt32(ViewState["CurrentPage"]);
    uint rowCount = 10; // Default of 10 items per page
    string columnValue = string.Empty;
    string nextPageString = "Paged=TRUE&p_ID={0}&p_";
    string PreviousPageString = "Paged=TRUE&PagedPrev=TRUE&p_ID={0}&p_";
    SPListItemCollection collection;
    collection = GetTestItems(pagingInfo, rowCount);
    public SPListItemCollection GetTestItems(string pagingInfo, uint rowLimit)
    using (SPSite oSite = new SPSite(Sitename))
    using (SPWeb oWeb = oSite.OpenWeb())
    SPList lstPages = oWeb.Lists["Pages"];
    SPQuery sQuery = new SPQuery();
    SPListItemCollection collection;
    sQuery.RowLimit = rowLimit;
    sQuery.Query = "<Where>" +
    "<And>" +
    "<And>" +
    "<Contains><FieldRef Name='PublishingPageLayout'/><Value Type='URL'>TC_NtestPageLayout.aspx</Value></Contains>" +
    "<Eq><FieldRef Name='_ModerationStatus'/><Value Type='ModStat'>0</Value></Eq>" +
    "</And>" +
    "<Eq><FieldRef Name='_Level'/><Value Type='Integer'>1</Value></Eq>" +
    "</And>" +
    "</Where><OrderBy><FieldRef Name='TestLayoutDate' Ascending='FALSE' /></OrderBy>";
    sQuery.ViewFields = string.Concat(
    "<FieldRef Name='PublishingPageLayout' />",
    "<FieldRef Name='Title' />",
    "<FieldRef Name='EncodedAbsUrl' />",
    "<FieldRef Name='TestLayoutDate' />");
    sQuery.ViewFieldsOnly = true;
    if (!string.IsNullOrEmpty(pagingInfo))
    SPListItemCollectionPosition position = new SPListItemCollectionPosition(pagingInfo);
    sQuery.ListItemCollectionPosition = position;
    collection = lstPages.GetItems(sQuery);
    return collection;
    How to get the Paging properly?
    Thanks

    Hi,
    According to your post, my understanding is that you want to display list data using a
    SPGridView with Paging in a visual web part .
    The following code snippet for your reference:
    VisualWebPart1.ascx:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register TagPrefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Register TagPrefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="VisualWebPart1.ascx.cs" Inherits="VisualWebPartProject3.VisualWebPart1.VisualWebPart1" %>
    <SharePoint:SPGridView ID="sgvPagersample" runat="server" AutoGenerateColumns="false" DataSourceID="objSample" AllowPaging="True" PageSize="3">
    <Columns>
    <asp:BoundField HeaderText="Title" DataField="Title" />
    <asp:BoundField HeaderText="Test1" DataField="Test1" />
    <asp:BoundField HeaderText="Test2" DataField="Test2" />
    </Columns>
    </SharePoint:SPGridView>
    <asp:ObjectDataSource ID="objSample" runat="server" SelectMethod="BindGridView"></asp:ObjectDataSource>
    <center>
    <SharePoint:SPGridViewPager id="sgvPager" runat="Server" GridViewId="sgvPagersample"></SharePoint:SPGridViewPager>
    </center>
    VisualWebPart1.ascx.cs:
    using System;
    using System.ComponentModel;
    using System.Web.UI.WebControls.WebParts;
    using System.Data;
    using Microsoft.SharePoint;
    namespace VisualWebPartProject3.VisualWebPart1
    [ToolboxItemAttribute(false)]
    public partial class VisualWebPart1 : WebPart
    // Uncomment the following SecurityPermission attribute only when doing Performance Profiling using
    // the Instrumentation method, and then remove the SecurityPermission attribute when the code is ready
    // for production. Because the SecurityPermission attribute bypasses the security check for callers of
    // your constructor, it's not recommended for production purposes.
    // [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode = true)]
    public VisualWebPart1()
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    InitializeControl();
    protected void Page_Load(object sender, EventArgs e)
    objSample.TypeName = this.GetType().AssemblyQualifiedName;
    public DataTable BindGridView()
    SPWeb currentWeb = SPContext.Current.Web;
    SPList lstEmployee = currentWeb.Lists["CustomList4"];
    SPQuery sQuery = new SPQuery();
    sQuery.Query = "<OrderBy><FieldRef Name='ID' Ascending='False' /></OrderBy>";
    SPListItemCollection myColl = lstEmployee.GetItems(sQuery);
    return myColl.GetDataTable();
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Dennis Guo
    TechNet Community Support

  • On iCloud pages how can you put a header on only the first page and not the second page?

    I'm trying the do a visual report and every time I put a header on the first page it goes to the next page and if I try to delete it on the second page it deletes on the first page too.

    bump

  • How to Display 10 columns in first page,next columns in second page in smartforms in sap.

    In internal table having 30 columns of data.
    i have to display like
    first 10 columns in first page with page no :1
    second 10 columns in second page with page no :2
    third 10 columns in second page with page no :3
    how to develop this.
    please how develop this in smartforms .
    please help .

    Hi,
    You dont have to divide the data.
    You must be using TABLE node in your smartform to display the table.
    Copy the node 2 times more so that the total table nodes become 3.
    Now, change the headings in each table according to the column you want to display.
    Change the fields of the workarea in the ITEM lines accordingly.
    Add a COMMAND node after each table and set it to go to next page.
    E.G :
    Suppose I have a table with 6 columns and I need to display 2 columns in a table then page break.
    Work area name is WA.
    Then first table will have headings : FIELD1 FIELD2
    Items will have field     :     WA-FIELD1 WA_FIELD2
    COMMAND NODE : Go to Next Page
    Second table will have heading : FIELD3 FIELD4
    Items will have field     :     WA-FIELD3 WA_FIELD4
    COMMAND NODE : Go to Next Page
    Third table will have heading : FIELD5 FIELD6
    Items will have field     :     WA-FIELD5 WA_FIELD6
    So, same table with same work area will be used 3 times, displaying different set of columns in each TABLE node.
    Regards,
    Ashish

  • Printer model hp laser jet p3005dn always prints second page in landscape format.

    Printer prints even page in landscape format only.  Even if in program (say msword) the page is in portrait format.

    Hi,
    The instructions (from your link) say you have to connect USB, how do you connect it now ? HP does not supply driver but Windows 8 & 8.1 MAY have generic/basic driver for it. The link also says you have to use Windows update. Amazing to see a 15-20years old printer is  still up and running, only the Operating system kills it.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • First page black is ok - second page is bad

    Hi,
    I already use my Officejet 7310 a few years, and it works every good. Know there's a printproblem.
    I use the original cartdridge and it's a new one, but the first page is mostly good, but the next pages get verry bad. I can't read the text anymore and the inkt disappears?
    The next new print is not bad.
    Can someone help me?
    Thanks a lot
    Carla

    Hello,
    Sounds like a bug. If you have a small test case, could you provide
    that to our outstanding support group (http://support.bea.com or
    [email protected]), it would certainly help tracking this down.
    Thanks,
    Bruce
    venkata wrote:
    >
    I am processing an input xml file (say input.xml) via (report.xsl) to generate
    a report.
    report.xsl in turn loads another *xml file (schema.xml) through document() function
    so as to process the input.xml. <schema.xml> contains some look-up information
    dictating how <input.xml> need to be processed.
    Here is how I am referencing the "schema.xml" in the "report.xsl".
    <xsl:variable name="schemaFile" select="document('schema.xml')"/>
    <xsl:variable name="schemaRoot" select="$schemaFile/Schema"/>
    <xsl:variable name="schemaList" select="$schemaRoot/SchemaFactors"/>
    When I run the report first time (my appserver is weblogic 7.0), everything is
    working fine. I see the results I wanted.
    However, when I run the report for the second time during the same session, I
    am getting "schemaList" as empty.
    The values of "schemaFIle" and "schemaRoot" appear to be correctly loaded in both
    the cases. The problem is with "schemaList" variable which is coming out empty
    during the second iteration.
    can any of you please throw some pointers on why this is happening and how to
    resolve this?

  • RE: AutoAct Config sheet. Unable to read greyfont on white in small font. Hit print button , no response. Print from 'File, st page unreadable, as above, second page ,black backgrund w.grey copy, unreadable. 3rd manhours shot, no answers.

    Basic entry of email addresses w/ passwords failed. Password errors?. Went to Auto Acct Cong. IE isn't great, but it works. Ron R. 0417/0901

  • Map with 500 pdfs. How to make a new file with only the first pages, new file with second pages etc.

    Hi,
    A client confronted me with the next question:
    I have a map with 500 pdf's in it.
    Is it possible to make a new file with only the first page of each pdf?
    After that to make a new file with only the second page of each pdf?
    And after that the third?
    Etc.
    Is that possible with an action?
    Or are there scripts for?
    I couldn't find them.
    I use an iMac with Acrobat XI.
    Any help is very welcome.
    Thanks in advance.
    Bornholm

    You can extract each page from each pdf as a seperate page.     Once this is done you can select the pages tocombine.
    You would have to write custom a custom JavaScript and programatically code the names to combine if the extracted file pages habvestandars naming that could  be programed. There maybe some security  coding you will have to do because of Adobe restrictions but this all documented in the Acrobat JavaScript Reference.

  • Report Server 10g - unexpected font change on second page of the report

    Hi all,
    I'm having a problem with Oracle Report server 10.1.2.3.0.
    It's sometimes using an unusual font (It think it looks like a Greek one).
    One example would be when a text overflow from page one to the second page it will change from Times New Roman to a "Greek" font and switches from bold to normal font it still happens in the same "Text" type item just on a new page. However when I update the text in the DB to a longer one so it flows through the whole second page to the 3rd page then it's using the correct font again.
    When I open the generated PDF file in a text editor I see an unusual value in one of the font settings "/BaseFont /#53#79#6D#62#6F#6C" when I edit it manually to the value taken from another occurrence of the "BaseFont" in the same file it helps and changes the font to the correct one.
    When I export the report to the PDF from report builder it's always using the correct font.
    The encoded font "/#53#79#6D#62#6F#6C" translates to: "Symbol"
    select CHR(TO_NUMBER('53','xx'))||CHR(TO_NUMBER('79','xx'))||CHR(TO_NUMBER('6D','xx'))||CHR(TO_NUMBER('62','xx'))||CHR(TO_NUMBER('6F','xx'))||CHR(TO_NUMBER('6C','xx')) from dual;
    The correct font is as expected "Times-Roman"
    I noticed that this happens only when HTML code is allowed in the Text/field. When I generate HTML version of the report I see after the page break and new table on the new page the following tag <font face="symbol">.  When I set Web Setting->"Contains HTML Tags" set to NO then font stays the same even after the page break.
    Did anyone experienced something similar?
    Thank you,
    Palo

    We have had this a few times before and there are 2 ways that most likley will fix this.
    If on mac close all adobe apps, do a find for all files with the .lst in their file name. Delete all you .lst files, they are font database files that go corrupt and will regenerate themselves when needed and usually a working copy.
    Close any multiple master fonts you have open in fontbook, and other utility such as Suitcase. Multiple master fonts will have a filename like "Kronos mm", and in the adobe illustrator type >> font menu i believe they have a different icon (possibly a mm) than the others {a(type 1), tt(true type), O (opentype)}
    Your problem is likely the 1st option, as the mm problem usually happens while editing the file, while the other is after you open the file. If you still have the problem, you then may have 2 different fonts sharing the same FOND ID number. Close as many fonts as you can, especially the one that looks like your wrong font.

  • Triggering main window of the second page

    Hi Experts,
    I have two pages. Second Page will only get trigger at certain condition. I am triggering the Second page through Command. My issue is my second Page is triggering but the main window of the second page is not getting triggered. It should be like that the main window should get triggered. Even I have copied the main window and used it in the second page that is also not getting triggered. Please help me to resolve this issue.
    With Regards,
    Anomitro

    Hi,
    You should not create a new main window in the Second page of the smartform
    Instead, you copy the main window of the first page to the second page.
    So even if you add a text window in the first page Main window that will be reflected in the second page, but this should be below the command window.
    Use the command window to trigger the second page.It triggers the second page and all the text windows that are after(under) the command window will be coming in a new page.
    Check this link: https://wiki.sdn.sap.com/wiki/x/bAZqBg
    Hope this helps
    Thanks
    Sarves S V K
    Edited by: Sarves Sombhatla on Feb 21, 2011 6:56 PM

  • How to: make a custom second page?

    Ladies, Gents,
    I almost have my custom template for my business correspondence ready, but there is one thing I cannot figure out how to do it...
    As with my normal (printed) stationary, my second page and onward have less information then my first one. In my case, just a logo. Much as is the case with the "Woodland letter" template in Pages '08. As soon as you hit enter at the end, the second page comes up with a smaller, simpler logo.
    I cannot figure out how to get this done? The manual states entering a section break, customizing it, and using File>Advanced>Capture pages, but as soon as I enter a section break, I just get a blank page. Copying or pasting a graphic adds ANOTHER page at the end... I am stumped, and having read the manual from page 1 to 240, I don't have a clue!
    Any help would be GREATLY appreciated!

    Oh! Now I see.
    Try this. Format your template WITH the second page included. Use either a page break or a number of returns to get to the second page. Reformat the second page with the appropriate header, footer, logo, etc. (This is where 'First page is different' comes in, I'm sure you know.) Once the second page looks the way you want, remove it by removing the page break or the hard returns, THEN save it as a template. Do NOT use a section break to create the second page. I don't think inserting a new page will work to modify the template in this case.
    BTW, you are using a word processing rather than a page layout document, I assume.
    Good luck,
    Terry

Maybe you are looking for

  • How can I count patterns of multiple rows in a table

    I just can't wrap my head around a query I need to identify the unique set of patterns with a table...by patterns I mean the following... This is medical procedural data, wherein the first procedure code is followed by 0 or more procedures in a seque

  • Please wait message when opening form created by Adobe LiveCycle Designer ES 9.0

    Problem Please wait message when opening form created by Adobe LiveCycle Designer ES 9.0 Full message Please wait... If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this ty

  • Reproducible Bug with Displaying Moved Files

    LR 2.0, Windows XP I have the following folder hierarchy - A ...B1 ...B2 ...B3 ...B4 ...B5 .......C1 .......C2 .......C3 .......C4 I'm seeing the following behavior 1) I select folder B5. Folder B5 does not have directly have images. Only the subordi

  • Purchase requistion data source

    Hi All, I got one requirement extracting data from purchase requistion to build the report with fields lead time analysis for set of PR. Lead time analysis  for PRs converted to RFQ and from RFQ to PO. Source list maintained for the material and plan

  • Turbo tax on MAC

    Downloaded turbo tax onto my MAC and worked fine until I tried to download state tax forms. error message says cant install because of lack of athurtorty. Iam logged on as addmin. Any others have this problem?