Solver VBA SolverAdd constraints with decimals not possible

This issue is related to the German versions of Excel, it tried all from XL2002 up to XL2013.
I can add a constrain with decimals to the solver manually and it works as expected:
When I record a macro the recorded constrain line is this:
SolverAdd CellRef:="$A$1", Relation:=3, FormulaText:="0,001"
But when I run that line the constrain is always ">= 1", the decimal part is missing! I tried all variations that I can think of, but nothing works. When I run this macro:
Sub Makro1()
SolverReset
SolverAdd CellRef:="$A$1", Relation:=3, FormulaText:=0.001
SolverAdd CellRef:="$A$1", Relation:=3, FormulaText:="0.001"
SolverAdd CellRef:="$A$1", Relation:=3, FormulaText:="0,001"
End Sub
The result is this:
How can I set a constrain with decimals into the Solver?
Andreas.

The answer for this from Frontline Systems Inc. is:
This is an old VBA bug.
Just use:
FormulaText:="=1"
Rather than
FormulaText:="1"
That sounds strange... "old VBA bug"?? VBA is able to detect and work with the language depended decimal delimiters and such things!
So I went a little into the depths and have looked more closely at SOLVER.XLAM and there I found the bug:
If "." <> Application.International(xlDecimalSeparator) Then
dummy = InStr(FormulaText, Application.International(xlDecimalSeparator))
Do While dummy <> 0
Mid(FormulaText, dummy, 1) = "."
dummy = InStr(FormulaText, Application.International(xlDecimalSeparator))
Loop
End If
If Not IsNumeric(FormulaText) Then
On Error Resume Next
If TypeName(FormulaText) = "Range" And Not IsCellReference(Stylecheck(CStr(FormulaText))) Then
FormulaText = FormulaText.Address
End If
FormulaText = CStr(FormulaText)
FormulaText = Stylecheck(FormulaText)
On Error GoTo mainerror
Else
FormulaText = CDbl(FormulaText)
End If
They replace the "," with a "." and then they call CDBL (and not VAL), that is the reason.
In Germany (Europe) the "." is the thousand delimiter and the "," is the decimal delimiter. And CDBL knows that!
Okay, so why does "=0,0001" work? Obvious the CBDL line isn't executed in this case.
The solver routines creates hidden names in the sheet and store anything there. If you like to see them execute this:
Sub ShowNames()
Dim N As Name
For Each N In Names
N.Visible = True
Next
End Sub
And names are also language depended, but when we want to store values into a name we have to "speak" English.
The code changes "=0,0001" to "=0.0001" and stores that into the name manager. So when we look into the names we can see "=0,0001" at screen (in Europe).
And the Solve routines grabs that values... what a mess. :-)
If you want to write language-independent programs therefore this syntax is recommended:
  SolverAdd "A1", 3, "=" & 0.0001
Andreas.

Similar Messages

  • Configuring Netgear WLAN-Router with Safari not possible

    Hi,
    I've got a problem with safari and my netgear router WGT624v2. In a fromer safari version it was possible to configure the router via the config-page. But with my current safari version it is not possible. I can logon, but to only thing I coud see is cryptic HTML-Code. Firefox isn't able, too. The only browser which could manage this is MS Internet Explorer.
    Maybe this has something to do with active x? Could a former safari version handle active x, and the current could not?
    Does anybody have the same problem?
    regards
    Benni

    Hi Benni and Welcome to Apple Discussions ...
    Could be possible Microsoft isn't supporting Active X to the latest Safari update?? Try the Support and FAQ's at the Netgear site:http://kbserver.netgear.com/downloads_support.asp
    Carolyn
    Message was edited by: Carolyn Samit

  • Cell (tower ID) with J2ME (not possible?)

    Hi
    I heard that it is just not possible to get cell tower ID, Network ID, etc through the J2ME framework.
    Is that true? I know there is some implementation but that requires some sort of licence. Is there any open-source J2ME API that I am not aware of?
    thanks a lot

    You are right. I also discoverd that .NET has an implementation for this. Well, I hate to resort to .NET but have no choice.

  • Waking up the Mac from a complete power OFF with WOL not possible, ***

    I was told by AU applecare stuff that ALL Mac cannot be woke up from a complete power OFF. I asked the team at applecare because my mini server won't do a WOL.
    Is this for REAL?
    Can't I do WOL on Macs?
    What a horror! How is this possible  in this day and age? Macs are intel macs now, and it is just a matter of the network card/chip has this build in. A $200 PC can do this ages ago.
    It is huge environmental disaster if we cannot wake the Macs from power off remotely via LAN/WAN, and putting them to sleep when not needed.
    Can someone help brighten up my day by pointing me to some official documentation on this or you real experiences on waking up a Mac with WOL
    from a complete power OFF?

    Maybe necroposting here, but HRMUser is right. Many (most?) modern PCs support WOL from a powered-off (shutdown) state. PCs that support WOL usually have a BIOS setting that allows you to enable/disable it. The network interface itself is powered enough that it will "see" magic WOL packets. I regularly use this feature for PC administration. It's annoying / silly that Macs don't support WOL from power off.

  • 10g 10.2.0.1.0 - Check Constraint with negative values possibly BUG.

    Hello,
    Why this doesn't work ?
    create table a (b numeric(1));
    alter table a
    add constraint b CHECK (b in (0, 1, -1)) ENABLE;
    select * from a where b = -1;
    I get the following error: java.sql.SQLException: No more data to read from socket
    - Through the jdbc client. It happens with the Oracle Client too.
    When i change my check constraint to this:
    alter table a
    add constraint b CHECK (b in (-1, 0, 1)) ENABLE;
    It works.
    It's a (known) bug ?
    Regards,
    Francisco

    hi dear,
    I want to upgrade my OMS server 10.2.0.1 to 10.2.0.5
    I downloaded the patch 10.2.0.5 and read the README.txt
    Part of the README is:
    1.2 Enter the following command to extract the installation files:
    $ unzip GridControl_10.2.0.5_<platform name>.zip
    This command extracts the following files and directory:
    |- p3731593_10205_<platform name>.zip
    |- 3731596.zip
    |- 3822442.zip
    |- README.txt
    |- doc/
    NOTE: <platform name> will be "LINUX" or "Win32" depending on the platform for which you are installing. For installing Enterprise Manager 10g Grid Control Release 5 (10.2.0.5), refer to the Release Notes available in the "doc" directory.
    - p3731593_10205_<platform name>.zip is the ZIP file that contains 10.2.0.5 patch set software.
    This zip can be used for:
    - Upgrading Oracle Management Service Release 2 (10.2.0.x) or higher to Oracle Management Service Release 5 (10.2.0.5)
    - Upgrading Oracle Management Repository (sysman schema)
    - Upgrading Oracle Management Agent on the host where OMS is running.
    NOTE: This will not upgrade the database in which the Management Repository (sysman schema) resides.
    - 3731596.zip is for patching Management Agent by staging the patch set. To understand how you can apply the Management Agent 10.2.0.5 patch set, refer to method 2 described in section 4.3.3 "Upgrading Management Agent - Multiple Hosts at a Time" of the Release Notes. The Release Notes can be found in the "doc" directory.
    - 3822442.zip is for patching Management Agent by distributing the full patch set.  To understand how to apply the Management Agent 10.2.0.5 patch set, refer to method 1 described in section 4.3.3 "Upgrading Management Agent - Multiple Hosts at a Time" of the Release Notes. The Release Notes can be found in the "doc" directory.3731596.zip - by staging
    3822442.zip - by distributing
    Does the two above have the same function or purpose?
    I can not understand the meaning of the two :( . which do you think is the right one for my setup?
    Thanks a lot

  • Remote session via RDGW fine with Windows - not possible with Mac ...?

    Hi,
    I've configured a fresh single RDS Server (all roles on one Server including Gateway) based on Windows Server 2012 R2. Everything works fine when we use Windows 7 with current RDP Client to connect via Gateway/HTTPS.
    When we use a Mac (OS X 10.9.3) with current Version of "Microsoft Remote Desktop" (8.0.7), no RDP Connection is established. Error message: "Unable to connect to remote PC. Please verify ...". Login on <external.domain.name>/rdweb
    works fine and I'm able to download the .rdp-file and open it with Microsoft Remote Desktop, but after a few seconds the error above appears.
    I did some traffic analyzing on our Firewall and it seems that the Mac try to connect on port 3389 on the public ip of the RDS Server, which is blocked. I manually configured a RDP Connection with Gateway - same error. The log of Microsoft Remote Desktop:
    [2014-May-22 11:58:30] RDP (0): Final rdp configuration used: gatewayhostname:s:<external.domain.name>
    screen mode id:i:2
    use multimon:i:1
    session bpp:i:32
    full address:s:<external.domain.name>
    audiomode:i:0
    username:s:
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:1
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    redirectprinters:i:1
    bookmarktype:i:3
    use redirection server name:i:1
    loadbalanceinfo:s:tsv://MS Terminal Services Plugin.1.<name>_RDS
    [2014-May-22 11:58:30] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-22 11:58:30] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-22 11:58:30] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-22 11:58:30] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-22 11:58:30] RDP (0): gif0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): stf0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): en0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): en0 af=30 (AF_INET6)  addr=<address>%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-22 11:58:30] RDP (0): en0 af=2 (AF_INET)  addr=<address> netmask=255.255.255.0
    [2014-May-22 11:58:30] RDP (0): en0 af=2 (AF_INET)  addr=<address> netmask=255.255.255.0
    [2014-May-22 11:58:30] RDP (0): en1 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): fw0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): en2 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): bridge0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): p2p0 af=18  addr= netmask=
    [2014-May-22 11:58:30] RDP (0): --- END INTERFACE LIST ---
    [2014-May-22 11:58:30] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-May-22 11:58:30] RDP (0): client version: 8.0.24875
    [2014-May-22 11:58:30] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-22 11:58:30] RDP (0): correlation id: 7a0a5e55-c35a-c642-882e-788a487a0000
    [2014-May-22 11:58:30] RDP (0): Resolved '<external.domain.name>' to '<external ip address>' using NameResolveMethod_DNS(1)
    [2014-May-22 11:58:38] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-22 11:58:38] RDP (0): ------ END ACTIVE CONNECTION ------
    I remember that there was an issue to establish SSO based on DNS resolve (external Domain Name to internal ip address via Gateway Connection); but we resolved this with a new DNS Zone. But why is it fine on Windows, but not on Mac OS X with Microsoft
    Remote Desktop? I wondering why the MRD is not using the Gateway Connection to resolve the RDP host ... ?
    Many thanks,
    Erik

    And log from situation 1:
    [2014-Jun-03 14:43:36] RDP (0): Final rdp configuration used: redirectcomports=0
    disable themes=0
    allow font smoothing=1
    session bpp=32
    negotiate security layer=1
    disable wallpaper=0
    full address=rds.something.com
    rdgiskdcproxy=0
    [email protected]
    disable cursor setting=0
    gatewayusagemethod=2
    use redirection server name=1
    compression=1
    gatewayprofileusagemethod=1
    keyboardhook=2
    remoteapplicationmode=0
    allow desktop composition=1
    connection type=6
    alternate full address=rds.something.com
    drivestoredirect=*
    gatewayhostname=gw.something.com
    displayconnectionbar=1
    networkautodetect=1
    redirectposdevices=0
    gatewaycredentialssource=0
    screen mode id=2
    bitmapcachepersistenable=1
    disable full window drag=0
    shell working directory=
    workspace id=rds.something.com
    redirectprinters=1
    kdcproxyname=
    redirectclipboard=1
    use multimon=0
    disable menu anims=0
    prompt for credentials=0
    authentication level=2
    audiocapturemode=1
    audiomode=0
    autoreconnection enabled=1
    enableworkspacereconnect=0
    bandwidthautodetect=1
    alternate shell=
    videoplaybackmode=1
    promptcredentialonce=1
    redirectsmartcards=0
    winposstr=0,3,0,0,800,600
    devicestoredirect=*
    loadbalanceinfo=tsv://MS Terminal Services Plugin.1.something
    [2014-Jun-03 14:43:36] RDP (0): Final rdp configuration used: gatewayhostname:s:gw.something.com
    screen mode id:i:2
    use multimon:i:0
    session bpp:i:32
    full address:s:rds.something.com
    audiomode:i:0
    username:s:[email protected]
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:1
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    redirectprinters:i:1
    bookmarktype:i:3
    use redirection server name:i:1
    loadbalanceinfo:s:tsv://MS Terminal Services Plugin.1.something
    [2014-Jun-03 14:43:36] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Jun-03 14:43:36] RDP (0): lo0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Jun-03 14:43:36] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-Jun-03 14:43:36] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Jun-03 14:43:36] RDP (0): gif0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): stf0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): en0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): en0 af=30 (AF_INET6)  addr=fe80::288:65ff:fe37:7788%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Jun-03 14:43:36] RDP (0): en0 af=2 (AF_INET)  addr=192.168.21.114 netmask=255.255.255.0
    [2014-Jun-03 14:43:36] RDP (0): en4 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): bridge0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): p2p0 af=18  addr= netmask=
    [2014-Jun-03 14:43:36] RDP (0): --- END INTERFACE LIST ---
    [2014-Jun-03 14:43:36] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jun-03 14:43:36] RDP (0): client version: 8.0.24875
    [2014-Jun-03 14:43:36] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Jun-03 14:43:36] RDP (0): correlation id: 9c3a9777-747c-704c-86d1-1ace1eef0000
    [2014-Jun-03 14:43:36] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Jun-03 14:43:36] RDP (0): ------ END ACTIVE CONNECTION ------
    Seems to have disappeared "workspace id=" or is it all right?

  • H.264 MP4 preset with 920x518 not possible in Compressor?

    We need to export our Final Cut projects to different H.264 MP4 sizes. They are 1280x720, 640x360 and 920x517. Unfortunately we didn't find a way to set a preset to 920x518.
    What can we do to get that work?
    Thanks in advance for every hint.
    Heidi

    You'll need to use QuickTime Conversion out of FCP (or QT Pro) since Compressor will not create h.264-encoded .mp4 files.
    Just for starters:
    With your sequence selected or active, *File > Export > QT Conversion*.
    Select MPEG-4 from the Format drop-down.
    Hit the Options buttons to bring up the MPEG-4 Export Settings dialog
    File Format is, by default, set to *MP4 (ISMA)*. Instead, select the MP4 option.
    Switch Video Format to H.264.
    Alter the Image Size to Custom, then set your width and height.
    Check the +Preserve Aspect Ratio using+ box and set the drop-down value to *Fit within size*.
    There are, of course, other considerations (Data Rate, Multi-Pass vs Single Pass, Profiles, etc) but that should at least get you started.
    Also, in case you're working with an anamorphic format (like, say, DVCProHD or HDV) you have to, if I remember correctly, export a reference movie out of FCP first. Once that's done, open it in QuickTime Pro and set the Conform Aperture property to Production. Then export out of QT Pro. Oherwise, I believe you'll end up with distorted .mp4s since your sequence footage isn't square-pixel.
    Of course, this is non-factor if you're working in a square-pixel format

  • Batch processing with JTA not possible?

    hi ng,
    i'm hoping that someone can tell me if it is actually possible to use JTA transactions in non-app server spawned threads and, if so, how to do it.
    The problem we have is that we need a demon thread executing updates over a cached cluster (hence the need for JTA), but sun 7 uses a thread local to store the context and transaction info, if we try to perform JTA transactions in our own thread it bombs out from trying to lookup the missing data.
    We've tried to re-create what is expected in the thread local and bind it in but this is a large hack involving changing accessibility levels etc and we can't even get it to work anyway.
    The other option we've considered is to do the processing in a servlet but that would make the process widely accessible.
    Any help would be most appreciated.
    Thanks,
    Cam

    Hi Marje,
    It's possible to include both resizing and image overlay in a custom Fireworks command that can be used in batch processing.  To get started, you could check out this tutorial that deals with the first step.
    That article describes how to perform image resize and overlay (in that case, a watermark), and then how to record the steps and turn them into a custom command that can be later used in batch processing.
    Once you saved the custom command, click File >> Batch Process, and follow the steps below:
    In the first window, select the images you want to process.
    On the next screen, open the Commands dropdown menu and select the custom command you created (it'll probably be on the bottom of the list), and click the Add button to include it in the batch process list.
    Finally, on the next screen select the location of the processed files, and optionally save the batch script for later use.
    Good luck!

  • Multiple currency transaction with DI not possible

    Hi all!
    I'm trying to make a jounral entry with multiple currencies. For example I want to book on Debit in EUR and on Credit side in USD. When I want to add the journal entry I got an error:
    Transaction includes more than one currency.
    I can reproduce the error in Business One, making a Journ Entry in the form. But there I have a form setting called "Allow multiple currency transactions". When I check it I can add my journal entry without any problem.
    Can anyone help me find a solution in this?
    As the Add-on I'm developing is a stock-exchange reporting tool and it passes journal entries to B1, multi currency transactions are regular task
    Thanks!
    Jörg

    Ok, I find a solution by myself.
    In the AdminInfo object is a property called MultiCurrencyCheck. When this is set to cc_NoMessage, I can save the journal entry.
    If you want to change this setting in Business One:
    Select Administration --> System Initialization --> Document Settings --> Per Document tab --> Journal Entry tab
    There is a check box "Allow  multiple currency transactions". The description is wrong and it should say "Block multiple currency transactions", like the other. When it is unchecked, I can make multiple currency transaction otherwise not.

  • CAL - Access system with GUI not possible

    Hi,
    we have activated the SAP hybris Marketing instance with AWS.
    It all seems to be activated successfully. The AWS Cloud instance is running.
    But if we want to access onto the system with gui, the following error occurs:
    We have also entered the entry in the host file, as it is described in the start guide.
    Could anyboby help us and give us instructions what to do, that we are able to access onto the system?
    Many thanks and best regards,
    Mohamed Darwiche

    Hi Mohamed,
    Most probably you are behind a firewall that does not allow you to open an SAPGUI connection.
    You may telnet the list of access points in SAP CAL to get a better picture of the connectivity to your instance: telnet <IP address> <port>
    Best regards,
    Stanimir

  • [Solved] rc.conf problems with modules not auto loading

    hi, i have vboxdrv and vboxnetflt in my rc.conf file but they are not loading when i start the computer. They are installed properly, when i use modprobe vboxdrv and modprobe vboxnetflt they both work. I've only been using arch for a few months, but linux in general for a couple of years, I check what log files i could find but i'm not sure what to look for. Thank you for you time. Please let me know what other info to provide. ps system is up to date as of 10/10/2011.
    edit
    apperently this is not the only issue i'm having, acpi-cpufreq is not loading in rc.conf either. Where do i got to find the log for rc.conf? or how to tell why the modules are not loading. Thanks again.
    Last edited by dkjedi (2011-10-11 17:29:07)

    hope this isn't too log of a post:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    HARDWARECLOCK="localtime"
    TIMEZONE="America/Los_Angeles"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=()
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="myhost"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    eth0="dhcp"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng netfs crond dbus wicd alsa fuse atd acpi-cpu-freq vboxdrv vboxnetflt !network)

  • Cell border with categories not possible?

    Several tables in my worksheet. Those without categories... I can format cell borders. Those with categories, no way. Can't select cell borders or apply line effects to a manually-selected cell border. Is there a workaround?

    You are right. I also discoverd that .NET has an implementation for this. Well, I hate to resort to .NET but have no choice.

  • "Configuration not possible for material PC-2011 : Reason 3"

    Hi any MM guys,
    Please help me to solve the following thread.
    "Configuration not possible for material PC-2011 : Reason 3 --> Help
    Message no. V1360"
    Thanks and regards
    D.Srinivasa rao

    I believe you are trying use Sales order for services....and you have created material in services if I am not wrong.
    Again sticking to basic rules, you can configure only materials with type KMAT. Further for services, I believe there is a concept called milestone billing...which I am not sure about.
    Chk SAP notes, 625092, 26187
    BR,
    Krishna

  • Posting with trans.type 300 not possible (No acquisition posted)   Message

    Dear Gurus,
    When I execute the T-code ABUMN, i've got the following message:
    Posting with trans.type 300 not possible (No acquisition posted)
         Message no. AA324
    Diagnosis
         Transaction type 300 belongs to a transaction type group, which can only
         be used to post to assets to which posting has already been performed.
         However, no postings have been made to this asset.
    Procedure
         Use a transaction type from a transaction type group, which can be used
         for the first acquisition to an asset.
    I don't know why I've got this problem. I did those tries:
    Asset Accounting => transaction => inter-company asset transfers => define transfer variants => define transfer variant:
    I don't know which transaction type to use? (Of course, if the problem can be solve here, i juste suppose it ).
    And I tried also to use an other asset (they said that there isn't any acquisition in this asset so I tried with others, that has got acquisitions).
    Thanks for replying,
    With regards,
    Gül'

    Thanks for helping,
    But the problem occures again...
    After transfert variant, I choose the variant 4 'transfert within a company code", then I enter 100 like you said it to me in the 2 cases:
    -  Transaction type in selling company code
    -  Transaction type for receiving company code
    but i've got a new message:
    Transfer variant 4 02 *: Method 1 retmt TTY not allowed
         Message no. AC636
    Diagnosis
         Transfer method 1 is specified for depreciation area *. A retirement
         transaction type must therefore be assigned.
    Procedure
         Assign a retirement transaction type.
    Then I tried others tranfers methods but it doesn't work! And I tried others transaction type too (always the same error message)

  • With my new version of numbers it is not possible to print the celnumbers. That is difficult for my bookkeeping.

    with my new version of numbers it is not possible to print the celnumbers. That is difficult for my bookkeeping.
    How to solve this problem?

    Hi Jaspers,
    A Header Row and a Header Column might work for you
    Or two extra Tables to show the Row and Column labels
    Regards,
    Ian.

Maybe you are looking for

  • PROCESS OF CANCELLING EXCISE INVOICE - J1IEX.

    Dear All ,                             I have done MIGO , Posted excise invoice by J1IEX , Now i want to cancel this excise invoice  so it is necessary to first cancell the GRN Document , but i m not able to cancell the document as i use the MBST & a

  • Error while adding attribute

    Hi All, I have a BSO cube with 9 dimensions and want to add attribute dimension to generate report based on the managers responsible for different locations. When I created a dimension a new dimesion and changed its dimesion type to "Attribute" dimen

  • HELP! My ipod is corrupted and when I try to restore it, I cant.

    I have had this ipod about a year and I found out that the file with an exclamaition point means corrupted. Well I read enough on ipod support update my itunes and when that didnt work I tried to restore my ipod to factory settings. Every time I try

  • Doubt on SCAT or ECAT ( automation testing )

    Hi Gurus, Can someone detail me about the usage of SCAT or ECAT tool for automation of testing. Any word documentations or useful links. Advance Thanks for the same. Regards Harini

  • How do i get thunderbird to download all messages?

    how do i get thunderbird to download all messages?