Page count in the footer of a table in the form layout

hi friends,
I just want to print the page number detaisl in the footer of the SMARTFORM .
I just dragged the values from the system folder and use it as usual.
But the values are displayed in such a manner
for sy-page of sy-printpage
gives 1 of *
2 of *
9 of *
10 of 31
11 of 31
31 of 31
But when i give the same values in a separate or in a separate text , i can get an expected result as
1 of 31
2 of 31
31 of 31
can somebody help me to solve this problem.
why it happens so , only in the footer of an table, and why the values are not printing only upto 9?
tell me some possible ways of solving this problem

Hi Kumar,
  Use final window type and put your sfsy variables in that window then it will work.
Reward if helpful.
Regards,
Kalyan.

Similar Messages

  • Is it possible to show the count of number or rows in table on the Home page Tab button.

    Is it possible to show the count of number or rows in table on the Home page Tab button.
    On home page there is a Tab called Count and I want to show the count on the right corner of this tab button.
    Please help

    Create an application item. APP_HOME_COUNT.
    Create an application process:
      make the application process type "on new instance" if you only want this to run once
      make it "on load before header" if you want to have the value set every page load
    application process source:
    select count(*) into APP_HOME_COUNT from <your table>
    modify the tab name to reference the app item, maybe something like "Count(&APP_HOME_COUNT.)"
    result should look like this "Count(5)"
    Good Luck,
    Tyson

  • Pafe count in footer of a table in a form

    hi friends,
    I just want to print the page number detaisl in the footer of the SMARTFORM .
    I just dragged the values from the system folder and use it as usual.
    But the values are displayed in such a manner
    for sy-page of sy-printpage
    gives 1 of *
    2 of *
    9 of *
    10 of 31
    11 of 31
    31 of 31
    But when i give the same values in a separate or in a separate text , i can get an expected result as
    1 of 31
    2 of 31
    31 of 31
    can somebody help me to solve this problem.
    why it happens so , only in the footer of an table, and why the values are not printing only upto 9?
    tell me some possible ways of solving this problem

    Hi kumar,
    Instead of
    sy-page of sy-printpage
    Use
    &SFSY-PAGE& of &SFSY-FORMPAGES&.
    The SFSY structure is the one to be used for system fields in smartforms.
    Please try this and it should work.
    Regards,
    Aditya

  • How can i convert the data from mutiple-table to the other database(MSSQL)?

    Dears,
    How can i convert the data from mutiple-table to the other database such as MS-SQL?
    I have a third party system based on MS-SQL 2000.
    Now we want to make a integration between SAP R/3(Oracle) and SQL server.
    When my user releases the purchase order in R/3, the application we coded will convert the releated data to the temp database on the SQL server.
    But i don't know which tools will help me reach the purpose.  BAPI, LSMW, IDoc... ???
    Would anybody tell me which way is better and how to do?
    Thanks a lot!
    Kevin Wang

    Hello Kevin,
    The question to use which method depend on your detail requirements. If you use BAPI, you need to find which Bapi can provide the data you want. Bapi normally use as a function called by external system. So you need to develop an external program like VB/Java to call this Bapi and move it to SQL. LSMW is use when you want to upload data from an external system to SAP. So it does not serve your requirement. Idoc can be use to export data to an external system. Again like Bapi, you need to find what Idoc can provide the data you want. However, it does not any programming from the external system. If I were you, based on your requirements, I think writing an Abap program that read the data you want and download it to NT/SQL server will be faster and easier.

  • Newbie ques : How to get the list of all tables in the database

    Hi,
    I'm very new to Oracle (using Oracle8i currently). I wanted to know if there is a way to get the list of all tables in the database. Like in mySQL you can use the command " show tables" to get the list of all the tables.
    Any help will e greatly appreciated. Please "cc" any reply to [email protected] also.
    thanks
    Deven

    Hi
    Select table_name, owner from all_tables;
    will give u all the tables in the database.
    all_tables, dba_tables, user_tables
    all_objects, dba_objects, dba_objects
    there are many, more tables. login as system and query the tab and try to describe the tables.
    Thanks
    Malar

  • I want to get the data of a table inside the Form but it is not passed

    I want to get the data of a table inside the Form but it is not passed to the form by tables parameters.
    How can I do this.
    Regards

    If there is a problem with defining it globaly, you can define a field symbol globably and point to it. For example.  It would probably be better to define your table globably.
    report zrich_0003 .
    field-symbols: <imarc> type marc_upl_tt.
    start-of-selection.
      perform get_data.
    *       FORM get_data                                                 *
    form get_data.
      data: imarc type table of marc with header line.
      select * from marc into table imarc up to 10 rows.
      assign imarc[] to <imarc>.
      perform write_data.
    endform.
    *       FORM write_data                                               *
    form write_data.
      data: xmarc type marc.
      loop at <imarc> into xmarc.
        write: / xmarc-matnr, xmarc-werks.
      endloop.
    endform.
    Regards,
    Rich Heilman

  • Table to get the list of all tables in the database

    hi,
    please let me knwo the table where i can get the list of all tables in the database

    hi,
    please let me knwo the table where i can get the list
    of all tables in the databaseHi Michael,
    Will you EVER start reading some documentation?
    I guess it's not far that many regulars won't reply to those kind of questions.
    Believe me, reading doesn't hurt (well, at least, most of the times).
    Rgds,
    Guido

  • Why is the FactAdditionalInternationalProductDescription a fact table in the AdventureworksDW2008R2 database?

    Was wondering why this table is a fact table in the AdventureworksDW2008r2 database?  It has no measures that I can tell. 
    Here is the schema for the table....
    [ProductKey] [int] NOT NULL,
    [CultureName] [nvarchar](50) NOT NULL,
    [ProductDescription] [nvarchar](max) NOT NULL

    Yes, I think it should be a dimension also.
    The dimDate table has translation for month, dyas, etc in other languages.  They don't put those translations in a fact table.  Also, fact tables have measures, you can not perform math on those columns except maybe count...
    The only thing I could think of is maybe it is some sort of intermidiate table... like if you have a many to many and need a one to many for SSAS, but still trying to wrap my head around some of these concepts.
    I have just been studying this stuff for about a year or so, so wasn't sure.  Studying for 70-463 hope to get MCSE someday too.
    Mike

  • How to use the TableSorter for two tables at the same view?

    Hello,
    I am using the TableSorter object in order to sort Dynpro tables.
    Suppose I have two tables at the same view, is it possible to use it seperatly for both of them?
    I assume that at the wdModifyView method I will need to catch the table that the user clicked on, yet I don't have an idea of how to do it...

    Hi Roy,
    Constructor of TableSorter
    public TableSorter(IWDTable table, IWDAction sortAction, Comparator[] comparators)
    So, you have to create instance of TableSorter class for each table on the view.
    best regards, Maksim Rashchynski.

  • How do I update all the records in a table from the contents of another table?

    Ok some situation information, I have a pervasive database that runs our accounting software that I am pulling a product list from.  I have that list stored in a table in SQL.  From time to time we update the records in the pervasive database and
    I want to be able to pull those changes into the SQL table.  I don't want to drop the table and recreate it because if a product is no longer active in the pervasive database it will not be returned by the query (if I return all the products even the
    inactive ones I will get thousands of records rather than just a few hundred) and I do not want to loose the products from the table that are now inactive.  
    So what I want to be able to do is pull the list from pervasive, compare it to the list that exists in SQL and update any changed records, add any new records, and leave any now missing records alone(missing from the pervasive list but present in the SQL
    list).  I have no trouble pulling the records from pervasive (now) but I am a little stumped on how to do the rest.  I am not sure if this is a situation to use MERGE or not.  I also do not really need this to be done on a regular basis as the
    changes do not happen often enough for that, the ability to manually trigger it would be enough.
    Any help would be appreciated.
    David

    Hi David,
    lets say you want to go with the lookup transformation.
    lets say u want to move the data from server A table A1 to Server B table B1
    What you need to do is the following:
    Cofigure the Lookup options as follows:
    - In general -> Specify how to handle rows with no macthing entries -> "Redirect Rows to no Match Output"
    -  In Connection -> Set the ole db connection to the Server B and select the table B you want to lookup the values in your case the table where you want to input the changes 
    -  In columns -> link the product column from table A to product column in table B. And do not select any rows to output.
    - now your component is ready next you need to input. so when u connect your lookup to the destination component You will get an option to select which output you want to use - use "Lookup No Match Output".
    this will actually just allow you to add only new items only to the table B.
    Teddy Bejjani - BI Specialist @ Netways

  • Can i set the content of input text in a form layout in the uix page center

    Hi
    i have a simple question, how can i set the content of an input text in a form layout in the .uix page center?
    i saw in the page properties but i didn't found.
    thank you for your help.
    Edited by: Islem on 19 déc. 2008 00:22

    Sirrick,
    If I understand your question correctly, you want to programmatically set how many array elements (clusters) to show. You can do this with the Array properties: Number of Rows and Number of Columns. Please see the attached VI.
    Zvezdana S.
    National Instruments
    Attachments:
    Array_Elements.vi ‏20 KB

  • How to retrieve the data from database table to the screens

    Hi all,
    I have created a transaction to save the costing details..but if the material code already exists then it should get the header and details of that material code onto the table cotrol of the screen..i'm getiing them into my itab but only the last record of that is visible for n times as there are n records...can anyone help me in this?

    Dear anil ,
      Please give condtion in u r code on line item wise so its taking all records correctly.
    Regards ,
    Nikhil narkhede.

  • How to pass the text from a table to the field label on the selection scre

    hi guru's
      i have requirement were in i have to pass the text from a table as field label for
       a input field on the selection screen.
      EX:    selection screen  
                (xxxxxxx )  __________   
                field label    
      please help 
    regards,
    vara

    hi all,
    can you please check the code, and suggest am i doing wrong any were.
    types: xtab(200).
    data : ttab type table of xtab,
    w_so type xtab.
    data: routine(32) value 'TEMP_ROUTINE',
    program(8),
    message(128),
    line type i.
    AT SELECTION-SCREEN OUTPUT.
    select field text DATA_ELEMENT from zauthgrptxt into table t_fieldlabel where STARALLOWED EQ c_asteriks.
    DESCRIBE TABLE t_fieldlabel LINES N.
    w_so = 'REPORT ZTEMP_PROGRAM.'.
    append w_so to ttab.
    w_so = 'FORM TEMP_ROUTINE.'.
    append w_so to ttab.
    loop at t_fieldlabel.
    w_field = t_fieldlabel-field.
    CONCATENATE 'SELECT-OPTIONS: ' ' P_' w_field zspace ' FOR ' ' T_FIELDLABEL-' w_field ' NO INTERVALS NO-EXTENTION.' INTO w_so.
    append w_so to ttab.
    endloop.
    w_so = 'ENDFORM.'.
    append w_so to ttab.
    generate subroutine pool ttab name program
    message message
    line line.
    if sy-subrc = 0.
    perform (routine) in program (program).
    else.
    write:/ Message.
    endif.
    The sy-subrc = 4. nothing is coming into 'program' at generate subroutine pool
    very urgent requirement please help
    thanks,
    vara

  • How to read the configuration of tree table from the variant of Personalization of the Tree UIBB?

    Hi Experts !
    I have created an application using  Tree UIBB to display the list output along with personalization property. The user can save the settings of the output table such as shuffling of column position and hiding / display of columns in the variant.
    The export to excel button gives the output as per the current variant but I need to develop a custom export to excel button, on action of which I need to read the currently selected variant and the visble columns from the variant.
    I found that CL_FPM_TREE_ASSISTANCE gets the variant and columns from the personalization object, however, I am unable utilize it in my custom code.
    Please help or suggest any class which I can utilize.
    Thanks !

    Aristos Queue wrote:
    Alias name here wrote:
    ..second post telling me the 'propertys' of a control have nothing to do with the value is bizzare - via 'properties' for a LV control is the ONLY way to configure the specific type of a numeric...so via the numeric 'property nodes' should\would be able to query it's configuration.
    I do not see any way to set these things through the properties...
    I think he means by right clicking the control on the front panel and configuring with the properties dialog. The properties are exposed there, but not within the property nodes.
    Edit: You beat me.
    CLA, LabVIEW Versions 2010-2013

  • Linking Excel to Word - Word doc updates the numbers in a table but the format (font colours) do not update

    I am using Office 2010. I have many graphs and linked tables to a master word document from Excel. The tables contain percentages and are formatted red if under -2.5%, yellow if between -2.5% and +2.5% and green if over +2.5%. The colours are correct
    in Excel but when I refresh the word document, the numbers update but the font colours do not. The purpose of linking was to save time but if the colours do not update then the link is pointless. Is there any way to ensure the colours update as well as the
    values?

    Hi,
    In regarding of the issue, I have a couple of questions:
    Do you mind telling me how do you copy/link between Excel and Word?
    Where did you store the Word and Excel file? Both of local disk or network drive, even website?
    Did you using conditional formatting to display/format percentages?
    Based on my tested, please try the following steps, it would be update all the information after the source was changed.
    Select the table/chart in Excel> Open word >Copy>Paste>Choose Link & Keep Source Formatting.(See image 1)
    If we changed the source data in Excel, then right click the table in Word> Choose update Link. (See image 2)
    Then the data, format, font and color all will be updated.
    Hope this should help you.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in
    Office programs.

Maybe you are looking for

  • I need to Uninstall Apple Software Update. I am getting error. "There is a problem with this Windows Installed package.

    My itunes stopped working. I uninstalled/reinstalled. But it would not complete reinstall. Started with Quicktime not loading. I have tried to install Quicktime individually. Still nothing. I now am trying to uninstall ALL itunes/Apple to attempt rei

  • T60P Fingerprint No Longer Showing up in Vista

    I was getting an error after I logged in to Vista involving the fingerprint software, so I uninstalled it and reinstalled it.  I no longer get the error, but I also do not get the option to use fingerprints when I log in or when coming back from havi

  • Purpose of motion tweens + movie clip symbols

    Hello. I've been going over several tutorials and whatnot and I'm confused on the point of movie clip symbols and motion tweens. To me using the other tweens and symbols are "easier". Can someone explain to me why they're so beneficial to have been a

  • Search google keyboard shortcut conflicts with pages

    The apple system preference, keyboard, indicates that shift-command-L will search google is safari. However, in pages, that command displays layout. Search in google does work using the services menu option in pages. Is there a way to change or resol

  • IPad warranty question

    Hi, I bought an iPad with retina display and Sim card in the US. It is defective (monitor issue) and within warranty period. I am now based in London, UK. Can I have it repaired or replaced here?  Thank you