What are Numeric Keypad Function keys F13-19?

I'm new to Apple wired numeric keyboard. Love it...but want to use the function keys F13-19.
Haven't been able to find doc or discussion-- please can anyone point me in the right direction?
Thanks!

Hello:
Function keys have to be programmed....before you ask, I do not do that or know how to do that.  You can change the way function keys behave:
http://support.apple.com/kb/PH11378
Barry

Similar Messages

  • What are all the Function Keys for on my new KU-0841?

    I just got an HP  KU-0841 Keyboard and want to know what the Function Keys are for F1-F12.
    Where can I learn about how to use them? Thanks

    Hi,
    Depending on application, or game. For example on one application which I use daily
    F1 =  Help (nearly all applications use this),
    F2 = Slpit screen
    F3 = End
    F4 = Expand
    F5 = Find / Re Find
    F6 = Change
    F7 = Up
    F8 = Down
    F9 = Swap
    F10 = Left (one screen)
    F11 = Right (one screen)
    F12 = Cancel
    Again, DEPENDING ON applicantion, you have to learn from application. Some applications allow you to re-program those keys.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Keyboard function keys F13-F19 on the numeric keyboard

    I have the Apple numeric keyboard. Is there a possibility to assign functions to the function keys F13-F19? Thanks for any help, but please don't tell me to write a script:) I need rather simple solutions...

    Thanks for the reply. But this does not seem to be possible. Under "keyboard shortcuts" (in my case in German "Tastaturkurzbefehle") there is no helpful option that allows to set up commands for the additional function keys (under OS X7.2).

  • What are the standard functions in XI ?

    What are the standard functions in XI ?

    Hi,
    The target field mapping is possible by using below typs of functions
    1. Standard functions
    2. Runtime procedure
    3. User Defined functions
    Standard functions are the APIs provided in Graphical mapping to process the values of the fields used for target field mapping.
    Technically all these values are trated as string thus all standard functions expect strings as input argument and string as an export aurgument
    Please find here with you more details about it at below link
    http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/frameset.htm
    2. Runtime procedure
    http://help.sap.com/saphelp_nw04/helpdata/en/3d/24e15bf9d79243b45d49b13b03de8f/content.htm
    3. User Defined functions
    http://help.sap.com/saphelp_nw04/helpdata/en/22/e127f28b572243b4324879c6bf05a0/content.htm
    Thanks
    Swarup

  • What are the different functions used in sap script?

    Hi,
    What are the different functions used in sap script? What are the parameters used in each Function?
    Regards,
    Mahesh

    he print program is used to print forms. The program retieves the necesary data from datbase tables, defines the order of in which text elements are printed, chooses a form for printing and selects an output device and print options.
    Function modules in a printprogram:
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed, is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    Structure of a print program
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    FORM      Name of the form
    DEVICE      
    PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS      Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT      Returns status information and print/fax parameters after the form has been printed. RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT      Specifies which textelement is printed
    WINDOW      Specifies which window is printed
    TYPE      Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION      Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    The print program
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'INTRODUCTION'
              FUNCTION                 = 'SET'
              TYPE                     = 'BODY'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'ITEM_HEADER'
              FUNCTION                 = 'SET'
              TYPE                     = 'BODY'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'ITEM_HEADER'
              FUNCTION                 = 'SET'
              TYPE                     = 'TOP'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
       CALL FUNCTION 'WRITE_FORM'
            EXPORTING
                 ELEMENT               = 'ITEM_LINE'
                 FUNCTION              = 'SET'
                 TYPE                  = 'BODY'
                 WINDOW                = 'MAIN'
           EXCEPTIONS
                OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'ITEM_HEADER'
              FUNCTION                 = 'DELETE'
              TYPE                     = 'TOP'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'CLOSING_REMARK'
              FUNCTION                 = 'SET'
              TYPE                          = 'BODY'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
    IMPORTING
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
      EXPORTING
        command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
      EXPORTING
        COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
      EXPORTING
        TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
      EXPORTING
        COMMAND = 'ENDPROTECT'.

  • What are the control functions of Suitability and setup type key in work center?

    Hi all,
    Can any1 plz tell me what is suitability and setup type key in workcenter default values tab?
    what are the functions controlled by these keys?

    Hello,
    Control Key in Defaut value keys screen is mainly for defining how the work center will be used in routings.
    Almost in all the PP we define same Control key to the work center as well in the routing.
    For example in work center control Key PP01 is used to define Routings/Internal proc. activities. When we go to the routing screen even if we do not see our components, work centers or control key we have to manually enter these details ans here control Key will remain the same as it was in Work center.
    No. of individual capacity defines how many machines are there of the same type in the work center. E.g if I have 5 CNC machines then I will make One work center and in capacity screen I will put 5 as No. of individual Capacity.
    Regards,
    Piyush

  • Lost numerical keypad function

    During the middle of a long photo editing session the num lock light went out and the numeric keypad ceased to function. Pushing num lock didn't change anything. Removed all other USB devices, tried all the USB ports, restarted, reinstalled OS. Nothing worked. Replaced keyboard with new one and repeated all of the above. Still nothing. Any suggestions?

    Are "mouse keys" on?
    Try this:
    System Preferences - Universal Access - "Mouse" tab - mouse keys: off
    worked for me.

  • What happens to the function keys when i unplug the extended keyboard?

    i use my laptop (12 function keys) with a wired apple aluminum extended keyboard (19 function keys). i assigned a few functions (screen shots mostly) to the upper function keys on the keyboard... f16-f19. but when i unplug the keyboard i'm not sure how to get those functions on the laptop keyboard.
    what happens to those functions when the keyboard is unplugged? is there a way to map those functions to the keyboard so that they are re-assigned when it's unplugged?

    wilyliang wrote:
    question still remains: do f16, etc., exist or can they be re-invented once the USB keyboard is removed (besides having to re-map the shortcuts each time)?
    I haven't found a way, though there might be.
    or even: is it possible to assign two different key combos/function keys to a single command/shortcut?
    Now that depends on the application that's assigning the shortcuts. Some Microsoft and Adobe apps allow multiple shortcuts per function, I've taken advantage of those a few times myself. But cheaper apps often cut you off at one shortcut.

  • Function Key F13

    For years I've only used Shift/F13 for an Action in Photoshop (CS2) -- rotate 90 degrees anticlockwise. Today, F13, with or without Shift, suddenly takes a screenshot and puts .png files on my desktop. I have all Keystrokes switched off in System Prefs, and I've now even trashed Grab (I use Snapz Pro X or Screenflick anyway). I've repaired the Preferences, run TechTool Pro 4 over my discs, and restarted. Nothing makes any difference: F13 still takes a screenshot. What could make my iMac suddenly decide to do this?! BTW, I use a Logitech S530 cordless keyboard and mouse. I've added no new software, and haven't changed anything. NOTHING is set to use F13 apart from Photoshop. Can anyone help, please?

    @Dave -
    Back to your original problem with your S 530 Mac Logitech Keyboard (and mouse combo - but I use a trackball and usually forget about that part) anyway....
    I have primarily stuck with Tiger since the release of Leopard. Leopard has major issues. For everything good and new and innovative - there are just as many bad things with it. Otherwise Apple probably wouldn't have announced that Snow Leopard (10.6) is to be a Stability upgrade.
    Anyway - I'm piping my 2 cents in as I have had the same problem recently.
    I hvae had a primary install of Tiger with the Logitech S 530 Cordless White Mac Keyboard. It's a blast and I absolutely love the key response on it.
    I also had a copy of Leopard running from an external FireWire Drive - mostly to check it out and wait for stuff to get Leopard compatible. Except that Leopard has proven to be problematic at best.
    Was having this same exact problem on my FW Leo install. Except that I typically Map the Dashboard launch to F13. I was chalking the "forced Screenshot" up to yet more Leo issues. At this point I think it's a glitch in Logitech LCC software.
    Recently my HD died inside my computer. Took it apart and upgraded the drive. Have spent the past week rebuilding and re-installing a fresh system of sorts.
    This time out I decided to run Partitions - 'cause I still use Tiger for a few things and switching back and forth is no biggie. So I have Tiger on one Partition and Leo on a 2nd.
    Runnin the latest 2.6 LCC for the S530 I think is the problem. After the OS install the first thing I always do is go thru and set User Prefs and settings throughout the OS. Then start installing 3rd party add-ons like LCC or Unsanity's Haxies or Growl etc... Well Dashboard via F13 was running just fine while I was tweaking and installing stuff. As I was jumping to it to monitor bandwidth and system processes via iStat Pro and also checking the weather for tomorrow.
    The last thing I installed was LCC 2.6. Didn't think anything about it - went on doing other stuff and then needed to jump to Dashboard for 5 seconds. But no Dashboard - I hear a camera sound coming from my speakers. I try again and Screenshot after Screenshot ladning on the Desktop. I was doing a bunch of installs - not sure in what order - and decided to uninstall one at a time starting with LCC 2.6.
    Then Test everything after each single uninstall. Sure enough - if I didn't regain accessing Dashboard via F13 as soon as I uninstalled LCC 2.6.
    I went out to Logitech's website and dug around - not very organized and couldn not find the Product Page for the s530 within their site without going to Google and searching back into Logitech. Nobody specifically touched on the F13 Key issue - but Logitech posted that they are aware of issues pertaining to LCC and Leopard - even though they say that LCC v2.3.1 is compatible. Maybe it just barely functions. In between those 2 versions is 2.4. I dug around some more and found a copy of it and have installed it - but have yet to restart my computer to test if it works and maybe something Logitech tweaked in 2.6 broke.
    I don't think this is a direct Apple problem - other than the fact that Apple tends to change and move things around within the OS from one version to the next Which tends to disrupt 3rd party add-ons. Then the 3rd parties have to go back and tweak their stuff to accommodate the new OS "design".
    I'll post something after I test v2.4.
    PS if you uninstall the LCC you can use your keyboard just fine without it and like I said F-key mapping is regained. The Volume controls also work (up - down - mute). The Power Key works. Also the Play Controls (prev - next - play/ pause).
    The Custom Mapped Keys don't work tho - Home - eMail - Spotlight - iTunes and iPhoto launch buttons.

  • WHAT ARE THE UPDATED FUNCTION MODULES

    Hi Friends,
    Can anybody explain me about UPDATED FUNCTION MODULES (types of function modules)

    Hi
    Update Function Module
    Unlike transactions and executable programs, dialog modules do not start a new SAP LUW. Calls to update-task function modules from a dialog module use the same update key as the ones in the calling program. The result is that calls to update function modules from a dialog module are executed only if a COMMIT WORK statement occurs in the calling program.
    If you place a COMMIT WORK in a dialog module, it does commit changes to the database (for example, with UPDATE).However, it does not start the update task. The function modules are not actually executed until a COMMIT WORK statement occurs in the calling program.
    If you use dialog modules, try to avoid including calls to update function modules in subroutines called with PERFORM ON COMMIT. In general, any occurrence of PERFORM ON COMMIT(with or without update-task function calls) in a dialog module can be problematic.
    This is because dialog modules have their own roll area, which disappears when the module finishes. Consequently, all local data (including data used for parameter values when calling an update function module) disappears as soon as the commit in the main program is reached.
    If you must use this method in a dialog module (i.e. include the call to an update-task function in a subroutine), you must ensure that the values of the actual parameters still exist when the update-task function actually runs. To do this, you can store the required values with EXPORT TO MEMORY and then import them back into the main program (IMPORT FROM MEMORY) before the COMMIT WORK statement
    Creating Update Function Modules
    To create a function module, you first need to start the Function Builder. Choose Tools ® ABAP Workbench, Function Builder. For more information about creating function modules, refer to the ABAP Workbench Tools documentation.
    To be able to call a function module in an update work process, you must flag it in the Function Builder. When you create the function module, set the Process Type attribute to one of the following values:
    Update with immediate start
    Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions can be restarted by the update task in case of errors.
    Update w. imm. start, no restart
    Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions may not be restarted by the update task.
    Update with delayed start
    Set this option for low priority ("V2") functions that run in their own update transactions. These functions can be restarted by the update task in case of errors.
    To display the attributes screen in the Function Builder, choose Goto ® Administration.
    Defining the Interface
    Function modules that run in the update task have a limited interface:
    Result parameters or exceptions are not allowed since update-task function modules cannot report on their results.
    You must specify input parameters and tables with reference fields or reference structures defined in the ABAP Dictionary.
    http://help.sap.com/saphelp_nw70/helpdata/en/41/7af4daa79e11d1950f0000e82de14a/frameset.htm
    Regards,
    Harish

  • Any way to get the numeric keypad functionality back on the newest MacBook?

    Hi all -
    I just bought a MacBook Pro and was dismayed to find they had taken away the "number lock" option that turned the right hand into a keypad (I hadn't even thought to check this in the specs - never occurred to me they'd get rid of it). I know I could buy a separate plug-in keypad, but that really seems unnecessary when I'm perfectly accustomed to using half my laptop keyboard as a keypad. Obviously there isn't an easy way to get this back, but is there a complicated option? Remapping some fancy combination of keys as a "number lock"?
    Thanks

    You can use a USB attached one.
    Check out the new remodeled MacOSG website! 24-hour Apple-related news & support.
     MacOSG: An Apple User Group  iTunes: MacOSG Podcast  Follow us on Twitter: MacOSG

  • What are the code completion keys in JDeveloper on Mac?

    Does anybody know which key combinations to use for code completion in the Java editor in JDeveloper on a Mac?

    I found out myself. The default key combination (<ctrl>+ space) does not work on my Mac, it pops-up the menu of VMWare Fusion.
    So I assigned another key combination under Preferences->Shortcut Keys. The auto-complete commands to be re-asigned are "Completion Insight" and "Smart Completion Insight".

  • What are doing oidldap functions ?

    Hi Everybody.
    Where could I find out the meaning of such message in oidldap<inst#>.log
    "sgslunrRead: Error while reading communication end point (4)" ?
    Thanks.

    This error indicates that the LDAP client has disconnected abruptly. Possible reasons include:
    - It may be that the client shutdown, crashed or just closed the LDAP connection without doing either an LDAP unbind or abandon.
    - Or, it may that there was some network issue or an intermediary between OID and the client like a Load Balancer or a firewall broke the connection due to a configured timeout setting.
    see also Troubleshooting Oracle Internet Directory http://download-west.oracle.com/docs/cd/B14099_14/idmanage.1012/b14082/trblsht.htm#i621281 where we started to document some of those error msg related to specific areas.
    regards,
    --Olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • What are campaigns related function modules ?

    Hi,
    I want to find out open campaigns and marketing attributes based on partner function i.e., owner responsible and these open documents I need assign to another owner responsible. Which function module I need to read the details and which fm is to change owner responsible.  Please guide me which fm i need to use how I can change to another employee responsible partner function.

    Hi divya,
    Check out the package CRM_MKTPL which will give you all the function modules of Marketing.

  • How to find out what are the functions supported by string class

    Hi,
    Can any one let me know how to find what are all the functions supported by the string class in standard(STL) library on solaris.
    Regards,
    Vignesh

    1. Any C++ textbook that covers the Standard Library will tell you about the standard string class. A good tutorial and reference for the entire Standard Library is "The C++ Standard Library" by Nicolai Josuttis, published by Addison Wesley.
    2. WIth Sun C++, the command
    man -s3C++ basic_string
    provides documentation for the default libCstd version of the Standard Library.
    3. You could look at the <string> header itself. I don't recommend that approach.

Maybe you are looking for

  • Inspire 6100 5.1 - static from the front middle satellite

    Speakers are new. I've just bought them and brought home to set up. Probably should have connected them and checked right away before setting everything up. So I connect the speakers, switch them on and... I hear static from the middle speaker. I che

  • PI 7.1 scenario -- File to File , File to IDOC  and IDoc to File Scenario

    Hi All, *I have PI 7.0 . I have in that File to File , File to IDOC  and IDoc to File Scenarios* File to File -- This scenario is working fine. File to IDOC   --  Setting done in PI 7.0 like SM59,  IDXI, IDX2  and in R/3 like SALE (logical system)---

  • Maximum HDD size for Satellite Pro 6000?

    Hi, I am trying to install a 60 GB HD, but it formats, and it stops at Windows XP Pro instalation. Is there a limit to HD size? Thanx, Ronaldo

  • Installation problem when creating first database

    Hy , I have a dell power edge with Windows 2003 R2 32bit. 4Gb RAm. I am installing oracle standard edition 11g. the installation completed successfully, when creating the default database i got an error. It refered me to the log below Location of the

  • CCM category links in SRM

    I have published items from CCM into SRM and they have populated new catalog categories in the schema. So, the number of links displayed to the end user has gone up. Now, I would like to remove the items and republish. However, after the items are go