DTR toggle on x86

I have been working with a few applications that toggle off and on DTR on /dev/ttyb very quickly. (specifically flipit & bottlerocket for X-10 home automation)
I have compiled successfully with linux (RH 7.0 on i386) , Solaris on an SS5 (Solaris 8 -01/01) - after modifying my running
kernel with adb with a patch for the ZS driver, to allow rapid toggle of DTR)
The problem is, the system does not respond to DTR toggle like it should(quickly), but operation of a modem is fine with tip.
I have turned off the getty for /dev/ttyb with admintool.
There is many threads regarding the ZS & SE drivers with this type of behaviour, but there is no mention of contemporary Solaris X86 exhibiting the same problem.
I have a compiled this code on the sparcstation/x86 with different results.
#include <fcntl.h>
#include <termio.h>
#include <sys/time.h>
#define L 13
#define H 14
/* Global variable (just for this test) */
int port;
void outport(unsigned char x)
int bitset;
switch (x)
case L:
bitset = TIOCM_DTR;
ioctl(port, TIOCMBIS, &bitset);
break;
case H:
bitset = TIOCM_DTR;
ioctl(port, TIOCMBIC, &bitset);
break;
default :
printf("Invalid Status ...\n");
int main(int argc, char **argv)
struct timeval time;
int i;
if ((port = open("/dev/ttyb", O_RDWR | O_NDELAY | O_NOCTTY)) == -1)
printf("Unable to open /dev/ttyb/n");
exit(1);
/* NOTE: output to ttyb is inverted (H->L, L->H) */
for (i=0; i<1000; i++)
outport(H); /* init */
gettimeofday(&time, NULL);
printf("H: %ld.%ld\n", time.tv_sec,time.tv_usec);
outport(L);
gettimeofday(&time, NULL); printf("L:%ld.%ld\n",time.tv_sec,time.tv_usec);
/* close(port); */
The sparcstation(with DTR patch) rapidly toggles DTR, while the X86 toggles seldom.
Help!
/Mark

In Preferences->Appearance, see what the hot area display threshold is set to. It should be 97 or higher.

Similar Messages

  • DTR toggle wonky on Sol8-04/01 x86

    I have been working with a few applications that toggle off and on DTR on /dev/ttyb very quickly. (specifically flipit & bottlerocket for X-10 home automation)
    I have compiled successfully with linux (RH 7.0 on i386) , Solaris on an SS5 (Solaris 8 -01/01) - after modifying my running kernel with adb with a patch for the ZS driver, to allow rapid toggle of DTR)
    The problem is, the system does not respond to DTR toggle like it should(quickly), but operation of a modem is fine with tip.
    I have turned off the getty for /dev/ttyb with admintool.
    There is many threads regarding the ZS & SE drivers with this type of behaviour, but there is no mention of contemporary Solaris X86 exhibiting the same problem.
    I have a compiled this code on the sparcstation/x86 with different results.
    #include <fcntl.h>
    #include <termio.h>
    #include <sys/time.h>
    #define L 13
    #define H 14
    /* Global variable (just for this test) */
    int port;
    void outport(unsigned char x)
    int bitset;
    switch (x)
    case L:
    bitset = TIOCM_DTR;
    ioctl(port, TIOCMBIS, &bitset);
    break;
    case H:
    bitset = TIOCM_DTR;
    ioctl(port, TIOCMBIC, &bitset);
    break;
    default :
    printf("Invalid Status ...\n");
    int main(int argc, char **argv)
    struct timeval time;
    int i;
    if ((port = open("/dev/ttyb", O_RDWR | O_NDELAY | O_NOCTTY)) == -1)
    printf("Unable to open /dev/ttyb/n");
    exit(1);
    /* NOTE: output to ttyb is inverted (H->L, L->H) */
    for (i=0; i<1000; i++)
    outport(H); /* init */
    gettimeofday(&time, NULL); printf("H: %ld.%ld\n", time.tv_sec,
    time.tv_usec);
    outport(L);
    gettimeofday(&time, NULL); printf("L: %ld.%ld\n", time.tv_sec,
    time.tv_usec);
    /* close(port); */
    The sparcstation(with DTR patch) rapidly toggles DTR, while the X86 toggles seldom.
    Help!
    /Mark

    hi Sivasubramanian,
    as i'm on a vacation in San Francisco (i'm writing this on my Cingular 8525 Windows Pocket PC 5) I won't be able to take a look at the
    report...(my email is jags_fl at yahoo dot com) but after u ran installation check tool did u look at the results? check for those 'Y' & 'N' as showed on following page:
    http://www.sun.com/bigadmin/hcl/hcts/install_check.html
    u would be able to see urself if any hardware is not compatible (at the end of installation check tool)...
    - Jags Desai

  • Error when starting DTR Console on NWDI 7.31

    Hi Guys
    When starting DTR console from command line on a Windows 2008 OS, im getting the following error
    S:\usr\sap\NDI\SYS\global\com.sap.dtr.console>run
    S:\usr\sap\NDI\SYS\global\com.sap.dtr.console>java -Dhttp.readtimeout=0 -cp S:\usr\sap\NDI\SYS\global\com.sap.dtr.console\sap.com~tc~dtr~console~all.jar;S:\usr\sap\NDI\SYS\global\com.sap.dtr.console\sap.com~tc~dtr~cmdlineappfwk~all.jar;S:\usr\sap\NDI\SYS\global\com.sap.dtr.console\antlr-runtime-3.0.1.jar com.sap.dtr.console.DTRConsoleApplication
    Exception in thread "main" java.lang.RuntimeException: com.sap.dtr.cmdlinefwk.CommandLineException: Validation of the examples for the command "Discard" failed.
    The example "discard -col  -cip/collision/dce6250e4fd911dc81e400199905d653_3_b4c044e04fd511dccef000199905d653_b4c044d84fd511dca33b00199905d653_open_PredSucc" contains a command that is not valid against its specification.
            at com.sap.dtr.console.DTRConsoleApplication.registerCommandSpecs(DTRConsoleApplication.java:207)
            at com.sap.dtr.console.DTRConsoleApplication.initialize(DTRConsoleApplication.java:156)
            at com.sap.dtr.console.DTRConsoleApplication.<init>(DTRConsoleApplication.java:137)
            at com.sap.dtr.console.DTRConsoleApplication.main(DTRConsoleApplication.
    java:311)
    Caused by: com.sap.dtr.cmdlinefwk.CommandLineException: Validation of the examples for the command "Discard" failed.
    The example "discard -col -cip /collision/dce6250e4fd911dc81e400199905d653_3_b4c044e04fd511dccef000199905d653_b4c044d84fd511dca33b00199905d653_open_PredSucc" contains a command that is not valid against its specification.
            at com.sap.dtr.cmdlinefwk.CommandLineApplication.addCommandLineSpec(CommandLineApplication.java:115)
            at com.sap.dtr.console.DTRConsoleApplication.registerCommandSpecs(DTRConsoleApplication.java:204)
            ... 3 more
    Caused by: com.sap.dtr.cmdlinefwk.CommandNotSupportedException: Command 'discard' is not supported
            at com.sap.dtr.cmdlinefwk.support.parser.DefaultCommandLineParser.parse(DefaultCommandLineParser.java:57)
            at com.sap.dtr.cmdlinefwk.CommandLineApplication.addCommandLineSpec(CommandLineApplication.java:107)
            ... 4 more
    Any idea what is missing? Im seeing the command line its showing S:\usr\sap\NDI\SYS\global\com.sap.dtr.console\antlr-runtime-3.0.1.jar, but this file is not present
    Thesefiles are at  OS level
    Regards!

    Hi,
    i have also problem with launching DTR console. I followed this article for enabling it:
    Starting Command Line Tools - Using the Development and Production Infrastructure - SAP Library
    But when I try to start the console via Run, I receive this error:
    eclipse.buildId=unknown
    java.version=1.6.0_38
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en
    Framework arguments:  -application com.sap.di.cltools.dtrshell
    Command-line arguments:  -application com.sap.di.cltools.dtrshell -data D:\IDE\IDE7.31SP12\eclipse\workspace/../runtime-New_configuration(2) -dev file:D:/IDE/IDE7.31SP12/eclipse/workspace/.metadata/.plugins/org.eclipse.pde.core/CBS Command Line Tool/dev.properties -os win32 -ws win32 -arch x86
    Error
    Wed Oct 29 15:53:05 EET 2014
    Application error
    java.lang.NullPointerException
    at com.tssap.dtr.client.commandline.DTRShell.main(DTRShell.java:86)
    at com.sap.di.cltools.internal.DtrShell.start(DtrShell.java:32)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1311)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1287)
    If you have solution to this problem, please give me advice.
    Thanks!

  • Preview toggle in Lighting Effects crashes CS6 Beta

    I'm on Win7x64 Ultimate, 8GB RAM, GTX260-896 MB VRAM, latest drivers (296.10 released 13 Mar 2012).
    I can use, and save the results of using, Lighting Effects (only relatively small (< 4 MB) flat 16-bit TIFFs and flat JPEGs tried so far) with no apparent difficulties. However, any but the most limited use (not exceededing three on average - applied as a continuous toggle) of the Preview button invariably causes CS6 Beta to crash. This is the error message generated by Windows:
    "Adobe Photoshop CS6 has stopprd working
    Windows can check online for a solution to the problem.
    > Check online for a solution and close the program
    > Close the program
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: Photoshop.exe
    Application Version: 13.0.0.0
    Application Timestamp: 4f551de1
    Fault Module Name: MSVCR100.dll
    Fault Module Version: 10.0.40219.1
    Fault Module Timestamp: 4d5f034a
    Exception Code: c0000005
    Exception Offset: 000000000003c145
    OS Version: 6.1.7601.2.1.0.2561
    Locale ID: 3081
    Additional Information 1: 651f
    Additional Information 2: 651f7c834e2a84316ab24fc8b52f3652
    Additional Information 3: b579
    Additional Information 4: b579ee6e46c3f5067c4f88b754331731"
    This happens with all Basic, Normal and Advanced Drawing Modes in the "Advanced Settings" tab of the Graphics Processor Settings dialog in the Performance Tab of Preferences. Having ticked "Use Graphics Processor" and then clicked the "Advanced Settings" button, CS6 Beta tells me that Open CL is an available option (which is consistent with the release notes for the latest drivers) but because my graphics card is now about 4 or 5 years old, I have my doubts and so my testing  has included not selecting that option. However all tests have selected "Use Graphics Processor to Accelerate Computation".
    I was hoping that someone in the Adobe development team might be able to have a look at this issue for me? Please?

    Continuing to experience this problem - this time applying the filter to a Smart Object layer in an 84 MB PSD file - crash occuring after just 3 toggles of the Preview button.
    Here is the summary and full report generated by NirSoft's AppCrashView (ver 1.11) program. It takes its info from the Windows WERs.
    Can anyone else reproduce this behaviour ?
    "Process File      : Photoshop.exe
    Event Name        : Stopped working
    Event Time        : 15/04/2012 11:14:50 AM
    User Name         : ash1
    Exception Code    : 0xc000041d
    Exception Offset  : 0x0003bfa0
    Fault Module Name : MSVCR100.dll
    Fault Module Version: 10.0.40219.1
    Process Path      : C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe
    Report File Size  : 24,848
    Report File Path  : C:\Users\ash1\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_Photoshop.exe_1b 8b58bdaa548d6e15719b3bab048eabd76d4c_0bc93b0e\Report.wer
    ==================================================
    Version=1
    EventType=APPCRASH
    EventTime=129789260908135188
    ReportType=2
    Consent=1
    ReportIdentifier=65b7a714-8698-11e1-8101-e0cb4e0158b2
    IntegratorReportIdentifier=65b7a713-8698-11e1-8101-e0cb4e0158b2
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=Photoshop.exe
    Sig[1].Name=Application Version
    Sig[1].Value=13.0.0.0
    Sig[2].Name=Application Timestamp
    Sig[2].Value=4f551de1
    Sig[3].Name=Fault Module Name
    Sig[3].Value=MSVCR100.dll
    Sig[4].Name=Fault Module Version
    Sig[4].Value=10.0.40219.1
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=4d5f034a
    Sig[6].Name=Exception Code
    Sig[6].Value=c000041d
    Sig[7].Name=Exception Offset
    Sig[7].Value=000000000003bfa0
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.1
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=3081
    DynamicSig[22].Name=Additional Information 1
    DynamicSig[22].Value=5bd8
    DynamicSig[23].Name=Additional Information 2
    DynamicSig[23].Value=5bd849b86497feb978496e03527c669c
    DynamicSig[24].Name=Additional Information 3
    DynamicSig[24].Value=962e
    DynamicSig[25].Name=Additional Information 4
    DynamicSig[25].Value=962e959bbf98fe94a144f2382e80f5ea
    UI[2]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe
    UI[3]=Adobe Photoshop CS6 has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\system32\kernel32.dll
    LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.760 1.17514_none_2b24536c71ed437a\gdiplus.dll
    LoadedModule[5]=C:\Windows\system32\msvcrt.dll
    LoadedModule[6]=C:\Windows\system32\USER32.dll
    LoadedModule[7]=C:\Windows\system32\GDI32.dll
    LoadedModule[8]=C:\Windows\system32\LPK.dll
    LoadedModule[9]=C:\Windows\system32\USP10.dll
    LoadedModule[10]=C:\Windows\system32\ole32.dll
    LoadedModule[11]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[12]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\ExtendScript.dll
    LoadedModule[13]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\MSVCR100.dll
    LoadedModule[14]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\ScCore.dll
    LoadedModule[15]=C:\Windows\system32\SHELL32.dll
    LoadedModule[16]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[17]=C:\Windows\system32\mscms.dll
    LoadedModule[18]=C:\Windows\system32\USERENV.dll
    LoadedModule[19]=C:\Windows\system32\profapi.dll
    LoadedModule[20]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\MSVCP100.dll
    LoadedModule[21]=C:\Windows\system32\OPENGL32.dll
    LoadedModule[22]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[23]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[24]=C:\Windows\system32\GLU32.dll
    LoadedModule[25]=C:\Windows\system32\DDRAW.dll
    LoadedModule[26]=C:\Windows\system32\DCIMAN32.dll
    LoadedModule[27]=C:\Windows\system32\SETUPAPI.dll
    LoadedModule[28]=C:\Windows\system32\CFGMGR32.dll
    LoadedModule[29]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[30]=C:\Windows\system32\DEVOBJ.dll
    LoadedModule[31]=C:\Windows\system32\dwmapi.dll
    LoadedModule[32]=C:\Windows\system32\WS2_32.dll
    LoadedModule[33]=C:\Windows\system32\NSI.dll
    LoadedModule[34]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[35]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\cg.dll
    LoadedModule[36]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\cgGL.dll
    LoadedModule[37]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\adbeape.dll
    LoadedModule[38]=C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.616 1_none_08e61857a83bc251\MSVCR90.dll
    LoadedModule[39]=C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.616 1_none_08e61857a83bc251\MSVCP90.dll
    LoadedModule[40]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\AdobeOwl.dll
    LoadedModule[41]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\ahclient.dll
    LoadedModule[42]=C:\Windows\system32\WININET.dll
    LoadedModule[43]=C:\Windows\system32\Normaliz.dll
    LoadedModule[44]=C:\Windows\system32\iertutil.dll
    LoadedModule[45]=C:\Windows\system32\urlmon.dll
    LoadedModule[46]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\amtlib.dll
    LoadedModule[47]=C:\Windows\system32\WINHTTP.dll
    LoadedModule[48]=C:\Windows\system32\webio.dll
    LoadedModule[49]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[50]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[51]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\AXEDOMCore.dll
    LoadedModule[52]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\MPS.dll
    LoadedModule[53]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\PlugPlug.dll
    LoadedModule[54]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\tbb.dll
    LoadedModule[55]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\AdobeLinguistic.dll
    LoadedModule[56]=C:\Windows\system32\PSAPI.DLL
    LoadedModule[57]=C:\Windows\system32\IMM32.DLL
    LoadedModule[58]=C:\Windows\system32\MSCTF.dll
    LoadedModule[59]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\tbbmalloc.dll
    LoadedModule[60]=C:\Windows\system32\VERSION.dll
    LoadedModule[61]=C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1d f_6.0.7601.17514_none_fa396087175ac9ac\comctl32.dll
    LoadedModule[62]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[63]=C:\Windows\system32\uxtheme.dll
    LoadedModule[64]=C:\Windows\system32\STI.DLL
    LoadedModule[65]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[66]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[67]=C:\Windows\system32\rsaenh.dll
    LoadedModule[68]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[69]=C:\Windows\system32\wiatrace.dll
    LoadedModule[70]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.dll
    LoadedModule[71]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\PSViews.dll
    LoadedModule[72]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\PSArt.dll
    LoadedModule[73]=C:\Windows\system32\c_g18030.dll
    LoadedModule[74]=C:\Windows\system32\MSIMG32.dll
    LoadedModule[75]=C:\Windows\system32\apphelp.dll
    LoadedModule[76]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\Plug-Ins\Extensions\FastCore.8BX
    LoadedModule[77]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\Plug-Ins\Extensions\MMXCore.8BX
    LoadedModule[78]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\libmmd.dll
    LoadedModule[79]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\Plug-Ins\Extensions\MultiProcessor Support.8BX
    LoadedModule[80]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\PLUGIN.dll
    LoadedModule[81]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\Plug-Ins\ADM\ADMPlugin.apl
    LoadedModule[82]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\AdobeXMP.dll
    LoadedModule[83]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\Plug-Ins\File Formats\Dicom.8BI
    LoadedModule[84]=C:\Windows\system32\WSOCK32.dll
    LoadedModule[85]=C:\Windows\system32\NETAPI32.dll
    LoadedModule[86]=C:\Windows\system32\netutils.dll
    LoadedModule[87]=C:\Windows\system32\srvcli.dll
    LoadedModule[88]=C:\Windows\system32\wkscli.dll
    LoadedModule[89]=C:\Program Files\Common Files\Adobe\Plug-Ins\CS6\File Formats\Camera Raw.8bi
    LoadedModule[90]=C:\Windows\system32\wbem\wbemprox.dll
    LoadedModule[91]=C:\Windows\system32\wbemcomn.dll
    LoadedModule[92]=C:\Windows\system32\wbem\wbemsvc.dll
    LoadedModule[93]=C:\Windows\system32\wbem\fastprox.dll
    LoadedModule[94]=C:\Windows\system32\NTDSAPI.dll
    LoadedModule[95]=C:\Windows\system32\ntmarta.dll
    LoadedModule[96]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[97]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\BIB.dll
    LoadedModule[98]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\BIBUtils.dll
    LoadedModule[99]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\ACE.dll
    LoadedModule[100]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\AGM.dll
    LoadedModule[101]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\CoolType.dll
    LoadedModule[102]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\AXE8SharedExpat.dll
    LoadedModule[103]=C:\Windows\system32\icm32.dll
    LoadedModule[104]=C:\Windows\System32\msxml6.dll
    LoadedModule[105]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\AdobePIP.dll
    LoadedModule[106]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\LogSession.dll
    LoadedModule[107]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\WRServices.dll
    LoadedModule[108]=C:\Program Files\Common Files\Adobe\Linguistics\6.0\Providers\Plugins2\AdobeHunspellPlugin\AdobeHunspellPlugin.dl l
    LoadedModule[109]=C:\Program Files\Common Files\Adobe\Linguistics\6.0\Providers\Plugins2\WRLiloPlugin1.3\WRLiloPlugin.dll
    LoadedModule[110]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\Plug-Ins\Extensions\ScriptingSupport.8li
    LoadedModule[111]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\ScriptUIFlex.dll
    LoadedModule[112]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\adobe_caps.dll
    LoadedModule[113]=C:\Windows\system32\WindowsCodecs.dll
    LoadedModule[114]=C:\Windows\system32\WTSAPI32.dll
    LoadedModule[115]=C:\Windows\system32\WINSTA.dll
    LoadedModule[116]=C:\Windows\system32\EhStorShell.dll
    LoadedModule[117]=C:\Windows\system32\PROPSYS.dll
    LoadedModule[118]=C:\Windows\System32\cscui.dll
    LoadedModule[119]=C:\Windows\System32\CSCDLL.dll
    LoadedModule[120]=C:\Windows\system32\CSCAPI.dll
    LoadedModule[121]=C:\Windows\system32\ntshrui.dll
    LoadedModule[122]=C:\Windows\system32\slc.dll
    LoadedModule[123]=C:\Program Files\Common Files\Adobe\APE\3.3\adbeapecore.dll
    LoadedModule[124]=C:\Windows\system32\SXS.DLL
    LoadedModule[125]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\aif_core.dll
    LoadedModule[126]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\aif_ogl.dll
    LoadedModule[127]=C:\Windows\system32\nvoglv64.DLL
    LoadedModule[128]=C:\Windows\system32\WINTRUST.dll
    LoadedModule[129]=C:\Windows\system32\CRYPT32.dll
    LoadedModule[130]=C:\Windows\system32\MSASN1.dll
    LoadedModule[131]=C:\Program Files\Common Files\Adobe\APE\3.3\adbeapeengine.dll
    LoadedModule[132]=C:\Windows\system32\OLEACC.dll
    LoadedModule[133]=C:\Windows\system32\COMDLG32.dll
    LoadedModule[134]=C:\Windows\system32\WINMM.dll
    LoadedModule[135]=C:\Windows\system32\msi.dll
    LoadedModule[136]=C:\Windows\system32\DSOUND.dll
    LoadedModule[137]=C:\Windows\system32\POWRPROF.dll
    LoadedModule[138]=C:\Windows\system32\DNSAPI.dll
    LoadedModule[139]=C:\Windows\system32\dbghelp.dll
    LoadedModule[140]=C:\Windows\system32\mlang.dll
    LoadedModule[141]=C:\Windows\system32\Secur32.dll
    LoadedModule[142]=C:\Windows\system32\SSPICLI.DLL
    LoadedModule[143]=C:\Windows\system32\credssp.dll
    LoadedModule[144]=C:\Windows\system32\schannel.DLL
    LoadedModule[145]=C:\Windows\system32\MMDevAPI.DLL
    LoadedModule[146]=C:\Windows\system32\wdmaud.drv
    LoadedModule[147]=C:\Windows\system32\ksuser.dll
    LoadedModule[148]=C:\Windows\system32\AVRT.dll
    LoadedModule[149]=C:\Windows\system32\AUDIOSES.DLL
    LoadedModule[150]=C:\Windows\system32\msacm32.drv
    LoadedModule[151]=C:\Windows\system32\MSACM32.dll
    LoadedModule[152]=C:\Windows\system32\midimap.dll
    LoadedModule[153]=C:\Windows\system32\mswsock.dll
    LoadedModule[154]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[155]=C:\Windows\System32\wship6.dll
    LoadedModule[156]=C:\Program Files (x86)\Common Files\Adobe\CS6ServiceManager\lib\ServiceManager-Launcher_x64.dll
    LoadedModule[157]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\updaternotifications.dll
    LoadedModule[158]=C:\Windows\system32\taskschd.dll
    LoadedModule[159]=C:\Windows\system32\wpdshext.dll
    LoadedModule[160]=C:\Windows\System32\shdocvw.dll
    LoadedModule[161]=C:\Windows\System32\ieframe.dll
    LoadedModule[162]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\data_flow.dll
    LoadedModule[163]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\image_runtime.dll
    LoadedModule[164]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\image_flow.dll
    LoadedModule[165]=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\Plug-Ins\3D Engines\Photoshop3DEngine.8BI
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=Adobe Photoshop CS6
    AppPath=C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe"

  • Error while switching between DC, DTR & web dynpro perspectives

    Hi,
    I am facing the following error while switching between DC, DTR & web dynpro perspectives.
    A SWT error has occured.
    It is recommended to exit the workbench.
    Subsequent errors may happen and may terminate the workbench without warning.
    See error log for more details.
    Exit workspace?
    When I click on 'Ok' and check out the log file....
    !SESSION Nov 08, 2006 19:02:46.730 -
    java.version=1.4.2_12
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86 -feature com.sap.java.ide C:\j2sdk\bin\javaw.exe
    -Xmx512m
    -Xms128m
    -XX:PermSize=32m
    -XX:MaxPermSize=128m
    -DallUserDir='C:\Documents and Settings\All Users\Application Data'
    -cp C:\Program Files\SAP\IDE\IDE70\eclipse\SapStartup.jar com.sap.ide.eclipse.startup.Main
    -os win32
    -ws win32
    -arch x86
    -feature com.sap.java.ide
    -showsplash C:\Program Files\SAP\IDE\IDE70\eclipse\SapIde.exe -showsplash 600 -data C:\Documents and Settings\rajabhog\Documents\SAP\workspace -install file:C:/Program Files/SAP/IDE/IDE70/eclipse/
    !ENTRY Startup 1 0 Nov 08, 2006 19:02:46.730
    !MESSAGE Sap NetWeaver Developer Studio - Unknown Sap Internal Installation
    !SESSION -
    !ENTRY org.eclipse.core.launcher 4 0 Nov 08, 2006 19:03:03.734
    !MESSAGE Exception launching the Eclipse Platform:
    !STACK
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
    at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
    at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Caused by: java.lang.reflect.InvocationTargetException
    at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:861)
    at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
    ... 7 more
    Caused by: org.eclipse.swt.SWTError: Item not added
    at org.eclipse.swt.SWT.error(SWT.java:2356)
    at org.eclipse.swt.SWT.error(SWT.java:2260)
    at org.eclipse.swt.widgets.Widget.error(Widget.java:385)
    at org.eclipse.swt.widgets.Menu.createItem(Menu.java:464)
    at org.eclipse.swt.widgets.MenuItem.<init>(MenuItem.java:118)
    at org.eclipse.jface.action.Separator.fill(Separator.java:48)
    at org.eclipse.jface.action.MenuManager.update(MenuManager.java:555)
    at org.eclipse.jface.action.MenuManager.update(MenuManager.java:456)
    at org.eclipse.jface.action.MenuManager.fill(MenuManager.java:209)
    at org.eclipse.jface.action.MenuManager.update(MenuManager.java:555)
    at org.eclipse.jface.action.MenuManager.update(MenuManager.java:456)
    at org.eclipse.jface.action.MenuManager.createMenuBar(MenuManager.java:146)
    at org.eclipse.jface.window.ApplicationWindow.configureShell(ApplicationWindow.java:244)
    at org.eclipse.ui.internal.WorkbenchWindow.configureShell(WorkbenchWindow.java:578)
    at org.eclipse.jface.window.Window.createShell(Window.java:350)
    at org.eclipse.jface.window.Window.create(Window.java:301)
    at org.eclipse.ui.internal.Workbench.restoreState(Workbench.java:1258)
    at org.eclipse.ui.internal.Workbench.access$10(Workbench.java:1223)
    at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:1141)
    at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006)
    at org.eclipse.core.runtime.Platform.run(Platform.java:413)
    at org.eclipse.ui.internal.Workbench.openPreviousWorkbenchState(Workbench.java:1093)
    at org.eclipse.ui.internal.Workbench.init(Workbench.java:870)
    at org.eclipse.ui.internal.Workbench.run(Workbench.java:1373)
    at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
    at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
    ... 8 more
    Please help me out...
    As I have to fix this issue as early as possible.
    Thanks & Regards,
    Raj

    Post your question in the SAP NetWeaver Technology Platform. It don't think it's JDI related...

  • ETA for Solaris x86-64 11g(R2)?

    Does anyone have a contact that has any knowledge of what platforms are truly being supported for the 11gR2 release?
    I'm having great difficulty getting an answer for Solaris x86-64 from our Oracle reps.
    Thanks,
    Bryan

    hamcdc wrote:
    For (as long as I can remember) Oracle releases have toggled in terms of "platform priority" between
    depending on the mood of the day...Solaris x86 doesn't strike me as particularly strategic from Oracle's perspectiveAnd that's fine Connor. We are running "big iron" (16 cores on one of the servers should qualify), although now in the x64 format instead of the overpriced Sparc versions we have phased out, after being told by Oracle that the planned to support the platform going forward.
    However, either Oracle is going to support this platform, as metalink shows but on which they have not delivered, or not. If they are dropping it, other than support what exists, we won't be happy, but at least we can make plans for the future. This is all we have:
    bq. Certify - Additional Info Oracle Database - Enterprise Edition Version 11gR1 64-bit On Sun Solaris x86-64 (64-bit) \\ Operating System: Sun Solaris x86-64 (64-bit) Version 10 \\ Oracle Database - Enterprise Edition Version 11gR1 64-bit \\ N/A Version N/A \\ Status: Projected \\ Product Version Note: \\ None available for this product. \\ Certification Note: \\ Schedule to be announced. \\ NOTE: This is the most current and accurate information. Do not log Service Requests to Support for additional information. When the date is known this note will be updated. \\ Certify Administrator - 2008
    They owe us, the customers an honest answer and timeframe. I think we've been more than patient.
    Bryan

  • [RESOLVED] acpi-eeepc-generic Super Hybrid Engine Toggle Not Working

    Re my earlier post here: https://bbs.archlinux.org/viewtopic.php?id=105265
    This morning my she toggle stopped working. When I try to toggle my on screen notification displays "Super Hybrid Engine: to performance" after each key press. I haven't made any changes to the system other than editing my .conkyrc and powering the system down.
    Edit to add resolution:  I'm not sure why, but if I put the system to sleep (Fn+F1) then wake with the power button, the SHE functions.
    Last edited by badfrog88 (2010-09-22 14:32:59)

    IM back wrote:
    I cant get SHE to work with laptop_mode bacuse loading eeepc_laptop dosent load
    # modprobe eeepc_laptop
    FATAL: Error inserting eeepc_laptop (/lib/modules/2.6.39-ARCH/kernel/drivers/platform/x86/eeepc-laptop.ko.gz): No such device
    eeepc 1215b not an eeepc? id really like to have SHE working as right now with otherwise fully functioning laptop_mode i still only get 5h of battery life.
    Did you add to your kernel-parameters
    acpi_osi=Linux
    And it's called Hybrid - care to adjust the thread-title?

  • BUG: Toggling interface on/off causes missing menu toolbar items and icons in Photoshop CS4!

    When I toggle the interface on/off it causes missing menu toolbar items and icons until I exit and restart Photoshop CS4.  I know this can happen if problem filters are installed.  So I have the latest Alien Skin filters installed and have already followed their AutoLayer2.8li file updates to resolve Windows Photoshop CS4 issues.  I also have Luxology imageSynth 2.0 filter installed.  So since all my filters are updated to CS4 compatible versions, I shouldn't have this problem but yet it occurs.  Any way to fix this?
    I'm using WinXP SP2, 4 GB RAM, GeForce GTX 260 Core 216 with newest 185.85 driver.  I have 3D canvas rotation turned on.

    ghost zero wrote:
    toggle the interface on/off it
    What do you mean by this? Are you using standard methods (i.e. the buttons on the top-right of the screen) in Windows Explorer to minimize and then restore? or what?
    Are you on XP 64-bit? or 32-bit?
    Did you install driver version 185.85 before or after the problem started?
    Do you just one GTX 260, or are you doing SLI at all?
    Do you have more one monitor? If so, and you limit yourself to just one, do you still have the problem?
    Also, just to make sure that this problem wasn't somehow caused by your plug-ins (because I have seen onOne plug-ins, at least, that install several DLL files and you can't disable DLLs by renaming with ~ like with plug-in files), or caused by a messed up install of PS, go ahead and repair the PS install. Follow the "Restore the default set of Photoshop CS4 plug-ins" section in this document, except that after Step 3 (or Step 5, if you're on 64-bit Windows) get rid of the entire "Adobe Photoshop CS4" folder from Program Files (and the one in Program Files (x86) if you're on 64-bit Windows):
    http://go.adobe.com/kb/ts_kb409112_en-us

  • Dts interactive / dolby digital live toggle switch tray icon

    hey guys, i had a better post typed out but the preview button failed and deleted it all, haven't had that happen in a long time, i normally copy it to clipboard
    here's a crude little program i whipped up, which effecti'vely toggles dts interacti've, or dolby digital li've on or off, with a simple left click of the mouse, right clicking the icon opens the creative audio console, this actually just runs a simple batch file that stops or starts the Creative Audio Service, its handy for my setup
    creative audigy , set as default device in windows
    realtek onboard digital out set to dts:interacti've output device set in creative console encode tab
    media player classic forced to use realtek digital output
    the problem is i wish to stream raw dd/dts audio tracks from videos in media player classic, so i need to turn off encoding, with this program i just click the icon then start the video and have the raw dts/dd bitstream sent to my receiver
    here's the program, 64bit only changes the location uses to looks for the Creative Audio Console ( \Program Files (x86)\ )
    the config.txt also has the location of audio console, and icon names
    32bit - http://www.megaupload.com/?d=26GWIJX7 CRC - ?EA4674
    64bit - http://www.megaupload.com/?d=22XSMLYS CRC - 0003940

    dts is considered the superior format.
    It's less compressed. I think they both can awesome personally.

  • Reg: Open and Closed Activities in DTR

    Hello Guru's,
    I am confused with the Open and Closed Activities in DTR, What are the significance of these activities?
    And when does an Open Activity changes to Closed Activity?
    And why does an Empty Open Activity gets created?
    How does the Open Activities effect the Performance of the system?
    In NWDS what is the significance of the Public Part and the dcdef xml files?
    Please explain and if possible send the links to better understand these? I tried searching for info but with no luck.
    Appreciate the Help.
    Thanks & Regards,
    Pramod

    Dear Pramod,
    Activity in general can be considered as the wrapper of your changes.
    While working in NWDI, any modification that you perform on your source code must be associated with an Activity.
    Some Definitions:
    Client DTR: Represents the Local Track file system present on you local machine, where Checked-out a desired code from Server DTR
    Server DTR: Represents the Central Repository present on the server, where your source code is checked-in.
    Open Activities
    These are the activities that are not yet checked-in to Server-DTR, and they represent the Open Version.
    Exmple:
    1) Suppose you have made some modification in "File A" which is associated in Activity-1
    2) When you open the DTR Perspective in your Developer studio, you will be able to see all the changes that you have associated in the Activity-1, this DTR-perspective of your NWDS is also termed as Client-DTR.
    3) But, when you open the Server-DTR in DTR Web interface, you will not be able to see the same file structure that is present in your client DTR, it will not contain the changes that you have incorporated in Activity-1.
    4) The changes present in Activity-A are not available to any other developers, even if you try to use the same developer ID and load the same track, the activities are still said to be purely Local.
    Closed Activities
    These are the activities that are already Checked-in to Server-DTR and they represent Closed Version.
    Example:
    1) In the same example explained above assume that we now Check-in the Activity-1.
    2) Now, if you open the Server-DTR in DTR Web Interface, you will be able to see the same file structure that is present in your Client-DTR.
    3) Now the changes that were present in Activity-A are also available to other developers too.
    Open Activity and Performance
    1) Open Activities create a temporary entry point reference on the Server DTR you can serach for open activities in Secer DTR web interface, every single activity occupies space on your local machine. So it may affect the performance only if the activity count is very high.
    2) In the local file system, the meta data is stored in the .dcdef file in the _comp
    subfolder.
    3) The meta data is stored in the .dcdef file, every public part has its own meta data file. They are located in the def subfolder of the component and have the fileextension pp.
    Every component (DC) is defined by a set of files, stored and versioned together with the
    component in the repository.
    u2022 A file with the reserved name .dcdef stores the basic attributes such as name,
    description and component type, the parent component (if there is one), a list
    of child components (if there are any), a list of dependencies, links to the component
    sources, and the access control list. The .dcdef file must be stored directly
    in the _comp folder.
    u2022 The folder _comp/def contains one file for each public part of the component,
    which carries the name of the public part with the extension .pp. This file contains a list
    of the development objects belonging to the public part and an access control list for
    this public part.
    Both .dcdef and .pp files are stored in an XML-based format; you can display them in the
    content display of the Repository Browser or with any text editor. However, this is
    not necessary. To create and edit these files, use the component tools of the SAP NetWeaver
    Developer Studio.
    In exceptions, you can manually repair the .dcdef or a .pp file of a component.
    Note that direct manipulations are dangerous and can render a component
    unusable.
    I hope you will get a clear picture now.
    Regards,
    Shreyas Pandya

  • Accordion-Toggle Open and Close

    I apologize if this has been covered before, but I checked
    and couldn't find a solution. I'd like the accordion to toggle
    between open and close the same panel. Right now, when I click on
    it, it opens, but it doesn't close when I click on the same panel
    again. Is there any way that can be achieved?

    Don't you just want the :
    http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/collapsible_panel_sample. htm
    http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/collapsible_panel_sample. htm

  • All of a sudden I can no longer toggle or clip angles in multiclip sequence

    Hi,
    I've got a project with a number of sequences, videos, angles, etc and all of a sudden I can no longer toggle between angles in the sequence timeline. It was working last night and then stopped and it's still unresponsive. Every time I click to switch an angle or cut to an angle I get the alert beep.
    I am not out of disk space and haven't changed any settings as far as I am aware of.
    Thanks

    Not sure what the deal is...have you added any new software or upgraded/updated anything since this started?
    Have you tried opening an autosave version, to see if it works there?
    Trashed prefs, run disk utility?
    I'm not sure I've ever heard an 'alert beep', so would wonder if the drive is failing.
    Can you be a little more explicit about exactly how it 'stopped working'...were you right in the middle of working on it, or had you stepped away for a bit?
    Have you tried shutting down, then rebooting after 15-20 minutes?

  • Solaris Management Console 2.1 in Solaris 10 x86 nv-b40 and nv-b42.....

    I have been Solaris 10 x86 on my Intel machines and never had any problem with SMC. However, things seems to have changed since
    nv-b40 release. SMC out-of-the-box does not work even the first time. I get a message like Server is not running, Toolbox is not available. I tried to start the server manually using the command
    /etc/init.d/init.wbem start
    and I got the message
    svccfg:Pattern 'application/swcwbem' doesn't match any instances or services.
    I have reinstalled nv-b38 and SMC works fine. Does any one know what has changed between nv-b38 and nv-b40 releases which caused SMC not to work out-of-the-box? Also, if any one has encountered this problem and got a fix for it, could you please post it here? Thanks a bunch in advance.
    -Victor bagga

    did you enable tcp listening?
    svccfg -s wbem setprop options/tcp_listen=true
    svcadm refresh wbem
    svcadm restart wbem

  • The HUD Inspector in Full Screen View seems to position at the right margin of the image as a default(?)  If I toggle the button in the top right of the HUD it 'unlocks' and I can drag it to where I prefer -- at the left margin; (for over a decade) my doc

    The HUD Inspector in Full Screen View seems to position at the right margin of the image as a default(?)  If I toggle the button in the top right of the HUD it 'unlocks' and I can drag it to where I prefer -- at the left margin; (for over a decade) my dock has resided at the right margin so all my slider manipulation over countless editing sessions in Aperture has been ingrained to work at the left margin -- but, the vast majority of the time, the HUD overlaps the image I am editing in this 'unlocked' mode. 
    Every occasionally I enter Full Screen View and it positions on the left margin *without* superimposition...(!) My great joy is modulated into aggravation, however, should my tracking cursor drift all the way 'out of bounds' -- to call in the hidden pane of adjacent images sequenced in the library... This dramatically shrinks the Full Screen display and re-locks the HUD; if I toggle the switch to re-xpand the image it re-positions at the right margin!!!!  I SOOoooooo wish I knew how to control the default 'locked' margin of the HUD in Full Screen View...

    Drag it over to the Left. Then lock it there.

  • Cannot log into DTR with Active Directory User

    Greetings,
    I have set up and installed JDI correctly.  I can log into /devinf, the cbs, cms and sld systems with no problem using both Administrator and my JDI.Administrator that I assigned to an Active Directory user.  I can log into the DTR using a user from the database (i.e. Administrator), however, when trying to access the DTR with an Active Directory user, I get the following message:
    500   Internal Server Error
      SAP J2EE Engine/6.40 
      Application error occurred during the request procession.
      Details:   Error [javax.servlet.ServletException: Group found, but unique name "businessUnit.all.guests" is not unique!], with root cause [com.tssap.dtr.server.deltav.InternalServerException: Group found, but unique name "businessUnit.all.guests" is not unique!].  The ID of this error is
    Exception id: [0012798F81680042000000090000165C0003FE9AA3C0B86B].
    This group exists in multiple domainshowever, this has not caused us any issues to date with our portal and other pieces of SAP WASit's only this DTR error. 
    Any help is greatly appreciated.
    Thanks,
    Marty

    Hi Marty,
    In the document available at the link enclosed below, there is a part that explains how to configure DTR so that it always uses "Unique-IDs".
    http://help.sap.com/saphelp_nw04/helpdata/en/20/f4a94076b63713e10000000a155106/frameset.htm
    It is mentioned that this is valid for LDAP, but the information is applicable for Active Directory as well.
    Regards,
    Manohar

Maybe you are looking for

  • Adobe Reader doesn't work after windows 7 update

    Hello, My Adobe Reader X was working fine, until one night where Windows 7 automatically updated, and after that Adobe Reader doesn't work anymore. It doesn't respond AT ALL when I click on it, and I cannot view PDF files anymore. I uninstalled it, a

  • USB ports failing to mount an external hard drive, recognize a printer.

    Hello, I have a Mac Mini running 10.5.8. Suddenly the usb ports do not mount external hardrives (I have 2) and also do not recognize an Hp printer. If I plug the keyboard an the mouse, they are recognize and useful. Firewire mounts one of my firewire

  • Streaming video from my Windows desktop PC to my Macbook Pro

    Greeting =) I'd like to know the way how can I watch TV Shows and Movies from my PC  using my Laptop. At least home network, but it'd be great if I could watch it outside  using 4G or WiFi. Would be great to know some programms' names for windows and

  • Which case in LV Oper. Intf. will do "Run Selected Steps using single pass" for me?

    I added a button to simulate "Run Selected Steps", but I really want a button that will "Run Selected Steps Using Single Pass". Which case in the Complex Labview Operator Interface does this for me? What I really want is the report to be generated wh

  • Workitem stunned in 'in process' status

    Hi Export, I met a workflow problem in CRM. This workflow is for DPA approval. It generate a workflow in CRM, then trigger another workflow for approval in R/3. After approval completed in R/3, it call back to CRM, and then CRM update status and cond