How can we get a Scrolling in Table Control while data uploading?.

Can anybody suggest me the way to put a scrolling in a table control while uploading the data?

Hello,
I dont think it is possible, anyways dont do it. It will make the program perfomance very bad. There is an indicator (little watch on the left hand side), that you can use, but it is better to dont do it. As I have told you the perfomance will be very bad.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    EXPORTING
      percentage = 20
      text       = 'Uploading data'.
THAT IS THE FM. Use it after and before the upload.
Hope this helps
Gabriel

Similar Messages

  • In disk utility, it shows that my external hard drive is somehow unmounted and I can't access it in finder or repair it in Disk Utility. How can I get this working without losing my important data?

    In disk utility, it shows that my external hard drive is somehow unmounted and I can't access it in finder or repair it in Disk Utility. How can I get this working without losing my important data?
    Thank you!

    When you erased the disk did you select Mac OS Extended Journaled as the format option?

  • How can I get a reference to all controls on a front panel of one type )for example of the type Text Ring?

    I'd like to set the strings[] property of all the Text Ring controls on a front panel at once without creating a property node for every text ring. How can i do that?

    > How can I get a reference to all controls on a front panel of one type
    > )for example of the type Text Ring?
    >
    > I'd like to set the strings[] property of all the Text Ring controls
    > on a front panel at once without creating a property node for every
    > text ring. How can i do that?
    This is likely more complicated than making property nodes for each
    ring, but you can do it. Make a subVI that takes in a panel reference,
    reads the array of control references, loops through them looking for
    rings, and modifying the Strings[] property on each ring.
    The part of this that will probably be the least obvious, when you
    have an array of control references there are two ways to find out
    if an element is a ring. You can read the classID and compare it
    to the cla
    ssID of a true ring control. An alternative is to cast
    the control reference to a ring control using a Cast to more specific
    node and wire the error out to a case structure. The error case is
    where the objects that aren't rings will go. The success case case
    where you will have a valid ring refnum that you can use to modify
    the strings.
    Greg McKaskle

  • How can I get my graph to plot vs. my data points instead of vs. time?

    how can I get my graph to plot vs. my data points instead of vs. time?

    Maybe you could exaplin in a few more words what "my data" is. Are the values equally or randomly spaced?
    If they are equally spaced, just adjust offset and multiplier, and axis label.
    If they are randomly spaced you are probably looking for an X-Y graph. Check the shipping examples.
    LabVIEW Champion . Do more with less code and in less time .

  • How can I get the scroll bar to go to the top or bottom of the page with a right click command?

    When I right click on the scroll bar nothing happens. I have to spin the mouse wheel repeatedly to get to the top or bottom of the page. I just switched from explorer. I'm used to being able to do this. It's much less time consuming and frustrating. I hope someone can help. Thanks.

    You can hold down the Shift key and left-click the scroll bar to go to that position.
    If you set the Boolean pref <b>middlemouse.scrollbarPosition</b> to "<i>true</i>" (default on Linux) on the <b>about:config</b> page then you can middle-click the scroll bar to go to that position.
    *http://kb.mozillazine.org/middlemouse.scrollbarPosition
    *http://kb.mozillazine.org/ui.scrollToClick

  • How can i get access to a TABLE IN A TEXTOBJECT

    Hello,
    i want to edit the textobject1 on an existing report file.
    In DIAdem 8 the script was for example:
        call GraphObjopen("textobject1")
          call TxtBufOpen 
            TxtBufFont="Arial"
            TxtBufFontSize=10
            call TxtBufNextLine
            x = Round(chdx(1,Cno("myErg_" & name)),2)
            call TxtBufTabCellSet(cstr(x),4,1)
    Log file:
       "An der aktuellen Cursorposition befindet sich keine Tabelle!"
       "at the current cursor position there is no table"
    How does it work in 10.2 to get access to a table in a textobject? There is no documentation for this case.
    Regards  Bernard

    Hello Bernhard,
    during the last releases, a lot of the DIAdem modules have been completely revised which in some cases may have led to some old variables becoming obsolete.
    To find out which variables a particular dialog is using you have two options: Open the configuration dialog and use the help button to gat a context sensitive help explaining all available parameters and options. Alternatively, press Ctrl&A inside the dialog to copy all variables to the Windows clipboard. Doing so with a Textobject and pasting the clipboard content into a script you will get the following:
    Call GraphObjOpen("Text1")
      '------------------- Text -----------------------------
      TxtTxt           ="this is text"
      TxtFont          ="Arial"
      TxtSize          =3
      TxtColor         ="black"
      TxtColorRGB      =33554432
      TxtBold          =0
      TxtItal          =0
      TxtUndl          =0
      TxtStrOut        =0
      TxtFrame         =0
      TxtBackColor     =""
      TxtBackRGB       =0
      '------------------- Position -----------------------
      TxtPosX          =40.17
      TxtPosY          =62.39
      TxtAng           =0
      TxtRelPos        ="r-bot."
    Call GraphObjClose("Text1")
    Ingo Schumacher
    Systems Engineer Sound&VibrationNational Instruments Germany

  • How can I get the difference of  tables between two oracle server?

    We team have 2 oracle servers in the same version.
    one is develop server and the other is priduct server.
    I want to know what is difference in tables define between the two oracle servers.
    give me a method or a step or a sql script or a tool to compare these two set of tables.
    Edited by: Oracle-Sunmeng on Aug 1, 2012 6:36 PM

    Hi Sunmeng,
    Does Database Link exists between Databases ??
    If I am Clear, Are you looking Something like this.
    To Identify the tables difference, you can query the USER_TAB_COLUMNS view.
    SELECT DISTINCT table_name, 'User1' AS user_table
               FROM user_tab_columns
    UNION ALL
    SELECT DISTINCT table_name, 'User2' AS user_table
               FROM user_tab_columns@dblink
           ORDER BY 1;Which gets us all the Tables available in Both User. where you can filter based on what
    you require.
    Similary, you for column difference
    SELECT   table_name, column_name, 'User1' AS user_table
        FROM user_tab_columns
    UNION ALL
    SELECT   table_name, column_name, 'User2' AS user_table
        FROM user_tab_columns@dblink
    ORDER BY 1;If you need to count the no of columns in both Tables of different databases. Then try this,
    SELECT table_name, 'User1' user_name,
           (SELECT MAX (column_id)
              FROM user_tab_columns a
             WHERE a.table_name = b.table_name) colno
      FROM user_tables b
    UNION ALL
    SELECT table_name, 'User2' user_name,
           (SELECT MAX (column_id)
              FROM user_tab_columns@dblink a
             WHERE a.table_name = b.table_name) colno
      FROM user_tables@dblink b;And, what the Columns in both tables may be same but, if datatype and length of column differs ?????
    Thanks,
    Shankar
    Edited by: Shankar Viji on Aug 1, 2012 10:47 PM
    Edited by: Shankar Viji on Aug 1, 2012 10:49 PM

  • How can I get Firefox to save what folder I last uploaded from?

    I recently updated to FF 5.0.1 from some antiquated version of FF 3. I have set the download destination so that it always saves to the folder of my choosing, but it does not seem to remember the folder I last uploaded from. For example, say I wanted to find an image, save it, and then upload it somewhere (a common occurrence for image macros on chan boards). With the previous version of Firefox, I could save to something like C://User/Pictures and then click "browse" to chose the image I just saved from another site. It would then open up C://User/Picutres and I could click on my desired image.
    Now any time I restart Firefox the default upload source is the desktop. Previously Firefox would have saved information and would by default open up whatever folder I last saved to (or uploaded from if that was the last action). So if I downloaded to C://UserABC/Pictures/FunnyPics then Firefox would open C://UserABC/Pictures/FunnyPics for uploading. Now it goes straight to C://Users/UserABC/Desktop.
    This makes it a real pain to navigate BACK to the folder I do most of my uploading from every time I restart Firefox. How can I set it up so Firefox will once again open up my last saved-to or uploaded-from folder as it did before?

    Open ''Tools'' -> ''Options'' or, if that option isn't there, ''Edit'' -> ''Preferences'' and select ''Security'' from the resulting window. Click ''Saved Passwords'', which will open a dialog box with all the sites you have passwords saved on. Click the site your password changed on, and choose Remove. The next time you go to that site and input your password, you'll be asked if you want to save your password. Press ''Yes'' and it'll save your new password.

  • How can I change the size of table control in table maintenance re-gen?

    Hello Experts,
    I hv created a maintenance view and after generated table maintenance view for it.
    now it adjusts the size of table control in table maintenance generation.
    I want to change the size (width) of table control and again re-generate the table maintenance.
    But when re-generation occurs, table control size is set to initial.
    why it is happening? and wt to do to solve this issue? any user exit?
    I need the changed size of table control even if its re-generated.
    Regards,
    R.Hanks

    Hello Ronny,
    Goto SM30, Enter your table name for which you have maintained your table maintainence generator .
    When the maintainence screen appears for your table name , Goto System->Status->Screen Program name.
    Copy that program name from there.
    Open that module program through SE80,this is the program name of your SM30 screen which appears when we enter our table name in SM30 transaction.
    In SE80,click the layout of the module program name you have entered there.
    Its layout will display you the table control(of SM30) present to enter your your enteries.
    In the change mode you can change its size , savee it and activate that program.
    Now goto to SM30 again and enter your table name, it will show you the changed size of the table control used to take the enteries.
    Note:This changed size is only for your table name and it will remain of its previous size for other table enteries.
    Hope it helps you.
    Thanks Mansi

  • How can we select multiple rows in table control for module pool program?

    hi guru's
                 i cannt able to select multiple table control rows for deletion of records please give any code to select rows?
    regrards,
    satheesh.

    On the Table Control attributes there is a "Selectability" option where you choose one of: None, Single, or Multiple.  In your code you then need to pick up which rows have the selection column set to 'X'.

  • How can i change the color of table control'  lines?

    Such as the subject. Thanks in advance!

    Hi,
    Please check,
    TABLE CONTROL LINES COLOR CHANGE
    color rows in table control
    Regards,
    Hema.
    Reward points if it is useful.

  • How can I get extra scroll bars in Firefox to read Yahoo mail on a small screen, the way Explorer has?

    When I read my Yahoo emails on my little Asus eee pc, I have to use Explorer because it has extra scroll bars that allow me to scroll back and forth to see things that there is no room for on the screen. Firefox doesn't have these scroll bars.

    Hi ncleeno,
    I understand that on a small screen you would like to know how to add scrollbars to the page so that you can read parts of the email that are not on the screen.
    I have not tried this myself, but I think in about:config: In order to change your Firefox Configuration please do the following steps :
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''' to continue to the about:config page.
    # Search for scrollbar and I believe layout.testing.overlay-scrollbars.always-visible set to true would put these on.
    dom. disable_window_open_feature.scrollbars is the one that is set to false by default as well that prevents the scrollbars on a popup from being disabled. i am not sure if viewing Yahoo mail is a popup. I do not use it, but I will assume its not.
    Did this help?

  • HT2845 how can I get the scroll function to work on my magic mouse?

    I got my magic mouse to work perfectly with my macs but I also have a work computer which is a windows vista lenovo.  All functions work with the mouse on my pc but the scroll function when I'm in excel which is a big deal for me because I am an accountant.
    tks.

    Use the Image Capture application. It is already installed on your computer.
    See:
    Mac Basics: Using a scanner
    http://support.apple.com/kb/ht4505
    I hope you get this issue sorted out.
    Austin

  • How can I get the scroll bars to be more visible/contrasting?

    The scroll bars are difficult for me to differentiate from their background. Can I change their colour or darkness to make them more visible?

    Firefox uses the native scroll bars by default.<br />
    You can try to select another window theme in your Linux distribution that has better scroll bar appearance or see if installing a Firefox theme helps.
    * https://support.mozilla.org/kb/Using+themes+with+Firefox
    *https://addons.mozilla.org/firefox/themes/

  • How can I get a scroll bar at the bottom of the page so I can see the right side of the page when I am using two windows?

    With two or three pages open, I have scroll bars that allow me to see the right side of the other pages, but not on the Firefox page.

    Thank you for the reply, Fred, but when I went to my saved screenshot, I realized that the shortcut on my desktop had opened in IE, not Firefox. There is no scroll bar and the directional arrows do not work. My daughter has been playing with my laptop again. When I set up the same conditions with Firefox, there is no scroll bar, but the arrows function properly, so I can read to the right edge of the page. Now to find someone who knows IE11. Thanks again, for your reply.

Maybe you are looking for