Short commnds for page up and down

Hi,
very basic question but in a pc keyboard you have the Home button to press and it automatically goes to the top of the page, safari or document, does anyone know this or something similar on the mac keyboard?

same buttons do the same thing on mac keyboards. on laptop keyboards they may be combined with the arrow buttons and you need to hold the function button to get those actions. so fn+right arrow is the end button and fn+left arrow is the home button. that's how it is on my PB keyboard.

Similar Messages

  • How to write code for page up and page down buttons on alv screen?

    Hi,
    Page up and page down buttons are not working in general alv report. Thease buttons are in disable mode. But is stnd. transactions (tcode : fbl5n)  these are enabled and working properly, but we can't debug this with /h
    How to write code for page up and page down buttons on alv screen?

    Poonam,
    On doing the screen debugging it took me over to    Include LSTXWFCC ,kindly check the below code.
    module cc_display.
      fcode = sy-ucomm(4).
      case sy-ucomm(4).
        when 'P--'.
          perform cc_firstpage.
        when 'P-'.
          perform cc_prevpage.
        when 'P+'.
          perform cc_nextpage.
        when 'P++'.
          perform cc_lastpage.
        when 'EX--'.
          perform cc_firstcopy.
        when 'EX-'.
          perform cc_prevcopy.
        when 'EX+'.
          perform cc_nextcopy.
        when 'EX++'.
          perform cc_lastcopy.
    I guess it can give you some lead.
    K.Kiran.

  • Page up and down in a mailbox, the Clear key and Print Screen

    I have an Apple Pro keyboard ( the one with a numeric keypad on the right side) for an iMac and a wireless mouse. Using the keyboard is VERY confusing. There are many documents and lots of pages on the different key combinations to use for different functions but I could not find one clear document that explains what certain keys do and/or show how to accomplish certain functions...  I am a a very frustrated new Apple (formerly Windows) user astonished that I company that is supposedly delivering user friendly, easy to use products provides a keyboard that one cannot figure out.
    1. Page Up and Down in Mail
    I have some imported mailboxes with a few hundred Emails which I have to mark "read". I could use the Page Down functionality to quickly highlight all messages in a mailbox but could not locate anything that actually works. Apple's document at http://support.apple.com/kb/HT5636?viewlocale=en_US indicates that pressing 9 (with Num Lock off) provides Page Down. Num Lock appears to be the Clear key. When I tried to press Clear it deleted messages and no combination worked with 9 ...
    I tried all other suggestions from other discussions but nothing worked.
    2. The Clear key
    I'd appreciate an explanation of what this key is really supposed to do in different applications.
    3. Print Screen
    Apple's documentation tells me that on my specific keyboard I should use F14 to accomplish this. This doesn't work. It appears that one has to press 3 keys (shift-command-3) to accomplish this. What happened to the one key Prt-Scr key? Is there a key (or can one assign this function to an unused key) to make life a little less "sophisticated"?  Is there a way to know which keys are not assigned to any function?
    A pointer to an up-to-date document (which provides info that actually works) would be greatly appreciated.

    I have an Apple Pro keyboard ( the one with a numeric keypad on the right side) for an iMac and a wireless mouse. Using the keyboard is VERY confusing. There are many documents and lots of pages on the different key combinations to use for different functions but I could not find one clear document that explains what certain keys do and/or show how to accomplish certain functions...  I am a a very frustrated new Apple (formerly Windows) user astonished that I company that is supposedly delivering user friendly, easy to use products provides a keyboard that one cannot figure out.
    1. Page Up and Down in Mail
    I have some imported mailboxes with a few hundred Emails which I have to mark "read". I could use the Page Down functionality to quickly highlight all messages in a mailbox but could not locate anything that actually works. Apple's document at http://support.apple.com/kb/HT5636?viewlocale=en_US indicates that pressing 9 (with Num Lock off) provides Page Down. Num Lock appears to be the Clear key. When I tried to press Clear it deleted messages and no combination worked with 9 ...
    I tried all other suggestions from other discussions but nothing worked.
    2. The Clear key
    I'd appreciate an explanation of what this key is really supposed to do in different applications.
    3. Print Screen
    Apple's documentation tells me that on my specific keyboard I should use F14 to accomplish this. This doesn't work. It appears that one has to press 3 keys (shift-command-3) to accomplish this. What happened to the one key Prt-Scr key? Is there a key (or can one assign this function to an unused key) to make life a little less "sophisticated"?  Is there a way to know which keys are not assigned to any function?
    A pointer to an up-to-date document (which provides info that actually works) would be greatly appreciated.

  • MY page up and down key does not what its suppose to do but now instead it goes forward or back a web page

    Seems like since I installed the new Firefox my Page up and down key has stopped making my web pages go down or up but instead the page up key makes the web page go forward in history and the page down key makes it go back a webpage.

    " Is there anyway the apple or my service provider can help me with this? "
    No.
    "What is the point of the app if it only works when the phone is on? "
    The pont is to assist with locating a lost iphone.
    "Then it is only usefull within those first couple of days."
    Correct.  How would any device be tracked if it had no power?
    Very sorry for your situation, but there is nothing to do.
    Report it to the police and change your passwords.

  • Can I extend the slideshow horizontal in a straight line but not full page up and down?

    Can I extend the slideshow horizontal in a straight line across the page end to end, but not full page up and down?

    Hi
    Please check these videos for help :
    https://www.youtube.com/watch?v=BDgERSf2a5k
    https://www.youtube.com/watch?v=diUtfwFGI1w
    Thanks,
    Sanjit

  • Page up and down without using keyboard

    can any body tell me, how can I write the code for page up and page down in alv grid report without using keyboard.I have make a report(showing in alv grid formate) and I am using menu printer(se41) and gave P,P+,P-,P-- in function key.
    and call this function in report using pf-status. but i didnot get the result without keyboard.while using keyboard page up and page down it is working fine.

    Hi Rakesh,
                    This is the code for ur problem check it once.We have to use this code according to ur requirement ok..The compulsory condition is data is present in the internal table not in database table.If it is in database table move it to internal table first.And follow the below logic that will work fine 4 ur problem check it once.
    *Local Variables
      DATA: lv_temp  LIKE sy-tabix.
    CASE sy-ucomm.
    *Fetch the FIRST Line from the Internal Table.
        WHEN 'FIRS'.
          READ TABLE gt_data INTO wa INDEX 1.
          lv_temp = sy-tabix.
    *Fetch the NEXT Line from the Internal Table.
        WHEN 'NEXT'.
          lv_temp = lv_temp + 1.
          READ TABLE gt_data INTO wa INDEX lv_temp.
    *Fetch the PREVIOUS Line from the Internal Table.
        WHEN 'PREV'.
          lv_temp = lv_temp - 1.
          READ TABLE gt_data INTO wa INDEX lv_temp.
    *Fetch the LAST Line from the Internal Table.
        WHEN 'LAST'.
          READ TABLE gt_data INTO wa INDEX sy-tfill.
          lv_temp = sy-tfill.
    Award points if helpful.
    Kiran Kumar.G.A
                     Have a Nice Day..

  • Page Up and Down with space bar

    After I installed Safari 3.0.5, when I press the space bar typing this post, the web page goes down. I want to know if somebody else get the same problem, and how do I prevent that? or maybe is a new bug.
    With Safari 3.0.4 this keyboard shortcut works ok. (page up and down) but not when typing.
    Thanks,

    I have the same problem. Everytime i hit the spacebar in this text box, the browser tries to scroll down and looks like flashing.
    Is there any fix for this? It happens in every web page with text box (including the google search box).
    Thanks in advance.
    (I am using the safari version for Windows)

  • Special G/L transactions not defined for bills/exch.and down pmnts ERROR

    Dear Experts,
    I am trying to park document via F-63 - Invoice Parking - General  to park  down payments made to vendor using following details in initial screen for F-63:
    Posting Key_____29
    Account number _1000
    SGL Ind ________A
    after pressing enter key the system prompt error message that is:
    Special G/L transactions not defined for bills/exch.and down pmnts
    Message no. FP030
    Diagnosis
    You have selected a posting key with a special G/L indicator of type 'Bill of exchange', or 'Down payment'. Document parking is not defined for special G/L transactions of the type 'Bill of exchange' or 'Down payment'.
    System Response
    Document parking cannot be carried out.
    Procedure
    Select a different posting key or special G/L indicator. If the posting is a 'One-time posting' to a rent contract, select a different transaction type or post the document directly.
    HOW CAN I PARK DOWN PAYMENT DOCUMENT FOR VENDOR. KINDLY PROVIDE SUITABLE SOLUTION.
    REGARDS

    Dear,
    Your special G/L "A" is set as Down Payment/Down Payment request, this is what cause the error.
    To meet your requirement just go to FBKP select special G/L "A" enter your chart of accounts and go into properties, change
    Special G/L transaction types to Others from Payment/Down payment request.
    Advances can be created as Special G/L transaction types Others
    If parking is utmost required by you then according to me you should create two special G/L for Down Payment. New created should be used for parking and default by SAP you can use with functionality like F-47, F-48, F-54.
    System is stopping you because down payment functionality is provided exhaustively in SAP so you should follow that.
    Please analyze the process exhaustively and implement to smoothen your process.
    Regards,
    Chintan Joshi.

  • Special G/L transactions not defined for bills/exch.and down pmnts

    Dear Sapguru,
      When i am down payment parking through F-65, and giving special gl indictor.
    Error:---Special G/L transactions not defined for bills/exch.and down pmnts
    Message no. FP030
    Diagnosis
    You have selected a posting key with a special G/L indicator of type 'Bill of exchange', or 'Down payment'. Document parking is not defined for special G/L transactions of the type 'Bill of exchange' or 'Down payment'.
    System Response
    Document parking cannot be carried out.
    Procedure
    Select a different posting key or special G/L indicator. If the posting is a 'One-time posting' to a rent contract, select a different transaction type or post the document directly.
    Thanks.
    Dharma.

    Did you define spec. GL through OBXR (customers) or OBYR (vendors)?
    regards

  • Page Up and Down keys won't work - have tried everything

    My Page Up and Down keys won't work. I've tried hitting F7, the Fn key, checked that the "Always use cursor keys to navigate" box is not selected in the Advanced Options tab and made sure that the "Use autoscrolling" tab is selected. I tried uninstalling and re-installing Firefox, tried hitting buttons F1 through to F12 and then checked that accessibility.warn_on_browsewithcaret is set to 'true'.
    It also won't work in Internet Explorer - I have no idea what else to try. My Up/Down arrows are working, just not the Page Up/Page Down buttons. Please help, this is driving me nuts. It's only just started happening; I've never had a problem with it before!

    What is the value of the pref [http://kb.mozillazine.org/accessibility.browsewithcaret accessibility.browsewithcaret] on the about:config page?
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • HT1338 i have just purchased a new mac book air and have updated to mavericks after being told in store that iWork was free as i need to use it for uni work and it hasn't come on and is saying i will have to pay £13.99 for pages keynote and numbers

    i have just purchased a new macbook air and installed mavericks but havent recived iwork for free and i need it to do uni work on
    in the store they said nce mavericks was installed this should come free with it how do i go about getting it as in app store it is still charging me 

    Apple - Up-to-Date Program for Pages, Numbers, and Keynote

  • XI - Can I Add Page Up and Down Buttons Back?

    I just updated to XI and the page up and down buttons that used to be on the toolbar are gone.  Is there a way to add them back?
    Thank you.

    You can customize the tool bar like any other program. You are given a standard basic set of tool bar buttons and you can customize it as needed.
    Customizing Toolbars in Acrobat X
    Enterprise Toolbar Customization in Acrobat and Reader X

  • I have iWork and Ilife, do I have to purchase the iOS for pages, numbers, and keynote too

    I am post Mobile Me and I so do not get this icloud.  I just upgraded my iphoto and my iwork is the latest version.  Do I need to purchase the ios for pages, keynote and numbers too... 

    Yes.
    The apps have to be installed on the Mac and iOS devices in order to open and moodify the documents.
    Why purchase again? iWork apps for Mac OS X are not the same as iWork apps optimized for iOS devices. Two different operating systems.

  • I got the new update for my macbook air and know it is saying that i have to pay for pages, numbers, and keynote and it said that it was free before i did the update

    I got the new update for my macbook air and know it is saying that i have to pay for pages, numbers, and keynote and it said that it was free before i did the update.Can somebody please help... I need pages for a school report.

    If you had the previous version of those apps on your machine then the upgrade is free.
    If you didn't have them installed you must purchase them.

  • Will 128gb of ssd be enough for pages, numbers and keynote documents?

    I am going to be buying the MacBook Pro 13" with retina display in the next month or so and I was just wondering whether the 128gb ssd that it has will be enough for Pages, Numbers and Keynote documents. There will be about 30-40 documents on each of those apps. If I do need the extra space I do have the money for the next size up (256gb). On the MacBook I will also have photos on iPhoto that I will be editing. Thanks

    You won't have any problem with that amount of documents, unless they are very heavy.
    128 GB are enough for most users unless you need to store a lot of files. Respecting to photos, it depends on the amount of photos you want to store, so you will have to check this.
    If you get a MacBook Pro with Retina display with 128 GB and you see that you haven't got enough storage, you can return it during the first 14 days of use and get one with 256 GB. Another option is to get an external drive

Maybe you are looking for

  • Error while delibvering a report using FTP

    Hi I am trying to publish my report on a shared folder by using FTP server delivery. When the schedule gets run I can see following error displayed in the Publisher: java.io.IOException: Invalid status of current connection: 0      at oracle.apps.xdo

  • How to get the position of a selected cell in a table without using the mouse event?

    Dear All,     I have a question about table:After clicking the cell of a table, the cell is into the edit status. How to know the row number and column number of the cell, when I click a button?    The link below is using the mouse down event:    htt

  • SAP XI 2 BI Integration with ECC 6.0

    Dear all, we are planning to do XI integration between ECC 6.0 to BI 1) How to Get the BI Standard data from ECC 6.0? 2)We are planning to integrate Standard BI reports with ECC 6 0 through XI. Please sugget the scenario for integration between ECC 6

  • Tough problem with re-install

    hello Gang - I'm trying to re-install 10.3.2 on a dual 1.8 GHz g5 powerpc. When I try to boot up from the install disk, the system hangs up right after the grey apple loading page and the fan kicks to turbo overdrive. Is there a way to overpower the

  • Need table name for email id

    Hi experts, I got employee id BNAME from table crmd_orderadm_i. Based on that field i need to get the Email ID for that user. Can anyone please tell me the table where it is stored in. regards, venkatesh.