F-28 commands on/off

Hi
I generated and saved a layout for the table control used in the transaction F-28, but when I reenter again i must press the command menu "commands on/off" to activate the previous saved column layout ( I have saved it with "command on" activated). How i can set over a user the "command on" as default set?
thanks
Davide

Hi
When we raise a invoice Dr. Customer and Cr. Revenue and when we make customer payment the entry is Dr. Bank and Cr. Customer account so here the net entry will be Dr. Bank and Cr. Revenue.
When i do F.5D the balance sheet adjustments the profit center assigned to my bank account will go the customer account and regarding 1KEK only the open items of AR and AP will go the respective profit centers based on the revenue account and this revenue account which is a P&L account will not have any profit center assignment this account will get the profit center assignement from the cost account assignment if it is internal order then what is mentioned in the internal order that will be the profit center.
In my case when i am trying to post
Dr.Bank - 200
Cr. Customer 280
and Dr.Customer 80
So the net effect is Dr. Bank 200 and Cr. Customer 200 and gets cleared with the profit center assignend on the bank account. but the other line item entry Dr. Customer 80 has no offsetting entry like GL entry so this is sitting in dummy profit center.
Why i am doing this is
When we go to F-28 to make partial payments, after doing the partial payments we only want to see who much is open ( which is net that is invoice - partial payment) only against the document in the due course this is going to dummy as such customers will not have any profit center.
So is there any solution to solve the problem instead of going to dummy or is there any other process.
Thanks
Kumar

Similar Messages

  • Where is the command "Turn off the computer at the end"?

    How many times I had to leave the PC turned on, because I had to quit or went to bed, and the work of encoding lasted 3 to 5 hours,
    such a command is very useful.
    It 'very strange that this feature is not present on a program like Adobe Premiere.
    In other software Freeware is available.
    Thanks

    I agree with the Admiral, but have to say that I have never read of this request, and that's over many, many versions of PrPro.
    I do have several programs, with that feature, but in almost 30 years, have never used it once.
    Good luck, and please let Adobe what you would like.
    Hunt

  • My phone is not working. It turns on by itself and doesn't accept my commands

    Out of the blue it stays on by itself and doesn't take anny of the commands like off or the screen touches. Help please! This is a 6-month old phone and I treat it very well.

    Perform a Reset...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    If no joy...
    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414
    If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808

  • Can you turn off autosave and versions in mountain lion?

    Is this possible? 

    Still haven't checked in ML, got delayed with real-world things like doctors, but FWIW, this Terminal command turns off auto-save globally:
    defaults write -g ApplePersistence -bool no
    You might be able to do it on a by-apo basis. E.g., for TextEdit, try:
    defaults write com.apple.TextEdit ApplePersistence -bool no
    Finally, since versions are stored in each user's hidden ~/Library/Saved Application State/, lock the specific app subfolder,
    com.vendorname.appname.savedState/, to preclude versioning.   

  • Subtitles, type getting cut off slightly on first letters

    I have made my subtitles using the default font and size in DVD SP in a 16:9 project. But the left justify command clips off a little of the 1st letters of each line on the tv and in the DVD SP project, but when I right or center justify the letters are fine. Is this right?
    Also when viewed on a 4:3 tv the subtitles appear just over the black section of the letterboxing slightly.
    Is there any cure for my troubles? Like I said, all the subtitles were done using default settings.
    Thanks for any help!
    S

    The problem with letter chopping seems to be bug in DVD-SP. the only workround seems to be placing an extra space at the front of the line. Having said that most subs are centred so you don't get the problem.
    As to your other prob you can move the X and Y position of the sub stream - but I think I'm right in syaing that if you play a 16:9 film with subs on a 16:9 setup then the subs will appear on the picture (as you'd expect), play the same movie on a 4:3 set up letterboxed and the subs will move lower down. That's the way things are i think you'll find - try it with a Hollywood DVD that has subs....
    Steve

  • PS Script to Automate NIC Teaming and Configure Static IP Address based off an Existing Physical NIC

    # Retrieve IP Address and Default Gateway from static IP Assigned NIC and assign to variables.
    $wmi = Get-WmiObject Win32_NetworkAdapterConfiguration -Filter "IPEnabled = True" |
    Where-Object { $_.IPAddress -match '192\.' }
    $IPAddress = $wmi.IpAddress[0]
    $DefaultGateway = $wmi.DefaultIPGateway[0]
    # Create Lbfo TEAM1, by binding “Ethernet” and “Ethernet 2” NICs.
    New-NetLbfoTeam -Name TEAM1 -TeamMembers "Ethernet","Ethernet 2" -TeamingMode Lacp -LoadBalancingAlgorithm TransportPorts -Confirm:$false
    # 20 second pause to allow TEAM1 to form and come online.
    Start-Sleep -s 20
    # Configure static IP Address, Subnet, Default Gateway, DNS Server IPs to newly formed TEAM1 interface.
    New-NetIPAddress –InterfaceAlias “TEAM1” –IPAddress $IPAddress –PrefixLength 24 -DefaultGateway $DefaultGateway
    Set-DnsClientServerAddress -InterfaceAlias “TEAM1” -ServerAddresses xx.xx.xx.xx, xx.xx.xx.xx
    Howdy All!
    I was recently presented with the challenge of automating the creation and configuration of a NIC Team on Server 2012 and Server 2012 R2.
    Condition:
    New Team will use static IP Address of an existing NIC (one of two physical NICs to be used in the Team).  Each server has more than one NIC.
    Our environment is pretty static, in the sense that all our servers use the same subnet mask and DNS server IP Addresses, so I really only had
    to worry about the Static IP Address and the Default Gateway.
    1. Retrieve NIC IP Address and Default Gateway:
    I needed a way to query only the NIC with the correct IP Address settings and create required variables based on that query.  For that, I
    leveraged WMI.  For example purposes, let's say the servers in your environment start with 192. and you know the source physical NIC with desired network configurations follows this scheme.  This will retrieve only the network configuration information
    for the NIC that has the IP Address that starts with "192."  Feel free to replace 192 with whatever octet you use.  you can expand the criteria by filling out additional octects... example:
    Where-Object
    $_.IPAddress
    -match'192\.168.' } This would search for NICs with IP Addresses 192.168.xx.xx.
    $wmi
    = Get-WmiObject
    Win32_NetworkAdapterConfiguration
    -Filter "IPEnabled = True"
    |
    Where-Object {
    $_.IPAddress
    -match '192\.' }
    $IPAddress
    = $wmi.IpAddress[0]
    $DefaultGateway
    = $wmi.DefaultIPGateway[0]
    2. Create Lbfo TEAM1
    This is a straight forward command based off of New-NetLbfoTeam.  I used  "-Confirm:$false" to suppress prompts. 
    Our NICs are named “Ethernet” and “Ethernet 2” by default, so I was able to keep –TeamMembers as a static entry. 
    Also added start-sleep command to give the new Team time to build and come online before moving on to network configurations. 
    New-NetLbfoTeam
    -Name TEAM1
    -TeamMembers "Ethernet","Ethernet 2"
    -TeamingMode SwitchIndependent
    -LoadBalancingAlgorithm
    Dynamic -Confirm:$false
    # 20 second pause to allow TEAM1 to form and come online.
    Start-Sleep
    -s 20
    3. Configure network settings for interface "TEAM1".
    Now it's time to pipe the previous physical NICs configurations to the newly built team.  Here is where I will leverage
    the variables I created earlier.
    There are two separate commands used to fully configure network settings,
    New-NetIPAddress : Here is where you assign the IP Address, Subnet Mask, and Default Gateway.
    Set-DnsClientServerAddress: Here is where you assign any DNS Servers.  In my case, I have 2, just replace x's with your
    desired DNS IP Addresses.
    New-NetIPAddress
    –InterfaceAlias “TEAM1”
    –IPAddress $IPAddress
    –PrefixLength 24
    -DefaultGateway $DefaultGateway
    Set-DnsClientServerAddress
    -InterfaceAlias “TEAM1”
    -ServerAddresses xx.xx.xx.xx, xx.xx.xx.xx
    Hope this helps and cheers!

    I've done this before, and because of that I've run into something you may find valuable. 
    Namely two challenges:
    There are "n" number of adapters in the server.
    Adapters with multiple ports should be labeled in order.
    MS only supports making a LBFO Team out of "like speed" adapters.
    To solve both of these challenges I standardized the name based on link speed for each adapter before creating hte team.  Pretty simple really!  FIrst I created to variables to store the 10g and 1g adapters.  I went ahead and told it to skip
    any "hyper-V" ports for obvious reasons, and sorted by MAC address as servers tend to put all thier onboard NICs in sequentially by MAC:
    $All10GAdapters = (Get-NetAdapter |where{$_.LinkSpeed -eq "10 Gbps" -and $_.InterfaceDesription -notmatch 'Hyper-V*'}|sort-object MacAddress)
    $All1GAdapters = (Get-NetAdapter |where{$_.LinkSpeed -eq "1 Gbps" -and $_.InterfaceDesription -notmatch 'Hyper-V*'}|sort-object MacAddress)
    Sweet ... now that I have my adapters I can rename them into something standardized:
    $i=0
    $All10GAdapters | ForEach-Object {
    Rename-NetAdapter -Name $_.Name -NewName "Ethernet_10g_$i"
    $i++
    $i = 0
    $All1GAdapters | ForEach-Object {
    Rename-NetAdapter -Name $_.Name -NewName "Ethernet_1g_$i"
    $i++
    Once that's done Now i can return to your team command but use a wildcard sense I know the standardized name!
    New-NetLbfoTeam -Name TEAM1G -TeamMembers Ethernet_1g_* -TeamingMode SwitchIndependent -LoadBalancingAlgorithm Dynamic -Confirm:$false
    New-NetLbfoTeam -Name TEAM10G -TeamMembers Ethernet_10g_* -TeamingMode SwitchIndependent -LoadBalancingAlgorithm Dynamic -Confirm:$false

  • Batch File Command Line

    Hello dears
    Please guide me about below command:
    @echo off
    cd\
    cd inetpub
    cd temp
    cd Host_4.1.11.5
    md IPC
    move SecurityOld IPC
    xcopy Accounting IPC\Accounting /s /i
    xcopy OrgFundamental IPC\OrgFundamental /s /i
    setlocal
    set "location=c:\inetpub\temp\Host_4.1.11.5"
    for /d %%d in (%location%\*) do (
    md "%%d\bin"
    move "%%d\*.dll" "%%d\bin"
    ren "%%d\*.exe.config" "web.config"
    rd "%%d\IPC\bin"
    i need exclude two folders from %location% in for section.
    please guide me.

    Try this cleaned up version. It will skip folders xx and yy.
    @echo off
    setlocal
    cd /d \inetpub\cd temp\cd Host_4.1.11.5
    md IPC
    move SecurityOld IPC
    xcopy Accounting IPC\Accounting /s /i /y
    xcopy OrgFundamental IPC\OrgFundamental /s /i /y
    set location=c:\inetpub\temp\Host_4.1.11.5
    for /d %%d in (%location%\*) do call :Sub %%d
    goto :eof
    :Sub
    if %*==xx goto :eof
    if %*==yy goto :eof
    md "%*\bin"
    move "%*\*.dll" "%*\bin"
    ren "%*\*.exe.config" "web.config"
    rd /s /q "%*\IPC\bin"

  • Command Key Issue

    It feels like my command key is eternally pressed, even when I disconnected my keyboard. Any idea of what this could be?

    Apple Discussions!
    "Any idea of what this could be?"
    Dirt and/or crumbs stuck under the key?!?!?!?
    Disconnect the keyboard from the computer, turn it over & give it a good whack on its back. Shake it a few times also.
    Take a plastic toothpick & dig around the Command key for any stuck gook.
    Take a brushed vacuum hose & go over all the keys w/special attention to the Command key.
    Pop the Command key off if you have too!
    Good luck!

  • SQLPLUS - redirection of output/command line

    I would like to send SQL-commands to Oracle 8.0.5 from a BATCH
    command line interface.
    I have by trial and error found the following to work in SQLPlus
    for Oracle 8.0.5
    SQLPLUS <userid>/<password>@<MACHINE> @<input.sql>
    However, this just starts a new window with the SQL-commands
    given in input.sql. I would like the output to be redirected to
    an output file - preferably without having to write long code in
    the input.sql file.
    Any hints or surgestions ?
    Yours
    Torben
    null

    Torben Lund (guest) wrote:
    : I would like to send SQL-commands to Oracle 8.0.5 from a BATCH
    : command line interface.
    : I have by trial and error found the following to work in
    SQLPlus
    : for Oracle 8.0.5
    : SQLPLUS <userid>/<password>@<MACHINE> @<input.sql>
    : However, this just starts a new window with the SQL-commands
    : given in input.sql. I would like the output to be redirected
    to
    : an output file - preferably without having to write long code
    in
    : the input.sql file.
    : Any hints or surgestions ?
    : Yours
    : Torben
    Hi Torben , if I understood your question you can put in your
    INPUT.SQL file de instruction SPOOL C:\TEMP\OUTPUTLIE.TXT
    before you execute the sql statements . At the end of results
    you have put the command SPOOL OFF . If after this you would
    like execute the file like a batch command file use the
    @c:\temp\outputfile.txt
    Ok ?
    Regards
    Lourival
    null

  • How to turn VoiceCommand OFF- LongPress of Green B...

    I am trying to find out that how can I turn the Voice Command Functionality off,
    so that it does not go into VoiceMenu if green button is long pressed
    regards

    Please explain how your question relates to the Firefox web browser.

  • SHOW commands in SQLPlus

    Where can I find a list / explanation of the SHOW commands in SQLPlus?
    Thanks,

    Hi,
    Also, try this cool glogin script from Chris Foot to show the instance name in your SQL*Plus promt:
    COLUMN file_name FORMAT a44
    COLUMN tablespace_name FORMAT a20
    COLUMN owner FORMAT a15
    COLUMN segment_name FORMAT a20
    set lines 132
    set pages 100
    set termout off
    col dbname new_value prompt_dbname
    select instance_name dbname from v$instance;
    set sqlprompt "&&prompt_dbname> "
    set termout on
    set time on
    Here are the set options:
    APPI[NFO]ON
    Application info for performance monitor (see DBMS_APPLICATION_INFO)
    ARRAY[SIZE] {15|n}
    Fetch size (1 to 5000) the number of rows that will be retrieved in one go.
    AUTO[COMMIT] OFF|n}
    Autocommit commits after each SQL command or PL/SQL block
    AUTOP[RINT] OFF
    Automatic PRINTing of bind variables.(see PRINT)
    AUTORECOVERY ON
    Configure the RECOVER command to automatically apply
    archived redo log files during recovery - without any user confirmation.
    AUTOT[RACE] OFF} [EXP[LAIN]] [STAT[ISTICS]]
    Display a trace report for SELECT, INSERT, UPDATE or DELETE statements
    EXPLAIN shows the query execution path by performing an EXPLAIN PLAN.
    STATISTICS displays SQL statement statistics.
    Using ON or TRACEONLY with no explicit options defaults to EXPLAIN STATISTICS
    BLO[CKTERMINATOR] {.|c|OFF|ON}
    Set the non-alphanumeric character used to end PL/SQL blocks to c
    CMDS[EP] {;|c|OFF|ON}
    Change or enable command separator - default is a semicolon (;)
    COLSEP { |text}
    The text to be printed between SELECTed columns normally a space.
    COM[PATIBILITY] {V5|V6|V7|V8|NATIVE}
    Version of oracle - see also init.ora COMPATIBILITY=
    You can set this back by up to 2 major versions e.g. Ora 9 supports 8 and 7
    CON[CAT] {.|c|OFF|ON}
    termination character for substitution variable reference
    default is a period.
    COPYC[OMMIT] {0|n}
    The COPY command will fetch n batches of data between commits.
    (n= 0 to 5000) the size of each fetch=ARRAYSIZE.
    If COPYCOMMIT = 0, COPY will commit just once - at the end.
    COPYTYPECHECK OFF
    Suppres the comparison of datatypes while inserting or appending to DB2
    DEF[INE] {&|c|OFF|ON}
    c = the char used to prefix substitution variables.
    ON or OFF controls whether to replace substitution variables with their values.
    (this overrides SET SCAN)
    DESCRIBE [DEPTH {1|n|ALL}][LINENUM {ON|OFF}][INDENT {ON|OFF}]
    Sets the depth of the level to which you can recursively describe an object
    (1 to 50) see the DESCRIBE command
    ECHO OFF
    Display commands as they are executed
    EMB[EDDED] OFF
    OFF = report printing will start at the top of a new page.
    ON = report printing may begin anywhere on a page.
    ESC[APE] {\|c|OFF|ON}
    Defines the escape character. OFF undefines. ON enables.
    FEED[BACK] {6|n|OFF|ON}
    Display the number of records returned (when rows > n )
    OFF (or n=0) turns the display off
    ON sets n=1
    FLAGGER OFF|FULL}
    Checks to make sure that SQL statements conform to the ANSI/ISO SQL92 standard.
    non-standard constructs are flagged as errors and displayed
    See also ALTER SESSION SET FLAGGER.
    FLU[SH] OFF
    Buffer display output (OS)
    (no longer used in Oracle 9)
    HEA[DING] OFF
    print column headings
    HEADS[EP] {||c|OFF|ON}
    Define the heading separator character (used to divide a column heading onto > one line.)
    OFF will actually print the heading separator char
    see also: COLUMN command
    INSTANCE [instance_path|LOCAL]
    Change the default instance for your session, this command may only be issued when
    not already connected and requires Net8
    LIN[ESIZE] {150|n}
    Width of a line (before wrapping to the next line)
    Earlier versions default to 80, Oracle 9 is 150
    LOBOF[FSET] n
    Starting position from which CLOB and NCLOB data is retrieved and displayed
    LOGSOURCE [pathname]
    Change the location from which archive logs are retrieved during recovery
    normally taken from LOG_ARCHIVE_DEST
    LONG {80|n}
    Set the maximum width (in chars) for displaying and copying LONG values.
    LONGC[HUNKSIZE] {80|n}
    Set the fetch size (in chars) for retrieving LONG values.
    MARK[UP] HTML ON
    [HEAD text] [BODY text] [TABLE text]
    [ENTMAP {ON|OFF}][SPOOL {ON|OFF}]
    [PRE[FORMAT] ON]
    Output HTML text, which is the output used by iSQL*Plus.
    NEWP[AGE] {1|n} NULL text
    The number of blank lines between the top of each page and the top title.
    0 = a formfeed between pages.
    NULL text
    Replace a null value with 'text'
    The NULL clause of the COLUMN command will override this for a given column.
    NUMF[ORMAT] format
    The default number format.
    see COLUMN FORMAT.
    NUM[WIDTH] {10|n}
    The default width for displaying numbers.
    PAGES[IZE] {14|n}
    The height of the page - number of lines.
    0 will suppress all headings, page breaks, titles
    PAU[SE] OFF
    press [Return] after each page
    enclose text in single quotes
    RECSEP {WR[APPED]|EA[CH]|OFF}
    Print a single line of the RECSEPCHAR between each record.
    WRAPPED = print only for wrapped lines
    EACH=print for every row
    RECSEPCHAR {_|c}
    Define the RECSEPCHAR character, default= ' '
    SCAN OFF
    OFF = disable substitution variables and parameters
    SERVEROUT[PUT] OFF [SIZE n] [FOR[MAT] {WRA[PPED]|WOR[D_WRAPPED]|TRU[NCATED]}]
    whether to display the output of stored procedures (or PL/SQL blocks)
    i.e., DBMS_OUTPUT.PUT_LINE
    SIZE = buffer size (2000-1,000,000) bytes
    SHOW[MODE] OFF
    Display old and new settings of a system variable
    SPA[CE] {1|n}
    The number of spaces between columns in output (1-10)
    SQLBL[ANKLINES] ON
    Allow blank lines within an SQL command. reverts to OFF after the curent command/block.
    SQLC[ASE] {MIX[ED]|LO[WER]|UP[PER]}
    Convert the case of SQL commands and PL/SQL blocks
    (but not the SQL buffer itself)
    SQLPLUSCOMPAT[IBILITY] {x.y[.z]}
    Set the behavior or output format of VARIABLE to that of the
    release or version specified by x.y[.z].
    SQLCO[NTINUE] {> |text}
    Continuation prompt (used when a command is continued on an additional line using a hyphen -)
    SQLN[UMBER] OFF
    Set the prompt for the second and subsequent lines of a command or PL/SQL block.
    ON = set the SQL prompt = the line number.
    OFF = set the SQL prompt = SQLPROMPT.
    SQLPRE[FIX] {#|c}
    set a non-alphanumeric prefix char for immediately executing one line of SQL (#)
    SQLP[ROMPT] {SQL>|text}
    Set the command prompt.
    SQLT[ERMINATOR] {;|c|OFF|ON}|
    Set the char used to end and execute SQL commands to c.
    OFF disables the command terminator - use an empty line instead.
    ON resets the terminator to the default semicolon (;).
    SUF[FIX] SQL
    Default file extension for SQL scripts
    TAB OFF
    Format white space in terminal output.
    OFF = use spaces to format white space.
    ON = use the TAB char.
    Note this does not apply to spooled output files.
    The default is system-dependent. Enter SHOW TAB to see the default value.
    TERM[OUT] OFF
    OFF suppresses the display of output from a command file
    ON displays the output.
    TERMOUT OFF does not affect the output from commands entered interactively.
    TI[ME] OFF
    Display the time at the command prompt.
    TIMI[NG] OFF
    ON = display timing statistics for each SQL command or PL/SQL block run.
    OFF = suppress timing statistics
    TRIM[OUT] OFF
    Display trailing blanks at the end of each line.
    ON = remove blanks, improving performance
    OFF = display blanks.
    This does not affect spooled output.
    SQL*Plus ignores TRIMOUT ON unless you set TAB ON.
    TRIMS[POOL] ON
    Allows trailing blanks at the end of each spooled line.
    This does not affect terminal output.
    UND[ERLINE] {-|c|ON|OFF}
    Set the char used to underline column headings to c.
    VER[IFY] OFF
    ON = list the text of a command before and after replacing substitution variables with values.
    OFF = dont display the command.
    WRA[P] OFF
    Controls whether to truncate or wrap the display of long lines.
    OFF = truncate
    ON = wrap to the next line
    The COLUMN command (WRAPPED and TRUNCATED clause) can override this for specific columns.

  • Command on boot - systemd tmpfile

    Hi.
    I have a laptop with ATI/Intel hybrid graphics. I am never using the ATI graphics when in Linux, and i simply want to turn the ATI card off on boot for battery-life. I used to do this in Ubuntu, simply by putting the command:
    echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
    in /etc/rc.local
    Now on Arch i have to go around making a tmpfile for systemd (by searching around it seems this is the "correct" way of doing this kind of stuff on boot), that will perform this action for me. However i find the syntax very difficult to understand, so if someone could help i would appreciate it. The tmpfile i have created so far (which ofcourse isnt working), is
    /etc/tmpfiles.d/fix_graphics.conf
    and contains the line
    w /sys/kernel/debug/vgaswitcheroo/switch - - - - OFF
    Could anyone give me a pointer to what could be wrong? And just for future reference: What would one do in order to run a general command or script (for doing stuff more complex than writing a line to a file etc.) as root on startup with systemd?
    Thanks in Advance
    Esben

    Hi
    According to the wiki you have to blacklist the radeon kernel module and then load it manually afterwards before executing the echo OFF >...
    Also you've to enable debugfs in your fstab, all described in the wiki: https://wiki.archlinux.org/index.php/Hy … ons_So_Far
    As for systemd I do this with a little script that is called by a custom service file, wiki: https://wiki.archlinux.org/index.php/Sy … vice_files
    I've added some After=, Requires= and Before= "tags" to the service file to make sure it executes at a good time, (After/Requires=systemd-user-sessions.service, to not execute too early and cause a kernel panic and Before=xinit.service to start it before X is started)
    Edit: Alternatively you could use acpi_call from AUR to switch off the DGP completely. However this requires some similar steps to execute on boot.
    Last edited by rebootl (2012-12-19 14:20:10)

  • Random Voice Commands and keyboard shortcuts aren't what they are supposed

    I was just working on my iMac as usual when all of a sudden the speech commands thing just started talking randomly. I went into system prefs but the voice commands thing is off.
    Also, the keyboard functions (F1, F2, etc.) all got changed and no half of them don't work. I also went into system prefs and into keyboard but all of the functions are normal there, but they are not matching up with what happens when I actually push the button. *(For example, F4 is supposed to be dashboard. when I click it, nothing happens. F11 which is decrease volume, when pressed, brings up the dashboard)* once again, everything in system prefs is normal.
    I work for an advertising agency doing layouts and I cannot work like this without my macros working and random voice commands going off everything I push a button.

    Have you gone to System Prefs and unchecked "Use all F1, F2 etc keys as standard function keys?

  • Discrete graphics card not switching off - kernel 3.18

    Hi there,
    I'm currently running Archlinux on an Acer 4820TG laptop with two graphics card: Intel (onboard) and AMD Radeon HD 6550M.
    After upgrade to kernel version 3.18.2-2-ARCH, the command echo OFF > /sys/kernel/debug/vgaswitcheroo/switch that I've been using doesn't switch the discrete graphics card off.
    This way battery drains rather rapidly
    Additional info:
    Intel driver: xf86-video-intel 2.99.917-1
    Radeon driver: xf86-video-ati 1:7.5.0-1
    Help would be appreciated. Thanks!

    This happened to me whenever I was trying to run 3dsMax Design 2013 in Optimus mode, everytime I attempted to open that program it would simply refuse and say the nvidia driver had just crashed.
    It was solved with nvidia 305.93 I think (I currently run 331.82 which is the latest) look for the most up to date driver at the nvidia drivers download page.
    That is really an nvidia driver related problem but you should also update your Intel video card driver too as previously suggested. (and if the program that is crashing is an Autodesk product be sure to be up to date too (with all the nuances that it implies), I'm currently running 3dsmax 13 PU6 and it works)
    So what you need to do is to uninstall your nvidia driver completely, reboot, install the most up to date from nvidia. reboot, via windows update install the lates Intel video driver (if something appears) (don't install it from the intel web site). In device manager my intel driver appears to be 9.17.10.2843
    (Maybe it didn't work the last time for you because maybe you didn't perform a clean installation)

  • Error 'Program not registered' while testing RFC

    Hi
    I have created a RFC with type T. When I am testing the same through SM59, I am getting error:
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: program <program name>not registered
    Error Details     LOCATION: SAP-Gateway on host xxxxxx / sapgw01
    Error Details     DETAIL: TP <program name> not registered
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 6268
    Error Details     MODULE: gwr3cpic.c
    Error Details     LINE: 1694
    Error Details     RETURN CODE: 679
    Error Details     SUBRC: 0
    Error Details     RELEASE: 700
    Error Details     TIME: Tue Jan 27 00:56:55 2009
    Error Details     VERSION: 2
    Can anybody help me in this?
    Thanks in advance

    Something helpful related to this
    The program in the above error should be registered in the gateway for this connection test to complete successfully. The server program rfcexec is responsible for its registration on the gateway.
    To register the program login into the OS level as sudo su - <sid>adm and execute the following command.
    rfcexec u2013g<program id> -a<gateway host name> -x<gateway service>
    rfcexec is the server program name, the <program id> can be obtained from SM59, it is case sensitive and should match with the entry in SM59. The <gateway host name> and <gateway service> can be obtained from the transaction SMGW. When this command is executed it goes to a hanging loop.
    The connection will fail once this command is terminated or the user executing this command logs off
    To avoid this, instead of using the above mentioned command an entry should be made in the file saprfc.ini
    To do this, execute the following command
    sudo su - <sid>adm
    rfcexec u2013D<destination name>
    <destination name> is the RFC destination name in SM59
    So now we are done with registering the server program, but how do we check it is registered, once a server program is registered it is displayed in the Logged on clients in SMGW.
    In transaction SMGW choose GOTO-> Logged on clients. There should be an entry for the server program in the screen that is displayed with system type Registered_TP (which indicates that the program is registered)

Maybe you are looking for

  • My flash player is installed but not working?

    I have the Adobe Flash Player 9.0 Installed, but when i open games that require it. They say i don't have Flash 8.0 or higher would i like to install, I then hit yes and it gets 1/4 of the way through stops and says i don't have access to install it

  • Should I buy a USB3 enclosure for spare hard drives?

    I have a few spare SATA laptop hard drives Should I buy a USB3 enclosure? If I do, will it be faster than a USB2 enclosure? Thanks Omar

  • Is abap is their r not

    hi frnds i only wrote the last query abt abap is their r not , but i losed that id.... i like 2 giv points 2 some of the guys who really help me.... so the guys who answer 4 that query simply send a hello 2 me.... i want 2 put a point .......thks 2 a

  • Appointments being deleted on ipad

    Hello... My appointments seem to be being deleted on a rolling month basis on ical on my ipad. I have appointments in January that are no longer there and it seems to be happening each time there is a new week, an old week gets deleted. Can you help

  • Bluetooth doesn't start

    Hello, I'd like to set my bluetooth to start automatically, but there doesn't seem to be that option. There is also no option to turn it on manually, either on the menu item or in system prefs. The only way I can get it to come on is to use the bluet