Regarding data is not coming on second page

hi all,
     I Created one Smartform that is having Two Pages . I Created Two Final Internal Tables for each Page. Data is coming on First Page. I am getting data for second internal table also but data is not coming on second page.  I am using Command Option in main window for triggering of Second Page.
What was the problem.
Please suggest.
Regards
Reddy

Hi,
In the default setting, the next page is the page itself.
If a page is processed (filled) and processing of the form is not finished yet (if not all texts or data
are displayed), the system processes another page. The page used as next page can be
determined statically during the form definition (Next page) or dynamically at runtime (manual
page break).
The new page is the static next page. If a new page is called by a manual page break with
page specification within the main window (dynamic next page), the system processes this
page.
This page does not contain a main window and no static next page exists
In a main window you display text and data, which can cover several pages (flow text). As soon
as a main window is completely filled with text and data, the system continues displaying the text
in the main window of the next page. It automatically triggers the page break

Similar Messages

  • Data not coming on second page of smartform

    Dear All,
    I am having a smartform . The smartform displays 7 items on first page 7 on next and so on. The problem is if there are total 10 items , the smartform is showing 7 items correctly on first page but showing only one item i.e 8th item on the second page. But it is showing the total in the footer correctly i.e total of all the  10 items .
    Please suggest wht can be the problem.
    I tried everything from my side but all in vain.
    Plz Suggest.
    Manik L Dhakate

    Hi,
    In the default setting, the next page is the page itself.
    If a page is processed (filled) and processing of the form is not finished yet (if not all texts or data
    are displayed), the system processes another page. The page used as next page can be
    determined statically during the form definition (Next page) or dynamically at runtime (manual
    page break).
    The new page is the static next page. If a new page is called by a manual page break with
    page specification within the main window (dynamic next page), the system processes this
    page.
    This page does not contain a main window and no static next page exists
    In a main window you display text and data, which can cover several pages (flow text). As soon
    as a main window is completely filled with text and data, the system continues displaying the text
    in the main window of the next page. It automatically triggers the page break

  • Internal Table data is not overflowing into Next Page -  Adobeforms

    Hi,
         I have an issue if the internal table consits of more than 20 records that data is not overflowing into next page.
         Here am using Header  only on first page & Table will follows...
    Regards,
    PraVeen..
    Edited by: praveenreddys on Feb 15, 2012 10:51 PM

    Hi praveenreddys ,
    I had the same requirement,  I did as follows:
    LEFT HAND SIDE SELECT "TABLE": check below right hand side properties for this object
    1. table tab: select the check box allow page breaks within content.
    2. pagination tab: place: Following previous
                                after:continue filling parent
                               overflow: none.
    LEFT HAND SIDE SELECT "HEADER": check below right hand side properties for this object
    3. row tab: select the check box allow page breaks within content.
    4. pagination tab: place: Following previous
                                after:continue filling parent
                               overflow: none.
    select the check boxes: Include header row in initial page
                                            include header row in subsequent pages
    Binding tab property:
    5.select check box: Repeat row for each data item
    LEFT HAND SIDE SELECT "ROW": check below right hand side properties for this object
    6. Row tab: DON'T select the chek box allow page breaks with in content
    4. pagination tab: place: Following previous
                                after:continue filling parent
                               overflow: none.
    Binding tab property:
    5.select check box: Repeat row for each data item
    Then test..it would work for you...ALL THE BEST!!!
    If this helps please reward points.
    Reards,
    Naresh.

  • Address and Personal Data is not coming up on Portal ( ESS MSS )

    Folks,
    I am not able to see the Address and Personal Data is not coming up on Portal ( ESS MSS ) . when I click those links just the roadmap with exit button.
    Thanks

    Hi Manish,
                   Check with your system patch level both from ABAP and JAVA in the same Service Pack levels. if they are different then only we will get this type of errors. Even we i have faced the same problem, but solved with the basis help.
                   Have you gone through PA30, there Empl data has to be maintained. Then we can get the Data.
    Regards,
    kishore
    Edited by: kishore kumar on Dec 2, 2008 3:56 PM

  • Data is not coming in pivot table

    Hi,
    i made a request using some measures,month (time) and some other columns but data is not coming when i m working on pivot table though its working in case of table and graph.
    please help me out..
    thanks

    Hi,
    well data is populating in tables and chart in Oracle BI and i also executed the same query in sql server 2005 and got the desired result.
    the reason to show the results into pivot table is -- i want to show the result(measures) with time dimension and some other dimensions so i have to use this pivot table or if u have some other solution please let me know...
    thanks
    Edited by: user629711 on Nov 20, 2008 11:42 PM

  • Data is not coming in internal table

    Hello Abapers,
    Data is not coming in my internal table.
    Plz tell me where I m wrong
    SELECTION-SCREEN BEGIN OF  BLOCK blk.
    PARAMETERS:       compcode LIKE vbrk-bukrs OBLIGATORY.
    PARAMETERS:       billtype LIKE vbrk-fkart OBLIGATORY.
    SELECT-OPTIONS:   billdate FOR  vbrk-fkdat OBLIGATORY.
    PARAMETERS :      acgrpc   LIKE vbrk-ktgrd OBLIGATORY.
    PARAMETERS:       acgrpm   LIKE vbrp-ktgrm OBLIGATORY.
    PARAMETERS:       taxcode  LIKE konv-mwsk1 OBLIGATORY.
    SELECT-OPTIONS:   plant FOR vbrp-werks .
    SELECT-OPTIONS:   bussarea FOR vbrp-gsber .
    SELECTION-SCREEN END OF BLOCK blk.
    START-OF-SELECTION.
    SELECT avbeln afkart aknumv afkdat abelnr aktgrd abukrs axblnr
    amwsbk  bgsber bwerks bktgrm
    FROM ( vbrk AS a INNER JOIN vbrp AS b ON
    avbeln EQ bvbeln  )
    INTO CORRESPONDING FIELDS OF TABLE vbrk_vbrp
    WHERE ( a~fkart EQ billtype )  AND
    ( a~fkdat IN billdate ) AND
    ( a~ktgrd EQ acgrpc ) AND
    ( a~bukrs EQ compcode ) AND
    ( b~gsber EQ bussarea ) and
    ( b~werks EQ plant ) AND
    ( b~ktgrm EQ acgrpm ) .
    Ravi

    Hi,
    write ur query this way :
    SELECT avbeln afkart aknumv afkdat abelnr aktgrd abukrs axblnr amwsbk bgsber bwerks bktgrm
    FROM ( vbrk AS a INNER JOIN vbrp AS b ON
    avbeln EQ bvbeln )
    INTO CORRESPONDING FIELDS OF TABLE vbrk_vbrp
    WHERE ( a~fkart EQ billtype ) AND
    ( a~fkdat IN billdate ) AND
    ( a~ktgrd EQ acgrpc ) AND
    ( a~bukrs EQ compcode ) AND
    ( b~gsber IN bussarea ) and
    ( b~werks IN plant ) AND
    ( b~ktgrm EQ acgrpm ) .
    even plz check then internal table ' vbrk_vbrp ' if they have all the fields of select query and even the order is same as select , since you are using ' into corresponding fields of table ' clause in select statement.
    hope this helps.
    thanx,
    dhanashri.
    Edited by: Dhanashri Pawar on Aug 26, 2008 6:14 AM

  • Nav.attr data is not coming in cube

    Hi guys,
            Nav.attr data is not coming in cube even though there is data in master data tables.

    Hi Ajay,
    In your case for the Nav Attr data to appear firstly load the master data where your Nav Attr resides and then do the apply hier/attr change for that master data.
    Hope this helps.
    Bye
    Dinesh

  • Problem in report of cats_da data is not coming for one absence type.

    Dear experts,
    For one absence type the data is not coming in the report cats_da. When I check the other absence type the report is showing the data. I dont know where is the problem. Customer is entering data throught PA30  transaction. Kindly help me where is the problem in customization.

    No answers so closed.

  • Delivery date is not coming properly in PO Printout

    Hi,
    I have a problem in PO Printout that Delivery date is not coming properlyu2026In my PO, there are 5 line items. 
    If the Delivery date of all line items are same like 01.04.2009, then Delivery date should be shown 01.04.2009 in PO printout.. IT IS COMING RIGHT.
    But if the Delivery Date of all line items are different like 01.04.2009, 02.04.2009, 03.04.2009, 04.04.2009 and 05.04.2009. Then Delivery Date should be shown with the each line items in PO print out. THIS IS NOT SHOWING IN MY PO PRINT OUT.
    Please tell me what is the problem. Why not coming Delivery date with each line items???
    Regardsu2026

    currently i dont have SAP installed with this system, so i just suggesting you some thing.
    goto tcode: nace.
    select your output type. check the processing routines. check the smartform and processing routines attached to it. and see how the field is getting populated and what fields are being passed there.

  • Sharepoint List to Telerik Grid, Where data is not coming from database into List.

    SharePoint List to Telerik Grid, Where data is not coming from database into List.
    Here, i have a SharePoint list , where configurable text are stored, using some utility.
    I want to convert that SharePoint list into Telerik grid, with all Editable Option which i have in SharePoint.

    I know little about Telerik Grid, only find following article about Telerik integrate with SharePoint:
    http://www.telerik.com/help/aspnet-ajax/moss-spradlistview_designer_general.html
    a similar question:
    http://www.telerik.com/forums/how-to-bind-to-a-sharepoint-list-using-radgrid
    Thanks,
    Qiao Wei

  • Line items are not coming on next page in Bill of Lading

    When I am printing Bill of Lading, if it has around 8 line items then its printing on the first page, but if line items are more then its not printing the remaining line items on second page.
    I have one delivery with 10 line items, when I am printing it then on first page 7 line items are coming and for 8 line item only material is printing and on second page its description is printing but last two line items are not printing at all.
    Kindly help me to resolve the issue as it is very critical.

    Hi,
    Check below points.
    Point 1:
    When you create a delivery document, you create it for a Shipping Point.
    So whatever the line that came in to one delivery has determined same shipping point that you entered in VL01N screen.
    Others got a different shipping point and that's why it didn't come to the same delivery document.
    Shipping point determined based on below criteria
    - Shipping Condition - From customer master
    - Loading Group - Material
    - Plant  - Delivery Plant of the sales order line item
    You assign a proffered shipping point for above combination in configuration.
    If that combination is not find, those line items are not going in to the delivery.
    You can check the log of the delivery document for more information as well.
    Point 2:
    Check the line item Requested delivery date and the "Selection Date" you entered in the VL01N screen.
    Al  Requested delivery dates has to be on or before the  "Selection Date" you entered in the VL01N screen.
    Those line items which has a date more than that will dropped in the delivery.
    Best regards,
    Anupa

  • Not printing the Second Page in SMARTFORM

    Hi,
    I am working on Purchasing Smartform... I have created a layout with 2 Pages.. In 1st page I have the Data and in 2nd PAge i am having Terms & Conditions.. But in the output 2ndpage is not printing.. Please help me regarding this issue...
    Thanks in Advance
    Muralikrishna

    >
    muralipsharma wrote:
    > Hi Arul,
    >
    > I did what ever you said in previous message, but still i am not printing the Page2... you said that go to COMMAND node, for which window I have to create COMMAND node.. I have created a COMMAND node for MAIN window in FIRST page.. but still its not displaying...
    > Actually in my First page I am having the data and in second page I am having Terms and Conditions in MAIN window..
    > Thanks in Advance,
    >
    > Regards,
    > Muralikrishna
    >
    > Edited by: muralipsharma on Jul 30, 2010 3:05 PM
    is the first page completely filled with data or do you always want to print the second page no matter if there is an overflow or not ?
    so you have defined a new page like 'NEXT' .
    then in the 'FIRST' page create an event and a command and check next page.

  • Ref. PO no. is not coming in second line item at the time of delivery

    Hi All
    STO Scenario
    In PO it single Line item,  but in delivery we doing split batch. the system showing error that " Enter the    PO No." But in first line it it picking the Ref. Document No. while it not coming second line item.
    Please suggest.
    Regards
    Mahesh

    Hi Mahesh
        Proceed accordingly, first select te batch split by selecting line item and then go to environment for batch select once the batch selected then choose the belowmentioned magnifying glass, maintained other necessary field your delivery will be created.

  • Fillable form will not print the second page

    I have created a fillable two-page Acrobat form using Adobe InDesign.  Everything appears to be okay with the form, except that the second page does not print.  The first page prints okay, but the second page exits as a blank page without content from the form or the user-entered data.
    2012-2013 Professional Development Funding Request

    For Macintosh the AdobeViewer Plugins does not function and Hasn't since Acrobat 8. Adobe has no intention of fixing  it, I received a nasty reply:  what feature do you want removed in order fix the problem.  Its not worth it and we have no intention of ever fixing it. However its shipped and installed on the Mac version
    The only PDF Plugin that works  is PDFBrowser Plugin by Schubert of Germany, and it appears he has discontined updating although Thankfully It works in OSX.8  with most mdern Updates.  You can Only fill out forms by opening Chrome, iCab , and OperaNext only Safari doesn't work and any product using the Gecko Rendering engine (Mozilla Products , FireFox and SeaMonkey  Form Fields don't work or crash the browser. (depending upon version of the pdfBrowser Plugin).

  • Data is not coming correctly through delta from DSO to Cube

    HI All,
    When there is change in Org. Unit, Job or any characteristic of employee then the the delta of data source picks that change records.
    I have used DSO before Cube. Now in DSO active table have one record against the Employee and same Schedule hours as ECC have.
    But while loading to the cube, this data of schedule hours will get added to existing schedule hours  of Cube , which makes the schedule hours double for that Employee. For exmaple.
    DSO Data.
    Emp NO.     Date Org. Unit     Sch. Hrs
    1                    ABC                              16
    CUBE Data
    Emp NO.     Org. Unit     Sch. Hrs
    1                    ABC               16
    Now Employee Org. Unit get changed to XYZ.
    DSO Data.
    Emp NO.     Org. Unit     Sch. Hrs
    1                    XYZ               16
    CUBE Data
    Emp NO.     Org. Unit     Sch. Hrs
    1                    ABC               16
    1                    XYZ               16
    I need data as it is in the DSO.
    Please help, thanks in advance.
    Arvind

    Hi Arvind,
    DSO and Infocube works different for char values......you can define Key Fields in DSO...
    whereas in Infocube each Characteristic value work as Key Field.....that's the reason if there is any change in any characteristic value ...
    DSO Active data will not change if Key field has not change..... the newly updated Data field value will be available in DSO Active Table.....whereas in Infocube... it will create a new entry......
    In order to get the updated value each time you need to explore some other options .....like complete deletion of Info cube data and full load everyday.......
    Other options depends on design and data volume and other parameters.
    Hope this helps........
    Regards
    Mayank

Maybe you are looking for

  • IPhone 5s won't update to iOS 8.0.2

    My iPhone 5s won't update to iOS 8.0.2. I had been using beta versions of iOS 8 but even though there is a '1' in the Software Update box, it tells me my software is up to date (iOS 8). However, I also get messages telling me my current iOS will expi

  • Will I pay for an app if I have already purchased and sending it as a gift to someone else?

    I am wondering will i pay for an app if i have already purchased and sending it as a gift to someone else?

  • Puzzled by erase & install

    by doing an erase & install before installing tiger, I take it that I will lose everything I have on my mac 5, including OS9 and ical and sherlock and calculator and backup and so on. but do all these and more return with the installation of tiger, i

  • Automate turn airport on or off to save battery

    i read a method in a book [are you allowed to mention names of specific books?] to toggle airport on and off by inventing a shortcut for it. i think it was something like system preferences>keyboard and mouse>keyboard shortcuts>+. the book said type

  • Photoshop Touch for Windows RT

    Hi, Is there any chance that Photoshop Touch will be released for Windows RT? Thanks!