NW 7.4 as java disable dsr logs

hi all
I testing perfomance of my custom JavaEE app . When i run test Netweaver generate many huge logs in /usr/sap/SID/J00/log/dsr/
In older versions of NW for deactivating uses Visual Administrator .  But how deactivate this dsr logs in NW 7.4 (no visual admin in this version)
I try use config tool  .  In dsr service disabling all parameters but its  not helps me

Hi Kira,
Did you check NWA ?
Refer: 1252944 - E2E Trace: Problem retrieving data from managed system.
Section - Information required for development support
Divyanshu

Similar Messages

  • Logging API: Java 1.5 logs a lot in FINE, etc.

    I noticed that my application log contains a lot more entries since I use Java 1.5 when I log fine/finer/finest messages. I tried to workaround this by just change the log levels of my loggers (by inspecting the logger name prefixes). But the Java messages still log:
         * Set level for all registered loggers of the LogManager.
         * @param level New level to set.
         * @param prefix Optional prefix string for loggers to consider.
        static public void setGlobalLevel(Level level, String prefix) {
            if (level != null) {
                LogManager logManager = LogManager.getLogManager();
                if (logManager != null) {
                    Enumeration<String> enu = logManager.getLoggerNames();
                    boolean first = true;
                    while (enu.hasMoreElements()) {
                        String loggerName = enu.nextElement();
                        if (prefix == null || loggerName.startsWith(prefix)) {
                            Logger logger = logManager.getLogger(loggerName);
                            if (logger != null) {
                                logger.setLevel(level);
                            }//else: logger unavailable
                            if (first) {
                                logger.log(Level.CONFIG, "Global log level changed to "+level);
                                first = false;
                    }//next logger
                }//else: LogManager unavailable
            }//else: level unavailable
        }//setGlobalLevel()

    Okay, I try to explain it differently. SInce Java 1.5, why I log messages with level FINE, FINER, or FINEST, I get lots of additional entries like:
    2005-04-19 13:13:22.076 FINER focus owner is javax.swing.JButton[,12,97,161x33,alignmentX=0.0,alignmentY=0.5,border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@19d3b3a,flags=424,maximumSize=,minimumSize=,preferredSize=,defaultIcon=javax.swing.ImageIcon@19050a0,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Log-Datei,defaultCapable=true] [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.076 FINER >>> java.awt.event.KeyEvent[KEY_PRESSED,keyCode=18,keyText=Alt,keyChar=Undefined keyChar,modifiers=Alt,extModifiers=Alt,keyLocation=KEY_LOCATION_LEFT] on frame0 [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.404 FINER focus owner is javax.swing.JButton[,12,97,161x33,alignmentX=0.0,alignmentY=0.5,border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@19d3b3a,flags=424,maximumSize=,minimumSize=,preferredSize=,defaultIcon=javax.swing.ImageIcon@19050a0,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Log-Datei,defaultCapable=true] [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.404 FINER >>> java.awt.event.KeyEvent[KEY_RELEASED,keyCode=9,keyText=Tabulator,keyChar=Tabulator,modifiers=Alt,extModifiers=Alt,keyLocation=KEY_LOCATION_STANDARD] on frame0 [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.716 FINER focus owner is javax.swing.JButton[,12,97,161x33,alignmentX=0.0,alignmentY=0.5,border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@19d3b3a,flags=424,maximumSize=,minimumSize=,preferredSize=,defaultIcon=javax.swing.ImageIcon@19050a0,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Log-Datei,defaultCapable=true] [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.716 FINER >>> java.awt.event.KeyEvent[KEY_RELEASED,keyCode=18,keyText=Alt,keyChar=Undefined keyChar,keyLocation=KEY_LOCATION_LEFT] on frame0 [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.732 FINE >>> java.awt.event.WindowEvent[WINDOW_LOST_FOCUS,opposite=null,oldState=0,newState=0] on frame0 [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.732 FINE java.awt.event.WindowEvent[WINDOW_LOST_FOCUS,opposite=null,oldState=0,newState=0] on frame0 [java.awt.focus.DefaultKeyboardFocusManager]
    2005-04-19 13:13:22.732 FINE Active de.icomps.prt.gui.ClientReportPrinterConsole[frame0,110,46,1140x794,invalid,layout=java.awt.BorderLayout,title=iComps Client Report Printer 1.1.6,resizable,normal,defaultCloseOperation=DO_NOTHING_ON_CLOSE,rootPane=javax.swing.JRootPane[,4,23,1132x767,layout=javax.swing.JRootPane$RootLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=16777673,maximumSize=,minimumSize=,preferredSize=],rootPaneCheckingEnabled=true], Current focused de.icomps.prt.gui.ClientReportPrinterConsole[frame0,110,46,1140x794,invalid,layout=java.awt.BorderLayout,title=iComps Client Report Printer 1.1.6,resizable,normal,defaultCloseOperation=DO_NOTHING_ON_CLOSE,rootPane=javax.swing.JRootPane[,4,23,1132x767,layout=javax.swing.JRootPane$RootLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=16777673,maximumSize=,minimumSize=,preferredSize=],rootPaneCheckingEnabled=true], losing focus de.icomps.prt.gui.ClientReportPrinterConsole[frame0,110,46,1140x794,invalid,layout=java.awt.BorderLayout,title=iComps Client Report Printer 1.1.6,resizable,normal,defaultCloseOperation=DO_NOTHING_ON_CLOSE,rootPane=javax.swing.JRootPane[,4,23,1132x767,layout=javax.swing.JRootPane$RootLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=16777673,maximumSize=,minimumSize=,preferredSize=],rootPaneCheckingEnabled=true] opposite null [java.awt.focus.DefaultKeyboardFocusManager]
    2005-04-19 13:13:22.732 FINE >>> java.awt.event.FocusEvent[FOCUS_LOST,temporary,opposite=null] on javax.swing.JButton[,12,97,161x33,alignmentX=0.0,alignmentY=0.5,border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@19d3b3a,flags=424,maximumSize=,minimumSize=,preferredSize=,defaultIcon=javax.swing.ImageIcon@19050a0,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Log-Datei,defaultCapable=true] [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.732 FINE java.awt.event.FocusEvent[FOCUS_LOST,temporary,opposite=null] on javax.swing.JButton[,12,97,161x33,alignmentX=0.0,alignmentY=0.5,border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@19d3b3a,flags=424,maximumSize=,minimumSize=,preferredSize=,defaultIcon=javax.swing.ImageIcon@19050a0,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Log-Datei,defaultCapable=true] [java.awt.focus.DefaultKeyboardFocusManager]
    2005-04-19 13:13:22.732 FINE java.awt.event.FocusEvent[FOCUS_LOST,temporary,opposite=null] on javax.swing.JButton[,12,97,161x33,alignmentX=0.0,alignmentY=0.5,border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@19d3b3a,flags=424,maximumSize=,minimumSize=,preferredSize=,defaultIcon=javax.swing.ImageIcon@19050a0,disabledIcon=,disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=Log-Datei,defaultCapable=true] [java.awt.focus.Component]
    2005-04-19 13:13:22.732 FINE >>> java.awt.event.WindowEvent[WINDOW_DEACTIVATED,opposite=null,oldState=0,newState=0] on frame0 [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.732 FINE java.awt.event.WindowEvent[WINDOW_DEACTIVATED,opposite=null,oldState=0,newState=0] on frame0 [java.awt.focus.DefaultKeyboardFocusManager]
    2005-04-19 13:13:22.748 FINER Setting global active window to null, old active de.icomps.prt.gui.ClientReportPrinterConsole[frame0,110,46,1140x794,invalid,layout=java.awt.BorderLayout,title=iComps Client Report Printer 1.1.6,resizable,normal,defaultCloseOperation=DO_NOTHING_ON_CLOSE,rootPane=javax.swing.JRootPane[,4,23,1132x767,layout=javax.swing.JRootPane$RootLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=16777673,maximumSize=,minimumSize=,preferredSize=],rootPaneCheckingEnabled=true] [java.awt.focus.KeyboardFocusManager]
    2005-04-19 13:13:22.748 FINE >>> java.awt.event.FocusEvent[FOCUS_LOST,permanent,opposite=null] on frame0 [java.awt.focus.KeyboardFocusManager]
    So, I try just to set the levels FINE, FINER, FINEST for my applications loggers that all have logger names being the Java package name and class name (e.g. "one.two.three.MyClass"). So, I change the levels of all logers who's lagger name starts with "one.two.three". That should lead to log messages of FINE/FINER/FINEST from my loggers. But I still get the log messages of Java internal loggings like
    >>> java.awt.event.FocusEvent[FOCUS_LOST,permanent,opposite=null] on frame0
    from java.awt.focus.KeyboardFocusManager.

  • Disable iphone logging function

    My IPhone currently having wifi grayed out problem, and along side with it, the logging function is driving me crazy. Because IPhone attemp to active wifi chip every second. It mean that every second, log will be written because of fail on ative wifi chip and it consume battery as well as storage. For a week it grow over 3GB. So is there anyway that I can disable this logging function on IPhone and/or stop IPhone from attemp to active wifi chip?

    You can try turning WI-FI off all together by going to Settings>Wifi>swipe off. If the problem persists call Apple call 800-275-2273. Good Luck!!!

  • OSX 10.5.8 Java Disabler

    I have been trying to get a Tom Tom Start 60 working on my Intel imac computer running OSX 10.5.8 without success.
    The Tom Tom support team suggested many things including installing the latest version of Flash and then I had to find the Java Disabler and remove it so I looked in the system profiler under applications and found it.
    The Java Disabler was located under users ~ library ~ and then I forget the rest.
    The issue is I would like to return it to it's original location but I cannot remember the full path.
    If anyone is using an Intel imac running OSX 10.5.8 could they look in their system profiler and check the applications tab and tell me it's path
    This last part is to tell you why I got into this problem.
    I brought a new Tom Tom and it would not work on my computer and the tom Tom support team highlighted Flash and Java issues under Safari
    The man form John Lewis told me that Tom Toms are not Apple mac compatible
    Tom Tom support team asked me to install the Firefox because Safari would not work ?
    I was also told to get rid of the Flash blocker but I didn't know how to do that  ?
    Then they told me to install Google Chrome but the latest versions of both do not install or work under OSX 10.5 .8 they only work on 10.7
    So I'm rather stuffed having removed the firewall ~ allowed file sharing and installed Flash and removed the Java Disabler just to make a Tom Tom work,
    which it didn't
    Mr Mouse

    Anonyzmouse wrote:
    The Java Disabler was located under users ~ library ~ and then I forget the rest.
    The issue is I would like to return it to it's original location but I cannot remember the full path.
    If anyone is using an Intel imac running OSX 10.5.8 could they look in their system profiler and check the applications tab and tell me it's path
    /System/Library/CoreServices/JavaDisabler

  • Java code for logging from servlet on AS

    Hi guys,
    I have developed a servlet on SAP AS and I need to log information from processing. Can you please suggest me the best way to do that? I am not an Java expert but when I see the code I'd understand it. Can you please provide some Java logging example code which would work on AS 7.3?
    Thanks a lot,
    Peter

    Hi Peter,
    Please have a look of the below logging links/docs
    Sample Java Code with Logging -  Using Central Development Services - SAP Library
    Tracing and Logging -  SAPNetWeaver Application Server Java Security Guide - SAP Library
    Integrating Third-Party Logging Frameworks into SAP NetWeaver CE
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20ecb0f4-ccb0-2a10-46aa-ceee8895f34b?QuickLink=index&overridelayout=true&25009594565056
    Or
    You can simply use System.err.println() or System.out.println()
    Thanks,
    Hamendra

  • Error in Java compilation: \s7u.log (The system cannot find the file specified)

    Hi there,
    I got an error when I tried to compile a group of sqlj and java files. The error below:
    ----------------------------------------------sqlj -status -passes -compile=true -ser2class -d=. -classpath=.;%CLASSPATH% E:\work\src\java\com\interadnet\persistence\*.sqlj E:\work\src\java\com\interadnet\persistence\*.java
    out [Translating 53 files]
    out [Reading file AdServerInformationType]
    out [Reading file AdsType]
    out [Reading file AgencyType]
    out [Reading file CampaigntocompletionType]
    out [Reading file CampaignType]
    out [Reading file ChannelType]
    out [Reading file ClientType]
    out [Reading file CompletionType]
    out [Reading file ContactType]
    out [Reading file CreativeType]
    out [Reading file FtpServerType]
    out [Reading file InsertioninstructionType]
    out [Reading file MediaServerType]
    out [Reading file SystemPropertyType]
    out [Reading file VendorType]
    out [Reading file AdServerInformationTypeRef]
    out [Reading file AdServerInformationView]
    out [Reading file AdsTypeRef]
    out [Reading file AdsView]
    out [Reading file AgencyTypeRef]
    out [Reading file AgencyView]
    out [Reading file CampaigntocompletionTypeRef]
    out [Reading file CampaignToCompletionView]
    out [Reading file CampaignTypeRef]
    out [Reading file CampaignTypeRefs]
    out [Reading file CampaignView]
    out [Reading file ChannelTypeRef]
    out [Reading file ChannelTypeRefs]
    out [Reading file ChannelView]
    out [Reading file ClientTypeRef]
    out [Reading file ClientTypeRefs]
    out [Reading file ClientView]
    out [Reading file CompletionTypeRef]
    out [Reading file CompletionTypeRefs]
    out [Reading file CompletionView]
    out [Reading file ContactTypeRef]
    out [Reading file ContactView]
    out [Reading file CreativeTypeRef]
    out [Reading file CreativeTypeRefs]
    out [Reading file CreativeView]
    out [Reading file FtpServerTypeRef]
    out [Reading file FtpServerView]
    out [Reading file InsertioninstructionTypeRef]
    out [Reading file InsertioninstructionTypeRefs]
    out [Reading file InsertionInstructionView]
    out [Reading file MediaServerTypeRef]
    out [Reading file MediaServerView]
    out [Reading file SystemPropertyTypeRef]
    out [Reading file SystemPropertyTypeRefs]
    out [Reading file SystemPropertyView]
    out [Reading file VendorTypeRef]
    out [Reading file VendorTypeRefs]
    out [Reading file VendorView]
    out [Translating file AdServerInformationType]
    out [Translating file AdsType]
    out [Translating file AgencyType]
    out [Translating file CampaigntocompletionType]
    out [Translating file CampaignType]
    out [Translating file ChannelType]
    out [Translating file ClientType]
    out [Translating file CompletionType]
    out [Translating file ContactType]
    out [Translating file CreativeType]
    out [Translating file FtpServerType]
    out [Translating file InsertioninstructionType]
    out [Translating file MediaServerType]
    out [Translating file SystemPropertyType]
    out [Translating file VendorType]
    out [Translating file AdServerInformationTypeRef]
    out [Translating file AdServerInformationView]
    out [Translating file AdsTypeRef]
    out [Translating file AdsView]
    out [Translating file AgencyTypeRef]
    out [Translating file AgencyView]
    out [Translating file CampaigntocompletionTypeRef]
    out [Translating file CampaignToCompletionView]
    out [Translating file CampaignTypeRef]
    out [Translating file CampaignTypeRefs]
    out [Translating file CampaignView]
    out [Translating file ChannelTypeRef]
    out [Translating file ChannelTypeRefs]
    out [Translating file ChannelView]
    out [Translating file ClientTypeRef]
    out [Translating file ClientTypeRefs]
    out [Translating file ClientView]
    out [Translating file CompletionTypeRef]
    out [Translating file CompletionTypeRefs]
    out [Translating file CompletionView]
    out [Translating file ContactTypeRef]
    out [Translating file ContactView]
    out [Translating file CreativeTypeRef]
    out [Translating file CreativeTypeRefs]
    out [Translating file CreativeView]
    out [Translating file FtpServerTypeRef]
    out [Translating file FtpServerView]
    out [Translating file InsertioninstructionTypeRef]
    out [Translating file InsertioninstructionTypeRefs]
    out [Translating file InsertionInstructionView]
    out [Translating file MediaServerTypeRef]
    out [Translating file MediaServerView]
    out [Translating file SystemPropertyTypeRef]
    out [Translating file SystemPropertyTypeRefs]
    out [Translating file SystemPropertyView]
    out [Translating file VendorTypeRef]
    out [Translating file VendorTypeRefs]
    out [Translating file VendorView]
    out [Compiling 53 Java files]
    err*** The following character string is too long:
    err***
    out Error in Java compilation: \s7u.log (The system cannot find the file specified)
    Any suggestion appreciated.
    Daniel Huang

    Having not seen this before, I assume that the issue is that the command line string is too long when Javac is invoked.
    Here are a few things to reduce the size of the command line:
    - do not use the CLASSPATH option, but set the CLASSPATH environment variable (you can to that in a .bat file)
    - do not provide the .java files but rely on the implicit make capability in both, the SQLJ translator and the Java compiler. (Note: you must mention all of the .sqlj files that your program requires, do not rely on implicit make to find all of those.)
    - you can perform the -ser2class conversion as a separate step (see the SQLJ FAQ), as well as the Java compilation
    - there may or may not be a facility in your operating system to increase the size of the environment (and this may or may not have an effect on the maximum command line length)
    - you could try to omit the -passes option and see if that helps (that may actually be where your invocation if failing in the first place, in that it cannot write to some temporary file).
    Let us know how it goes. Thanks!

  • GoToMeeting says java disabled inFirefox 4 Mac OS 10.5.8 (same problem as person with OS 10.6)

    GoToMeeting says java disabled in Firefox 4 Mac OS 10.5.8 (same problem as person with OS 10.6)

    So is there an answer to this problem? My GoToMeeting works just fine in Safari!!!! Why does it jut happen in Firefox???

  • ASA 5520 - ASDM logging: disable rules logging

    Hello all,
    I'm encountering what I think is an issue on logging system on FW ASA 5520 - Asa Version 8.4(2), ASDM version 6.4(5). When I disabled the logging inside a rule from ASDM, or from console with the "log disable" option inside ACL, If I check in ASDM logging real time window I continue to see all the entry related to disabled rules. This is a correct behaviour about ASA logging ? How I can "hide" the entry related to disabled rules (this is what I need for troubleshooting purposes) ?
    Thanks in advance for every reply.
    Regards.

    Hi Paolo,
    Well, if it is just for an specific rule, the log keyword at the end of the ACL should not be there, but if you dont want to see the log at all you can use the command no logging message command.
    Mike

  • 2010 Disable circular logging with no storage groups

    I have SBS 2008 and the backup wizard will not complete because of the error Disable circular logging in Exchange. I had previously removed most of exchange because of disk space including the databases.
    So there are no storage groups to remove them using the console . Any suggestions would be fantastic Cheers Todd  

    Hi 15topster,
    There are no storage groups in Exchange 2010 onwards, databases are directly under Organization\Servers and logs are generated for individual DBs seperately.
    You should be able to get the option under Database properties or use below shell command to do it.
    http://www.symantec.com/business/support/index?page=content&id=TECH11310
    To use the Exchange Management Console to disable circular
    logging:
    1.     
    In the console tree,
    navigate to Organization Configuration |
    Mailbox.
    2.     
    In the result pane, on
    the Database Management tab, select the database you want to
    configure.
    3.     
    In the action pane,
    under the database name, click Properties.
    4.     
    Click on the
    Maintenance tab
    5.     
    Clear
    the Enable circular logging check box.
    6.     
    Click
    OK.
    7.   To make your changes
    to the circular logging settings effective, Restart the
    Microsoft Exchange Information Store service, or dismount and then mount all of the databases in the storage group.
    To disable circular logging using Exchange Management Shell, run the
    following command:
    Set-MailboxDatabase -Identity "Database Name" -CircularLoggingEnabled $false
    Regards,
    Satyajit
    Please “Vote As Helpful”
    if you find my contribution useful or “Mark As Answer” if it does answer your question. That will encourage me - and others - to take time out to help you.

  • Disabling Firewall logging

    Snow Leopard is extremely fast & stable for me on my 3 Macs. One problem though - I was unable to find the option to disable firewall logging which was available in Leopard.
    System Profiler says firewall logging: No. But in the same System Profiler, appfirewall.log file keeps growing (with Stealth Mode enabled).
    Is there a way to disable firewall logging or is it a bug that will be addressed in the next update?
    Thanks for any help.
    Best - KrishnaMohan.

    I've found a way to disable logging while keeping stealth mode enabled. Unfortunately, it involves a little manual plist editing and converting from/to binary xml format. Here's what worked for me in a terminal session:
    cd /Library/Preferences
    sudo plutil -convert xml1 com.apple.alf.plist
    Careful, that's a lower case 'L' and a number '1' above.
    sudo nano com.apple.alf.plist
    search (ctrl-W) for the key loggingenabled
    change the integer value to 1
    save the file (ctrl-O)
    quit nano (ctrl-X)
    sudo /usr/bin/plutil -convert binary1 com.apple.alf.plist
    That should do it but to be safe you might want to log out and back in (or restart for overkill).
    I don't know about others, but the volume of my denied connection attempts really taxed the appfirewall.log. Often there were several entries logged every second.

  • Disabling commons logging for specific application

    Hi
    Is there some possiblity to disable default logging (commons) on glassfish? I have configured log4j and the default commons logging polluts my logs...
    Regards

    For those items that are to be disabled, you could add a new style class to each cell control to indicate it's disabled. You could use a formatter function:
    addStyleClass : {
        parts : [ 'isRecordLocked' ],
        formatter : function(isRecordLocked) {
            return isRecordLocked ? "disabledStyle" : "";
    where 'isRecordLocked' is the indicator in your data whether your record is locked, and 'disabledStyle' is the custom CSS class which caters for a disabled look of your cell.
    If you need to suppress any press events for the locked records, you could do it in the same way.

  • How can I get status of 'Disable Database Logging'?

    Hi,
    in my sequence file at first I want to ask by dialog, whether sequence file should running with or without database logging. In dependance of this I want to set/reset the boolean property related with 'Disable Database Logging' checkbox in the 'Database Options' dialog callable from the editor menue 'Configure>DatabaseOptions...'.
    These setting should be only valid while sequence file is running. At next sequence file start the original setting from 'Database Options' dialog should be applied.
    Can anybody tell me, where I can find the boolean property for these? I searched in 'RunState.Caller...' but couldn't find any variable congruent with actually setting of 'Disable Database Logging' checkbox in the 'Database
    Options' dialog.
    Thank you for help.
    Test Engineering
    digades GmbH
    www.digades.com

    Hi,
    You can include the sequence callback DatabaseOptions in your sequence file which will override the callback of the process model.
    A DatabaseOptions container is passed to this callback by reference, therefore you can setup the exact requirements for your testing and override the settings defined by the Menu Item Configure | Database Options. All the setting defined in the Database Options dialog are passed to the callback DatabaseOptions in the container 'DatabaseOptions'.
    (See TS2.0 example sequence attached)
    Hope this helps
    Ray Farmer
    Regards
    Ray Farmer
    Attachments:
    DisableDatabaseLogging.seq ‏20 KB

  • How to check java disable

    Hello Friends,
    i have desktop application...
    i am technically not that much experince..
    i have one problem in my pc.
    i don't know how to check java disable or not?
    can any one guide me for the same
    Thanks in advanced,
    <Link Edited By Host>

    The automatic disable is for Java (not javascript) INSIDE Safari.
    Safari > Preferences > Security > [√] Enable Java
    To check that Java is installed, open Java Preferences.app, available in your /Applications/Utilities folder
    If Java is installed, it will show the version. If not Installed, you should be offered the option to download and Install it.
    There is also a checkbox in Java Preferences for:
    [√] Enable applet Plug-in and Web Start Applications (unchecked by default).
    If you do not use Java inside your Browser for a few weeks, it will become disabled to protect against malware that downloads java.

  • Is there any way to disable the log-in process?

    i  have no need to re-enter my password to access my computer every time i restart, or after it falls asleep
    is there a way to disable the log-in screen and just go straight to my desktop?
    edit: i tried preferences  > security/privacy > de-select "require password"
    but i still get the log-in screen
    thanks

    Hi,
    take a look at:
    Preferences
    Users & Groups
    Login Options
    At the top you can (de-) activate the automatic login.
    Does it work for you?
    Greets

  • How can we disable the log for Positive Pay program?

    Hi,
    We would like to disable the log file for positive pay program (Positive Pay File with Additional Parameters) because the log contains the whole positive pay file including confidential financial data. Is there any way to disable this logging?

    I do not think there is an option to disable it. However, you may log a SR and confirm this with Oracle support.
    Thanks,
    Hussein

Maybe you are looking for

  • Lacie External Hard Drive Not Recognized After It Previously Was

    I have a 1 Tb Lacie Big Disk External Hard Drive that I have used for a couple years now.  I have a Mac Pro, an iMac and a G5 computer that I have previously used with it.  After I transferred it between computers yesterday suddenly it will not show

  • Need help in automating Report &calcs

    Hi all, What is the Maxl command used to run a Report script and the extracted data saved to a txt file.So that I want to load that data into other cube.I need to change the date in the Report script before running it,so where to declare the Sub var.

  • Oracle Enterprise Manager 10g is not running.

    Hi All, I cloned e-Business suite application/db to another server.After cloned Oracle Enterprise Manager 10g is not running. I've been noticing following messages during start/stop/status. status Oracle Enterprise Manager 10g is not running. start:

  • Grapher... name of the function on the graph ?

    Hello, Could you tell me if it's possible to put the name of the function (with mathematical symboles) directly on the graph ? If yes, how do you do ? Thank you

  • Can't enter bios on KT3 Ultra2

    last night I did a succesful bios upgrade to V5.7 on my KT3 Ultra 2 board. System rebooted into bios default with no problems and I reset all the parameters as per the previous version. Unfortunately, I set the FSB to 166 instead of 133 ( Gawd knows