Application object check if running

I might be over looking something quite simple - is there way to do the following.
User open app from NAL it check to see if that app is already running, if so don't run!

Thanks Gents
>>> craig wilson<[email protected]> 12/06 9:33 pm >>>
I like this one from the page you listed.
On the Internet is a freeware utility - PWone. This program prevents more
than one copy of a program from running at a time. This is from the readme
file:
Run PWONE.EXE in place of the program to be limited. PWOne's command line
must contain two parameters:
1.. All or part of the title bar text normally displayed by the program to
be limited (this must be enclosed by parentheses)
2.. The command originally used to launch the command to be limited. For
example, to prevent more than one copy of Excel from running at a time, you
might create an icon for PWOne.exe with this command line text:
PWONE.EXE "Excel" C:\Office95\Excel\Excel.exe
Once run, PWOne determines if a copy of the limited program is already
running (by searching Windows' Master List for the limited application's
title bar text). If a running copy is found, that copy is activated. If no
running copy is found, a new copy is launched using the provided command
line.
"Anders Gustafsson" <[email protected]> wrote in message
news:[email protected]..
> Dan Wozzell,
> > Do you have an example?
> >
> http://www.novell.com/coolsolutions/trench/2986.html
>
> - Anders Gustafsson, Engineer, CNE6, ASE
> NSC Volunteer Sysop
> Pedago, The Aaland Islands (N60 E20)
>
> Novell does not monitor these forums officially.
> Enhancement requests for all Novell products may be made at
> http://support.novell.com/enhancement
>
> Using VA 5.51 build 315 on Windows 2000 build 2195
>

Similar Messages

  • Checking for running applications on remote machines

    I am trying to check for application running on remote machine - it could be LV or some other application.
    I have Server and Client applications (developed in LV) running as .exe on separate computers. Only LV-Runtime is installed. They exchange data via Datasockets. The problem I have is that if Client is launched before the server the (Client) takes ownership of certain sockets which causes Server to fail on startup. All the remote Clients have to be shotdown before Server can be started again properly.
    I was wondering if anyone has run into a similar problem.

    Hi Slawek,
    I would suggest using Remote Front Panels in LabVIEW. Remote front panels allow you to view and control a VI front panel remotely, either from within LabVIEW or from within a web browser, by connecting to the LabVIEW built-in web server. There is a tutorial Developer Zone: Remote Panels in LabVIEW -- Distributed Application Development that will provide you with more information.
    Also, there are example programs in LabVIEW that walk you through how to programmatically connect to a remote front panel. Go to LabVIEW >> Help >> Find Examples >> Networking >> General >> RemotePanelMethods-Client/Server.vi.
    Hope
    this helps and good luck!
    Kileen C.
    Applications Engineer
    National Instruments

  • Check windows running application

    Hi all,
    I have a program that has to check other windows (not LabVIEW programs) that are open. Is there a way to check the running application in LabVIEW?
    Thank you for your help,

    OK, but is this database file opened from within an application, and is that application running? Then the tasklist command will tell you that.
    If you want to see if a specific window is open you can call the Windows API (I'm still assuming you're in Windows) to try to get a handle to the window name. If you get a handle, the window is open. You can use the Windows Utilities for this.

  • How to Use AccessibleObjectFromWindow API in VBA to Get Excel Application Object from Excel Instance Window Handle

    I need to get the Excel.application object from a window handle using AccessibleObjectFromWindow. I can't seem to make the code work. First, I successfully search for the XLMAIN windows. Then, when I get a handle, I execute the AccessibleObjectFromWindow
    function. It seems to return a value of -2147467262 in all cases. Therefore, I believe that it is returning an error value. I can't figure out how to determine the meaning of this value.
    If it is an error value, I believe that one or more arguments are in error. My best guess at present is that the GUID argument is incorrect. I have tried two GUID values: {00020400-0000-0000-C000-000000000046} and {90140000-0016-0409-0000-0000000FF1CE}.
    I have seen both used in conjunction with OBJID_NATIVEOM. Neither one seems to work. I really would prefer not to use the second one as it has an Excel major and minor version number. I would hate to have to change this code, if a new minor version appeared.
    The attached code has been commented to show which parts have been shown to work and which not. I'm at my wits end and really need help.
    Thanks
    'This module is located in Access 2010, but this is an Excel question.
    Option Compare Database
    Option Explicit
    ' Module-Level Declarations
    'The GetDesktopWindow function and FindWindowEx function work just fine.
    Public Declare Function GetDesktopWindow Lib "user32" () As Long
    Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, _
    ByVal hWnd2 As Long, _
    ByVal lpsz1 As String, _
    ByVal lpsz2 As String) _
    As Long
    'I'm not getting the expected output from this function (see below)
    Private Declare Function AccessibleObjectFromWindow& Lib "oleacc.dll" _
    (ByVal hwnd&, _
    ByVal dwId&, _
    riid As GUID, _
    xlwb As Object)
    Type GUID
    lData1 As Long
    iData2 As Integer
    iData3 As Integer
    aBData4(0 To 7) As Byte
    End Type
    Function ExcelInstances() As Long
    ' Procedure-Level Declarations
    ' Value of OBJID_NATIVEOM verified by checking list of Windows API constants _
    on this site: http://www.lw-tech.com/q1/base.htm
    Const OBJID_NATIVEOM = &HFFFFFFF0
    Dim hWndDesk As Long 'Desktop window
    Dim hWndXL As Long 'Child window
    Dim objExcelApp As Object 'Final result wanted: Excel application object
    'Following variable (xlapp) to be set by AccessibleObjectFromWindow function
    Dim xlapp As Object
    Dim IDispatch As GUID 'GUID used in call to AccessibleObjectFrom Window function
    'Set up GUID to be used for all instances of Excel that are found
    Dim tmp1 As Variant 'Return value from AccessibleObjectFromWindow
    ' Executable Statements
    SetIDispatch IDispatch
    IDispatch = IDispatch
    'Get a handle to the desktop
    hWndDesk = GetDesktopWindow 'This seems to work
    Do
    'Get the next Excel window
    'The following statement seems to work. We are finding and counting _
    correctly all the instances of Excel. hWndXL is non-zero for each _
    instance of Excel
    hWndXL = FindWindowEx(GetDesktopWindow, hWndXL, "XLMAIN", vbNullString)
    'If we got one, increment the count
    If hWndXL > 0 Then
    'This works. We correctly count all _
    instances of Excel
    ExcelInstances = ExcelInstances + 1
    'Here is the problem. The following statement executes and returns a value of _
    -2147467262. xlapp, which is passed by reference to AccessibleObjectFromWindow, _
    is set to nothing. It should be set to the object for Excel.application. _
    I believe that this value is not an object. I tried to reference tmp1. in the _
    immediate window. There was no Intellisense.
    'I think that the function in returning an error value, but I can't figure _
    out what it is. I believe that AccessibleObjectFromWindow returns error _
    values, but I don't know where to find their values so I can interpret the _
    function's results.
    'As best I can tell, the hWndXL parameter is correct. It is the handle for _
    an instance of Excel. OBJID_NATIVEOM is set correctly (see constant declaration _
    above). xlapp is passed by reference as a non-initialized object variable, which _
    will be set by AccessiblObjectFromWindow. IDispatch may be the problem. It is set _
    as shown below in the procedure SetIDispatch(ByRef ID As GUID). This procedure _
    appears to work. I can see that IDispatch is set as I intended and correctly _
    passed to AccessibleObjectFromWindow.
    tmp1 = AccessibleObjectFromWindow(hWndXL, OBJID_NATIVEOM, IDispatch, xlapp)
    'Need to write code to test tmp1 for error. If none, then set objExcelApp = _
    object. Also, I exect xlapp to be set to Excel.application
    End If
    'Loop until we've found them all
    Loop Until hWndXL = 0
    End Function
    Private Sub SetIDispatch(ByRef ID As GUID)
    'Defines the IDispatch variable. The interface _
    ID is {90140000-0016-0409-0000-0000000FF1CE}.
    'NOT USING {00020400-0000-0000-C000-000000000046}, _
    which could be the problem
    '9 is release version - first version shipped (initial release)
    '0 is release type - retail/oem
    '14 is major version
    '0000 is minor version
    '0016 is product ID - MS Excel 2010
    '0409 is language identifier - English
    '0 is x86 or x64 - this is x86
    '000 reserved
    '0 is debug/ship
    '000000FF1CE is office family ID
    With ID
    .lData1 = &H90140000
    .iData2 = &H16
    .iData3 = &H409
    .aBData4(0) = &H0
    .aBData4(1) = &H0
    .aBData4(2) = &H0
    .aBData4(3) = &H0
    .aBData4(4) = &H0
    .aBData4(5) = &HF
    .aBData4(6) = &HF1
    .aBData4(7) = &HCE
    End With
    End Sub
    DaveInCalabasas

    I don't think you can return a reference to Excel's main window like that as you are attempting to do.
    Ref:
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd317978(v=vs.85).aspx 
    It's relatively straightforward to return any workbook's window in any given instance, and in turn it's parent Excel app. Try the following and adapt as required (and include error handling) -
    Option Explicit
    Private Declare Function FindWindowEx Lib "User32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, _
    ByVal lpsz2 As String) As Long
    Private Declare Function IIDFromString Lib "ole32" _
    (ByVal lpsz As Long, ByRef lpiid As GUID) As Long
    Private Declare Function AccessibleObjectFromWindow Lib "oleacc" _
    (ByVal hWnd As Long, ByVal dwId As Long, ByRef riid As GUID, _
    ByRef ppvObject As Object) As Long
    Private Type GUID
    Data1 As Long
    Data2 As Integer
    Data3 As Integer
    Data4(7) As Byte
    End Type
    Private Const S_OK As Long = &H0
    Private Const IID_IDispatch As String = "{00020400-0000-0000-C000-000000000046}"
    Private Const OBJID_NATIVEOM As Long = &HFFFFFFF0
    Sub test()
    Dim i As Long
    Dim hWinXL As Long
    Dim xlApp As Object ' Excel.Application
    Dim wb As Object ' Excel.Workbook
    hWinXL = FindWindowEx(0&, 0&, "XLMAIN", vbNullString)
    While hWinXL > 0
    i = i + 1
    Debug.Print "Instance_" & i; hWinXL
    If GetXLapp(hWinXL, xlApp) Then
    For Each wb In xlApp.Workbooks
    Debug.Print , wb.Name
    Next
    End If
    hWinXL = FindWindowEx(0, hWinXL, "XLMAIN", vbNullString)
    Wend
    End Sub
    'Function GetXLapp(hWinXL As Long, xlApp As Excel.Application) As Boolean
    Function GetXLapp(hWinXL As Long, xlApp As Object) As Boolean
    Dim hWinDesk As Long, hWin7 As Long
    Dim obj As Object
    Dim iid As GUID
    Call IIDFromString(StrPtr(IID_IDispatch), iid)
    hWinDesk = FindWindowEx(hWinXL, 0&, "XLDESK", vbNullString)
    hWin7 = FindWindowEx(hWinDesk, 0&, "EXCEL7", vbNullString)
    If AccessibleObjectFromWindow(hWin7, OBJID_NATIVEOM, iid, obj) = S_OK Then
    Set xlApp = obj.Application
    GetXLapp = True
    End If
    End Function
    Note as written if an instance does not have any loaded workbooks a reference will not be returned (though a workbook can be added using DDE, but convoluted!)
    FWIW there are two other very different approaches to grab all running Excel instances though something along the lines of the above is simplest.
    Peter Thornton

  • Application/object halts for (exactly) 1 hour

    One processing object of my application occasionally halts for exactly 1 hour (60 minutes) and i wonder what the reason can be. The application itself is multithreaded and can run multiple threads. The application itself doesn't halt (log entries) but one thread that first downloads data via HTTP to a file and then processes the file sometimes halts and continues after 60 minutes. For the download part, i set a timeout of 10 minutes (not 60 minutes) and this timeout also is just for the download part. After downloading, the file processing starts that reads from the file and performs some database (JDBC) statements (SELLECT, UPDATE, INSERT). The application itself shows the running time of the thread. When the thread processing continues, i see in the database that there is a jump of exactly 60 minutes between the last and the subsequent access before/after the halt. There is no timeout oder exception or anything else. It just sleeps for 1 hour and then continues.
    Can one reason be some MS SQL issue that just makes one connection sleep? Or any other possibility?

    and of course you don't have these Sleeps in a loop that mysteriously executes exactly (60 minutes / sleep time) times ?
    just add more checking around the code that connects to db:System.out.println("Connecting at <time>");
    // ins, sel, upd
    System.out.println("Done at <time>, took <timediff>"); and so on... it is mysterious and indicative of an error on your part that it takes exactly one hour.
    unless there is a strange situation like the server where the db lives resets it self at x'olock and takes 1 hour to get back up... etc.

  • Cause:  Application Object Library is unable to reconnect to your gateway

    After migration, When i am trying to bring up MT, i am getting following information
    /u08/tech/comn/admin/scripts/OFMSTECH_oraapp09/adfmsctl.sh start
    script returned:
    You are running adfmsctl.sh version 115.16
    Cannot reconnect to gateway
    Cause: Application Object Library is unable to reconnect to your gateway ORACLE account after you unsuccessfully attempted to sign-on.
    Action: Check that your gateway environment variable is set correctly.
    starting forms metrics server for OFMSTECH.
    Cannot reconnect to gateway
    Cause: Application Object Library is unable to reconnect to your gateway ORACLE account after you unsuccessfully attempted to sign-on.
    Action: Check that your gateway environment variable is set correctly.
    adfmsctl.sh: exiting with status 0
    .end std out.
    .end err out.
    OAD is stopped
    Osagent is stopped
    Unable to stop locator. No process-id file found.
    Unable to stop gatekeeper. No process-id file found.
    Unable to stop any Discoverer Sessions. No process-id file found.
    Unable to stop any Discoverer Preference. No process-id file found.
    Unable to stop any Discoverer Collector. No process-id file found.
    /u08/tech/ora/8.0.6/vbroker/bin/osagent
    Started osagent.
    Osagent logs messages to the file /u08/tech/ora/8.0.6/discwb4/util/osagent.log.
    Waiting for OAD to start...
    Started OAD.
    OAD logs messages to the file /u08/tech/ora/8.0.6/discwb4/util/oad.log.
    Failed to start locator.
    Registering Discoverer Session
    Registering the Collector
    Applying preferences from file : /u08/tech/ora/8.0.6/discwb4/util/pref.txt
    Finished applying preferences
    Closing down registry..
    Registry File sync...
    Registering Discoverer Preference Repository
    addisctl.sh: exiting with status 1
    .end std out.
    /u08/tech/ora/8.0.6/jre1183o/lib/i686/green_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    /u08/tech/ora/8.0.6/jre1183o/lib/i686/green_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    /u08/tech/ora/8.0.6/jre1183o/lib/i686/green_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    /u08/tech/ora/8.0.6/jre1183o/lib/i686/green_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    /u08/tech/ora/8.0.6/jre1183o/lib/i686/green_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    /u08/tech/ora/8.0.6/jre1183o/lib/i686/green_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    /u08/tech/ora/8.0.6/jre1183o/lib/i686/green_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    .end err out.

    Danny,
    Do you have all RPMs installed on the target node?
    Is the issue with this script only?
    What is the target OS version?
    Please see (Note: 377217.1 - What should the value of LD_ASSUME_KERNEL be set to for Linux?).
    Regards,
    Hussein

  • Installaion error "Some other database applications,sight be still running"

    Anyone has found solution of this problem?
    i have following output in my log file.
    SAP MaxDB Installation Manager 7.8.01.18
    Checking installation...
    Preparing package "Installer" ...
    Preparing package "SAP Utilities Compatibility" ...
    Preparing package "Global Listener" ...
    Preparing package "Installation Compatibility" ...
    Preparing package "Base" ...
    Preparing package "SQLDBC" ...
    Preparing package "SQLDBC 77" ...
    Preparing package "Fastload API" ...
    Preparing package "SQLDBC 76" ...
    Preparing package "SAP Utilities" ...
    Preparing package "Redist Python" ...
    Preparing package "Loader" ...
    Preparing package "ODBC" ...
    Preparing package "Messages" ...
    Preparing package "JDBC" ...
    Free to wrong pool 1361280 not 75900000 at SDB/Install/PackageManagerCollection.pm line 711.

    Although i have installed xamp on my windows7 and have stopped mysql service.
    But still dont know why this error persists.
    The complete installation log file is too large, however i copied the contents from log file, i think would be useful in tracing.
    Also i have some error in bold which would be important
    error:
    TRACE      2011-09-12 23:14:00.811
    SAPinst was started using commandline: C:\Users\khurram\AppData\Local\Temp\sapinst_exe.15056.1315861881\sapinst.exe
    TRACE      2011-09-12 23:14:00.811
    SAPinst properties are :
    GUISERVER_DIALOG_PORT=21212
    GUISERVER_HTTP_PORT=4239
    SAPINST_CONTROL_URL=control.xml
    SAPINST_DIALOG_PORT=21200
    SAPINST_DIALOG_URL=dialog.xml
    SAPINST_EXE=SAPINST_EXE
    SAPINST_JSLIB_TRACE=NW,NWUsers,OraCom,NWCTC,ClusterMgt,SystemIdentity
    SAPINST_KEYDB_URL=keydb.xml
    SAPINST_MESSAGE_CONSOLE_THRESHOLD=info
    SAPINST_MESSAGE_URL=.
    SAPINST_PACKAGES_URL=packages.xml
    SAPINST_RESOURCE_URL=resourcepool.xml
    SAPINST_SAVE_INPUT=true
    SAPINST_SCAN_DEVICES=false
    SAPINST_SKIP_DIALOGS=false
    SAPINST_TOPLEVEL_URL=toplevel.xml
    SAPINST_USE_ADVANCED_JS_HANDLING=true
    SELFEXTRACTOR_EXECUTABLE_NAME=D:/SAP Career/SAP NetWeaver AS ABAP 7.02 SP6 32-bit Trial Version/NWASABAPTRIAL70206.part1/SAP_NetWeaver_702e_Installation_Master/IM_WINDOWS_I386/sapinst.exe
    Environment Variables
    =====================
      =C:=C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL
      =D:=D:\SAP Career\SAP NetWeaver AS ABAP 7.02 SP6 32-bit Trial Version\NWASABAPTRIAL70206.part1\SAP_NetWeaver_702e_Installation_Master\IM_WINDOWS_I386
      ALLUSERSPROFILE=C:\ProgramData
      APPDATA=C:\Users\khurram\AppData\Roaming
      CLASSPATH=.;C:\Program Files\Java\jre6\lib\ext\QTJava.zip
      CommonProgramFiles=C:\Program Files\Common Files
      COMPUTERNAME=SHERI-PC
      ComSpec=C:\Windows\system32\cmd.exe
      FP_NO_HOST_CHECK=NO
      HOMEDRIVE=C:
      HOMEPATH=\Users\khurram
      LOCALAPPDATA=C:\Users\khurram\AppData\Local
      LOGONSERVER=
    SHERI-PC
      NUMBER_OF_PROCESSORS=2
      OS=Windows_NT
      Path=C:\Program Files\Java\jdk1.6.0_23\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Windows Live\Shared;C:\Program Files\QuickTime\QTSystem\;C:\PROGRA1\ADDINS1\XLSTAT~1
      PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
      PROCESSOR_ARCHITECTURE=x86
      PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 13, GenuineIntel
      PROCESSOR_LEVEL=6
      PROCESSOR_REVISION=0f0d
      ProgramData=C:\ProgramData
      ProgramFiles=C:\Program Files
      PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
      PUBLIC=C:\Users\Public
      QTJAVA=C:\Program Files\Java\jre6\lib\ext\QTJava.zip
      SAPINST_EXEDIR_CD=D:/SAP Career/SAP NetWeaver AS ABAP 7.02 SP6 32-bit Trial Version/NWASABAPTRIAL70206.part1/SAP_NetWeaver_702e_Installation_Master/IM_WINDOWS_I386
      SAPINST_JRE_HOME=C:/Users/khurram/AppData/Local/Temp/sapinst_exe.15056.1315861881/jre
      SAP_DIR_PERF=C:\usr\sap\PRFCLOG
      SELFEXTRACTOR_EXECUTABLE_NAME=D:/SAP Career/SAP NetWeaver AS ABAP 7.02 SP6 32-bit Trial Version/NWASABAPTRIAL70206.part1/SAP_NetWeaver_702e_Installation_Master/IM_WINDOWS_I386/sapinst.exe
      SystemDrive=C:
      SystemRoot=C:\Windows
      TEMP=C:\Users\khurram\AppData\Local\Temp
      TMP=C:\Users\khurram\AppData\Local\Temp
      USERDOMAIN=Sheri-PC
      USERNAME=khurram
      USERPROFILE=C:\Users\khurram
      windir=C:\Windows
    User: Sheri-PC\khurram, Id: S-1-5-21-1502602567-2146770005-778833213-1001
    Working directory: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL
    Current access token
    ====================
    Could not get thread token. Last error: 1008. I assume that no thread token exists.
    Got process token.
    Privileges:
      Privilege SeTimeZonePrivilege, display name: Change the time zone, not enabled.
      Privilege SeBackupPrivilege, display name: Back up files and directories, not enabled.
      Privilege SeCreateSymbolicLinkPrivilege, display name: Create symbolic links, not enabled.
      Privilege SeRestorePrivilege, display name: Restore files and directories, not enabled.
      Privilege SeShutdownPrivilege, display name: Shut down the system, not enabled.
      Privilege SeDebugPrivilege, display name: Debug programs, not enabled.
      Privilege SeAssignPrimaryTokenPrivilege, display name: Replace a process level token, not enabled.
      Privilege SeSystemEnvironmentPrivilege, display name: Modify firmware environment values, not enabled.
      Privilege SeIncreaseQuotaPrivilege, display name: Adjust memory quotas for a process, not enabled.
      Privilege SeChangeNotifyPrivilege, display name: Bypass traverse checking, enabled.
      Privilege SeRemoteShutdownPrivilege, display name: Force shutdown from a remote system, not enabled.
      Privilege SeTcbPrivilege, display name: Act as part of the operating system, not enabled.
      Privilege SeUndockPrivilege, display name: Remove computer from docking station, not enabled.
      Privilege SeSecurityPrivilege, display name: Manage auditing and security log, not enabled.
      Privilege SeTakeOwnershipPrivilege, display name: Take ownership of files or other objects, not enabled.
      Privilege SeLoadDriverPrivilege, display name: Load and unload device drivers, not enabled.
      Privilege SeManageVolumePrivilege, display name: Perform volume maintenance tasks, not enabled.
      Privilege SeSystemProfilePrivilege, display name: Profile system performance, not enabled.
      Privilege SeImpersonatePrivilege, display name: Impersonate a client after authentication, enabled.
      Privilege SeSystemtimePrivilege, display name: Change the system time, not enabled.
      Privilege SeCreateGlobalPrivilege, display name: Create global objects, enabled.
      Privilege SeProfileSingleProcessPrivilege, display name: Profile single process, not enabled.
      Privilege SeIncreaseBasePriorityPrivilege, display name: Increase scheduling priority, not enabled.
      Privilege SeCreatePagefilePrivilege, display name: Create a pagefile, not enabled.
      Privilege SeIncreaseWorkingSetPrivilege, display name: Increase a process working set, not enabled.
    INFO       2011-09-12 23:14:53.219
               CJSlibModule::writeInfo_impl()
    Output of "D:\SAP Career\SAP NetWeaver AS ABAP 7.02 SP6 32-bit Trial Version\NWASABAPTRIAL70206.part1\SAP_MaxDB_78_SP1_10_RDBMS\DATA_UNITS\MAXDB_WINDOWS_I386\SDBINST.exe" -global_prog C:\sapdb\programs -global_data C:\sapdb\data -path C:\sapdb\clients\NSP -private_datapath C:\sapdb\clients\NSP\data -profile "Runtime For SAP AS" -i CL_NSP -b is written to the logfile C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sdbinst.log.
    TRACE      2011-09-12 23:25:23.146 [synxcpipe.cpp:200]
               CSyStdIOPipe::waitForOverlappedIO(int timeout)
               lib=syslib module=syslib
    Syslib info about system call. OS message 109 (The pipe has been ended.
    ) after execution of system call 'GetOverlappedResult' with parameter ((pipe to child process)), line (140) in file (synxcpipe.cpp).
    WARNING    2011-09-12 23:25:23.162
               CJSlibModule::writeWarning_impl()
    Execution of the command ""D:\SAP Career\SAP NetWeaver AS ABAP 7.02 SP6 32-bit Trial Version\NWASABAPTRIAL70206.part1\SAP_MaxDB_78_SP1_10_RDBMS\DATA_UNITS\MAXDB_WINDOWS_I386\SDBINST.exe" -global_prog C:\sapdb\programs -global_data C:\sapdb\data -path C:\sapdb\clients\NSP -private_datapath C:\sapdb\clients\NSP\data -profile "Runtime For SAP AS" -i CL_NSP -b" finished with return code -1073741819. Output:
    SAP MaxDB Installation Manager 7.8.01.18
    Checking installation...
    Preparing package "Installer" ...
    Preparing package "SAP Utilities Compatibility" ...
    Preparing package "Global Listener" ...
    Preparing package "Installation Compatibility" ...
    Preparing package "Base" ...
    Preparing package "SQLDBC" ...
    Preparing package "SQLDBC 77" ...
    Preparing package "Fastload API" ...
    Preparing package "SQLDBC 76" ...
    Preparing package "SAP Utilities" ...
    Preparing package "Redist Python" ...
    Preparing package "Loader" ...
    Preparing package "ODBC" ...
    Preparing package "Messages" ...
    Preparing package "JDBC" ...
    Free to wrong pool 1301280 not 75900000 at SDB/Install/PackageManagerCollection.pm line 711.
    TRACE[W]   2011-09-12 23:25:23.172 [ianxcreghelper.cpp:244]
               CNTRegistryKey::CNTRegistryKey(., HKEY_LOCAL_MACHINE, SOFTWARE\SAP\SAP DBTech, ...)
    Error 2 (The system cannot find the file specified.
    ) in execution of a 'RegOpenKeyEx' function, line (79), with parameter (SOFTWARE\SAP\SAP DBTech).
    TRACE[W]   2011-09-12 23:25:23.172 [ianxcreghelper.cpp:467]
               CNTRegistryKey::CNTRegistryKey(., HKEY_LOCAL_MACHINE, SOFTWARE\SAP\SAP DBTech, ...)
    The subkey 'HKEY_LOCAL_MACHINE\SOFTWARE\SAP\SAP DBTech' does not exist on the 'localhost' host.
    TRACE[W]   2011-09-12 23:25:23.179 [ianxcreghelper.cpp:244]
               CNTRegistryKey::CNTRegistryKey(., HKEY_LOCAL_MACHINE, SOFTWARE\SAP\SAP DBTech, ...)
    Error 2 (The system cannot find the file specified.
    ) in execution of a 'RegOpenKeyEx' function, line (79), with parameter (SOFTWARE\SAP\SAP DBTech).
    TRACE[W]   2011-09-12 23:25:23.179 [ianxcreghelper.cpp:467]
               CNTRegistryKey::CNTRegistryKey(., HKEY_LOCAL_MACHINE, SOFTWARE\SAP\SAP DBTech, ...)
    The subkey 'HKEY_LOCAL_MACHINE\SOFTWARE\SAP\SAP DBTech' does not exist on the 'localhost' host.
    TRACE[W]   2011-09-12 23:25:23.188 [ianxcreghelper.cpp:244]
               CNTRegistryKey::CNTRegistryKey(., HKEY_LOCAL_MACHINE, SOFTWARE\SAP\SAP DBTech, ...)
    Error 2 (The system cannot find the file specified.
    ) in execution of a 'RegOpenKeyEx' function, line (79), with parameter (SOFTWARE\SAP\SAP DBTech).
    TRACE[W]   2011-09-12 23:25:23.188 [ianxcreghelper.cpp:467]
               CNTRegistryKey::CNTRegistryKey(., HKEY_LOCAL_MACHINE, SOFTWARE\SAP\SAP DBTech, ...)
    The subkey 'HKEY_LOCAL_MACHINE\SOFTWARE\SAP\SAP DBTech' does not exist on the 'localhost' host.
    ERROR      2011-09-12 23:25:23.195 [iaxxinscbk.cpp:244]
    MDB-07020  The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and C:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_<date>_<time>.log.
    TRACE      2011-09-12 23:25:23.250 [iaxxejsbas.hpp:413]
               handleException<ESAPinstException>()
    Converting exception into JS Exception Exception.
    TRACE      2011-09-12 23:25:23.264
    Function setMessageIdOfExceptionMessage: modlib.jslib.caughtException
    ERROR      2011-09-12 23:25:23.265
               CJSlibModule::writeError_impl()
    MUT-03025  Caught ESAPinstException in Modulecall: sdbinst.log and C:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_<date>_<time>.log.
    TRACE      2011-09-12 23:25:23.272 [iaxxejsbas.hpp:488]
               EJS_Base::dispatchFunctionCall()
    JS Callback has thrown unknown exception. Rethrowing.
    ERROR      2011-09-12 23:25:23.310 [sixxcstepexecute.cpp:988]
    FCO-00011  The step installClientSoftware with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_DBClient|ind|ind|ind|ind|9|0|NW_ADA_DBClient|ind|ind|ind|ind|4|0|Sdb_ClientSoftware_Dialogs|ind|ind|ind|ind|0|0|Sdb_ClientSoftware|ind|ind|ind|ind|0|0|installClientSoftware was executed with status ERROR ( Last error reported by the step :The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and C:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_<date>_<time>.log.).
    TRACE      2011-09-12 23:25:23.634 [kdxxctaco.cpp:219]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2011-09-12 23:25:23.830 [kdxxctaco.cpp:252]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    after creating out stream
    TRACE      2011-09-12 23:25:23.951 [kdxxctaco.cpp:286]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2011-09-12 23:25:24.23 [syxxcfile.cpp:130]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & , ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
               lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2011-09-12 23:25:24.27 [syxxcnode.cpp:441]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/__instana_tmp.13.xml, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/__instana_tmp.xml to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/__instana_tmp.13.xml
    INFO       2011-09-12 23:25:24.170 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\__instana_tmp.xml.
    TRACE      2011-09-12 23:25:25.062
    SAPInst calls the LogInquirer. The output of the LogInquirer can be found in file sapinst_loginquirer.log.
    TRACE      2011-09-12 23:25:25.196 [iaxxgenimp.cpp:707]
                CGuiEngineImp::showMessageBox
    TRACE      2011-09-12 23:25:25.225 [iaxxgenimp.cpp:1245]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI

  • Installaion error "Some other database applications ,ight be still running"

    Hi,
    I am facing a problem while installing developer trail version. Below is the error.
    FCO-00011  The step installClientSoftware with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_DBClient|ind|ind|ind|ind|9|0|NW_ADA_DBClient|ind|ind|ind|ind|4|0|Sdb_ClientSoftware_Dialogs|ind|ind|ind|ind|0|0|Sdb_ClientSoftware|ind|ind|ind|ind|0|0|installClientSoftware was executed with status ERROR ( Last error reported by the step :The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and C:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_<date>_<time>.log.).
    Now the installation struck at "Install database client". I have checked all the place that I know in windows like "Processes" and "Services" to see any MaxDB instance is running. I could not find any such. So I am thinking There will not be any applications which can acces database. unfortunatly installation step is thinking it as if there were some other applications running on it.
    Any help to solve would be a great help.
    Thanks,
    Amara.

    Hi,
    Below is the log file entries
    INFO       2011-04-15 16:48:27.504
               CJSlibModule::writeInfo_impl()
    Output of C:\NWABAPTRIAL70206_64\SAP_MaxDB_78_SP1_14_RDBMS\DATA_UNITS\MAXDB_WINDOWS_X86_64\SDBINST.exe -global_prog C:\sapdb\programs -global_data C:\sapdb\data -path C:\sapdb\clients\NSP -private_datapath C:\sapdb\clients\NSP\data -profile "Runtime For SAP AS" -i CL_NSP -b is written to the logfile C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sdbinst.log.
    WARNING    2011-04-15 16:48:31.061
               CJSlibModule::writeWarning_impl()
    Execution of the command "C:\NWABAPTRIAL70206_64\SAP_MaxDB_78_SP1_14_RDBMS\DATA_UNITS\MAXDB_WINDOWS_X86_64\SDBINST.exe -global_prog C:\sapdb\programs -global_data C:\sapdb\data -path C:\sapdb\clients\NSP -private_datapath C:\sapdb\clients\NSP\data -profile "Runtime For SAP AS" -i CL_NSP -b" finished with return code 1. Output:
    SAP MaxDB Installation Manager 7.8.01.14
    Checking installation...
    install registry not found
    Preparing package "Installer" ...
    Preparing package "SAP Utilities Compatibility" ...
    Preparing package "Global Listener" ...
    Preparing package "Installation Compatibility" ...
    Preparing package "Base" ...
    Preparing package "SQLDBC" ...
    Preparing package "SQLDBC 77" ...
    Preparing package "Fastload API" ...
    Preparing package "SQLDBC 76" ...
    Preparing package "SAP Utilities" ...
    Preparing package "ODBC" ...
    Preparing package "Messages" ...
    Preparing package "JDBC" ...
    Looking for running processes of package Installer
    Looking for running processes of package Installation Compatibility
    Looking for running processes of package Global Listener
    Looking for running processes of package SAP Utilities Compatibility
    Looking for running processes of package Base
    Looking for running processes of package SQLDBC 76
    Looking for running processes of package Messages
    Looking for running processes of package SQLDBC
    Looking for running processes of package ODBC
    Looking for running processes of package JDBC
    Looking for running processes of package SAP Utilities
    Looking for running processes of package SQLDBC 77
    Looking for running processes of package Fastload API
    ERR:  Installation failed
    ERR:    error installing
    INFO:      Installing signal handler
    INFO:        Handler for signal INT
    INFO:        Handler for signal PIPE
    INFO:        Handler for signal ABRT
    INFO:        Handler for signal FPE
    INFO:        Handler for signal QUIT
    INFO:      System Informations
    INFO:        Operating System: Windows
    INFO:        Architecture    : AMD64
    INFO:        Version         : Windows 7
    INFO:        Subversion      :
    INFO:        Host Name       : SAIRAMHP
    INFO:      Installer Informations
    INFO:        Installer is part of installation kit
    INFO:        Version is 7.8.01 Build 014-121-233-288
    INFO:        MakeId is 479160
    INFO:        Running as console application
    INFO:        Running in background mode
    INFO:        Program call informations
    INFO:          Caller program name is SDBINST
    INFO:          Command line arguments: -global_prog C:\sapdb\programs -global_data C:\sapdb\data -path C:\sapdb\clients\NSP -private_datapath C:\sapdb\clients\NSP\data -profile Runtime For SAP AS -i CL_NSP -b
    INFO:          Current directory: C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL
    INFO:          Installer directory: C:\NWABAPTRIAL70206_64\SAP_MaxDB_78_SP1_14_RDBMS\DATA_UNITS\MAXDB_WINDOWS_X86_64
    INFO:          Pid is 4756
    INFO:          Environment dump:
    INFO:            ALLUSERSPROFILE = C:\ProgramData
    INFO:            APPDATA = C:\Users\nspadm.sairamhp\AppData\Roaming
    INFO:            COMMONPROGRAMFILES = C:\Program Files\Common Files
    INFO:            COMMONPROGRAMFILES(X86) = C:\Program Files (x86)\Common Files
    INFO:            COMMONPROGRAMW6432 = C:\Program Files\Common Files
    INFO:            COMPUTERNAME = SAIRAMHP
    INFO:            COMSPEC = C:\Windows\system32\cmd.exe
    INFO:            DBMS_TYPE = ada
    INFO:            FP_NO_HOST_CHECK = NO
    INFO:            HOMEDRIVE = C:
    INFO:            HOMEPATH = \Users\nspadm.sairamhp
    INFO:            HULUDESKTOPPATH = C:\Users\nspadm.sairamhp\AppData\Local\HuluDesktop\instances\0.9.13.1\HuluDesktop.exe
    INFO:            LOCALAPPDATA = C:\Users\nspadm.sairamhp\AppData\Local
    INFO:            LOGONSERVER =
    SAIRAMHP
    INFO:            NUMBER_OF_PROCESSORS = 4
    INFO:            ONLINESERVICES = Online Services
    INFO:            OS = Windows_NT
    INFO:            PATH = C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\12.0\DLLShared\;C:\Program Files (x86)\Hewlett-Packard\HP SimplePass Identity Protection\x64;C:\Program Files (x86)\Hewlett-Packard\HP SimplePass Identity Protection\;C:\Program Files (x86)\Windows Live\Shared;C:\usr\sap\NSP\SYS\exe\uc\NTAMD64;C:\sapdb\clients\NSP\bin;C:\sapdb\clients\NSP\pgm;C:\sapdb\programs\bin
    INFO:            PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    INFO:            PCBRAND = Pavilion
    INFO:            PLATFORM = MCD
    INFO:            PROCESSOR_ARCHITECTURE = AMD64
    INFO:            PROCESSOR_IDENTIFIER = Intel64 Family 6 Model 37 Stepping 5, GenuineIntel
    INFO:            PROCESSOR_LEVEL = 6
    INFO:            PROCESSOR_REVISION = 2505
    INFO:            PROGRAMDATA = C:\ProgramData
    INFO:            PROGRAMFILES = C:\Program Files
    INFO:            PROGRAMFILES(X86) = C:\Program Files (x86)
    INFO:            PROGRAMW6432 = C:\Program Files
    INFO:            PSMODULEPATH = C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    INFO:            PUBLIC = C:\Users\Public
    INFO:            SAPEXE = C:\usr\sap\NSP\SYS\exe\uc\NTAMD64
    INFO:            SAPINST_EXEDIR_CD = C:/NWABAPTRIAL70206_64/SAP_NetWeaver_702e_Installation_Master/IM_WINDOWS_X86_64
    INFO:            SAPINST_JRE_HOME = C:/usr/sap/NSP/tmp/sapinst_exe.944.1302900449/jre
    INFO:            SAPLOCALHOST = sairamhp
    INFO:            SAPSYSTEMNAME = NSP
    INFO:            SAP_DIR_PERF = C:\usr\sap\PRFCLOG
    INFO:            SELFEXTRACTOR_EXECUTABLE_NAME = C:/NWABAPTRIAL70206_64/SAP_NetWeaver_702e_Installation_Master/IM_WINDOWS_X86_64/sapinst.exe
    INFO:            SESSIONNAME = Console
    INFO:            SYSTEMDRIVE = C:
    INFO:            SYSTEMROOT = C:\Windows
    INFO:            TEMP = C:\usr\sap\NSP\tmp
    INFO:            TMP = C:\usr\sap\NSP\tmp
    INFO:            USERDOMAIN = sairamhp
    INFO:            USERNAME = nspadm
    INFO:            USERPROFILE = C:\Users\nspadm.sairamhp
    INFO:            WINDIR = C:\Windows
    INFO:     
    SAP MaxDB Installation Manager 7.8.01.14
    INFO:      checking configuration of global installation
    INFO:        Parameter "GlobalData" is given via command line option, value = "C:\sapdb\data"
    INFO:        Parameter "GlobalPrograms" is given via command line option, value = "C:\sapdb\programs"
    INFO:      checking configuration of installation
    INFO:        Parameter "Name" is given via command line option, value = "CL_NSP"
    INFO:        Parameter "Path" is given via command line option, value = "C:\sapdb\clients\NSP"
    INFO:        Parameter "Comment" is not set
    INFO:        Parameter "PrivateData" is given via command line option, value = "C:\sapdb\clients\NSP\data"
    INFO:      Checking installation...
    ERROR      2011-04-15 16:48:31.77 [iaxxinscbk.cpp:244]
    MDB-07020  The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and C:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_<date>_<time>.log.
    ERROR      2011-04-15 16:48:31.077
               CJSlibModule::writeError_impl()
    MUT-03025  Caught ESAPinstException in module call: sdbinst.log and C:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_<date>_<time>.log.
    ERROR      2011-04-15 16:48:31.92 [sixxcstepexecute.cpp:988]
    FCO-00011  The step installClientSoftware with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_DBClient|ind|ind|ind|ind|9|0|NW_ADA_DBClient|ind|ind|ind|ind|4|0|Sdb_ClientSoftware_Dialogs|ind|ind|ind|ind|0|0|Sdb_ClientSoftware|ind|ind|ind|ind|0|0|installClientSoftware was executed with status ERROR ( Last error reported by the step :The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and C:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_<date>_<time>.log.).
    INFO       2011-04-15 16:48:31.295 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\__instana_tmp.xml.
    WARNING    2011-04-15 16:48:31.592 [iaxxejshlp.cpp:150]
    Could not get property IDs of the JavaScript object.
    ERROR      2011-04-15 16:48:31.592 [iaxxejsctl.cpp:492]
    FJS-00010  Could not get value for property .
    INFO       2011-04-15 16:48:45.382 [sixxcstepexecute.cpp:1081]
    An error occured and the user decided to stop.\n Current step "|NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_DBClient|ind|ind|ind|ind|9|0|NW_ADA_DBClient|ind|ind|ind|ind|4|0|Sdb_ClientSoftware_Dialogs|ind|ind|ind|ind|0|0|Sdb_ClientSoftware|ind|ind|ind|ind|0|0|installClientSoftware".
    INFO       2011-04-15 16:48:48.50 [synxccuren.cpp:1016]
               CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL)
               lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL.
    Abort execution because of
    controller.userDecideToStop
    INFO       2011-04-15 16:48:48.65 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\.lastInstallationLocation.
    CGuiProxy::receive(): receive error on socket 636
    Apr 15, 2011 4:48:48 PM [Info]: >> Closed input stream
    Apr 15, 2011 4:48:48 PM [Info]: >> Closed input stream
    Apr 15, 2011 4:48:48 PM [Info]: GUI stopped.
    Exit status of child: 2
    Thanks,
    Amara.

  • 0TCT_DS01 Missing BI Application Object

    Hi,
    I've activated BI Technical Content and loaded 0TCT_C01.  When I run queries from the portal (via std web template 0ANALYSIS_PATTERN), listcube on 0TCT_MC01 only shows the BI Application (i.e 0ANALYSIS_PATTERN) but not the BI Application Object (i.e Query Name).
    I'm currently on ABAP SP16 and have applied the following patches:
    1115531 - Error in statistics recording on the Web in the BEx Analyzer
    1134456 - UTC Time Stamp is incorrect in cubes 0TCT_C01,2,3 for MDX
    1138874 - BIAC User wait times no longer included in Front End times
    1150872 - BIAC De-implementation of SAP Note No. 1091820
    1152320 - BIAC Wrong OLAP time in query Runtime Statistics
    1160506 Dump while executing InfoPackage 0TCT_DS01, DS02, DS03
    1302812 - BI Application object name does not appear in the output
    Any help is much appreciated.  Thanks.
    Regards,
    Jianyun

    Hi
    During the installtion of 0TCT_MC01, set the grouping to Before and After and check if the Queries are avilabel.If they are not active actiavte them.
    Regards, Hyma

  • Select several application object to create as duplicate

    Hi,
    At the school I work at we are currently running Netware 6.5 SP7 and Zenworks 4.01 ir7.
    Our Board currently has two different Novell trees, one of the trees were for our slow link schools and the other tree was setup for our fast link schools.
    Now that all our schools are high speed we are in the early stages of getting rid of the slow link tree.
    I was asked to start the early phase and was asked to duplicate all the application objects of one of the schools currently in the high speed link tree and duplicate all the application objects to the recently created Organizational Unit objects of the new schools put into the tree.
    I know how to do this is Console One but it is very tedious and slow because I have to duplicate one application object at a time. Also, this will take long to do because i have to dupliacte about 75 Application Objects.
    Is there a way to select all the application objects I want to duplicate at once or do i have to do one at a time? Also, i there a tool I can use to accomplish this?
    If I can select all the application objects to duplicate at once this will save a lot of time!
    Thanks!

    Pilonbrad,
    > IS THERE A WAY TO SELECT ALL THE APPLICATION OBJECTS I WANT TO
    > DUPLICATE AT ONCE OR DO I HAVE TO DO ONE AT A TIME? ALSO, I THERE A
    > TOOL I CAN USE TO ACCOMPLISH THIS?
    Your shift key seems stuck :) Have you checked the JRB utilities?
    - Anders Gustafsson (Sysop)
    The Aaland Islands (N60 E20)
    Discover the new Novell forums at http://forums.novell.com
    Novell does not monitor these forums officially.
    Enhancement requests for all Novell products may be made at
    http://support.novell.com/enhancement

  • Object failed to run due to an error while processing on the Job Server

    when i am scheduling a report ith email notification i am getting  below error
    error msg: Object failed to run due to an error while processing on the Job Server
    i have configured email notification in bo cmc and server also SMTP enabled. while scheduling report to ueser i am getting error and even mails are delivered to users as well.

    hi prithvi,
    i am able to schedule reports to other destinations and reports are delivered as per the requirement.
    i am able to telnet SMTP server from Adaptive job server machine on SMTP port.
    have to check errors on log file....
    @ COULD YOU  PLEASE LET ME KNOW USER CAN SEND A MAIL TO USER  IN SAME DOMAIN . WHILE SCHEDULING A REPORT AND AS OPTION AVAILABLE  IN 4.0 LAUNCH PAD CAN HE SEND A MAIL DIRECTLY  AFTER RUNNING REPORT.

  • How to check/verify running sql in lib cache is using updated statistics of table

    How to check/verify running sql in lib cache is using updated statistics of table used in from clause.
    one of my application table is highly busy i.e frequent update/insert/delete.
    we gather table stats every 30 min.

    Hello, "try dynamic sampling" = think "outside the box", maybe hit two birds with same stone.
    As a matter of fact, I was just backing up your statement: "30 minutes seems pretty extreme"
    cheers

  • How to create Illustrator COM application Object  in Invisible manner?

    Hi,
    I added CS6 COM reference in my VB.NET application and after that I have the following basic object creation in order to convert a eps file to svg. But for some reason when I create this COM object it is launching the Adobe Illustrator application. Why it is doing like this? It’s a simple COM object why it is interacting with Illustrator Editor?  Could you guide me how to take care this issue please?
    Thanks
    SG

    I am going to post a reply here from our other posts... http://forums.adobe.com/message/4692998#4692998
    your last post from other message:
    Let’s forget about VB part, even in Java script how do we create the Illustrator instance without bring Illustrator IDE up when you create the application object. It’s a COM component right, why would it bring up the UI? Do you have any simple example in Javascript please?
    To the best of my knowledge in order to access the Illustrator object model that the application must be running through JavaScript since scripts are run via the UI.
    I did find this in the documentation in refference to VB.
    CreateObject launches Illustrator as an invisible application if it is not already running. If Illustrator is
    launched as an invisible application you must manually activate the application to make it visible:
    Set appRef = CreateObject("Illustrator.Application")
    So instead of "As New" try "CreateObject"...
    Just a guess really

  • Access jsp's application object from an .java file?

    Hi,
    I hava a .jsp page and an import statement to a .java file. How can I access the application object in this .java file?
    I want to make an initialization function that I want to be called in every .jsp of the WEB application and to store this function in a .java file.

    The only way to get a hold of the application object would be to pass it to java code as a parameter to a method.
    ie public class Util{
    public void initialiseJSPPage(ServletContext application){
      // do stuff in ServletContext
    }and then in the JSP call it via
    <% Util.initialiseJSPPage(application); %>
    You could manually include this code on every JSP.
    A better alternative is that in web.xml you can configure an automatic include (See JSP.3.3.5)
    What is it you are trying to accomplish by doing this?
    Would a Filter be a more appropriate tool in this case? That would let you run java code before selected requests are handled.
    Cheers,
    evnafets

  • Report by Application Object Name

    have zen7sp1ir1
    i want to generate a report, by application object name, if it is
    distributed to the workstation. ( sucssess failed etc )
    is it possible to do so? how ?
    helge

    Helge,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

Maybe you are looking for

  • Html tag(such as hr ) in f:view

    Hi all: i found that html tags such as <hr> in <f:view> will get a result unexpected! <f:view> <h:panelGrid> <h:outputText value="Changing your password" /> <hr /> </h:panelGrid> </f:view> the result is the line(produced by <hr> tag) appear before th

  • FaceTime Audio lock screen bug

    I figured out that when I'm on a FaceTime Audio call on my iPad in landscape mode, every time I lock the screen the call information shifts to the right about an inch and will eventually go completely off the screen. I'm using iOS 7.1. It doesn't hap

  • Page flow . . .

    I have an extensive spreadsheet with Numbers. When printing, if the second row on a given page is too long to fit entirely on that page the entire row is forced to the next page (much like widow or orphan control in a word processor). What I would ra

  • The time on the weather widget on my home screen does not match the phone time.  Initially it did, but one day it started being 1 hour earlier than the phone time.  I went into Settings/Date

    The time on the weather widget on my home screen does not match the phone time.  Initially it did, but one day it started being 1 hour earlier than the phone time.  I went into Settings/Date & Time & now the time on the weather widget is correct, but

  • Communication Bottleneck

    At my company, there is a major communication bottleneck between our different facilities. We have warehouses located in three states with our main corporate offices located in Michigan. The largest issue we have seem to be the way for instant commun