Settings for BI Statics

Hi  Experts,
When we go to tcode: RSA1we havean option
in menu bar: tools>Settings fot BI Statics.
Can you tell me what the option is for?
It contains query ,infoproviders,web templates ,work books,  with Statics ON/OFF, OLAP flags.
What does these flags indicates.
Regards.
Naresh.

Hi Naresh,
As per BI the RSDDSTAT transaction is obsolete. so once you install all the BI Content for BI Stats you need enable to record the stats data for the specific objects like infoproviders/queries/web templates ..etc. so if you on the stats for the objects and if you enable them at level of detail. if its 1 normal and if ts 2 then it will record the detail level of the stats data.
hope its clear..
if you have still any doubts plz let us know.
Thanks,
Ashok

Similar Messages

  • [Solved] trouble getting the right settings for a static IP

    I'm not sure of how to best set my static IP connection in Arch.
    In Manjaro/Ubuntu/etc. I use the Network Connections App and put in my IP, Subnet mask, Gateway and DNS. When I've tried to do it in the commandline to set up Arch, I get a "cannot make connection" error (or something of that sort) when I put in the gateway.
    Relevant info for my connection (with XXX and YY standing in for numbers) - this is what I enter for Manjaro/Ubuntu (and what I attempted to use in the commandline to setup Arch - though I added the subnet mask /24 for the IP):
    IP: XXX.YY.37.220
    Mask: 255.255.255.0
    Gateway: XXX.YY.31.1
    The output of "ip route show" in a correctly configured/connecting instance of Manjaro on my system is:
    default via XXX.YY.31.1 dev eno1 proto static
    XXX.YY.31.1 dev eno1 proto static scope link
    XXX.YY.37.0/24 dev eno1 proto kernel scope link src XXX.YY.37.220 metric 1
    From the beginner's guide, it seems I should set up netctl?  I'm wondering what the right settings would be for this based on the above?
    Last edited by emacsomancer (2014-12-15 15:22:16)

    FOllowing the Arch wiki's section on "Persistent configuration on boot using systemd":
    I created config file:
    /etc/conf.d/net-conf-eno1
    address=XXX.YY.37.220
    netmask=24
    broadcast=XXX.YY.37.255
    gateway=XXX.YY.37.1
    and created /usr/local/bin/net-up.sh
    #!/bin/bash
    ip link set dev "$1" up
    ip addr add ${address}/${netmask} broadcast ${broadcast} dev "$1"
    [[ -z ${gateway} ]] || {
    ip route add default via ${gateway}
    and /usr/local/bin/net-down.sh
    #!/bin/bash
    ip addr flush dev "$1"
    ip route flush dev "$1"
    ip link set dev "$1" down
    and /etc/systemd/system/[email protected]
    [Unit]
    Description=Network connectivity (%i)
    Wants=network.target
    Before=network.target
    BindsTo=sys-subsystem-net-devices-%i.device
    After=sys-subsystem-net-devices-%i.device
    [Service]
    Type=oneshot
    RemainAfterExit=yes
    EnvironmentFile=/etc/conf.d/net-conf-%i
    ExecStart=/usr/local/bin/net-up.sh %i
    ExecStop=/usr/local/bin/net-down.sh %i
    [Install]
    WantedBy=multi-user.target
    when i try to execute systemctl enable network@eno1 it reports:
    Error: an inet prefix is expected rather than "/".
    I have narrowed this error down to the net-up.sh, as when I execute sudo ./net-up.sh eno1 it reports the same error as above.

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • Is it possible to change the default settings for the slideshow?

    The default settings for any new slideshow use the dreaded Ken Burns effect and some awful background music from a standard library. Having to turn these things off for every new slideshow I start is driving me nuts. Perhaps preferring no music accompaniment and a static photo on the screen is for some people rather boring - but I would prefer it, at least as a starting point. If anyone can help, I'd be very grateful. Thanks
    MacBook Pro   Mac OS X (10.4.8)   iPhoto 6

    Choose "Export" and then the QuickTime option.
    It will make a 4 track video with a simple "fade" effect between photos. You can set the dimensions and the duration of your photos. You can also remove the music or add your own from your iTunes Library (no purchased music if you intend to share these movies).

  • New ALchemy settings for some major games for Win7 (64-bit)...

    [color="#ff0000"]Update 2/0/0 - Added Sid Meier's Civilization V: Ok this game is so hard to find in the registry because it uses a completely radically new type of installer that basically is a hybrid installer based on pulling the steam client game updates for Civ V and the data from the actual Civ V install DVD. The definiti've install location is similar to other steam apps are installed @ location C:\Program Files (x86)\Steam\steamapps\common\sid meier's civilization v. (The blue part is common for the majority of all steam installed games locations. Finding this for Civ V was not so easy, however.
    Here is the actual entry you should add to your ALchemy.ini file and is the ONLY location that points to the aforementioned correct install path in the entire HKLM tree that is valid. This is truly a very very unique and bizarre and radically new way to find and detect correct install path strings without resorting to using the GAMEUX path (which is different on everyones computer). This path is indentical for all Civ V installs and therefore the most valid. The ALchemy team needs to address these new radical ways that game companies are injecting the install string into the registry in the future or ALchemy will start to break big time. Notice its the Uninstall path that actually functions as the only correct static install path for the game. Its a dual use path. Very clever!
    [Sid Meier's Civilization V]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mi crosoft\Windows\CurrentVersion\Uninstall\Steam App 8930\InstallLocation
    SubDir=
    Duration=5
    Preset=
    GamePath=
    RootDirInstallOption=FALSE
    Buffers=4
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [color="#ff0000"]Update 2/0/0 - Added Star Wars Galaxies Trading Card Game: A nice game if you have SWG that uses gorgeous sound while playing. Here is the ALchemy.ini addition.
    [Star Wars Galaxies Trading Card Game]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wind ows\CurrentVersion\App Paths\SWGTCGGame.exe\Path
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [color="#ff0000"]Update 2/0/0 - Added Star Trek Online: The only correct and static install path for this wonderful game.
    [Star Trek Online]
    RegPath=HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online\InstallLocation
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [color="#ff0000"]Update 2/0/0 - Added A few oldies but goodies: Some older games I have managed to get to work with ALchemy. The sound in these older games is UNREAL in how good they sound now!
    [Fallout Tactics]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\4 Degrees East\Fallout Tactics\ProgramFolder
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [UFO Afterlight]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\AL TAR\UFO Afterlight\Path
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    [UFO Extraterrestrials]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Tr i Synergy\UFO Extraterrestrials\installed to
    Preset=
    GamePath=
    SubDir=
    RootDirInstallOption=FALSE
    Buffers=4
    Duration=25
    MaxVoiceCount=28
    DisableDirectMusic=FALSE
    The original post:
    I was playing around with the D:\Program Files (x86)\Creative\ALchemy\ALchemy.ini file to force ALchemy to run with all the games on my computer. After I changed the reg paths in this .ini file all the games I had on my computer started working with ALchemy running in Windows 7 64-bit. Windows 7 registry paths for some major game titles I play are NOT in the standard location that the ALchemy.ini file has them as which is why they never get registered. I run a 64-bit version of Windows 7 so the path is slightly different then the default ones in the .ini file. Here is what I added/changed and all these games now register with ALchemy and work! Game heading bolds are my addition in this post and not how they look like in the .ini file to help see the game titles better.
    I tend to shy away from any GAMEUX registry strings (for example: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\GameUX\S--5-2-837354825-494596859-745999896-00\{AFF227C-B0BB-49A5-8DFF-E87FDB864D}\ConfigApplicationPath) as they may be different for one computer to the next as they look identical to a SID string which changes radically as it is created when the game is installed. The strings should be static so they would appear identical on my computer as they would on yours. Having a string in the install path that looks like above just gives me the creeps that it is not valid. Since I only have my computer to compare this against I am not positi've of this. Just to be sure stay away from GameUX strings that are alphanumeric in nature as they can change from computer to computer or reinstall to reinstall making ALchemy fail. More on this at the bottom of this post.
    [Cabal]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mi crosoft\Windows\CurrentVersion\Uninstall\CABAL Online_is\InstallLocation
    Preset=
    [Dragon Age Origins]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Bi oWare\Dragon Age\Path
    Preset=
    [Dungeons & Dragons Online: Eberron Unlimited]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Tu rbine\DDO\InstallLocation
    Preset=
    [Sid Meier's Civilization IV]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Fi raxis Games\Sid Meier's Civilization 4\INSTALLDIR
    Duration=5
    Preset=
    [Sid Meier's Civilization IV: Beyond the Sword]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Fi raxis Games\Sid Meier's Civilization 4 - Beyond the Sword\INSTALLDIR
    Duration=5
    Preset=
    [Sid Meier's Civilization IV: Warlords]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Fi raxis Games\Sid Meier's Civilization 4 - Warlords\INSTALLDIR
    Duration=5
    Preset=
    [Sid Meier's Pirates!]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\At ari\Sid Meier's Pirates!\INSTALL_PATH
    Preset=
    [Star Wars Galaxies]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wind ows\CurrentVersion\App Paths\SwgClient_r.exe\Path
    Preset=
    [Wizard0]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Ki ngsIsle Entertainment, Inc.\Wizard0\InstallPath
    Preset=
    [World of Warcraft]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Bl izzard Entertainment\World of Warcraft\InstallPath
    Duration=0
    Preset=
    I left the Preset= in all of them to have default settings. You can change or add the additional options to your pleasure but I find the defaults to work just fine. Here are all the settings for the options from the top of the .ini file.
    ;Creative ALchemy titles
    ;Format/Options:
    ;? [TITLE]
    ;? RegPath <-- registry path containing string to executable or executable's directory (use this when available; alternati've is GamePath)
    ;? GamePath <-- Directory to look for app (use if RegPath can't be used)
    ;? Buffers <-- #buffers to use (default is 4)
    ;? Duration <-- buffer duration (default is 25)
    ;? DisableDirectMusic <-- disable DirectMusic support (default is False)
    ;? MaxVoiceCount <-- maximum number of voices to support (default is 28)
    ;? SubDir <-- subdirectory offset off of path pointed to by RegPath for library support (default is empty string)
    ;? RootDirInstallOption <-- option to install translator support in both RegPath and SubDir directories (default is False)
    Notice if you do a clean reinstall of your games in Windows 7 the game paths are in actuality in the reg path of \Wow6432Node and not just the raw HKLM\Software location due to the way the 64-bit architecture restructures its registry keys to work with 32-bit games (as many of these still are in fact).
    The duration and such you can play with but I just left the settings as they were and changed the executable path location that ALchemy needs to find and work with the game is all. If you reinstall Star Wars Galaxies the new Station Launcher will put the game folder under its location and therefore it may be different in your registry. SWG (and Cabal to some extent) is the only game in this list that specifically points to an abnormal location in the registry for the install path due to the way it is launched from a voicechat type of application (The Station Launcher). But at least it works this way, so I don't care too much. I even got my classic game Sid Meier's Pirates! to work with ALchemy, yay! For Cabal I used the uninstall location for the true install path. I assume as long as the path is valid, it will work and it shows up in the ALchemy window, yay!
    [color="#ff0000"]Please verify these paths in your registry do in fact have these valid regitry entries using regedit or regedt32 and not just modify the .ini file as I have shown above.
    GameUX strings
    There is one game I can not find any verifiable path for in the registry and that's Sid Meier's Colonization =(? If anyone has a clue where this path is stored or how to edit the .ini file to reflect the correct location and work with ALchemy please let me know! I have tried this location:
    [Sid Meier's Colonization]
    RegPath=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wind ows\CurrentVersion\GameUX\S--5-2-837354825-494596859-745999896-00\{AFF227C-B0BB-49A5-8DFF-E87FDB864D}\ConfigApplicationPath
    Preset=
    ...but it does not seem to like the GameUX registry path at all and won't detect it. Probably because its a specialized SID (in other words, the SID will be different on my computer then it is on yours) and ALchemy does not know how to transpose SID registry entries for it to work. GameUX is basically the registry location for all your Games as they are stored under the Start > Game location of your desktop. So if anyone can figure out how to include Direct3D games that are older but do not have a valid installation registry entry please let us know! Of course I could just use the full true path in this .ini file but I am not sure how that would look like and I don't want to break ALchemy for the games it does work with. So I stuck with just valid registry entries.
    I own an X-Fi XtremeGamer sound card with version .4.02 of ALchemy running on Windows 7 64-bit as of this post.

    ?pmc64 wrote:
    Why are you adding new games to alchemy No new games use eax and surround sound should work properly without it. The alchemy team doesnt need to do anything for the future of the program because it's for legacy games. You really don't? need to add wow6432node because it should read it anyways on 64 bit systems. At least it does with the 6 games i have installed. That steam regpath will work on any steam game. you just need to change the app number. About the only games that I have that need it are the old gold source games and far cry because for some reason the original reg path isnt on there. You really should update your alchemy version to 43.06 because the previous versions have problems with windows 7 and some games wont work right unless you change a .dll file to a older one.
    A few things about your post.
    ) Alchemy does not automatically detect the registry path settings as you have been misled for a lot of games you have to manually tell it where it goes. Hence this post.
    2) You are completely missing the point of ALchemy, which is to add the depth of audio in games (yes even new ones) which is lacking without them using just EAX.
    3) ALchemy is for new games not just legacy ones. hence why I have added the keys for both.
    4) I have had numerous ppl tell thank me for posting this thread and their games now are read by ALchemy. If you choose to not follow this thread its you choice. No worries =)
    5) My updater does not show any version besides 4.02 and I dont look for something even newer in some obscure forum post or whatnot. Official beta drivers from Creative tend to be less then stellar in performace (if any indicitation is by how their li've drivers are its even worse in their beta flavors). When I do the auto update it returns:
    Status: No updates are necessary for your Creative product.
    Your system already has the latest versions installed.

  • I think I need help with driver (software) settings for D110a

    I think I need help with driver (software) settings for D110a all-in-one
    Product: D110a all-in-one
    OS: Windows XP Professional
    Error messages: None
    Changes before problem appeared: None--new installation
    The quality of photo images (mostly JPG files) in printouts is awful even though the files display beautifully on the PC screen. I am using
    IrfanView software for displaying/printing. As far as I can tell, IrfanView is not the problem.
    When I print the same images on a Deskjet 5150 attached to a different PC also running XP Pro and IrfanView, the quality of the printouts is at
    least acceptable, Some would probably say good or very good.
    It's dificult to explain in words the problem with the printouts. A picture of really pretty vegetables (squashes, tomatoes, watermelon, etc) comes
    out much too red. Moreover, the red, which appears shaded on the screen, seems to be all one shade in the D110a printouts.
    Something similar happens to a view of a huge tree in full leaf. On screen, there are subtle variations in the "greenness" of the leaves. In the
    printout, all green is the same shade. In the same printout, the trunk of the tree is all a single shade of grey. It isn;t even obvious that the
    trunk is a round, solid object.
    I liken the effect to audio that disappears entirely when you lower the volume and gets clipped into square waves in even moderately loud passages.
    I don't know whether the D110a driver software permits adjusting the parameters that appear to be set incorrectly, and if adjustments are possible,
    how I would identify which parameters to adjust, how I would access them, or how I would adjust them. I'm hoping that someone can help. Thanks.
    I forgot to mention that I have used the diagnostic application and it tells me that there are no problems.
    e-mail me at [email protected]

    brazzmonkey wrote:
    Hi everyone,
    I noticed the following message when network starts on my gateway
    Warning: This functionality is deprecated.
    Please refer to /etc/rc.conf on how to define a single wired
    connection, or use a utility such as netcfg.
    Then I realized the way network settings should be written in rc.conf has changed. But I can't figure out how this should be done.
    Currently, my set up is the following (old way):
    INTERFACES=(eth0 eth1)
    eth0="dhcp"
    eth1="eth1 192.168.0.10 netmask 255.255.255.0 broadcast 192.168.0.255"
    ROUTES=(!gateway)
    eth0 is on DHCP because the IP is dynamically assigned my ISP.
    eth1 has a fix IP because it's on the LAN side.
    No problem to use DHCP on eth0 with the new settings.
    But for eth1, I don't know what I am supposed to write for gateway.
    Wiki isn't clear on that one either, and it looks like many articles still refer to the old way.
    Any guidance appreciated, thanks.
    brazzmonkey,
    you can't define 2 interfaces the old way (even though I saw some tricky workaround somewhere in the forums).
    Use, f.e., netcfg:
    Comment your old lines.
    In /etc/rc.conf insert:
    NETWORKS=(Eth0-dhcp Eth1-static)
    DAEMONS=(..... !network @net-profiles ....)
    In /etc/network.d create 2 files:
    First one is named  Eth0-dhcp.
    Contents:
    CONNECTION="ethernet"
    DESCRIPTION="Whatever text"
    INTERFACE=eth0
    HOSTNAME="your hostname"
    IP="dhcp"
    DHCP_TIMEOUT=15
    Second one is named Eth1-static.
    Contents:
    CONNECTION='ethernet'
    DESCRIPTION='whatver'
    INTERFACE='eth1'
    HOSTNAME='hname'
    IP='static'
    ADDR='192.168.0.10'
    GATEWAY='192.168.0.1' # your gateway IP
    DNS=('192.168.0.1') # your DNS server
    The names Eth0-dhcp and Eth1-static are not magic. They just must be the same in rc.conf and in /etc/network.d.
    Hope it helps.
    mektub
    PS: netcfg must be installed.
    Last edited by Mektub (2011-07-20 14:07:05)

  • Configure proxy settings for WebEngine

    I had no luck in finding any docs about how to configure the proxy server for a WebView/WebEngine.
    I assume the system properties "http.proxyHost" and "http.proxyPort" are used if they are set, is this correct?
    Is there also a way to configure the proxy settings for each WebEngine instance?
    Regards,
    Heiko

    I am also getting this "error".  The printer (8500 A910) connected to the web well enough that it went out and supposedly downloaded a new update, but then it was supposed to print a page showing the email address, but did not.
    So I go in and try to set up the eprint, and it tells me it cannot connect to the sever and I'll need to enter a proxy address and port number.  But my ISP's cable modems do NOT have any static IP address nor do they provide any sort of proxy service.  Everything works just fine with "automatic discovery" (DHCP) for every computer in the house.  No problems there.
    So, since  that's the case, of course I cannot look up some proxy address and port number in my web browser because they're all set up for "automatically detect settings".
    What's baffling is that the printer connected to something at HP to download the "update", and it went through a process that appeared to be what I'd expect it to do if it was updating its firmware.  But it won't connect to whatever it's supposed to connect to to have an email address assigned.
    Does HP supply a proxy server?  If so, what's its IP address or URL, and what port should a person set the printer to try to use?
    UPDATE:
    It appears that the HP site must have just been "down" for about six or seven hours while I was trying to get the printer to connect because it now connected and I got an email address asigned without needing to have any "proxy" stuff set up at all.  It's a shame that the printer does not simply report "HP Site down - try again later" instead of reporting that you need to use a proxy when that's impossible.
    "Now, on to the next problem which is that my emails to the assigned address are all bouncing with a "550 5.7.1 Command rejected" error!

  • Hello All... Back after a brief absence, things look a little bit different. I'm trying to take a 16 minute mini dv video and compress it for use on the web. I'm interested in any suggestions you may have on settings for the video and audio tracks. I'v

    Hello All...
    Back after a brief absence, things look a little bit different.
    I'm trying to take a 16 minute mini dv video and compress it for use on the web. I'm interested in any suggestions you may have on settings for the video and audio tracks. I've tried using Sorenson 3 (15 frames, key frames set to automatic, 320 x 240) for video and IMA 4:1 (mono) for audio. The resulting video looked great but the file size came in at about 255 Mb.
    Thanks!
    PowerMac G5 1.8 Dual   Mac OS X (10.4.3)  
    Message was edited by: Dan Foley

    Thank you for the replies.  Everyone was correct about the jack, interface, and phasing problems.  I have been unplugging my motu audio interface and then using headphones at work.  I have not changed any detailed audio output settings in logic.  When I read that the jack might be a problem I tried switching headphones.  This actually helped.  I am using dre-beats headphones and they seem to be having issues with the mac/jack-(the phasing/panning problems.  I can use these headphones with other devices but not the mac.  I have to use ipod ear buds and the phasing seems fixed.  Hopefully this information is helpful to someone else. 
    If anyone knows how to correct this issue please let me know its difficult to know what my final mixes are going to sound like and I have had to keep bouncing everything into i-tunes- sync to ipod and then listen in my car radio. 

  • Adobe cloud to save automatically actions, stuff and settings for example?

    Hi!
    I had a hard-disk error and had to reinstall everything and with that I lost my photoshop actions...
    Can't adobe cloud save automatically / sync this kind of stuff and personalize settings for example?
    Thanks!
    Francisco

    Hi Francisco, here are the details around sync settings and items that can be synced as of now: Photoshop Help | Sync settings using Adobe Creative Cloud
    Thanks,
    Atul Saini

  • HT4864 I am getting a triangle with an exclamation point next to my inbox...it says: There may be a problem with the mail server or network. Verify the settings for account "MobileMe" or try again.  The server returned the error: Mail was unable to log in

    I can send but cannot recieve email
    This is the messege I am gewtting:
    There may be a problem with the mail server or network. Verify the settings for account “MobileMe” or try again.
    The server returned the error: Mail was unable to log in to the IMAP server “p02-imap.mail.me.com” using “Password” authentication. Verify that your account settings are correct.
    The server returned the error: Service temporarily unavailable

    Also if I go to system preferences accounts and re-enter the password it fixes the glitch sometimes.

  • ITunes looses photo sync settings for Apple TV (1st gen.)

    Since the update to the new Photo app on my Mac, iTunes forgets the photo sync settings for my Apple TV (1st. generation, 160 GB HDD).
    Every time I open the photo section of the Apple TV sync settings, all the options are turned off. Then I mark a couple of albums and sync the Apple TV >> all album appear on the Apple TV.
    But after closing and re-opening iTunes in the photo settings everything is unmarked again. So on every following sync the photos on the Apple TV are easily erased :-( Resync them to the Apple TV takes hours (>30'000 photos!).
    All the other sync settings in iTunes remain intact.
    Environment:
    - MacBook Pro Retina 15" with the latest SW (Mac OS, iTunes, Photo App, etc.)
    - Apple TV 1st gen 160 GB HDD

    Restarting iTunes resolves the issue in the majority of cases, if it doesn't my second guess would be your security software.
    What really seems strange here is that there have been no updates since well before Xmas, so after initially setting it up, the first update would have brought you right up to the most recent (and indeed the very last) .
    Agh, how silly of me, I see it's iTunes you have updated.
    If that's about all you've changed, you might want to try reinstalling iTunes and bonjour.
    Message was edited by: Winston Churchill

  • Different rich text/plain text settings for different accounts?

    I use Mail for both my work email (MS Exchange) and my personal email (webmail/IMAP). Many of my coworkers use Outlook's rich text formatting options, so I need to have my work emails go out as rich text. However I'd like to have my personal emails go out as plain text.
    I can set Mail to create new messages in plain text, but to reply in the same format of the original message. That takes care of everything EXCEPT when I compose a new message using my work address... in that case it goes out as plain text, and my coworkers complain that they can't use formatting, because their copies of Outlook are in turn configured to reply in the same format as the original message.
    So ideally what I'd like is to have two different formatting settings for my two different accounts. Anyone know how this might be done? Any plugins, etc., that might accomplish this?

    Since you are running Jaguar, Jaguar and Panther Mail do not support composing in HTML and this includes when forwarding a message received that was composed in HTML.
    Since Jaguar and Panther Mail do not support composing or forwarding HTML, you can't embed images or photos in the message body anyway.
    RTF with Tiger Mail is really HTML and although Tiger Mail does not include an HTML composer/editor, you can copy/paste HTML format from a web page and forward HTML received.
    Images/photos and single page PDF attachments are revealed as inline or viewed in place within the body of the message by default which cannot be turned off. This applies to received and sent messages which is not the same as being embedded. Embedded requires HTML and an embedded attachment is not a true attachment. All Mail.app versions render HTML received but you cannot attach a photo or image as embedded with Jaguar or Panther Mail so it doesn't matter if you use RTF or Plain Text in regards to photo/image or single page PDF attachments which appear as inline or viewed in place within the body of the message by default regardless.
    When you use Plain Text for message composition, the receiving mail client renders the text in whatever font the reader chooses.
    IMO, everyone should use Plain Text for message composition. Messages would be boring to some but the majority if not all problems experienced with email would be eliminated if HTML was banned from message composition.

  • TS2446 I just got my iPad,  I have an iPod. When I go to put apps on it says my apple I'd Is disabled. I have reset the passwords. Somehow I have two id's?  I've gone into settings for apps signed out and back in with the new p.w.  I can't think of what e

    I just got my iPad,  I have an iPod. When I go to put apps on my new ipad it says my apple ID Is disabled. I have reset the passwords. Somehow I have two id's?  I've gone into settings for apps signed out and back in with the new p.w.  I can't think of what else to do to get the disabled block off.  Any ideas?? Thanks

    See this Apple document for help...
    http://support.apple.com/kb/ts2446

  • When I try to disable cellular data in the settings for my apps it will toggle fine, but once I exit and go back in to the cellular settings its back on again all by itself.

    I have had a problem with my iphone 4s for some time now but I have just been so busy to try and fix it. When I try to disable cellular data in the settings for my apps it will toggle fine, but once I exit and go back in to the cellular settings its back on again all by itself. However, even though it says the data is on, I can’t use the data when I don’t have wifi. I tried restoring my phone a few times and the last time I did that, it wouldn’t turn my service on so I had to talk with a Verizon agent for a long time trying to fix it and finally they simply sent me another phone. I thought hey new phone, this part will be fixed. However, I got my service to work but it’s still the same problem with the cellular data. I have just left it alone and not worried about it, but it’s still not fixed and thought I could ask on here if anyone had any ideas. It has something to do with the apps actually installed on the iphone. Apps like the mail, safari, settings, itunes apps, etc. All my other apps turn on and off just fine. Does anyone have any ideas?

    Read the User's Guide... it covers how to backup and sync the device as designed.

  • How the files are decreasing from RBS storage after some time i delete docs from document library, where shld I check the settings for this?

    HI
    I created a web application and configured  rbs storage ,
    I uploaded documents (for ex: 18 number)
     after uploaded  documents ,  and observed the RBS storage folder, number of files are increasing (39 number) , its working fine
    and also  I run the querys to check the rows increasing or not , (when I upload new doc rows are increased its fine also)
    select count(*) from alldocs
    Select count(*) from AllDocstreams
    but when I delete some docs from document library ,
    1)the doc itself deleted from document library
    2)when I check the rbs storage  there is no number of files are decreased(its still 39 files ), its same as  before doc deleted from doc library
    after some time I found the number of files are decreasing from RBS storage folder in sql server,
    here I want to know the how the files are decreasing from RBS storage  after some time, where  shld I check the settings for this? and how I control on it
    here how I know the settings for cleaning up orphan BLBOS how  these deleted BLOB
    adil

    1. WHen you delete the file from Sharepoint, it is still present in Recycle bin. This is a default setting in sharepoint for 30 days. Once files are deleted fro Recycle bin, it can also be delete from RBS
    2. There is a RBS cleanup job which deletes files from RBS. for more info check 
    http://mehuljamod.blogspot.in/2012/09/remote-blob-storage-maintainer-rbs.html

Maybe you are looking for

  • Reliably calculating character bounds for Right-To-Left languages using flash.text.engine.* classes?

    I just filed a bug in the Adobe bugbase about this, but I thought maybe the community could help with a workaround (or point me in another direction if I'm looking at it wrong). I don't know an elegant way to describe the defect, but it's something l

  • How to get the row & col of the cell being edited?

    I have a reference to a editable JTable, and I want to know at any point in time, what cell the user is editing (specifically the row & col). You'd think you could just go: int col = table.getActiveCellColumn(); int row = table.getActiveCellRow(); Wh

  • Fetch from cursor variable

    Hello, I have a procedure, which specification is something like that: procedure proc1 (pcursor OUT SYS_REFCURSOR, parg1 IN NUMBER, parg2 IN NUMBER, ...);Inside the body of proc1 I have OPEN pcursor FOR   SELECT column1,               column2,       

  • Non-administrative account doesn't login to on-line class

    On my son's MacBook, I, as the administrator, can log in to an online class (for him) without a problem. At the finder, if he logs in and then launches Safari and goes to the login window for the class, puts in his user name and password – the addres

  • Can't write new e-mails or reply to mails.

    After my last update to iOs 6.1.2 I can't write new e-mails or reply to mails anymore because the new or reply toolbar with move, send or delete is gone! I can send directly from Photos or other apps, but not from Mail.