ECC6 - SD - Transaction VA41 - scroll bar moves down

Hi,
since the migration of 4.7 to ECC6, we see a problem of display on VA41 transaction(Dympro 4001). We would like to know if it is a normal functioning or a an anomaly.
in ECC 6 :
As soon as we fill a datum on the screen (item overwiew), the scroll bar comes down automatically and move to the bottom, on the last item. The focus moves under the last item.
in 4,7 :  The focus moves under the last item and the scroll bar don't move.
Is this behaviour OK in ECC6 ?
thanks

Similar Messages

  • Change the amout a scroll bar moves when user uses the mouse wheel?

    hi,
    i have a JScrollPane, and when a user uses the "wheel" on the mouse, it seems to move up/down 1 line at a time...i would like it to scroll faster basically...so that when the "wheel", the scroll bars move up/down like 5 lines at a time....is there some way to set this value, or how can i do it?
    thanks

    It looks like it behaves just like if the user had clicked the up or down arrow on the scrollbar, so
    I would suggest setting the unit increment on the vertical scroll bar to be 5X its current value. Of
    course, this would also increase the amount that gets scrolled when the user clicks on the up
    or down arrow. If you don't want that, you'd need to somehow only change the increment on a
    mouse wheel event, do the scroll, then change it back. My guess is that you'll need to provide
    your own look and feel class to do that.
    : jay

  • What happens when the scroll bar moves to the bottom by itself?

    When I am browsing, the scroll bar moves downward all of sudden to the bottom of the arrow. When you click on the scroll bar to move the page back to the top, it automatically moves back the scroll bar back to the bottom of the page. I have tried reloading the page, going forwards and backwards, and refreshing the page but it still does this problem. The only way to fix this problem is you have to close Firefox and reopen the browser. Is there a solution?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Horizontal scroll bar moves with page up/down

    I'm new at this and apologize if I don't have the right forum, but can't find any reference to my problem anywhere. A month or so ago the horizontal scroll bar at the bottom of the screen started moving up or down with the page as I used the vertical scroll bar to page up or down. The bar partly disintegrates if I click on it, but mostly remains in place and obscures text on that line. If there is more than one page I can make the bar disappear by scrolling the to the next page, and then back. This happens only when I'm on the internet, and appears in news pages ( e.g. NY Times, BBC) and on my e-mails (I use Hotmail). I have a Mac mini, 1.66 GHz, OS 10.4.11, all other updates offered by Apple. I'm sure this is not a Safari problem, and my searches for Apple viruses, Trojans, Worms, has found nothing about this (there are discussions about vertical scrolling, but these don't seem to relate to my problem). So can anyone tell me what this is and how to get rid of it? Thanks for any help. TJ Wont

    I've got the same problem. It started when the BBC introduced adverts onto their News website. As the page loads an advert (or sometimes whitespace) appears between the tab and the BBC News banner. This is then shifted to the right hand side when the page fully loads.
    I suspect that there's some fancy DHTML going on that Safari isn't rendering properly.
    Problem doesn't occur if the Safari window is maximised to full screen width.

  • Scroll bar moves when clicked on

    Hello.  I have a custom scroll bar that was made using AS2.  It works fine except that when you click on the bar and move it, the image shifts slightly and then doesn't line up correctly.  I don't know what's causing it to shift.  All registration points are in the upper left hand corner.  I was really hoping someone could help me with this.  Here is the code:
    txt.setMask(mask)
    scrollbar.onMouseDown = function() {
        if (this.hitTest(_root._xmouse, _root._ymouse) && txt._height>mask._height) {
            this.startDrag(false, scrollbarBG._x, scrollbarBG._y, scrollbarBG._x, scrollbarBG._height-this._height)
            txt.onEnterFrame = scrollThumbs;
            dragging = true
    scrollbar.onMouseUp = function() {
        stopDrag()
        dragging = false
        delete this.onEnterFrame;
    function scrollThumbs() {
        var funkyVar = -this._parent.scrollbar._y*(((this._height-this._parent.scrollbar._height)/(this._parent. scrollbarBG._height-this._parent.scrollbar._height))-1)
        this.Y = (funkyVar-this._y)*.2;
        this._y += this.Y;
        if(Math.abs(funkyVar-this._y)<1 && !dragging){
            delete this.onEnterFrame

    Thank you very much for the code.  After what you said, though, I went to find different code.  I used kirupa this time.  I just finished testing it out.  I typed in the code and it went a lot smoother.  However, the scroll bar top is STILL shifting to the side.  So it must mean it's not the code that is messing up?  All the registration points are in the upper left hand corner.  Should the points be somewhere else to stop the shifting?  Here's the code:
    scrolling = function () {
    var scrollHeight:Number = scrollTrack._height;
    var contentHeight:Number = contentMain._height;
    var scrollFaceHeight:Number = scrollFace._height;
    var maskHeight:Number = maskedView._height;
    var initPosition:Number = scrollFace._y=scrollTrack._y;
    var initContentPos:Number = contentMain._y;
    var finalContentPos:Number = maskHeight-contentHeight+initContentPos;
    var left:Number = scrollTrack._x;
    var top:Number = scrollTrack._y;
    var right:Number = scrollTrack._x;
    var bottom:Number = scrollTrack._height-scrollFaceHeight+scrollTrack._y;
    var dy:Number = 0;
    var speed:Number = 10;
    var moveVal:Number = (contentHeight-maskHeight)/(scrollHeight-scrollFaceHeight);
    scrollFace.onPress = function() {
    var currPos:Number = this._y;
    startDrag(this, false, left, top, right, bottom);
    this.onMouseMove = function() {
    dy = Math.abs(initPosition-this._y);
    contentMain._y = Math.round(dy*-1*moveVal+initContentPos);
    scrollFace.onMouseUp = function() {
    stopDrag();
    delete this.onMouseMove;
    btnUp.onPress = function() {
    this.onEnterFrame = function() {
    if (contentMain._y+speed<maskedView._y) {
    if (scrollFace._y<=top) {
    scrollFace._y = top;
    } else {
    scrollFace._y -= speed/moveVal;
    contentMain._y += speed;
    } else {
    scrollFace._y = top;
    contentMain._y = maskedView._y;
    delete this.onEnterFrame;
    btnUp.onDragOut = function() {
    delete this.onEnterFrame;
    btnUp.onRollOut = function() {
    delete this.onEnterFrame;
    btnDown.onPress = function() {
    this.onEnterFrame = function() {
    if (contentMain._y-speed>finalContentPos) {
    if (scrollFace._y>=bottom) {
    scrollFace._y = bottom;
    } else {
    scrollFace._y += speed/moveVal;
    contentMain._y -= speed;
    } else {
    scrollFace._y = bottom;
    contentMain._y = finalContentPos;
    delete this.onEnterFrame;
    btnDown.onRelease = function() {
    delete this.onEnterFrame;
    btnDown.onDragOut = function() {
    delete this.onEnterFrame;
    if (contentHeight<maskHeight) {
    scrollFace._visible = false;
    btnUp.enabled = false;
    btnDown.enabled = false;
    } else {
    scrollFace._visible = true;
    btnUp.enabled = true;
    btnDown.enabled = true;
    scrolling();

  • BP Transaction Horizontal scroll bar is not working

    Hi,
    Horizontal Scroll Bar Not working for Marketing Attribute after Upgradation from Crm 6.0 to EHP 7.02
    Scroll bar need to be Enabled or active Please suggest any OSS Note or any Idea in doing this .Please help me out
    Thanks & Regards
    Srinivas

    Hello,
    Not sure to understand the issue here. If you are using CRM7 EHP2, you should user WebUI/IC to manage BP. SAP GUI is no longer supported.
    Best regards,
    Sylvain AGUETTAZ

  • How to create LSMW for a transaction having scroll bar

    Hi all,
    I am trying to create an LSMW for MP)! transaction for Uploading AMPL (Approved Manufacturer Parts list data) data.
    For this LSMW is not working fine when i need to upload more number of records. Suggest me some way to solve it out,Also provide me some code samples and process if it can be handled with BDC.
    Thanks,
    Pavan.

    you can solve it with bdc:
    e.g. a table control contains only 10 entries , you've to program the dynpro-change ( in german "Bildwechsel")
    with sth like this:
    ERG = BUZEI MOD 10 .
      IF ERG = 1.
    Dynpro darf nur alle 10 Zeilen prozessiert werden -
        PERFORM BDC_DYNPRO USING 'SAPMF10B' '0150'.             "ins
      ENDIF.
    add 1 to buzei.
    A.

  • Scroll bar moves on asynchronous postback in IE 11

    Hi all,
    I have an .aspx page with a number of user controls, each of which has a GridView control within an UpdatePanel.  These UpdatePanels initiate asynchronous postbacks to update the GridViews.
    With IE9, and with the
    MaintainScrollPositionOnPostback
    property set to true, the main .aspx page would not scroll when the asynchronous postbacks occurred.  Now with IE11 the page scrolls, usually to the top, but not always.  I get similar behavior with Chrome.
    I am also setting the focus on a control within the grids.  I think this is the immediate cause of the problem, as the problem goes away if the code for the focus is removed.  But this worked in IE9.
    I have tried some of the JavaScript solutions found online but to no effect.  We are using Visual Studio 2013 with C# and Windows 7.
    Thanks,
    Eric Lindberg

    Hi,
    Compatibility changes in IE11
    doScroll has been removed. use scrollTop or scrollLeft instead. If your project uses a shim (jquery etc) it may have a wrapper method.
    to debug your asp web page scripts, f12>Debug tab, select "Break on all errors" from the dropdown and return to your web page and refresh it (without closing the developer tool). Include any error messages with your questions or if possible
    a link to your website.
    Regards.
    Rob^_^

  • Why does my hotmail scroll bar down arrow turn into a diagonal resize instead?

    With Firefox 5 in my hotmail account, when I try to use the down arrow on the scroll bar the down arrow turns into a diagonal resize instead. The diagonal resize works, but it won't let me use the down arrow to scroll down. The scroll up arrow still works okay. This doesn't happen when I use Internet Explorer with my hotmail account.

    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Check and tell if its working.

  • How can I get the vertical scroll bar in firefox for mac to operate more smoothly?

    This scroll bar issue has been a real pain for awhile, though it seemed to be better for a period of time and now has grown much worse again. I'm using Firefox 22.0. I try to grasp the blue scroll bar (right side placement) to move it up or down for pages that require scrolling to view, and it is very hard to hold and move the bar, plus it often bogs down as the colored wheel shows up as if the software is trying to process the action. It's very frustrating. I'm set to "smooth scrolling" in the Firefox settings, but that doesn't help. Is there a way to fix this and make the scroll bar move quickly and smoothly in Firefox for Mac?

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Scroll bar on editor not working

    I recently upgraded to phtoshop elments 11.0 to 13.0
    In the editor mode I cannot use the scroll bar. The scroll bar works fine in the orgnizaer mode. I have tried three different mouses and there is no difference.
    Tom Fitch, San Antonio Texas

    I am using Windows 7 Professional
    In the organizer portion the scroll bar moves. When I put my  mouse or
    arrow on the scroll bar and drag it then of course I move through the  different
    rows of folders or rows of pictures once in the photo  bin.
    It was doing it with Photoshop Elements 11.0 and I thought  13.0 might fix
    the problem and the scroll bar did move on the first try but not  since then.
    When I try and load the photo bin and I am choosing the right  folder to
    load the scroll bar just does not move. I can select the right folder  by
    using my up and down arrow or the page up and down and then click on the  right
    folder and then it loads.
    Once I get the right folder of pictures loaded and  once I finish the first
    row of pictures I cannot use my mouse and  arrow to drag the scroll bar
    down to get to the next row of pictures. I can  place my arrow on my mouse
    below the scroll bar and got to the next row but I  usually get only half the
    picture and sometimes only 1/4 of it but I can usually  get it loaded up and
    edit the pictures and move on the next picture but it is  very slow and
    frustrating.
    Any help would be appreciated.
    I protested to an adobe supervisor and I got an e-mail and  somebody is
    supposed to call me tomorrow so hopefully then can log on to my  computer and
    see what I am talking about.
    Sound like something got corruped in the editor mode only. I  tried 3
    different mouses and even the computer mouse and no  difference.
    Tom Fitch
    In a message dated 12/17/2014 5:05:37 P.M. Central Standard Time, 
    [email protected] writes:
    scroll  bar on editor not working
    created  by RKelly_ (https://forums.adobe.com/people/R_Kelly)  in 
    Photoshop Elements - View the full  discussion
    (https://forums.adobe.com/message/7024909#7024909)

  • Mobile table scroll bar issue

    Hello All,
    I have used sap.m.Table on my mobile app page and I have set growingScrollToLoad to true.
    Everytime I scroll the page down, table loads more and more data, but the scroll bar position moves to the top automatically.
    This is very annoying because after getting bigger set of data, my scroller moves back on top and I have to move it all the way down to where I was.
    Any ideas as to why the scroll bar moves up automatically and how to prevent it?
    Using UI5 1.18
    -Rutika

    Hi Frank,
    I have found the answer. Here it is for anyone who would ever have or meet the same issue.
    In Jsf table property inspector
    I binded my table to my java bean (I called it myRichTable).
    I added the First and Last buttons as partial triggers of my table
    In java bean
    In my last() method I encluded the following line of code:  myRichTable.setDisplayRow(myRichTable.DISPLAY_ROW_LAST).
    And in the first():  myRichTable.setDisplayRow(myRichTable.DISPLAY_ROW_FIRST);
    Thanks!

  • Hi ,thereCaptivate scroll bars?

    Hi all, really hoping you could help.
    A real new guy here so please forgive me if all my questions are old ground.
    I create graphics for the film industry.
    Captivate is nearly the answer to my prayers in that i can create interfaces and the like for actors to actually use.
    HOWEVER, sometimes i will simulate that actor looking at a website and need the page to scroll up and down.
    Now i am still quite new to captivate, but after searching online i cannot seem to find how to implement scroll bars or even workarounds.
    I tried to have a static image (png) then on button click it would go to a movie clip of the scroll bar going down  then hold on the next static image .
    (now even the image quality issues aside, encoding of the MP4 does not give the same quality as png)
    I cannot get it to play the movie without a white flash before playing and it then goes back to the beginning of the movie clip instead of holding (button is on the page to go to next image.)
    I have been tearing my hair out so any help in this regard is really appreciated.
    As i know these might be newbie questions if anyone has tutorials i should look  at for workarounds or even how to get movies to play and hold i will appreciate it.
    And finally, IS one solution for the movie quality issue is for me to render out a PNG sequence (my workflow is Photoshop  then After Effects then Captivate.)
    Can i use an image sequence for a movie in captivate?
    Here are some samples of stuff I've worked on , i hope it explains what I'm asking better.

    Yeah I totally agree.  It is sometimes way overdone and unrealistic. Some
    of the reasons is the directors want stuff to be sexy even at the sake of
    realisim and other reasons are copyright issues.
    I am unfortunately goverend by scripts and a 2 line sentence will say
    something like... He hacks the computer.
    So to have him sit at a computer actually hacking using windows just looks
    boring. ..  even if more realistic.they want frantic activity and visually
    exciting hacking....
    Sometimes other briefs allow me to simulate a sort of realism. .. but for
    the computer illiterate viewer I need to help tell the story graphically...
    If I had a trace running via ip's ... alot of people wouldn't understand
    what the guy is doing... but if I have a line emanating from his location
    bouncing off various points around the globe..well it looks better and more
    people will undertand what's happening.
    Copyright. Generally. .. unless we are sponsored in some way... We can't
    just use windows.  Mac. Mozilla.  Google earth etc without copyright
    issues. I don't know how it works..  The clearance guys do that.
    Even desktop icons are emulated.
    I try to emulate stuff so viewers recognise a similar os for instance...
    but everything has to go through clearance.
    For example..  If I want to use Google earth maps to do a satellite pov I
    have to by law have the Google maps logo on the screen. .. not good when
    you are simulating a spy agency or so.
    Sorry for spelling an the like... on my phone

  • Scroll bar keeps moving out of sight

    I open fire fox and then when I open one of my accounts the scroll bars moves out of sight on the screen and I can't scroll down The Even when I use the zoom bar. The fire fox screen is large than my monitor and I have a large monitor. When I try to go into Face Book there is no way to scroll down the page to see when is farther down the page.

    It is possible that the screen is too wide or too high and that the scroll bars fall off.
    * Use Restore or Maximize in the right-click context menu of the Taskbar icon to set focus to the Firefox application if you do not see the Firefox window.
    * Open the system menu of that Firefox window via Alt+Space and see if you can move and resize that window.
    If that works then close Firefox (File > Exit/Quit) to save that setting.
    See also:
    * http://kb.mozillazine.org/Resizing_oversize_window
    If the above didn't help then see:
    * http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Moving scroll bar

    I open my illustrator file (version CS3), put my mouse/select tool over the graphics/page and the scroll bar moves itself (and my graphics) quickly across the whole width of the page to the left. When I remove my mouse arrow out of the page and on to the desktop it stops scrolling. I have unplugged the keyboard, mouse and wacom tablet and tried them all separately and the fault happens with eveything. I am unable to work on my graphics as it just flies off the page every time I go into it.
    Does this sound familiar to anyone - any ideas?

    keystroke "end" using command down
    Since you quote "end" this will send the specific keys 'e', 'n' and 'd' in sucession, each with the command key - i.e. Command-e, Command-n, Command-D. No wonder it doesn't work
    What you need to do is use the specific key codes for the arrow keys since you can't type them directly into your script:
    tell application "TextExit" to activate
    tell application "System Events"
    key code 125 using command down
    end tell
    123 - left arrow
    124 - right arrow
    125 - down arrow
    126 - up arrow

Maybe you are looking for

  • Problem in Cancel of Production Order

    Hi Gurus, If I am doing cacelation of Production Order the system gives the error message "CO Account Assignments have different profit centers" Error No.BK134. How can we rectify. Please suggest. Regards Ajit

  • I have 2 macbooks, and my thunderbolt display won't work on one. HELP!

    I have to Macbook Pros. The one for my work is connected to my Thunderbolt. When I tried to connect my personal one to watch a movie, it won't connect. I tried "detect displays" and "gather displays" - nothing. HELP!! Dana

  • Turning off photo stream or lock it out..

    I recall in previous version of the Apple TV software you need to sign in to iCloud/.Me to share and see photos through Apple TV. That's no longer the case it just lets you in without asking for a password even when signing out. Something of a privac

  • U44M1P7 error fix without re-installing? Help please...

    I just bought a new iMac and migrated all my stuff from the old machine. I've spent hours re-entering passwords etc. to get my 3d party plugins going. Now, after trying to simply upgrade Photoshop I get this error and I'm told to uninstall then re-in

  • Adobe Encore CS6 loading problem

    Every time i leave my app and come right back into working on my project, a few seconds in my cursors gives me the apple loading symbol. Why does this happen? it slows down the process so much. As long as im in the app working theres no problem but t