Core checking

Hello everyone
I just purchased a S/H 2.3 G5
Model as such follows..
Model Name:          Power Mac G5
Model Identifier:          PowerMac11,2
Processor Name:          PowerPC G5 (1.1)
Processor Speed:          2.3 GHz
Number Of CPUs:          2
L2 Cache (per CPU):          1 MB
Memory:          4.5 GB
Bus Speed:          1.15 GHz
Boot ROM Version:          5.2.7f1
Question is ... Is it a Dual Core ? .. i think it is because the configeration
is the same as my other 2.0GHz G5 DC and it has a tag on the side of the
side door with DC on it
But..
The 2.3 seems slower at rendering....
I can't check the other 2.0GHz G5 DC because I have swapped parts over
to the 2.3 to get it going, to check it
So.. maybe asking.. How do I check to see if both cores are functioning properly
I think the 2.3 has a ram problem (2 bays not displaying)
But, the processing & rendering is the 1st thing I would like to check
Anyone know if this can be done & how .
Thanks

The PowerMac11,2s are Dual Core...
http://www.everymac.com/systems/apple/powermac_g5/stats/powermac_g5_dual_2.3.htm l
For the other one, If you don't know the model, find the Serial# & use it on one of these sites, but don't post the Serial# here...
http://www.chipmunk.nl/klantenservice/applemodel.html
http://www.appleserialnumberinfo.com/Desktop/index.php
How to find the serial number of your Apple hardware product...
http://support.apple.com/kb/HT1349
How do I check to see if both cores are functioning properly...
Using Console to check the system log should show a problem if not working.
Power Macintosh G5 1.8 (PCI-X)... Geekbench: 1047
Power Macintosh G5 Dual Core (2.0)... Geekbench: 1814/1882
Power Macintosh G5 2.5 DP (PCI-X)... Geekbench: 2100
Power Macintosh G5 Dual Core (2.3)... Geekbench: 2082/2163
Power Macintosh G5 "Quad Core" (2.5)... Geekbench: 3316/3594

Similar Messages

  • How can I stop a task sequence if a custom HTA preflight check fails?

    In our currently deployment method, we launch an HTA program before initiating the OSD process. This is only when run from the RAP menu, not via PXE.  When a user initiates OSD through that menu, they get a message prompting them to close Outlook, and
    a countdown of 5 mins, then OSD starts.  They also have the ability to click on an 'OK' button to proceed on their own.
    I've created a new script which checks WMI if Outlook and/or OCS are open, and if the machine is running on battery, spit out a "Failed" response and stop the HTA.  I've also added a "recheck" button to re-do the check, and an 'OK
    button if people jsut want to continue.  
    I'm curious if there is a way to prevent the task sequence from continuing if any of those conditions arent met.  Currently it just pops up and says "Failed, Cannot conitue", but if they close the window, the task sequence thinks the program
    has run, and the OSD migration starts.  I'd like to be able and get the script to cancel the OSD process if a check fails.
    Has anyone had success with this, using WINXP? I'd use the MS pre-flight check but it's only for WIN7.

    Interesting. Thanks for the response.  Is there anybody out there that can assist with VBS part of the solution?
    Here's the code I'm working with.  Currently the battery piece isnt working as it should but I can figure that our, eventually.  I'd like to get Jason's proposed solution in the code.  If this isn't the right place, I'll take this somewhere
    else.
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>OSD Preflight checks</title>
    <HTA:APPLICATION
    APPLICATIONNAME="OSD Preflight checks"
    ID="objOSDPreReqChecks"
    SCROLL="no"
    CONTEXTMENU="no"
    SINGLEINSTANCE="no"
    MAXIMIZEBUTTON="no"
    MINIMIZEBUTTON="no"
    WINDOWSTATE="normal"/>
    <!-- #region STYLEs-->
    <style type="text/css">
    H1{color:Black;text-align:center;font-family: Arial, Helvetica, sans-serif;font-size: 26px;}
    p{font-family:"Arial";font-size:10px;}
    fail{color:Red;text-align:center;}
    .Version {float:left; font-size:1.0em;font-style:italic;color:#888888;font-weight:bold;}
    .Header1 {width: 180px; text-align: right;font-weight:bold;}<!-- '1st column heading -->
    H2 {font-family: Arial, Helvetica, sans-serif; text-align: center;}
    H3 {font-style: italic;}
    .style2 {width: 180px; text-align: left;}
    .Header2 {width: 150px; text-align: right;font-weight:bold;}<!-- '2nd column heading -->
    .style4 {width: 410px; text-align: left;}
    .StatusBar
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    .hidden {display: none; visibility: hidden;}
    </style><!-- #endregion -->
    </head>
    <script language="VBScript" type="text/vbscript">
    '======================================================================================
    ' Script
    ' Version
    ' Purpose To check a machine is suitable for taking an OS deployment
    '======================================================================================
    'Features
    ' Modular design
    ' Verbose "Debug Mode"
    ' In-built data validation
    ' Custom error handling
    ' Custom error codes - 90x0
    ' Generic WMI handler
    'BUGfix: Change CLng to CDbl to avoid overflow (in GetRAM)
    'fixed - moved head section to top to become head > script > body
    'fixed - fCheckModel display with leading ,
    'fixed - fgetmodels dictionary list
    Option Explicit
    ' #region GLOBAL DECLARATIONS: Persistent fold region
    '======================================================================================
    'GLOBAL Vars
    'Things to just display (in GUI)
    Dim strRAM
    Dim strCPUInfo
    Dim strCPUName
    Dim strCPUDesc
    Dim iCPUCount
    Dim iCPUCoreCount
    Dim iRAM
    Dim strBIOSver, strBIOSDate, strBIOSInfo
    'Time related
    Dim TimerInterval 'timer to refresh HTA at start
    Dim iTimer 'abort timer
    Const iAbortTimeout=300000 'delay before window closes (in milliseconds)
    Dim pbTimerID
    Dim pbHTML
    Dim pbWaitTime
    Dim pbHeight
    Dim pbWidth
    Dim pbBorder
    Dim pbUnloadedColor
    Dim pbLoadedColor
    Dim pbStartTime
    'Dictionary
    Dim objModelsDict,colKeys,strKey 'models
    Dim objApprovedMakesDict
    'Misc GLOBAL vars
    Dim blnDebug 'set TRUE to trigger debug mode
    Dim bAbortBuild 'Boolean flag to abort or not abort
    Dim strTemp 'throwaway/scratch
    Dim strNamespace 'wmi default namespace for ANY machine
    Dim strComputer 'wmi reference to current machine, just .
    Dim strService 'WMI service
    Dim strQuery 'custom WQL
    Dim ErrMsg 'custom error messages
    Dim iErrMode 'State machine for error mode
    Dim lFlags 'WMI flag
    Dim strDisks
    'Pre-requisites - things that will cause build to abort if values do not meet spec
    Dim strHTAVendor 'Make of hardware
    Dim strHTAVendorState
    Dim strHTAModel 'Model of hardware
    Dim strHTAModelState 'Model state
    Dim strHTARAM 'RAM
    Dim strHTARAMState 'RAM state
    Dim strHTACPUSpeed 'Processor speed
    Dim strHTACPUCores 'Number of cores
    Dim strHTACPUFullInfo 'CPU + cores
    Dim strHTAHDD 'Disk info
    Dim strHTAHDDState 'Disk state
    Dim strHTACheckRAW 'NTFS check
    Dim strHTAArchitecture 'Processor support
    Dim strHTAProduct 'Product ID
    Dim strHTAOutlook 'Outlook running
    Dim strHTAOutlookState 'Outlook state
    Dim strHTABattery 'Battery check
    Dim strHTABatteryState 'Battery state
    'for WQL filters
    Dim strWQLPCInfo 'Pre-req - (1) for various inc. domain role (servers)
    Dim strWQLRAM 'Pre-req - (2) RAM
    Dim strWQLCPU 'Pre-req - CPU speed string (not int)
    Dim strWQLBootOrder 'Pre-req - Boot order string
    Dim strWQLSATAMode 'Pre-req - HDD mode
    Dim strWQLGenericBIOS
    Dim strWQLCPUCount 'Pre-req - how many CPUs
    Dim strWQLCPUInfo
    Dim strWQLFSType 'Pre-req - Check HDD not RAW (i.e. is NTFS)
    Dim strWQLDisks 'Disks
    Dim strWQLChassis 'Machine type
    Dim strWQLID 'Unique code from OEM
    Dim strWQLProc 'is Outlook running = False
    Dim strWQLBattery 'is on Battery = False
    'State
    Const cProblem = " Problem!"
    Const cRunAgain =" RunCheck: Run System Check Again"
    Const cSuccess = " Success!"
    Const cPassed=" Pass"
    Const cFail=" Fail"
    'Pre-requisite to check: SET VALUES HERE vvvvvvvvvvvvvvvv
    Const cApprovedOEM="Hewlett-Packard"
    Const LegacyOEM1="Dell Inc."
    Const LegacyOEM2="IBM"
    Const cMinimumMemoryMB = 1000 'RAM in MB
    'Const cMinimumMemoryMB = 1000000 'force fail test data RAM in MB
    Const cMinFS="NTFS"
    ' Const cMinFS="HPFS" 'force fail test data
    Const iMinCores=1
    'Const iMinCores=10099 'force fail cores test data
    Const iMinCPUSpeed=2 '20 'in GHz
    'Const iMinCPUSpeed=90000 'in GHz
    Const iMinCPUArch=32
    'Const iMinCPUArch=64
    ' #endregion
    ' To hide anything use ID.className = "hidden", to show set to "", e.g. NotFoundArea.className = "hidden"
    Sub Window_Onload
    Err.Clear
    VersionSpan.InnerText = objOSDPreReqChecks.Version 'Get version
    self.focus
    self.moveTo 100,100 'Move window top left
    StatusBar.InnerText="Validating machine..."
    document.body.style.cursor = "wait" 'hourglass cursor
    'Call PreflightChecks 'use for testing as a VBS only, otherwise HTA timer will call below
    TimerInterval = window.setInterval("PreflightChecks",10)
    End Sub
    Function PreflightChecks
    ' #region HEADER NOTES: Persistent fold region
    'Version history
    'ver 5 OCTOBER 2011 - added error handler
    'ver 3rd Nov - removed HPonly queries
    '// Solution: Custom Script for use with MDT - Adapted from hardwareinfo.vbs Mikael Nystrom – http://deploymentbunny.com
    'Typical BIOS content
    'Processor Speed = 2133/1066 MHz
    'Boot Order = Network Controller,ATAPI CD-ROM Drive,USB device,Hard Drive,Diskette Drive,PnP Device #2,PnP Device #3,PnP Device #4,PnP Device #5,PnP Device #6,PnP Device #7,PnPe #8,PnP Device #9,PnP Device #10,PnP Device #11
    'SATA (disk) mode: *IDE,--,RAID,-- or IDE,*AHCI,RAID
    'On Error Resume Next
    ' #endregion
    ' #region CONSTANTS: Persistent fold region
    '======================================================================================
    'Fields available in HP BIOS
    Const sAsset = "Notebook Asset Tag"
    Const sOwner = "Notebook Ownership Tag"
    Const sMan = "Manufacturer"
    Const sNoteModel = "Notebook Model"
    Const sCPU = "Processor Type"
    Const sCPUSpeed = "Processor Speed"
    Const sRAM = "Memory Size"
    Const sModel = "Product Name"
    Const sBIOSName ="System BIOS"
    Const sBIOSVer = "BIOS Version"
    Const sBIOSDate = "BIOS Date"
    'Other BIOS stuff you could use too
    'Const sOwnerTag = "Enter Ownership Tag"
    'Const sBIOS = "PCID"
    'Const sBIOS = "Define Custom URL"
    'Const sBIOS = "Set Alarm Time"
    'Const sBIOS = "PCID Version"
    Const TextMode="1" 'text case sensitive for dict obj
    'WMI core constants
    Const wbemFlagReturnImmediately = 16 'wmi - Causes the call to return immediately.
    Const wbemFlagForwardOnly = 32 'wmi - Causes a forward-only enumerator to be returned.
    'Forward-only enumerators are generally much faster and
    'use less memory than conventional enumerators, but don't allow calls to SWbemObject.Clone_
    'Advisory config values - as in "you want to the change these"
    Dim strHTABootOrder
    Dim strHTASATAMode
    'Dim strHTACPU
    ' #endregion
    '======================================================================================
    ' #region WQL: Persistent fold region
    lFlags = wbemFlagReturnImmediately + wbemFlagForwardOnly
    'Queries of things to check (HP)
    strWQLBootOrder = "select Name, value from HP_BIOSSetting where Name='Boot order'"
    strWQLSATAMode = "select Name, value from HP_BIOSSetting where (Name='SATA emulation' or name='SATA device mode')"
    strWQLDisks ="SELECT * FROM Win32_DiskDrive where mediatype like 'Fixed%hard disk%'" 'win32_disk only avail after W7
    strWQLFSType ="SELECT * from Win32_LogicalDisk where DriveType='3'" 'only bother with HDDs
    'Generic WMI query strings
    strWQLGenericBIOS="SELECT Manufacturer,SMBIOSBIOSVersion,ReleaseDate FROM Win32_BIOS WHERE PrimaryBIOS = True"
    strWQLCPUCount= "SELECT NumberOfProcessors,NumberOfLogicalProcessors from Win32_ComputerSystem"
    strWQLCPUInfo="SELECT Name,DataWidth,description,MaxClockSpeed,NumberofCores,NumberOfLogicalProcessors from Win32_Processor"
    strWQLPCInfo="SELECT Domain,DomainRole,SystemType,Manufacturer,Model,TotalPhysicalMemory FROM Win32_ComputerSystem"
    ' strWQLPCInfo="SELECT Domain,DomainRole,SystemType,Manufacturer FROM Win32_ComputerSystem"
    strWQLChassis="SELECT ChassisTypes from Win32_SystemEnclosure"
    strWQLID="SELECT IdentifyingNumber,UUID from Win32_ComputerSystemProduct"
    strWQLRAM="SELECT * FROM Win32_PhysicalMemory"
    strWQLProc="SELECT * FROM Win32_Process"
    strWQLBattery="SELECT * FROM BatteryStatus Where Voltage > 0"
    ' #endregion
    ' #region MAIN algorithm
    '=====================================================================================================
    ' MAIN
    'Algorithm
    '1) Check make (vendor)
    '2) Check model (in list)
    '3) Check RAM >x
    '4) Check HDD TYPE (HDD is not RAW)
    '5) Check CPU architecture
    '6) Check outlook
    '7) Check battery
    '=====================================================================================================
    'Initialise
    window.clearInterval(TimerInterval) 'Reset timer to 0
    ' blnDebug=True
    blnDebug=False
    bAbortBuild=False 'default to DON'T abort
    ' bAbortBuild=True
    'Build list of approved vendors
    Set objApprovedMakesDict = CreateObject("Scripting.Dictionary")
    objApprovedMakesDict.comparemode=VBTextCompare
    objApprovedMakesDict.add cApprovedOEM,"OK"
    objApprovedMakesDict.add LegacyOEM1,"OK"
    objApprovedMakesDict.add LegacyOEM2,"OK"
    objApprovedMakesDict.add "Lenovo","Testdata"
    If blnDebug Then Stop
    '1) all machines check make
    strHTAVendor=fCheckVendor(strWQLGenericBIOS) 'check vendor in BIOS - if vendor not approved ABORT without proceeding
    If bAbortBuild=True Then
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "FATAL ERROR - goodbye cruel world"
    iTimer = window.setTimeout("Abort", iAbortTimeout, "VBScript")
    Else
    StatusBar.InnerText="Vendor: " & strHTAVendor & vbTab & " " & strHTAVendorState
    '2) Discover current Model
    strHTAModel=fGetModelName(strWQLPCInfo) 'get model name from WMI
    strHTAModel=fUniversalCheckData(strHTAModel,"'Discover Model - fGetModelName'") 'validate
    Call fGetModels 'get list of all valid models (from text file)
    strHTAModel=fCheckModel(strHTAModel)
    '2a) Model number (optional)
    strHTAProduct=fGetComputerSystemProdIDNumber(strWQLID) 'manufacturer's product ID
    strHTAProduct=fUniversalCheckData(strHTAProduct,"'Discover ID - fGetComputerSystemProdIDNumber'")
    ' StatusBar.InnerText=StatusBar.InnerText & VbCrLf & vbTab & "Product Code: " & vbTab & strHTAProduct
    '3) Check installed Memory
    strHTARAM=fGetRAM(strWQLRAM) 'find RAM size
    strHTARAM=fUniversalCheckData(strHTARAM,"'Detect RAM - fCheckRAM'")
    strHTARAM=fCheckRAM(strHTARAM) 'check RAM meets req
    If strHTARAMState=cFail Then Exit Function
    '4) Disk format IS NTFS
    strDisks=fGetDrives(strWQLFSType) 'Get formatting info for all drives
    strHTACheckRAW=fUniversalCheckData(strDisks,"'Detect filesystem - fCheckNTFS'") 'Validate data
    strHTACheckRAW=fCheckNTFS(strDisks) 'Check FS format is acceptable (not RAW)
    If strHTACheckRAW=cFail Then Exit Function
    'Generic CPU calls
    strHTACPUFullInfo="CPUs:" & fGetCPUInfo(strWQLCPUInfo) & " with CPU cores:" & iCPUCoreCount
    strBIOSInfo="BIOS version: " & strBIOSver & ", dated " & strBIOSDate
    '5a) CPU Speed check (info from http://www.robvanderwoude.com/wmiexamples.php)
    strCPUInfo=WMI(strWQLCPUInfo,strNamespace) 'Get CPU details
    strTemp=split(strCPUInfo,"@"): strHTACPUSpeed=strTemp(1)
    strHTACPUSpeed=fUniversalCheckData(strHTACPUSpeed,"'Check processor - fCheckCPUSpeed'") 'Validate data
    strHTACPUSpeed=fCheckCPUSpeed(strHTACPUSpeed) 'Check CPU clock speed
    '5b) cores check
    strHTACPUCores=fUniversalCheckData(iCPUCoreCount,"Check core count - fCheckCores") 'Validate data
    iCPUCoreCount=fCheckCores(iCPUCoreCount) 'pass or fail?
    '5c) CPU address width
    strHTAArchitecture=fUniversalCheckData(strHTAArchitecture,"Check core count - fCheckCores") 'Validate data
    strHTAArchitecture=fCheckCPUArch(strHTAArchitecture)
    '6) Check outlook
    strHTAOutlook=fCheckProcess(strWQLProc)
    '7) Check Battery
    strHTABattery=fCheckBattery(strWQLBattery)
    'end checkss
    document.body.style.cursor = "default"
    'Display hardware values in GUI (in table)
    Vendor.innerhtml = strHTAVendor 'Use str...var..STATE if you want Pass/fail text instead
    Model.innerhtml = strHTAModel
    Product.innerhtml = strHTAProduct
    RAM.innerhtml = strHTARAM
    CPUspeed.innerhtml = strHTACPUSpeed
    CPUInfo.innerhtml = strHTACPUFullInfo
    HDDFS.innerhtml = strHTACheckRAW
    CapableArchitecture.innerhtml=strHTAArchitecture
    BIOSversion.innerhtml = strBIOSver
    BIOSDate.innerhtml = strBIOSDate' CPUName.innerhtml = strCPUDesc 'GetCPUName
    End If
    '======================================================================================
    ' #endregion
    End Function
    'generic WMI queries, by field and namespace
    Function WMI(strQuery,strNameSpace)
    'Aim: generic WMI calls
    'return value of BIOS
    On Error Resume Next
    Dim colItems,objItem
    Dim objWMI
    Const strService = "winmgmts:{impersonationlevel=impersonate}//" 'binding to WMI
    Const strComputer = "." 'this machine
    Set objWMI = GetObject(strService & strComputer & strNamespace) 'GLOBAL wmi
    Set colItems = objWMI.ExecQuery(strQuery,,lFlags)
    For Each objItem In colItems
    If Err Then
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "WMI query: " & strQuery & " in " & strNamespace & objItem.Name
    Call ErrHandler("WMI error " & strQuery,1)
    Else
    WMI=objItem.Name 'Return value
    End If
    Next
    End Function
    Function fGetModelName(strWQLPCInfo)
    'Aim: Get model name from BIOS - WMI field sometimes varies if laptop, so try two
    'Return STRING: Model string from BIOS or "UNKNOWN" if null
    On Error Resume Next
    Dim colPCInfo,objPCItem
    Dim strModel
    Set colPCInfo = GetObject("winmgmts:").ExecQuery(strWQLPCInfo,"WQL",lFlags)
    If Err Then
    Call ErrHandler("fGetModelName: Error querying WMI " & strWQLPCInfo,2)
    Else
    For Each objPCItem In colPCInfo
    If Not IsNull(objPCItem.Model) Then
    strModel=objPCItem.Model
    ' iRAM=objPCItem.TotalPhysicalMemory
    Else
    If (strHTAVendor=cApprovedOEM And IsLaptop = True) Then ' resort to HP specific query for older laptops
    'Notebook
    strModel=QueryHPBIOS(sNoteModel)
    if strModel="" then strModel=QueryHPBIOS(sModel) 'try alt value
    Else
    strModel=QueryHPBIOS(sModel)
    End If
    End If
    Next
    End If
    If strModel = "" Then
    fGetModelName = "UNKNOWN"
    Model.style.visibility="hidden"
    Else
    fGetModelName=strModel
    End If
    End Function
    '====================================================
    '====================================================
    Function fGetRAM(strQuery)
    'Aim: get RAM installed. NB Win32_ComputerSystem::TotalPhysicalMemory may not be accurate
    'Return integer
    On Error Resume Next 'equiv to Err.Clear
    Dim colItems, item
    Dim iTotalMemory
    Set colItems = GetObject("winmgmts:").ExecQuery(strQuery,"WQL",lFlags)
    If Err Then
    Call ErrHandler("fGetRAM: Error querying " & strQuery,2)
    Else
    iTotalMemory = 0
    For Each item In colItems
    iTotalMemory = iTotalMemory + CDBL(item.Capacity)/(1024^2)
    Next
    End If
    If iTotalMemory = "" Then
    fGetRAM = "RAM UNKNOWN"
    RAM.style.visibility="hidden"
    Else
    fGetRAM=iTotalMemory
    End If
    End Function
    '====================================================
    '====================================================
    Function fGetCPUInfo(strQuery)
    'Aim: query WMI for CPU info - number and number of cores
    'Return: function=CPU count, var for the cores: iCPUCoreCount, strHTAArchitecture, strCPUDesc
    On Error Resume Next
    Dim colItems, objItem
    Dim NumberOfProcessors
    Set colItems = GetObject("winmgmts:").ExecQuery(strQuery,"WQL",lFlags)
    If Err Then
    Call ErrHandler("GetCPUInfo: Error querying " & strQuery,2)
    Else
    For Each objItem In colItems
    If Err Then
    Else
    If Not IsNull(objItem.NumberOfCores) Then
    NumberOfProcessors = Trim(objItem.NumberOfCores) 'NumberOfProcessors
    End If
    If Not IsNull(objItem.NumberOfLogicalProcessors) Then
    iCPUCoreCount = Int(Trim(objItem.NumberOfLogicalProcessors))
    End If
    If Not IsNull(objItem.DataWidth) Then
    strHTAArchitecture=Trim(objItem.DataWidth) & "-bit"
    End If
    If Not IsNull(objItem.description) Then
    strCPUDesc = Trim(objItem.description) 'cpu name
    End If
    End If
    Next
    If NumberOfProcessors = "" Then
    NumberOfProcessors = "UNKNOWN"
    End If
    fGetCPUInfo = Int(NumberOfProcessors)
    ' iCPUCoreCount = Int(NumberOfLogicalProcessors)
    End If
    End Function
    '====================================================
    '====================================================
    Function fGetComputerSystemProdIDNumber(strWQLID)
    'Aim: Get UUID from Win32_ComputerSystemProduct
    'Return: great big integer
    Dim colSys,objSys
    Dim strUUID
    On Error resume next
    Set colSys = GetObject("winmgmts:").ExecQuery(strWQLID,"WQL",lFlags)
    If Err then
    Call ErrHandler("fGetComputerSystemProdIDNumber: Error querying " & strWQLID,2)
    Else
    For Each objSys In colSys
    If Not IsNull(objSys.IdentifyingNumber) Then
    strUUID = Trim(objSys.IdentifyingNumber)
    End If
    Next
    If strUUID = "" Then
    fGetComputerSystemProdIDNumber = "UNKNOWN"
    Else
    fGetComputerSystemProdIDNumber = strUUID
    End If
    End If
    End Function
    '=================================================================================
    '=================================================================================
    Function fGetDrives(strQuery)
    Dim colDisks,objHDD
    Dim strDriveType, strDiskSize, strDisk
    Dim strDiskFSType
    Dim iGBUnits
    On Error Resume Next
    iGBUnits=1073741824
    Dim iRAW
    iRAW=0
    Set colDisks = GetObject("winmgmts:").ExecQuery(strQuery)
    For Each objHDD In colDisks
    Select Case objHDD.DriveType
    Case 1 strDriveType = "Drive could not be determined."
    Case 2 strDriveType = "Removable Drive"
    Case 3 strDriveType = "Local hard disk."
    Case 4 strDriveType = "Network disk."
    Case 5 strDriveType = "Compact disk (CD)"
    Case 6 strDriveType = "RAM disk."
    Case Else strDriveType = "Drive type Problem."
    End Select
    strDiskFSType = objHDD.FileSystem
    'Find C
    If objHDD.Name="C:" Then
    If isNull(objHDD.FreeSpace) Then
    If blnDebug=True then Call ErrHandler("ALERT!! Volume " & objHDD.Name & "is RAW",1) 'Abort/clean
    fCheckDrives="ALERT!! Volume " & objHDD.Name & "is RAW"
    End If
    End If
    strDiskSize = Int(objHDD.Size /iGBUnits) & "GB" 'calc size of disk
    strDisk = strDisk & VbCrLf & "Vol " & objHDD.Name & " (" & strDriveType & ") size: " & strDiskSize & " (free: " & Int(objHDD.FreeSpace /iGBUnits) & "GB), " & strDiskFSType
    fGetDrives=strDisk
    Next
    If (Err.Number <>0) Then
    Call ErrHandler("WMI Property Query Error: [" & Err.Number & "]",2)
    fGetDrives = -1
    Exit Function
    End If
    End Function
    '=================================================================================
    '=================================================================================
    Function fUniversalCheckData(varData,strStage) 'template
    'Aim: Check value passed...
    'is not blank
    'is in range x..y
    'spelt OK
    'is in a list
    'format is text, numeric
    'return: string: the original value
    On Error Resume Next
    Dim Err
    if blnDebug Then StatusBar.InnerText = StatusBar.InnerText & VbCrLf & "Validating " & strStage & " data..."
    If Err Then
    Call ErrHandler("WARNING: Error discovering value in " & strStage,2) '1=Quit,2=Warn
    strHTAModel="Unknown"
    Else
    Select Case varData
    Case IsEmpty(varData) Or IsNull(varData)
    Call ErrHandler("WARNING: Error in "& strStage,2) '1=Quit,2=Warn
    fUniversalCheckData="Unknown"
    Case IsNumeric(varData)
    If varData<0 Then
    Call ErrHandler("WARNING: Value negative"& strStage,2) '1=Quit,2=Warn
    fUniversalCheckData="Unknown"
    End if
    ' & varData &
    Case IsDate(varData)
    Case Else
    fUniversalCheckData=varData 'Data OK - return value unchanged
    End Select
    End If
    End Function
    '=================================================================================
    'Checks - follow if true DO, if false warn/abort
    '=================================================================================
    Function fCheckBattery(strQuery)
    'Aim: Find if battery is running
    'Return pass/fail
    On Error Resume Next 'equiv to Err.Clear
    Const wbemFlagReturnImmediately = &h10
    Const wbemFlagForwardOnly = &h20
    Dim colItems, item
    Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\WMI")
    Set colItems = objWMIService.ExecQuery("SELECT * FROM BatteryStatus Where Voltage > 0", "WQL", _
    wbemFlagReturnImmediately + wbemFlagForwardOnly)
    For Each item In colItems
    if objItem.PowerOnline = True Then
    strHTABattery=objItem.PowerOnline
    strHTABatteryState = cFail
    Err.Raise 9010,"fCheckBattery",strHTABattery & " Laptop running on battery. OSD Cannot continue."
    Call ErrHandler(ucase(strHTABatteryState) & ": " & Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",1)
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "FATAL ERROR - Laptop on Battery. Please plug into an outlet before proceeding."
    iTimer = window.setTimeout("Abort", iAbortTimeout, "VBScript")
    Else
    strHTABatteryState = cPassed
    End if
    Next
    fCheckBattery=strHTABattery
    End Function
    '====================================================
    Function fCheckProcess(strQuery)
    'Aim: Find if outlook is running
    'Return pass/fail
    On Error Resume Next 'equiv to Err.Clear
    Dim colItems, item
    Set colItems = GetObject("winmgmts:").ExecQuery(strQuery,"WQL",lFlags)
    For Each item In colItems
    if item.Name = "OUTLOOK.EXE" Then
    strHTAOutlook=item.Name
    strHTAOutlookState = cFail
    Err.Raise 9010,"fCheckOutlook",strHTAOutlook & " running. OSD Cannot continue."
    Call ErrHandler(ucase(strHTAOutlookState) & ": " & Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",1)
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "FATAL ERROR - Outlook Running, please close outlook before proceeding."
    iTimer = window.setTimeout("Abort", iAbortTimeout, "VBScript")
    Elseif item.Name = "communicator.exe" Then
    strHTAOutlook=item.Name
    strHTAOutlookState = cFail
    Err.Raise 9010,"fCheckOutlook",strHTAOutlook & " running. OSD Cannot continue."
    Call ErrHandler(ucase(strHTAOutlookState) & ": " & Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",1)
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "FATAL ERROR - Communicator Running, please close OCS before proceeding."
    iTimer = window.setTimeout("Abort", iAbortTimeout, "VBScript")
    Else
    strHTAOutlookState = cPassed
    End if
    Next
    fCheckProcess=strHTAOutlook
    End Function
    '====================================================
    '1 - Make
    Function fCheckVendor(strVendor)
    'Aim: Check make is one the OS/build is designed For
    'Return: STRINGS for "Make", BIOS version and BIOS date (generic): strHTAVendorState pass or fail
    On Error Resume Next
    Dim colItems,objItem
    Set colItems = GetObject("winmgmts:").ExecQuery(strVendor, "WQL", lFlags)
    For Each objItem In colItems
    strHTAVendor=objItem.Manufacturer
    if objApprovedMakesDict.exists(strHTAVendor) then
    strBIOSver=objItem.SMBIOSBIOSVersion
    strBIOSDate=Mid( objItem.ReleaseDate, 5, 2 ) & "/" & Mid( objItem.ReleaseDate, 7, 2 ) & "/" & Left( objItem.ReleaseDate, 4 )
    strHTAVendorState=cPassed
    Else
    strHTAVendorState=cFail
    Err.Raise 9010,"fCheckVendor",strHTAVendor & " found. The build will not work on this make of hardware"
    Call ErrHandler(ucase(strHTAVendorState) & ": " & Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",1)
    bAbortBuild=True
    end if
    Next
    fCheckVendor=strHTAVendor
    End Function
    '=================================================================================
    '=================================================================================
    '2 - Models check
    Function fCheckModel(strThisModel)
    'Aim Check target machine is in list of models
    'Return string
    On Error Resume Next
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "Checking model..." & VbCrLf
    If objModelsDict.exists(trim(strThisModel)) then ' if current model in objDict then huzzah
    strHTAModelState=cPassed
    StatusBar.InnerText=StatusBar.InnerText & vbTab & "Model detected: " & vbTab & strHTAModelState
    Else
    strHTAModelState=cFail
    Err.Raise 9010,"fCheckModel",strThisModel & " found. The build will not work on this model of hardware"
    Call ErrHandler(ucase(strHTAModelState) & ": " & Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",1)
    end if
    fCheckModel=strHTAModel
    End Function
    '=================================================================================
    '=================================================================================
    '3 - RAM
    Function fCheckRAM(strRAM)
    'Aim: Check installed RAM > x
    'Return string digits with units, e.g. 4GB
    'use strHTARAM for value
    '==================================================================
    ' Memory Preflight Check (from MDT2012)
    '==================================================================
    On Error Resume Next
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "Checking RAM..."
    If Err.Number <> 0 Then
    Call ErrHandler("Error occurred while calculating computer's memory.",2)
    End If
    fCheckRAM = Int(strRAM/1024) & "GB" 'format in GB
    If Int(strRAM) > cMinimumMemoryMB Then
    strHTARAMState=cPassed 'Sufficient memory - show whole number in GB"
    StatusBar.InnerText=StatusBar.InnerText & vbTab & "RAM installed: " & vbTab & strHTARAMState
    Else
    strHTARAMState=cFail
    Err.Raise 9030 ,"fCheckRAM","Not enough memory in this machine!" & " Required physical memory is: " & cMinimumMemoryMB & " MB."
    Call ErrHandler(ucase(strHTARAMState) & ": " & Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",1) 'abort build
    End If
    End Function
    '=================================================================================
    '=================================================================================
    '4 - NTFS disk
    Function fCheckNTFS(strDiskFS)
    'Aim: Check HDD is NTFS
    'Return string
    On Error Resume Next
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "Checking file system is not RAW..."
    If Instr(1,strDiskFS,cMinFS,VBTextCompare)<>0 Then
    fCheckNTFS=cMinFS 'disk format is OK (NTFS)
    StatusBar.InnerText=StatusBar.InnerText & vbTab & " File system: " & cPassed
    Else
    fCheckNTFS=cFail
    Err.Raise 9040 ,"fCheckNTFS","WARNING: Disk not correct file-system. Type required is: " & cMinFS & "." & VbCrLf & _
    "The deployment will fail unless you reformat the target disk immediately."
    Call ErrHandler(Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",2) 'halt build
    End If
    End Function
    '====================================================
    '=================================================================================
    '5 - CPU checks
    '=================================================================================
    Function fCheckCPUSpeed(strCPU) 'any HW
    'Aim: Check CPU speed
    'Return string = number + appropriate units, e.g. 5HGz (strCPU)
    On Error Resume Next
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "Checking CPU spec..."
    Select Case Right(strCPU,3) 'check units
    Case "MHz"
    strCPU=Left(strCPU,4)/1000 'reformat to GHz
    Case "GHz"
    strCPU=strCPU 'unit already OK
    Case Else
    Call ErrHandler("CPU units are unknown",2)
    End Select
    'Check clock speed
    If Int(Left(trim(strCPU),1))>=iMinCPUSpeed Then
    fCheckCPUSpeed=strHTACPUSpeed 'CPU is fine i.e don't change value
    StatusBar.InnerText=StatusBar.InnerText & vbTab & "CPU Speed: " & cPassed
    Else
    fCheckCPUSpeed=cFail 'already in GHz
    Err.Raise 9050,"fCheckCPUSpeed","CPU speed pre-requisite failed. Minimum processor clock speed is: " & iMinCPUSpeed
    Call ErrHandler(Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",1) 'halt build
    End If
    End Function
    '=================================================================================
    '=================================================================================
    Function fCheckCPUArch(strCPUArch) 'any HW
    'Aim: Check CPU width
    'Return string
    On Error Resume Next
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "Checking CPU bus width..."
    'Check clock speed
    If Int(Left(trim(strCPUArch),2))>=iMinCPUArch Then
    fCheckCPUArch=strHTAArchitecture 'CPU is fine i.e don't change value
    StatusBar.InnerText=StatusBar.InnerText & vbTab & "CPU width: " & cPassed
    Else
    fCheckCPUArch=cFail 'already in GHz
    Err.Raise 9052,"fCheckCPUArch","CPU width pre-requisite failed. Minimum processor width required is: " & iMinCPUArch
    Call ErrHandler(Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",1) 'abort build
    End If
    End Function
    '=================================================================================
    Function fCheckCores(iCores)
    'Aim: Check hardware (CPU) has a minimum number of cores
    'Return Integer
    On Error Resume Next
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & "Checking CPU cores..."
    If iCores>=iMinCores Then
    fCheckCores=iCores
    StatusBar.InnerText=StatusBar.InnerText & vbTab & "Core count: " & vbTab & cPassed
    'StatusBar.InnerText=StatusBar.InnerText & vbTab & "CPU cores: " & cPassed
    Else
    fCheckCores=cFail
    Err.Raise 9051,"fCheckCores","WARNING: Not enough cores on the CPU to support the build. Minimum CPU cores is: " & iMinCores
    Call ErrHandler(Err.Description & " (Code: " & Err.Number & " - " & Err.Source & ")",2) 'halt build
    End If
    End Function
    '=================================================================================
    '=================================================================================
    Function fCheckHPCPUSpeed 'HP ONLY
    'Aim: Check CPU speed
    'return: string
    'Check CPU speed
    On Error Resume Next
    strWQLCPU = "processor speed"
    strTemp=QueryHPBIOS(strWQLCPU,"")
    Select Case Right(strTemp,3)
    Case "MHz"
    strTemp=Left(strTemp,4)/1000 'reformat to GHz
    Case "GHz"
    strTemp 'is OK
    Case Else
    Call ErrHandler("CPU is unknown",2)
    End Select
    'Check clock speed
    If strTemp>=iMinCPUSpeed Then
    fCheckCPUSpeed= strTemp & "GHz"
    Else
    Err.Raise 9050,,"CPU speed pre-requisite failed"
    Call ErrHandler("CPU is too slow",1)
    fCheckCPUSpeed=cFail 'already in GHz
    End If
    End Function
    '=================================================================================
    '=================================================================================
    Function fGetModels
    'Aim: Read external text file
    'return: dictionary object - models as key, integer as value e.g. Dell Optiplex,12
    'On Error Resume Next
    Dim objFSO
    Dim objFile
    Dim strFile
    Dim strEntry
    Dim n
    Dim strfilepath
    Dim iLineCount 'count lines to avoid listing first item with ,.
    Set objModelsDict = CreateObject("Scripting.Dictionary")
    set objFSO=CreateObject("Scripting.FileSystemObject")
    Const ForReading=1
    strfilepath = Left(window.location.pathname,InStrRev(window.location.pathname,"\"))
    strFile=strfilepath & "Models.txt"
    set objFile=objFSO.OpenTextFile(strFile,ForReading)
    iLineCount=0
    'read in each line of data until you reach the end of the file
    do While objFile.AtEndOfStream<>True
    strEntry=objFile.ReadLine
    'you can now do what ever you want with the line as referenced with the strEntry variable such as
    'echoing it back (e.g. wscript.Echo strEntry) or passing it as a variable to a function of subroutine (e.g. MyFunction strEntry)
    objModelsDict.comparemode=VBTextCompare
    objModelsDict.Add strEntry,iLineCount
    iLineCount=iLineCount+1
    If blnDebug then
    If iLineCount=1 Then
    StatusBar.InnerText=trim(strEntry)
    Else
    StatusBar.InnerText=StatusBar.InnerText & ", " & trim(strEntry) 'list models
    End If
    End If
    Loop
    objFile.Close
    End Function
    '=================================================================================
    '=================================================================================
    '====================================================
    Function ErrHandler(strErrorMsg,iErrMode)
    'Aim: to handle error states
    ' 1 = Abort
    ' 2 = Warn
    'Return 'Appropriate text message explaining the error
    '====================================================
    Const msgTitle="SCCM Deployment Preflight Checklist"
    'On Error Resume Next '< don't use that as we want to KEEP the error properties
    'Abort=1
    If iErrMode=1 Then
    StatusBar.InnerText=strErrorMsg 'overwrite status with Error message
    ' StatusBar.InnerText=StatusBar.InnerText & VbCrLf & " " & strHTAOutlook & " " & strHTAVendor & " " & strHTAVendorState & _
    ' VbCrLf & " " & strHTAModel & strHTAModelState & _
    ' VbCrLf & " " & strHTARAM & strHTARAMState & _
    ' VbCrLf & " " & strHTAHDD & strHTAHDDState
    iTimer = window.setTimeout("Abort", iAbortTimeout, "VBScript") 'Abort (close) after n seconds
    'MsgBox strErrorMsg,vbExclamation,msgTitle
    'ErrBar.class=""
    ElseIf iErrMode=2 Then
    'Warning
    StatusBar.InnerText=StatusBar.InnerText & VbCrLf & strErrorMsg & " " '& "(" & Err.Description & " :" & Err.Number & ")"',vbExclamation,msgTitle
    Err.Clear
    End If
    End Function
    '====================================================
    Sub Abort
    'Aim: Quit gracefully
    window.close()
    End Sub
    </script>
    <!-- #region BODY -->
    <body>
    <br />
    <div>
    <span style="version"> <span id="VersionSpan"></span></div>
    <div style="text-align: center;">
    <H1 style="font-family: Arial, Helvetica, sans-serif; font-size: large; text-align: center; color: #000000; text-transform: capitalize">System information</H1>
    <span>
    <table border="1" cellspacing="0" cellpadding="0" style="width: 912px"
    id="SysInfoTable">
    <tr class="h1">
    <td align="right" class="Header1" style="width: 76px; height: 18px">
    </td>
    <td align="right" class="Header1" style="height: 18px"><em id="VendorCaption">Vendor</em></td>
    <td align="left" class="style2" style="height: 18px"><span id="Vendor"></span></td>
    <td align="right" class="Header2" style="height: 18px"><em id="ModelCaption">Model</em></td>
    <td align="center" class="style4" style="width: 400px; height: 18px"><span id="Model"></span></td>
    </tr>
    <tr>
    <td align="right" class="Header1" style="width: 76px">
    </td>
    <td align="right" class="Header1"><em id="ProductCaption">Product ID</em></td>
    <td align="left" class="style2"><span id="Product"></span></td>
    <td align="right" class="Header2"><em id="RAMCaption">Memory(in MB)</em></td>
    <td align="left" class="style4" style="width: 400px"><span id="RAM"></span></td>
    </tr>`
    <tr>
    <td align="right" class="Header1" style="width: 76px">
    </td>
    <td align="right" class="Header1"><em id="CPUCaption">CPU speed (in GHz)</em></td>
    <td align="left" class="style2"><span id="CPUspeed"></span></td>
    <td align="right" class="Header2"><em id="CPUInfoCaption">No: CPU\Cores</em></td>
    <td align="left" class="style4" style="width: 400px"><span id="CPUInfo"></span></td>
    </tr>
    <tr>
    <td align="right" class="Header1" style="width: 76px">
    </td>
    <td align="right" class="Header1"><em id="DiskFSCaption">Filesystem info</em></td>
    <td align="left" class="style2"><span id="HDDFS"></span></td>
    <td align="right" class="Header2"><em id="CapableArchCaption">Architecture</em></td>
    <td align="left" class="style4" style="width: 400px"><span id="CapableArchitecture"></span></td>
    </tr>
    <tr>
    <td align="right" class="Header1" style="width: 76px">
    </td>
    <td align="right" class="Header1"><em id="BIOSVerCaption">BIOS version</em></td>
    <td align="left" class="style2" ><span id="BIOSVERSION"></span></td>
    <td align="right" class="Header2"><em id="BIOSDateCaption">BIOS Date</em></td>
    <td align="left" class="style4" style="width: 400px"><span id="BIOSDate"></span></td>
    </tr>
    </table>
    </span>
    </div>
    <div class="StatusBar">
    <br />
    <Span id="StatusBar">Loading...please wait.</Span>
    </div> <br><br>
    <div align="center">
    <input type="button" name="btnStop" id="btnStop" value="Continue" onclick="Abort">
    <input type="Button" value="Re-Scan Machine" name="button1" onClick="Window_Onload" class="button">
    </div>
    </body><!-- #endregion -->
    </html>

  • Internal error while checking object Message Mapping...

    Error details:
    ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException
    <b>com.sap.aii.ib.core.mapping.exec.ExecuteException: Compilation process error : Not enough space</b>
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:207)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.engine.compilation.CompilerProcessFailureException (serialized)
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : Not enough space
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #18 16:20:35 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException
    com.sap.aii.ib.core.mapping.exec.ExecuteException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:207)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.engine.compilation.CompilerProcessFailureException (serialized)
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : Not enough space
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #17 16:20:24 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException
    com.sap.aii.ib.core.mapping.exec.ExecuteException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:207)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.engine.compilation.CompilerProcessFailureException (serialized)
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : Not enough space
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #16 16:19:26 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException
    com.sap.aii.ib.core.mapping.exec.ExecuteException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:207)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.engine.compilation.CompilerProcessFailureException (serialized)
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : Not enough space
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:301)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #15 16:06:09 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.oa.rb_all.CHECK_EXCEPTION
    com.sap.aii.ib.core.clmgmt.ChangeListMgmtException: Internal error while checking object Message Mapping RFCMsgMAP | http://p4.org/xi/RAMSITE/TEST (PRZYKLAD1_TEST , 3.0.1 of p4.org); see details
         at com.sap.aii.ib.core.clmgmt.ChangeListMgmtException.createFromException(ChangeListMgmtException.java:35)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:227)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.oa.rb_all.CHECK_EXCEPTION (serialized)
    com.sap.aii.ib.core.oa.ObjectAccessException: Internal error while checking object Message Mapping RFCMsgMAP | http://p4.org/xi/RAMSITE/TEST (PRZYKLAD1_TEST , 3.0.1 of p4.org); see details
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2212)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.utilxi.misc.api.ResourceException: Compilation process error : Not enough space
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:132)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.utilxi.misc.api.ResourceException: Compilation process error : Not enough space
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:132)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.core.mapping.exec.ExecuteException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:207)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : Not enough space
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.engine.compilation.CompilerProcessFailureException (serialized)
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : Not enough space
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #14 16:03:35 [AWT-EventQueue-0] ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.oa.rb_all.CHECK_EXCEPTION
    com.sap.aii.ib.core.clmgmt.ChangeListMgmtException: Internal error while checking object Message Mapping RFCMsgMAP | http://p4.org/xi/RAMSITE/TEST (PRZYKLAD1_TEST , 3.0.1 of p4.org); see details
         at com.sap.aii.ib.core.clmgmt.ChangeListMgmtException.createFromException(ChangeListMgmtException.java:35)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:227)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.oa.rb_all.CHECK_EXCEPTION (serialized)
    com.sap.aii.ib.core.oa.ObjectAccessException: Internal error while checking object Message Mapping RFCMsgMAP | http://p4.org/xi/RAMSITE/TEST (PRZYKLAD1_TEST , 3.0.1 of p4.org); see details
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2212)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.utilxi.misc.api.ResourceException: Compilation process error : Not enough space
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:132)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    I had configured some message mapping object and averything was ok. I could activate that and do the test of mapping. When I try to change dependecies in that object I see this error. Now I can not even activate that object and test it. Now when I try to create and configure new message mapping I have got the same problem.
    What I have to do in that situation?
    Can somebody help me?

    Hi,
    check the HDD space on your XI server machine
    maybe it's full
    Regards,
    michal

  • Installing Apex 3.0 on Oracle 10g (10.2.0) Database

    Hi All,
    I have installed Oracle 10g(version 10.2.0) Database. Now I am trying to configure Application Express Apex 3.0 to it. I and following the Installation Guide provided to install Apex 3.0 on Oracle 10g. But i am facing the following issues, i am pasting the complete issues which are encountered. Please go through it and help me in configuring Apex 3.0 on Oracle 10g Database.
    This is the command i gave to configure from SQL prompt:
    @D:\Apex3.0\apexins.sql <Newly Create User> <Newly Created Tablespace> <Newly Created Tablespace> TEMP /i/
    Issues Encountered:
    begin
    ERROR at line 1:
    ORA-01920: user name 'FLOWS_FILES' conflicts with another user or role name
    ORA-06512: at line 3
    FOO
    INSTALLED
    PL/SQL procedure successfully completed.
    I. O R A C L E S Y S I N S T A L L P R O C E S S
    ...create flows user
    create user FLOWS_030000 identified by "HPGMNGCMS"
    ERROR at line 1:
    ORA-01920: user name 'FLOWS_030000' conflicts with another user or role name
    User altered.
    User altered.
    Grant succeeded.
    ...create validate procedure in SYS schema and start registration
    Procedure created.
    No errors.
    PL/SQL procedure successfully completed.
    ...grant flows owner tab privs
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    ...grant privs to flows owner
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Session altered.
    SP2-0310: unable to open file "core/wwv_flow_val.plb"
    Installing flows_files objects 1
    Session altered.
    SP2-0310: unable to open file "core/flows_files_new.sql"
    grant all on wwv_flow_file_objects$ to FLOWS_030000 with grant option
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Session altered.
    SP2-0310: unable to open file "core/migrate_metadata.sql"
    SP2-0310: unable to open file "core/tab.sql"
    SP2-0310: unable to open file "core/table_ddl_changes.sql"
    Installing Application Migration Workshop objects
    SP2-0310: unable to open file "core/wwv_mig_create_ddl.sql"
    SP2-0310: unable to open file "core/wwv_mig_exporter_ins.sql"
    ...installing Application Migration Workshop package spec
    SP2-0310: unable to open file "core/wwv_mig_acc_load.sql"
    ...install Application Migration Workshop package body
    SP2-0310: unable to open file "core/wwv_mig_acc_load.plb"
    SP2-0310: unable to open file "core/column_exceptions.sql"
    SP2-0310: unable to open file "core/meta_cleanup.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_upgrade.sql"
    SP2-0310: unable to open file "core/wwv_flow_upgrade.sql"
    SP2-0310: unable to open file "core/wwv_flow_upgrade.plb"
    SP2-0310: unable to open file "core/plsqljob.sql"
    SP2-0310: unable to open file "core/v.sql"
    SP2-0310: unable to open file "core/audit.sql"
    SP2-0310: unable to open file "core/wwv_flow_user_api.sql"
    SP2-0310: unable to open file "core/trigger.sql"
    SP2-0310: unable to open file "core/apex_install_data.sql"
    SP2-0310: unable to open file "core/provisioning_tables.sql"
    SP2-0310: unable to open file "core/wwv_flow_csv_data.sql"
    wwv_flow_upgrade.FLOWS_FILES_OBJECTS_REMOVE('FLOWS_030000');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.FLOWS_FILES_OBJECTS_REMOVE' must be
    declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.FLOWS_FILES_OBJECTS_CREATE('FLOWS_030000');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.FLOWS_FILES_OBJECTS_CREATE' must be
    declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    wwv_flow_security.g_security_group_id := 10;
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    ORA-06550: line 4, column 21:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 4, column 9:
    PL/SQL: SQL Statement ignored
    Commit complete.
    III. I N S T A L L F L O W P A C K A G E S P E C S
    SP2-0310: unable to open file "core/http.sql"
    SP2-0310: unable to open file "core/dynsql.sql"
    SP2-0310: unable to open file "core/wwv_flow_dynsql_parse.sql"
    SP2-0310: unable to open file "core/wwv_flow_dynsql_util.sql"
    SP2-0310: unable to open file "core/flow_log.sql"
    SP2-0310: unable to open file "core/flow_dml.sql"
    SP2-0310: unable to open file "core/flowp.sql"
    SP2-0310: unable to open file "core/f.sql"
    SP2-0310: unable to open file "core/nv.sql"
    SP2-0310: unable to open file "core/vrn.sql"
    SP2-0310: unable to open file "core/flowc.sql"
    SP2-0310: unable to open file "core/gen_api_pkg.sql"
    SP2-0310: unable to open file "core/plug.sql"
    SP2-0310: unable to open file "core/customize.sql"
    SP2-0310: unable to open file "core/generic.sql"
    SP2-0310: unable to open file "core/form.sql"
    SP2-0310: unable to open file "core/wwv_flow_item_comps.sql"
    SP2-0310: unable to open file "core/copy.sql"
    SP2-0310: unable to open file "core/copy_lov.sql"
    SP2-0310: unable to open file "core/copy_item.sql"
    SP2-0310: unable to open file "core/copy_button.sql"
    SP2-0310: unable to open file "core/wwv_flow_translation_utilities.sql"
    SP2-0310: unable to open file "core/seed.sql"
    SP2-0310: unable to open file "core/sync.sql"
    SP2-0310: unable to open file "core/popup_filter.sql"
    SP2-0310: unable to open file "core/change_password.sql"
    SP2-0310: unable to open file "core/asfcookie.sql"
    SP2-0310: unable to open file "core/spell.sql"
    SP2-0310: unable to open file "core/wwv_calculator.sql"
    SP2-0310: unable to open file "core/layout.sql"
    SP2-0310: unable to open file "core/wwv_flow_builder.sql"
    SP2-0310: unable to open file "core/wwv_lov_used_on_pages.sql"
    SP2-0310: unable to open file "core/shortcut.sql"
    SP2-0310: unable to open file "core/wwv_flow_fnd_developer_api.sql"
    SP2-0310: unable to open file "core/popup.sql"
    SP2-0310: unable to open file "core/wwv_flow_calendar3.sql"
    SP2-0310: unable to open file "core/wwv_flow_query_builder.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_object_feed.sql"
    SP2-0310: unable to open file "core/query.sql"
    SP2-0310: unable to open file "core/temp_table_init.sql"
    SP2-0310: unable to open file "core/wwv_flow_mail.sql"
    SP2-0310: unable to open file "core/wwv_flow_gen_global_api.sql"
    SP2-0310: unable to open file "core/wizard.sql"
    SP2-0310: unable to open file "core/prov.sql"
    SP2-0310: unable to open file "core/provision.sql"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/flowjob.sql"
    SP2-0310: unable to open file "core/wwv_flow_item.sql"
    SP2-0310: unable to open file "core/platform.sql"
    SP2-0310: unable to open file "core/tree.sql"
    SP2-0310: unable to open file "core/tree3.sql"
    SP2-0310: unable to open file "core/wizapi.sql"
    SP2-0310: unable to open file "core/wwv_flow_load_data.sql"
    SP2-0310: unable to open file "core/flow_isc.sql"
    SP2-0310: unable to open file "core/home.sql"
    SP2-0310: unable to open file "core/imgapi.sql"
    SP2-0310: unable to open file "core/imgapi_public.sql"
    SP2-0310: unable to open file "core/cssapi.sql"
    SP2-0310: unable to open file "core/cssapi_public.sql"
    SP2-0310: unable to open file "core/htmlapi.sql"
    SP2-0310: unable to open file "core/htmlapi_public.sql"
    SP2-0310: unable to open file "core/wwv_flow_fnd_user_api.sql"
    SP2-0310: unable to open file "core/flows_version.sql"
    SP2-0310: unable to open file "core/flows_release.sql"
    SP2-0310: unable to open file "core/wwv_flow_upgrade_report.sql"
    SP2-0310: unable to open file "core/collection.sql"
    SP2-0310: unable to open file "core/wwv_flow_load_excel_data.sql"
    SP2-0310: unable to open file "core/z.sql"
    SP2-0310: unable to open file "core/custom_auth_api.sql"
    SP2-0310: unable to open file "core/custom_auth_std.sql"
    SP2-0310: unable to open file "core/sw_api.sql"
    SP2-0310: unable to open file "core/wwv_flow_script_export.sql"
    SP2-0310: unable to open file "core/app_auth.sql"
    SP2-0310: unable to open file "core/copy_metadata.sql"
    SP2-0310: unable to open file "core/create_flow_api.sql"
    SP2-0310: unable to open file "core/ihelp.sql"
    SP2-0310: unable to open file "core/copyu.sql"
    SP2-0310: unable to open file "core/wwv_flow_admin_api.sql"
    SP2-0310: unable to open file "core/flowcon.sql"
    SP2-0310: unable to open file "core/wwv_flow_tab_mgr.sql"
    SP2-0310: unable to open file "core/generate_ddl.sql"
    SP2-0310: unable to open file "core/table_drill.sql"
    SP2-0310: unable to open file "core/wwv_flow_svg.sql"
    SP2-0310: unable to open file "core/wwv_flow_download.sql"
    SP2-0310: unable to open file "core/wwv_flow_copy_page.sql"
    SP2-0310: unable to open file "core/sw_util.sql"
    SP2-0310: unable to open file "core/generate_table_api.sql"
    SP2-0310: unable to open file "core/wwv_flow_hint.sql"
    SP2-0310: unable to open file "core/wwv_flow_regexp.sql"
    SP2-0310: unable to open file "core/wwv_flow_gen_hint.sql"
    SP2-0310: unable to open file "core/wwv_flow_series_attr.sql"
    SP2-0310: unable to open file "core/wwv_flow_xliff.sql"
    SP2-0310: unable to open file "core/edit_report.sql"
    SP2-0310: unable to open file "core/query_api.sql"
    SP2-0310: unable to open file "core/imp_parser.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_parser.sql"
    SP2-0310: unable to open file "core/wwv_flow_create_model_app.sql"
    SP2-0310: unable to open file "core/wwv_flow_login.sql"
    SP2-0310: unable to open file "core/hint_seed.sql"
    SP2-0310: unable to open file "core/view.sql"
    SP2-0310: unable to open file "core/apex_admin.sql"
    SP2-0310: unable to open file "core/wwv_flow_developer_toolbar.sql"
    SP2-0310: unable to open file "core/wwv_flow_help.sql"
    SP2-0310: unable to open file "core/htmldb_util.sql"
    SP2-0310: unable to open file "core/htmldb_custom_auth.sql"
    SP2-0310: unable to open file "core/htmldb_lang.sql"
    SP2-0310: unable to open file "core/wwv_flow_form_control.sql"
    SP2-0310: unable to open file "core/wwv_flow_data_quick_flow.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_globals.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_1.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_2.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_3.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_4.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_5.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_6.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_7.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_8.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_9.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_10.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_11.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_12.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_13.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_14.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_15.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_16.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_17.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_18.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_manager.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_files.sql"
    SP2-0310: unable to open file "core/htmldb_site_admin_privs.sql"
    SP2-0310: unable to open file "core/wwv_flow_ppr_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_script.sql"
    SP2-0310: unable to open file "core/wwv_flow_list.sql"
    SP2-0310: unable to open file "core/wwv_flow_sc_transactions.sql"
    SP2-0310: unable to open file "core/wwv_flow_session_mon.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_page_calls.sql"
    SP2-0310: unable to open file "core/wwv_flow_install_wizard.sql"
    SP2-0310: unable to open file "core/wwv_flow_wiz_confirm.sql"
    SP2-0310: unable to open file "core/wwv_flow_page_map.sql"
    SP2-0310: unable to open file "core/wwv_flow_print_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_drag_layout.sql"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/ldap.sql"
    SP2-0310: unable to open file "core/custom_auth_ldap.sql"
    SP2-0310: unable to open file "core/null1.sql"
    ...installing files dependend upon 9iR2
    ...if errors are encountered, ignore if not 9iR2
    SP2-0310: unable to open file "core/wwv_flow_web_services.sql"
    ...installing files dependent on XML DB
    ......if errors are encountered, install XML DB and rerun these files
    SP2-0310: unable to open file "core/wwv_flow_dataload_xml.sql"
    ...end of XML XDB dependancies
    SP2-0310: unable to open file "core/processu.sql"
    timing for: Package Specs
    Elapsed: 00:00:00.65
    SP2-0310: unable to open file "core/meta_cleanup.plb"
    wwv_flow_upgrade.SWITCH_SCHEMAS('FLOWS_030000','FLOWS_030000');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.SWITCH_SCHEMAS' must be declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    SP2-0310: unable to open file "core/meta_cleanup.plb"
    IV. I N S T A L L F L O W P A C K A G E B O D I E S
    SP2-0310: unable to open file "core/dynsql.plb"
    SP2-0310: unable to open file "core/wwv_flow_dynsql_parse.plb"
    SP2-0310: unable to open file "core/wwv_flow_dynsql_util.plb"
    SP2-0310: unable to open file "core/calendar.plb"
    SP2-0310: unable to open file "core/chart.plb"
    SP2-0310: unable to open file "core/reports3.plb"
    SP2-0310: unable to open file "core/wwv_flow_page_cache_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_render_query.plb"
    SP2-0310: unable to open file "core/wwv_flow_plsql_editor.plb"
    SP2-0310: unable to open file "core/wwv_flow_model_api.plb"
    SP2-0310: unable to open file "core/api.plb"
    SP2-0310: unable to open file "core/gen_api_pkg.plb"
    SP2-0310: unable to open file "core/wwv_htf.plb"
    SP2-0310: unable to open file "core/wwv_htp.plb"
    SP2-0310: unable to open file "core/flow_log.plb"
    SP2-0310: unable to open file "core/flow_dml.plb"
    SP2-0310: unable to open file "core/flowu.plb"
    if wwv_flow_utilities.db_version_is_at_least('10.2.0.3') or wwv_flow_utilities.db_edition_is_xe then
    ERROR at line 2:
    ORA-06550: line 2, column 8:
    PLS-00201: identifier 'WWV_FLOW_UTILITIES.DB_VERSION_IS_AT_LEAST' must be
    declared
    ORA-06550: line 2, column 5:
    PL/SQL: Statement ignored
    SP2-0310: unable to open file "core/coreins.sql"
    SP2-0310: unable to open file "core/audit.plb"
    SP2-0310: unable to open file "core/audit_trigger.sql"
    SP2-0310: unable to open file "core/flowc.plb"
    SP2-0310: unable to open file "core/flowp.plb"
    SP2-0310: unable to open file "core/meta.plb"
    SP2-0310: unable to open file "core/flow.plb"
    SP2-0310: unable to open file "core/flowl.plb"
    SP2-0310: unable to open file "core/template.plb"
    SP2-0310: unable to open file "core/plug.plb"
    SP2-0310: unable to open file "core/customize.plb"
    SP2-0310: unable to open file "core/sw_util.plb"
    SP2-0310: unable to open file "core/generic.plb"
    SP2-0310: unable to open file "core/auth.plb"
    SP2-0310: unable to open file "core/wwv_flow_element.plb"
    SP2-0310: unable to open file "core/form.plb"
    SP2-0310: unable to open file "core/check.plb"
    SP2-0310: unable to open file "core/spell.plb"
    SP2-0310: unable to open file "core/wwv_calculator.plb"
    SP2-0310: unable to open file "core/layout.plb"
    SP2-0310: unable to open file "core/wwv_flow_builder.plb"
    SP2-0310: unable to open file "core/shortcut.plb"
    SP2-0310: unable to open file "core/wwv_flow_fnd_developer_api.plb"
    ...install demonstration flow specs
    SP2-0310: unable to open file "core/collections_showcase.sql"
    SP2-0310: unable to open file "core/wwv_flow_sample_app.sql"
    SP2-0310: unable to open file "core/wwv_lov_used_on_pages.sql"
    SP2-0310: unable to open file "core/query.plb"
    SP2-0310: unable to open file "core/temp_table_init.plb"
    SP2-0310: unable to open file "core/wwv_flow_mail.plb"
    SP2-0310: unable to open file "core/file_mgr.plb"
    SP2-0310: unable to open file "core/wwv_flow_image_generator.plb"
    SP2-0310: unable to open file "core/wwv_flow_gen_global_api.plb"
    SP2-0310: unable to open file "core/wizard.plb"
    SP2-0310: unable to open file "core/prov.plb"
    SP2-0310: unable to open file "core/wwv_flow_f4000_util.plb"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/provision.plb"
    SP2-0310: unable to open file "core/flowjob.plb"
    SP2-0310: unable to open file "core/plsqljob.plb"
    SP2-0310: unable to open file "core/tree.plb"
    SP2-0310: unable to open file "core/tree3.plb"
    SP2-0310: unable to open file "core/wizapi.plb"
    SP2-0310: unable to open file "core/wwv_flow_load_data.plb"
    SP2-0310: unable to open file "core/fileapi.plb"
    SP2-0310: unable to open file "core/imgapi.plb"
    SP2-0310: unable to open file "core/imgapi_public.plb"
    SP2-0310: unable to open file "core/cssapi.plb"
    SP2-0310: unable to open file "core/cssapi_public.plb"
    SP2-0310: unable to open file "core/htmlapi.plb"
    SP2-0310: unable to open file "core/htmlapi_public.plb"
    SP2-0310: unable to open file "core/wwv_flow_fnd_user_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_user_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_template_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_upgrade_report.plb"
    SP2-0310: unable to open file "core/collection.plb"
    SP2-0310: unable to open file "core/wwv_flow_item.plb"
    SP2-0310: unable to open file "core/wwv_flow_load_excel_data.plb"
    SP2-0310: unable to open file "core/custom_auth_api.plb"
    SP2-0310: unable to open file "core/custom_auth_std.plb"
    SP2-0310: unable to open file "core/sw_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_script_export.plb"
    SP2-0310: unable to open file "core/app_auth.plb"
    SP2-0310: unable to open file "core/copy_metadata.plb"
    SP2-0310: unable to open file "core/create_flow_api.plb"
    SP2-0310: unable to open file "core/ihelp.plb"
    SP2-0310: unable to open file "core/copyu.plb"
    SP2-0310: unable to open file "core/wwv_flow_admin_api.plb"
    SP2-0310: unable to open file "core/flowcon.plb"
    SP2-0310: unable to open file "core/wwv_flow_tab_mgr.plb"
    SP2-0310: unable to open file "core/forum_demo.sql"
    SP2-0310: unable to open file "core/wwv_flow_lookup_tables.sql"
    SP2-0310: unable to open file "core/table_drill.plb"
    SP2-0310: unable to open file "core/wwv_flow_svg.plb"
    SP2-0310: unable to open file "core/wwv_flow_download.plb"
    SP2-0310: unable to open file "core/wwv_flow_copy_page.plb"
    SP2-0310: unable to open file "core/popup.plb"
    SP2-0310: unable to open file "core/wwv_flow_calendar3.plb"
    SP2-0310: unable to open file "core/generate_table_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_hint.plb"
    SP2-0310: unable to open file "core/wwv_flow_gen_hint.plb"
    SP2-0310: unable to open file "core/wwv_flow_series_attr.plb"
    SP2-0310: unable to open file "core/wwv_flow_xliff.plb"
    SP2-0310: unable to open file "core/edit_report.plb"
    SP2-0310: unable to open file "core/query_api.plb"
    SP2-0310: unable to open file "core/imp_parser.plb"
    SP2-0310: unable to open file "core/wwv_flow_developer_toolbar.plb"
    SP2-0310: unable to open file "core/flow_isc.plb"
    SP2-0310: unable to open file "core/wwv_flow_web_services.plb"
    SP2-0310: unable to open file "core/htmldb_util.plb"
    SP2-0310: unable to open file "core/htmldb_item.plb"
    SP2-0310: unable to open file "core/htmldb_custom_auth.plb"
    SP2-0310: unable to open file "core/htmldb_lang.plb"
    SP2-0310: unable to open file "core/wwv_flow_form_control.plb"
    SP2-0310: unable to open file "core/wwv_flow_data_quick_flow.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_1.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_2.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_3.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_4.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_5.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_6.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_7.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_8.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_9.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_10.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_11.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_12.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_13.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_14.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_15.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_16.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_17.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_18.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_manager.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_files.plb"
    SP2-0310: unable to open file "core/wwv_flow_help.plb"
    SP2-0310: unable to open file "core/htmldb_site_admin_privs.plb"
    SP2-0310: unable to open file "core/wwv_flow_login.plb"
    SP2-0310: unable to open file "core/wwv_flow_ppr_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_query_builder.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_script.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_object_feed.plb"
    SP2-0310: unable to open file "core/wwv_flow_list.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_parser.plb"
    SP2-0310: unable to open file "core/wwv_flow_create_model_app.plb"
    SP2-0310: unable to open file "core/wwv_flow_sc_transactions.plb"
    SP2-0310: unable to open file "core/wwv_flow_session_mon.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_page_calls.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_upgrade.plb"
    SP2-0310: unable to open file "core/wwv_flow_install_wizard.plb"
    SP2-0310: unable to open file "core/wwv_flow_wiz_confirm.plb"
    SP2-0310: unable to open file "core/wwv_flow_page_map.plb"
    SP2-0310: unable to open file "core/wwv_flow_print_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart.plb"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_drag_layout.plb"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/wwv_flow_epg_include.plb"
    SP2-0310: unable to open file "core/ldap.plb"
    SP2-0310: unable to open file "core/custom_auth_ldap.plb"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/generate_ddl.plb"
    ...installing files dependant on an XML XDB
    ......if errors are encountered, install XML XDB and rerun these files
    SP2-0310: unable to open file "core/wwv_flow_dataload_xml.plb"
    ...end of XML XDB dependancies
    SP2-0310: unable to open file "core/processu.plb"
    SP2-0310: unable to open file "core/migrate_metadata.plb"
    ...query rewrite
    SP2-0310: unable to open file "core/wwv_flow_rewrite_query.sql"
    ...page Builder
    SP2-0310: unable to open file "core/p.sql"
    ...install demonstration flow bodies
    SP2-0310: unable to open file "core/collections_showcase.plb"
    SP2-0310: unable to open file "core/wwv_flow_sample_app.plb"
    SP2-0310: unable to open file "core/template_gallery.sql"
    SP2-0310: unable to open file "core/wwv_flow_regexp.plb"
    SP2-0310: unable to open file "core/apex_views.sql"
    timing for: Package Bodies
    Elapsed: 00:00:00.49
    V. P E R F O R M F L O W G R A N T S
    grant execute on wwv_flow to public
    ERROR at line 1:
    ORA-04042: procedure, function, package, or package body does not exist
    grant execute on wwv_flow_utilities to public
    ERROR at line 1:
    ORA-04042: procedure, function, package, or package body does not exist
    grant select on WWV_FLOW_LOV_TEMP to PUBLIC
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ...Perform Application Migration Workshop Grants
    grant execute on wwv_mig_acc_load to public
    ERROR at line 1:
    ORA-04042: procedure, function, package, or package body does not exist
    Installing flows_files objects 2
    Session altered.
    SP2-0310: unable to open file "core/flows_files_new2.sql"
    Session altered.
    timing for: Grants
    Elapsed: 00:00:00.08
    VI. I N S T A L L F L O W S
    define "^" (hex 5e)
    ...design time flows
    SP2-0310: unable to open file "builder/f4411.sql"
    SP2-0310: unable to open file "builder/f4000.sql"
    SP2-0310: unable to open file "builder/f4350.sql"
    SP2-0310: unable to open file "builder/f4050.sql"
    SP2-0310: unable to open file "builder/f4550.sql"
    SP2-0310: unable to open file "builder/f4700.sql"
    SP2-0310: unable to open file "builder/f4155.sql"
    SP2-0310: unable to open file "builder/f4500.sql"
    SP2-0310: unable to open file "builder/f4300.sql"
    SP2-0310: unable to open file "builder/f4400.sql"
    wwv_flow_security.g_security_group_id := 10;
    ERROR at line 2:
    ORA-06550: line 2, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 2, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 4, column 23:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 3, column 15:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 8, column 32:
    PLS-00364: loop index variable 'C1' use is invalid
    ORA-06550: line 7, column 9:
    PL/SQL: Statement ignored
    ...Initialize SMTP server settings
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ...Initialize preference settings
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Commit complete.
    ...Initialize the table of Oracle default schema names
    insert into wwv_flow_restricted_schemas(id,schema) values( 1,'SYS');
    ERROR at line 9:
    ORA-06550: line 9, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 9, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 10, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 10, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 11, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 11, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 12, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 12, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 13, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 13, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 14, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 14, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 15, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 15, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 16, column 13:
    PL/SQL: ORA-00942: ta
    ...Adjust flow owner to install owner
    update wwv_flows set owner = 'FLOWS_030000' where id between 4000 and 4999
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Commit complete.
    ...Adjust flow version
    Enter value for version: 3
    update wwv_flows set flow_version = '&PRODUCT_NAME. ' || '3' where id between 4000 and 4999 and id <> 4550
    ERROR at line 1:
    ORA-00942: table or view does not exist
    update wwv_flows set flow_version = '&PRODUCT_NAME. ' where id = 4550
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Commit complete.
    timing for: Install Internal Flows
    Elapsed: 00:00:09.86
    SP2-0310: unable to open file "core/verification_images_load.sql"
    timing for: Verification Images Load
    Elapsed: 00:00:00.01
    VII. L O A D E N G L I S H D I C T I O N A R Y
    alter trigger bi_wwv_dictionary$_fer disable
    ERROR at line 1:
    ORA-04080: trigger 'BI_WWV_DICTIONARY$_FER' does not exist
    SP2-0310: unable to open file "core/dictionary_load.sql"
    alter trigger bi_wwv_dictionary$_fer enable
    ERROR at line 1:
    ORA-04080: trigger 'BI_WWV_DICTIONARY$_FER' does not exist
    timing for: English Dictionary
    Elapsed: 00:00:00.05
    Commit complete.
    User altered.
    User altered.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Thank you for installing Oracle Application Express.
    Oracle Application Express is installed in the FLOWS_030000 schema.
    The structure of the link to the Application Express administration services is as follows:
    http://host:port/pls/apex/apex_admin
    The structure of the link to the Application Express development interface is as follows:
    http://host:port/pls/apex
    wwv_flow_upgrade.template_name_cleanup('FLOWS_010500');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.TEMPLATE_NAME_CLEANUP' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 5, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 5, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.copy_flow_meta_data('FLOWS_010500','FLOWS_030000');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.COPY_FLOW_META_DATA' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.switch_schemas('FLOWS_010500','FLOWS_030000');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.SWITCH_SCHEMAS' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.sw_cleanup('FLOWS_010500','FLOWS_030000');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.SW_CLEANUP' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.upgrade_to_030000(p_owner => 'FLOWS_030000', p_from => 'FLOWS_010500');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.UPGRADE_TO_030000' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.copy_prefs('FLOWS_010500','FLOWS_030000');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.COPY_PREFS' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    update wwv_flow_fnd_user set account_expiry = trunc(sysdate) where account_expiry is null;
    ERROR at line 3:
    ORA-06550: line 3, column 10:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 3, column 3:
    PL/SQL: SQL Statement ignored
    for c1 in (select count(1) counter from WWV_FLOW_UPGRADE_PROGRESS where upgrade_error is not null) loop
    ERROR at line 3:
    ORA-06550: line 3, column 44:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 3, column 15:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 4, column 9:
    PLS-00364: loop index variable 'C1' use is invalid
    ORA-06550: line 4, column 6:
    PL/SQL: Statement ignored
    timing for: Upgrade
    Elapsed: 00:00:00.19
    JOB_QUEUE_PROCESSES: 10
    Performing Application Express component validation - please wait...
    Enter value for version: 3
    Enter value for version: 10
    Enter value for version: 3
    Completing registration process.
    Validating installation.
    FAILED EXISTENCE CHECK FOR WWV_FLOW_COLLECTIONS$
    timing for: Validate Installation
    Elapsed: 00:00:15.88
    timing for: Complete Installation
    Elapsed: 00:00:34.14
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options

    To add to Patrick's suggestion....
    What I am suggesting is not the cause of the FLOWS_030000 user existing error, but could be another issue which caused your installation to fail.
    In your post, you said...
    This is the command i gave to configure from SQL prompt:
    @D:\Apex3.0\apexins.sql <Newly Create User> <Newly Created Tablespace> <Newly Created Tablespace> TEMP /i/
    You have specified an absolute path when running the apexins.sql script. In order for the installation to succeed, you must first change your working directory to the directory where you unzipped the apex_3.0.zip file and then run the script. This is because the apexins.sql script subsequently references other sql scripts, using relative paths.
    You have also not included a password in your command, was this just for purposes of the posting, or could this also be an issue, as in:
    @apexins password tablespace_apex tablespace_files tablespace_temp images
    Hope this helps,
    Anthony
    http://anthonyrayner.blogspot.com

  • Error conecting linux(sqlplus(ora8/9 client)) to SCO(ora7( DB))

    HI. I apologize of my poor english....
    Im trying to connect a new linux machine with ora8 to an old sco with ora7
    points about...:
    1- tnsping works fine. and I can see it in the logs
    2- (here the problem) on "sqlplus user/pass@AUDI"
    SQL*Plus: Release 9.2.0.1.0 - Production on Mie Nov 6 15:43:47 2002
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-03113: end-of-file on communication channel
    It got nothing on the trace files on the ora7 DB.
    And the ora7 DB is working fine at production level with net clients whitout problems.
    The service names tnsnames.ora for AUDI is:
    AUDI =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.119.207)(PORT = 1521))
    (CONNECT_DATA = (SID = AUDI)(SERVER=DEDICATED))
    3- I can connect to any ora8 ora9 DB. without any error
    what can I do ?
    can I trace to a lower level ?
    I really do not know what to do, becose I cant see any error at server side.
    may it be an enviroment variable problem ??? I tried to put the same as in the sco enviroment.but nothing.
    Please tell me any way to continue with it.
    I've searched about and tried it...:
    Solution Description:
    =====================
    The ORA-3113 error is a general error reported by Oracle client tools,
    which signifies that they cannot communicate with the oracle shadow
    process. As it is such a general error more information must be collected
    to help determine what has happened.
    This short article describes what information to collect for an
    ORA-3113 error when the Oracle server is on a Unix platform.
    General Issues:
    ===============
    1) Is it only one tool that encounters the error or
    do you get an ORA-3113 from any tool doing a similar operation?
    If the problem reproduces in SQL*Plus, use this in all tests
    below.
    2) Check if the problem is just restricted to:
    [ ] One particular UNIX user,
    [ ] Any UNIX user
    or [ ] Any UNIX user EXCEPT as the Oracle user.
    3) Check if the problem is just restricted to:
    [ ] One particular ORACLE logon
    or [ ] Any ORACLE logon that has access to the
    relevant tables.
    4) If you have a client-server configuration does this occur from:
    [ ] Any client
    [ ] Just one particular client
    or [ ] Just one group of clients ?
    If so what do these clients have in common ?
    Eg: Software release .
    5) Do you have a second server or database version where the
    same operation works correctly?
    Connecting to Oracle
    ====================
    If the ORA-3113 error occurs when actually connecting to Oracle then
    continue with this section. If you connect to Oracle successfully and get
    the error on an established connection, please go to the next section
    'An Established Connection'.
    Local Connections
    ~~~~~~~~~~~~~~~~~
    For local connections check the following:
    1) Have you installed the Parallel Server Option?
    ORA-3113 will occur if you have installed the Parallel
    Server Option but do NOT have a Distributed Lock Manager
    installed or running.
    To deinstall the Parallel Server Option:
    Shut down any Oracle instances
    % script /tmp/relink.out
    % cd $ORACLE_HOME/rdbms/lib
    # 'oracle' should not exist so delete it if it present
    % rm -f oracle
    % make -f oracle.mk no_parropt ioracle
    % exit
    If the above reports any errors Oracle support will need to
    see the contents of the file /tmp/relink.out.
    2) Try using the SQL*Net V1 driver for local connections:
    setenv TWO_TASK P:
    Then try the client tool. If this now works you may have a
    problem with the default SQL*Net driver.
    3) Your 'oracle' executable may be corrupt. Relink it as follows:
    Log in as the 'oracle' user.
    % script /tmp/relink.out
    % cd $ORACLE_HOME/rdbms/lib
    % rm -f oracle
    % make -f oracle.mk ioracle
    % exit
    If this reports any errors Oracle support will need to see
    the contents of the file /tmp/relink.out .
    4) Some Unix platforms need LD_LIBRARY_PATH to be set
    correctly to resolve any dynamically linked libraries.
    As the user with the problem:
    % script /tmp/ldd.out
    % id
    % cd $ORACLE_HOME/bin
    % ldd oracle
    % exit
    If the 'ldd' command does not exist go to the next step below.
    Check that all lines listed show a full library file. If there
    are any 'not found' lines reported contact Oracle support
    with the output of /tmp/ldd.out.
    5) If you cannot connect as the Oracle user AND your system has
    the 'truss' command try the following when logged in as
    'oracle' (using the relevant client tool):
    % truss -o /tmp/truss.out -f sqlplus user/password
    Exit from sqlplus (or the problem tool)
    Keep the file /tmp/truss.out safe - Oracle MAY need to see it.
    Remote Connections
    ==================
    For remote connections check the following:
    1) Check if you can make LOCAL connections. If not then follow
    the steps above for LOCAL connection problems.
    2) Which SQL*Net protocol are you using ?
    Table C.1
    ~~~~~~~~~
    SYMBOL SQL*Net V1 Layer Prefix Debug Listener
    osnptt PIPE Two Task P: OSNTTD none
    osnasy ASYNC A: OSNADBUG none
    osnttt TCP/IP Two Task T: OSNTDBUG orasrv
    osntlitcp TCP/TLI Two Task TT: OSNTLIDBUG tcptlisrv
    osntlispx SPX Two Task X: OSNTLIDBUG spxsrv
    osndnt DECNET Two Task D: OSNDDBUG none
    For the protocol you are using check that the oracle
    executable has this linked in as follows:
    Log in as oracle on the server
    % script /tmp/drivers.out
    % cd $ORACLE_HOME/bin
    % drivers oracle
    % exit
    Eg: If you are using TCP/IP it should list TCP/IP.
    If the drivers command does not exist on your machine, check
    the oracle executable as below substituting the relevant
    symbol from Table C.1 for the word SYMBOL. If you do not
    receive any output then:
    % script /tmp/symbols.out
    % cd $ORACLE_HOME/bin
    % nm oracle | grep -i SYMBOL # Use relevant SYMBOL
    % exit
    Eg: For SQL*Net TCP/IP you would use the command:
    % nm oracle | grep -i osnttt
    If the required driver is not installed you should:
    a) Relink Oracle (See step (B3) above).
    b) Re-check the oracle executable for the
    relevant driver. If it is still missing then
    the relevant SQL*Net driver has probably not
    been installed. Reinstall the required SQL*Net
    driver.
    3) Check your /etc/oratab or /var/opt/oracle/oratab file
    is of the form:
    # Comments begin with a HASH
    SID:/path/to/oracle/home:N
    And confirm:
    [ ] There are no blank lines.
    [ ] The PATH to ORACLE_HOME is correct and contains
    no environment variables.
    [ ] There are no ':'s in the ORACLE_HOME path.
    [ ] There is NOTHING at the end of the line.
    The last character on a line should be Y or N.
    There should NOT be a fourth field.
    4) If you have truss available try to truss the Oracle
    connection. You will normally need the root privilege to do this
    and should use truss on the relevant listener process (see
    Table C1)
    Eg: For TCP/IP the listener is 'orasrv' so enter these
    commands as 'root':
    % truss -o /tmp/truss.out -f -eall -p <PID_of_orasrv>
    Attempt the connection to reproduce the ORA-3113 then
    interrupt this 'truss' session.
    An Established Connection:
    ==========================
    If the ORA-3113 error occurs AFTER you have connected to Oracle, then
    it is most likely that the oracle executable has terminated unexpectedly.
    1) Determine which database you were connected to and
    obtain the following init.ora parameter values:
    Parameter Default
    USER_DUMP_DEST $ORACLE_HOME/rdbms/log
    BACKGROUND_DUMP_DEST $ORACLE_HOME/rdbms/log
    CORE_DUMP_DEST $ORACLE_HOME/dbs
    Eg: To find these log into SQL*DBA or Server Manager and:
    SQLDBA> show parameter dump
    2) Check in your 'USER_DUMP_DEST' for any Oracle trace file.
    It is important to find the correct trace file. Use the
    command 'ls -ltr' to list files in time order with the
    latest trace files appearing LAST. If you are not sure
    which trace file may be relevant, move all the current trace
    files to a different directory and reproduce the problem.
    The trace file will typically be of the form 'ora_<PID>.trc'.
    3) If there is no trace file check for a core dump in the
    CORE_DUMP_DEST. Check as follows:
    % cd $ORACLE_HOME/dbs # Or your CORE_DUMP_DEST
    % ls -l core*
    If there is a file called core, check that its time matches
    the time of the problem. If there are directories called
    'core_<PID>' check for core files in each of these. It is
    IMPORTANT to get the correct core file. Now obtain a stack
    trace from this core file. Check each of the sequences below
    for the procedure. One of the following should work for your
    platform:
    If you have dbx:
    % script /tmp/core.stack
    % dbx $ORACLE_HOME/bin/oracle core
    (dbx) where
    (dbx) quit
    % exit
    If you have sdb:
    % script /tmp/core.stack
    % sdb $ORACLE_HOME/bin/oracle core
    * t
    * q
    % exit
    If you have xdb:
    % script /tmp/core.stack
    % xdb $ORACLE_HOME/bin/oracle core
    (xdb) t
    (xdb) q
    % exit
    If you have adb:
    % script /tmp/core.stack
    % adb $ORACLE_HOME/bin/oracle core
    $c
    $q
    % exit
    4) Try to isolate the SQL command that is executing when
    the error occurs. Eg: Is it a particular SQL statement
    or PL/SQL block that causes the error ?
    To help establish this turn on SQL_TRACE for the client
    tool.
    Eg: Product Action
    ~~~~~~~ ~~~~~~
    SQL*Forms Use the '-s' statistics option at run time.
    SQL*Plus Issue 'ALTER SESSION SET SQL_TRACE TRUE;'
    Pro* EXEC SQL ALTER SESSION SET SQL_TRACE TRUE;
    This should force a server side SQL trace file as detailed
    in #2 above. The trace file should give a clue as to what
    SQL was being executed.
    5) Try to obtain any SQL*Net trace to show what the latest
    operation sent to the oracle process was.
    For SQL*Net V2 ask for the article [NOTE:16564.1]
    For SQL*Net V1 check which SQL*Net protocol you are using
    and note the Debug environment variable from table C1 above.
    Then catch SQL*Net trace from the client. Eg: For SQL*Net
    TCP/IP and sqlplus:
    % setenv OSNTDBUG -1 # Use correct OSN*DBUG
    variable
    % sh
    % sqlplus scott/tiger@t:hostname:sid 2>/tmp/net1.out
    6) Based on information collected above try to determine a small
    test case which will reproduce the problem. This is important
    for two reasons:
    a) It gives Oracle support a small test case if the
    problem does not look like a known problem.
    b) It gives you a simple way to check if any patch
    supplied will fix the problem.
    7) It may be useful to follow the instructions in step (4) above.
    This will produce a lot of output but MAY be useful if no
    other information is available.

    HI. I apologize of my poor english....
    Im trying to connect a new linux machine with ora8 to an old sco with ora7
    points about...:
    1- tnsping works fine. and I can see it in the logs
    2- (here the problem) on "sqlplus user/pass@AUDI"
    SQL*Plus: Release 9.2.0.1.0 - Production on Mie Nov 6 15:43:47 2002
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    ERROR:
    ORA-03113: end-of-file on communication channel
    It got nothing on the trace files on the ora7 DB.
    And the ora7 DB is working fine at production level with net clients whitout problems.
    The service names tnsnames.ora for AUDI is:
    AUDI =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.119.207)(PORT = 1521))
    (CONNECT_DATA = (SID = AUDI)(SERVER=DEDICATED))
    3- I can connect to any ora8 ora9 DB. without any error
    what can I do ?
    can I trace to a lower level ?
    I really do not know what to do, becose I cant see any error at server side.
    may it be an enviroment variable problem ??? I tried to put the same as in the sco enviroment.but nothing.
    Please tell me any way to continue with it.
    I've searched about and tried it...:
    Solution Description:
    =====================
    The ORA-3113 error is a general error reported by Oracle client tools,
    which signifies that they cannot communicate with the oracle shadow
    process. As it is such a general error more information must be collected
    to help determine what has happened.
    This short article describes what information to collect for an
    ORA-3113 error when the Oracle server is on a Unix platform.
    General Issues:
    ===============
    1) Is it only one tool that encounters the error or
    do you get an ORA-3113 from any tool doing a similar operation?
    If the problem reproduces in SQL*Plus, use this in all tests
    below.
    2) Check if the problem is just restricted to:
    [ ] One particular UNIX user,
    [ ] Any UNIX user
    or [ ] Any UNIX user EXCEPT as the Oracle user.
    3) Check if the problem is just restricted to:
    [ ] One particular ORACLE logon
    or [ ] Any ORACLE logon that has access to the
    relevant tables.
    4) If you have a client-server configuration does this occur from:
    [ ] Any client
    [ ] Just one particular client
    or [ ] Just one group of clients ?
    If so what do these clients have in common ?
    Eg: Software release .
    5) Do you have a second server or database version where the
    same operation works correctly?
    Connecting to Oracle
    ====================
    If the ORA-3113 error occurs when actually connecting to Oracle then
    continue with this section. If you connect to Oracle successfully and get
    the error on an established connection, please go to the next section
    'An Established Connection'.
    Local Connections
    ~~~~~~~~~~~~~~~~~
    For local connections check the following:
    1) Have you installed the Parallel Server Option?
    ORA-3113 will occur if you have installed the Parallel
    Server Option but do NOT have a Distributed Lock Manager
    installed or running.
    To deinstall the Parallel Server Option:
    Shut down any Oracle instances
    % script /tmp/relink.out
    % cd $ORACLE_HOME/rdbms/lib
    # 'oracle' should not exist so delete it if it present
    % rm -f oracle
    % make -f oracle.mk no_parropt ioracle
    % exit
    If the above reports any errors Oracle support will need to
    see the contents of the file /tmp/relink.out.
    2) Try using the SQL*Net V1 driver for local connections:
    setenv TWO_TASK P:
    Then try the client tool. If this now works you may have a
    problem with the default SQL*Net driver.
    3) Your 'oracle' executable may be corrupt. Relink it as follows:
    Log in as the 'oracle' user.
    % script /tmp/relink.out
    % cd $ORACLE_HOME/rdbms/lib
    % rm -f oracle
    % make -f oracle.mk ioracle
    % exit
    If this reports any errors Oracle support will need to see
    the contents of the file /tmp/relink.out .
    4) Some Unix platforms need LD_LIBRARY_PATH to be set
    correctly to resolve any dynamically linked libraries.
    As the user with the problem:
    % script /tmp/ldd.out
    % id
    % cd $ORACLE_HOME/bin
    % ldd oracle
    % exit
    If the 'ldd' command does not exist go to the next step below.
    Check that all lines listed show a full library file. If there
    are any 'not found' lines reported contact Oracle support
    with the output of /tmp/ldd.out.
    5) If you cannot connect as the Oracle user AND your system has
    the 'truss' command try the following when logged in as
    'oracle' (using the relevant client tool):
    % truss -o /tmp/truss.out -f sqlplus user/password
    Exit from sqlplus (or the problem tool)
    Keep the file /tmp/truss.out safe - Oracle MAY need to see it.
    Remote Connections
    ==================
    For remote connections check the following:
    1) Check if you can make LOCAL connections. If not then follow
    the steps above for LOCAL connection problems.
    2) Which SQL*Net protocol are you using ?
    Table C.1
    ~~~~~~~~~
    SYMBOL SQL*Net V1 Layer Prefix Debug Listener
    osnptt PIPE Two Task P: OSNTTD none
    osnasy ASYNC A: OSNADBUG none
    osnttt TCP/IP Two Task T: OSNTDBUG orasrv
    osntlitcp TCP/TLI Two Task TT: OSNTLIDBUG tcptlisrv
    osntlispx SPX Two Task X: OSNTLIDBUG spxsrv
    osndnt DECNET Two Task D: OSNDDBUG none
    For the protocol you are using check that the oracle
    executable has this linked in as follows:
    Log in as oracle on the server
    % script /tmp/drivers.out
    % cd $ORACLE_HOME/bin
    % drivers oracle
    % exit
    Eg: If you are using TCP/IP it should list TCP/IP.
    If the drivers command does not exist on your machine, check
    the oracle executable as below substituting the relevant
    symbol from Table C.1 for the word SYMBOL. If you do not
    receive any output then:
    % script /tmp/symbols.out
    % cd $ORACLE_HOME/bin
    % nm oracle | grep -i SYMBOL # Use relevant SYMBOL
    % exit
    Eg: For SQL*Net TCP/IP you would use the command:
    % nm oracle | grep -i osnttt
    If the required driver is not installed you should:
    a) Relink Oracle (See step (B3) above).
    b) Re-check the oracle executable for the
    relevant driver. If it is still missing then
    the relevant SQL*Net driver has probably not
    been installed. Reinstall the required SQL*Net
    driver.
    3) Check your /etc/oratab or /var/opt/oracle/oratab file
    is of the form:
    # Comments begin with a HASH
    SID:/path/to/oracle/home:N
    And confirm:
    [ ] There are no blank lines.
    [ ] The PATH to ORACLE_HOME is correct and contains
    no environment variables.
    [ ] There are no ':'s in the ORACLE_HOME path.
    [ ] There is NOTHING at the end of the line.
    The last character on a line should be Y or N.
    There should NOT be a fourth field.
    4) If you have truss available try to truss the Oracle
    connection. You will normally need the root privilege to do this
    and should use truss on the relevant listener process (see
    Table C1)
    Eg: For TCP/IP the listener is 'orasrv' so enter these
    commands as 'root':
    % truss -o /tmp/truss.out -f -eall -p <PID_of_orasrv>
    Attempt the connection to reproduce the ORA-3113 then
    interrupt this 'truss' session.
    An Established Connection:
    ==========================
    If the ORA-3113 error occurs AFTER you have connected to Oracle, then
    it is most likely that the oracle executable has terminated unexpectedly.
    1) Determine which database you were connected to and
    obtain the following init.ora parameter values:
    Parameter Default
    USER_DUMP_DEST $ORACLE_HOME/rdbms/log
    BACKGROUND_DUMP_DEST $ORACLE_HOME/rdbms/log
    CORE_DUMP_DEST $ORACLE_HOME/dbs
    Eg: To find these log into SQL*DBA or Server Manager and:
    SQLDBA> show parameter dump
    2) Check in your 'USER_DUMP_DEST' for any Oracle trace file.
    It is important to find the correct trace file. Use the
    command 'ls -ltr' to list files in time order with the
    latest trace files appearing LAST. If you are not sure
    which trace file may be relevant, move all the current trace
    files to a different directory and reproduce the problem.
    The trace file will typically be of the form 'ora_<PID>.trc'.
    3) If there is no trace file check for a core dump in the
    CORE_DUMP_DEST. Check as follows:
    % cd $ORACLE_HOME/dbs # Or your CORE_DUMP_DEST
    % ls -l core*
    If there is a file called core, check that its time matches
    the time of the problem. If there are directories called
    'core_<PID>' check for core files in each of these. It is
    IMPORTANT to get the correct core file. Now obtain a stack
    trace from this core file. Check each of the sequences below
    for the procedure. One of the following should work for your
    platform:
    If you have dbx:
    % script /tmp/core.stack
    % dbx $ORACLE_HOME/bin/oracle core
    (dbx) where
    (dbx) quit
    % exit
    If you have sdb:
    % script /tmp/core.stack
    % sdb $ORACLE_HOME/bin/oracle core
    * t
    * q
    % exit
    If you have xdb:
    % script /tmp/core.stack
    % xdb $ORACLE_HOME/bin/oracle core
    (xdb) t
    (xdb) q
    % exit
    If you have adb:
    % script /tmp/core.stack
    % adb $ORACLE_HOME/bin/oracle core
    $c
    $q
    % exit
    4) Try to isolate the SQL command that is executing when
    the error occurs. Eg: Is it a particular SQL statement
    or PL/SQL block that causes the error ?
    To help establish this turn on SQL_TRACE for the client
    tool.
    Eg: Product Action
    ~~~~~~~ ~~~~~~
    SQL*Forms Use the '-s' statistics option at run time.
    SQL*Plus Issue 'ALTER SESSION SET SQL_TRACE TRUE;'
    Pro* EXEC SQL ALTER SESSION SET SQL_TRACE TRUE;
    This should force a server side SQL trace file as detailed
    in #2 above. The trace file should give a clue as to what
    SQL was being executed.
    5) Try to obtain any SQL*Net trace to show what the latest
    operation sent to the oracle process was.
    For SQL*Net V2 ask for the article [NOTE:16564.1]
    For SQL*Net V1 check which SQL*Net protocol you are using
    and note the Debug environment variable from table C1 above.
    Then catch SQL*Net trace from the client. Eg: For SQL*Net
    TCP/IP and sqlplus:
    % setenv OSNTDBUG -1 # Use correct OSN*DBUG
    variable
    % sh
    % sqlplus scott/tiger@t:hostname:sid 2>/tmp/net1.out
    6) Based on information collected above try to determine a small
    test case which will reproduce the problem. This is important
    for two reasons:
    a) It gives Oracle support a small test case if the
    problem does not look like a known problem.
    b) It gives you a simple way to check if any patch
    supplied will fix the problem.
    7) It may be useful to follow the instructions in step (4) above.
    This will produce a lot of output but MAY be useful if no
    other information is available.

  • Not Able to Activate the Message Mapping in XI

    Hi All,
    I am facing error while activating a simple Message Mapping (Mapping which I have created using XI’s graphical mapping tool). What I understood from the error log is that, even though we are doing the graphical mapping, internally XI is creating a java mapping program. And while activation its basically compiling the graphical mapping (internally a java program) and while compilation this java program we are getting the error.
    we have XI 3 with SP17 version java 1.4.2_06 running
    i have copied the part of default.trace file which has the error
    #1.5#0011433286D800590000095B000023BC00041BABC8FCF82A#1156324532170#com.sap.engine.compilation#sap.com/com.sap.xi.repository#com.sap.engine.compilation.ExternalCompiler.compile()#RAKESHR#302#SAP J2EE Engine JTA Transaction : [657ffffffa42600cffffffac]#iscsapapp4w_NW2_106406950#RAKESHR#d9a3dc50328711dbbc700011433286d8#SAPEngine_Application_Thread[impl:3]_40##0#0#Error##Plain###Error while compiling :
    java.io.IOException: CreateProcess: null
    bin
    javac -J-Xmx256m @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/O1156324532061.txt @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/S1156324532124.txt error=2
         at java.lang.Win32Process.create(Native Method)
         at java.lang.Win32Process.<init>(Win32Process.java:66)
         at java.lang.Runtime.execInternal(Native Method)
         at java.lang.Runtime.exec(Runtime.java:566)
         at java.lang.Runtime.exec(Runtime.java:491)
         at java.lang.Runtime.exec(Runtime.java:457)
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:73)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.5#0011433286D800590000095D000023BC00041BABC8FDCA9D#1156324532217#XIREP.com.sap.aii.ib.server.mapping.exec.ServiceUtil#sap.com/com.sap.xi.repository#XIREP.com.sap.aii.ib.server.mapping.exec.ServiceUtil#RAKESHR#302#SAP J2EE Engine JTA Transaction : [657ffffffa42600cffffffac]#iscsapapp4w_NW2_106406950#RAKESHR#d9a3dc50328711dbbc700011433286d8#SAPEngine_Application_Thread[impl:3]_40##0#0#Error#1#/Applications/ExchangeInfrastructure/Repository#Plain###Compilation process error : CreateProcess: null
    bin
    javac -J-Xmx256m @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/O1156324532061.txt @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/S1156324532124.txt error=2
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : CreateProcess: null
    bin
    javac -J-Xmx256m @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/O1156324532061.txt @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/S1156324532124.txt error=2
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Root cause:
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : CreateProcess: null
    bin
    javac -J-Xmx256m @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/O1156324532061.txt @E:/usr/sap/NW2/DVEBMGS10/j2ee/cluster/server0/./temp/classpath_resolver/Mapec86e9c0328711dbb0ab0011433286d8/S1156324532124.txt error=2
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapS

    are you facing the problem for every mapping created ? Else try to delete the existing mapping and recreate the same.

  • Activation impossible in Integration Directory

    Hello,
    I've got a problem when i try to activate objects in Integration Directory :
    Activation of the change list canceled Check result for Communication Channel | BS_JDBC | CC_BILLETIQUE_ORACLE:  Attempt to access application REPOSITORY using Http Method Invocation (HMI) failed. Detailed information: Invoking ROA method "ReadObjects" via HMI ... FAILED due to following exception: Message: Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://xxsaps99:50400/rep/remoteobjectaccess/int?container=ejb" with user "PIDIRUSER". Response code is 401, response message is "Unauthorized" Stacktrace: com.sap.aii.utilxi.hmi.api.HmiCoreException: Connection to system REPOSITORY using application REPOSITORY lost. Detailed information: Error accessing "http://xxsaps99:50400/rep/remoteobjectaccess/int?container=ejb" with user "PIDIRUSER". Response code is 401, response message is "Unauthorized" at com.sap.aii.utilxi.hmi.api.HmiCoreException.newCommunicationError(HmiCoreException.java:83) at com.sap.aii.utilxi.hmi.api.HmiHttpClientImpl.sendRequestAndReceiveResponseViaHttp(HmiHttpClientImpl.java:181) at com.sap.aii.utilxi.hmi.api.HmiHttpClientImpl.sendRequestAndReceiveResponse(HmiHttpClientImpl.java:92) at com.sap.aii.utilxi.hmi.api.HmiClientAdapter.invokeMethod(HmiClientAdapter.java:88) at com.sap.aii.ib.core.roa.RoaServiceImpl.readObjectsImpl(RoaServiceImpl.java:198) at com.sap.aii.ib.core.roa.RoaServiceImpl.readObjects(RoaServiceImpl.java:329) at com.sap.aii.ib.server.cpa.AdapterMDCache.readObject(AdapterMDCache.java:219) at com.sap.aii.ib.server.cpa.AdapterMDCache.actualize(AdapterMDCache.java:209) at com.sap.aii.utilxi.misc.api.LRUMapBasedCache.get(LRUMapBasedCache.java:34) at com.sap.aii.ib.server.cpa.AdapterMDCache.get(AdapterMDCache.java:171) at com.sap.aii.utilxi.misc.api.Cache.get(Cache.java:40) at com.sap.aii.utilxi.misc.api.Cache.get(Cache.java:40) at com.sap.aii.ib.server.cpa.AdapterMetadataUtil.getMetadataParser(AdapterMetadataUtil.java:17) at com.sap.aii.ibdir.server.check.CPACheck.checkChannelXml(CPACheck.java:18) at com.sap.aii.ibdir.server.check.InternalCheckServiceChannel.checkObject(InternalCheckServiceChannel.java:83) at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98) at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205) at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767) at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217) at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132) at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124) at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92) at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435) at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343) at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:309) at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:194) at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    I tried some solutions that are in the sap forums, but none are helpful.
    What can I do?
    Thanks in advance for your answers.

    Lejeune,
    <i>
    Response code is 401</i> says that there is some problem in your userid or password. Please verify them whether they have changed or the user is locked in SU01.
    Also try to use any other service userid and password and check whether you have the same error or not?
    Regards,
    ---Satish

  • Problem Activating Mappings in the IR

    Hola Everyone!
    I'm having problems when trying to activate mappings in the Integration Repository.  Here's what I get:
    #4 13:57:14 ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.oa.rb_all.CHECK_EXCEPTION
    com.sap.aii.ib.core.clmgmt.ChangeListMgmtException: Internal error while checking object Message Mapping Budget_MM | http://banco.popular.com.pr/xi/hyperion (TST1_BANCO_POPULAR, 1.0 of banco.popular.com.pr); see details
         at com.sap.aii.ib.core.clmgmt.ChangeListMgmtException.createFromException(ChangeListMgmtException.java:35)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:227)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.oa.rb_all.CHECK_EXCEPTION (serialized)
    com.sap.aii.ib.core.oa.ObjectAccessException: Internal error while checking object Message Mapping Budget_MM | http://banco.popular.com.pr/xi/hyperion (TST1_BANCO_POPULAR, 1.0 of banco.popular.com.pr); see details
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2212)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.utilxi.misc.api.ResourceException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:132)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.utilxi.misc.api.ResourceException: Compilation process error :
    null/bin/javac: not found
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:132)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.core.mapping.exec.ExecuteException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:207)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.engine.compilation.CompilerProcessFailureException (serialized)
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : null/bin/javac: not found
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #3 13:43:42 FINE AutoLog.created.com.sap.aii.ib.core.service.TypeNotRegisteredException: com.sap.aii.ib.core.service.TypeNotRegisteredException: Type "TypeConntestObj" is not registered in the service class Type Service - Type Information
         at com.sap.aii.ib.core.service.ServiceBase.getServiceImpl(ServiceBase.java:71)
         at com.sap.aii.ib.bom.gen.TypeServiceImpl.getTypeInformation(TypeServiceImpl.java:82)
         at com.sap.aii.ib.gui.xiitem.services.InternalXiItemService.getTypeInfo(InternalXiItemService.java:23)
         at com.sap.aii.ib.gui.xiitem.services.InternalXiItemService.createEmptyXiItem(InternalXiItemService.java:92)
         at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.createEmptyXiItem(XiItemServiceProvider.java:97)
         at com.sap.aii.ib.gui.xiitem.InternalXiItemServiceForNameNamespaceObjects.addType(InternalXiItemServiceForNameNamespaceObjects.java:68)
         at com.sap.aii.ib.gui.xiitem.InternalXiItemServiceForNameNamespaceObjects.(InternalXiItemServiceForNameNamespaceObjects.java:55)
         at com.sap.aii.ib.gui.applcomp.StartupCodeEntry.guiStartup(StartupCodeEntry.java:151)
         at com.sap.aii.ib.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:108)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:93)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:383)
         at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:209)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$6.run(SplashLoginFrame.java:429)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    #2 13:43:42 DEBUG AutoLog.created.com.sap.aii.ib.core.service.TypeNotRegisteredException: Type "TypeConntestObj" is not registered in the service class Type Service - Type Information
    #1 13:43:42 FINE AutoLog.created.com.sap.aii.ib.core.service.TypeNotRegisteredException: com.sap.aii.ib.core.service.TypeNotRegisteredException: Type "versConflList" is not registered in the service class Type Service - Type Information
         at com.sap.aii.ib.core.service.ServiceBase.getServiceImpl(ServiceBase.java:71)
         at com.sap.aii.ib.bom.gen.TypeServiceImpl.getTypeInformation(TypeServiceImpl.java:82)
         at com.sap.aii.ib.gui.xiitem.services.InternalXiItemService.getTypeInfo(InternalXiItemService.java:23)
         at com.sap.aii.ib.gui.xiitem.services.InternalXiItemServiceBase.(CommonInternalXiItemService.java:326)
         at com.sap.aii.ib.gui.applcomp.StartupCodeEntry.guiStartup(StartupCodeEntry.java:147)
         at com.sap.aii.ib.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:108)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:93)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:383)
         at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:209)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$6.run(SplashLoginFrame.java:429)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    #0 13:43:42 DEBUG AutoLog.created.com.sap.aii.ib.core.service.TypeNotRegisteredException: Type "versConflList" is not registered in the service class Type Service - Type Information
    Because of the null/bin/javac: not found message I decided to check the JAVA_HOME and PATH variables, but I see that they are set OK.  We also tried restarting XI ( the old technique ) but that didn't help either :(.
    Can someone please help?
    Regards,
    Carlos López

    Hi Moorthy!
    Thanks a lot for your tips.  I created another dummy mapping and I couldnt even test it on the IR,  got the error:
    15:42:04 Start of test
    Compilation process error : null/bin/javac: not found
    15:42:04 End of test
    #7 15:42:04 ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException
    com.sap.aii.ib.core.mapping.exec.ExecuteException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:207)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:259)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:259)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.engine.compilation.CompilerProcessFailureException (serialized)
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : null/bin/javac: not found
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.execute(ServerMapService.java:153)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceBean.execute(MapServiceBean.java:52)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0.execute(MapServiceRemoteObjectImpl0.java:259)
         at com.sap.aii.ibrep.sbeans.mapping.MapServiceRemoteObjectImpl0p4_Skel.dispatch(MapServiceRemoteObjectImpl0p4_Skel.java:146)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #6 15:35:52 FINE AutoLog.created.com.sap.aii.utilxi.swing.framework.SilentCancellationException: com.sap.aii.utilxi.swing.framework.SilentCancellationException:
         at com.sap.aii.utilxi.swing.framework.cmd.SetDisplayModeCommand.execute(SetDisplayModeCommand.java:105)
         at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)
         at com.sap.aii.utilxi.swing.framework.cmd.ToggleDisplayEditCommand.execute(ToggleDisplayEditCommand.java:49)
         at com.sap.aii.utilxi.swing.framework.ExecutionContext.execute(ExecutionContext.java:196)
         at com.sap.aii.utilxi.swing.framework.ExecutionContext.executeSafe(ExecutionContext.java:134)
         at com.sap.aii.utilxi.swing.framework.CommandAction.actionPerformed(CommandAction.java:69)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.JToggleButton$ToggleButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    #5 15:35:52 DEBUG AutoLog.created.com.sap.aii.utilxi.swing.framework.SilentCancellationException:
    #4 13:57:14 ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.ib.server.oa.rb_all.CHECK_EXCEPTION
    com.sap.aii.ib.core.clmgmt.ChangeListMgmtException: Internal error while checking object Message Mapping Budget_MM | http://banco.popular.com.pr/xi/hyperion (TST1_BANCO_POPULAR, 1.0 of banco.popular.com.pr); see details
         at com.sap.aii.ib.core.clmgmt.ChangeListMgmtException.createFromException(ChangeListMgmtException.java:35)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:227)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Serialized server exceptions:
    MESSAGE ID: com.sap.aii.ib.server.oa.rb_all.CHECK_EXCEPTION (serialized)
    com.sap.aii.ib.core.oa.ObjectAccessException: Internal error while checking object Message Mapping Budget_MM | http://banco.popular.com.pr/xi/hyperion (TST1_BANCO_POPULAR, 1.0 of banco.popular.com.pr); see details
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2212)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.utilxi.misc.api.ResourceException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:132)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.utilxi.misc.api.ResourceException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:132)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.core.mapping.exec.ExecuteException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:207)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.aii.ib.server.cmpl.CompilerException (serialized)
    com.sap.aii.ib.server.cmpl.CompilerException: Compilation process error : null/bin/javac: not found
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:209)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    MESSAGE ID: com.sap.engine.compilation.CompilerProcessFailureException (serialized)
    com.sap.engine.compilation.CompilerProcessFailureException: Compilation process error : null/bin/javac: not found
         at com.sap.engine.compilation.ExternalCompiler.compile(ExternalCompiler.java:77)
         at com.sap.aii.ib.server.cmpl.Compiler.compile(Compiler.java:192)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compileSourceCode(ServiceUtil.java:203)
         at com.sap.aii.ib.server.mapping.exec.ServiceUtil.compile(ServiceUtil.java:156)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCode(ServerMapService.java:361)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileSourceCodeWithoutAndWithArchives(ServerMapService.java:301)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compileWithoutSave(ServerMapService.java:264)
         at com.sap.aii.ibrep.server.mapping.ServerMapService.compile(ServerMapService.java:222)
         at com.sap.aii.ibrep.server.check.mapping.XiMappingChecker.check(XiMappingChecker.java:113)
         at com.sap.aii.ibrep.server.mapping.xitrafo.XiTransformationChecker.check(XiTransformationChecker.java:114)
         at com.sap.aii.ibrep.server.check.mapping.InternalCheckServiceImplXiTransformation.checkObject(InternalCheckServiceImplXiTransformation.java:37)
         at com.sap.aii.ib.core.check.CheckServiceProvider$CheckServiceImpl.checkObject(CheckServiceProvider.java:98)
         at com.sap.aii.ib.server.oa.ServerObjectAccess.checkBeforeIntegrate(ServerObjectAccess.java:2205)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.releaseChangeList(ChangeListMgmtImpl.java:767)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmtImpl.submitChangeList(ChangeListMgmtImpl.java:217)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:132)
         at com.sap.aii.ib.server.clmgmt.ChangeListMgmt.submitChangeList(ChangeListMgmt.java:124)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtBean.submitChangeList(ChangeListMgmtBean.java:92)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10.submitChangeList(ChangeListMgmtRemoteObjectImpl10.java:435)
         at com.sap.aii.ib.sbeans.clmgmt.ChangeListMgmtRemoteObjectImpl10p4_Skel.dispatch(ChangeListMgmtRemoteObjectImpl10p4_Skel.java:343)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:304)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:193)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:122)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #3 13:43:42 FINE AutoLog.created.com.sap.aii.ib.core.service.TypeNotRegisteredException: com.sap.aii.ib.core.service.TypeNotRegisteredException: Type "TypeConntestObj" is not registered in the service class Type Service - Type Information
         at com.sap.aii.ib.core.service.ServiceBase.getServiceImpl(ServiceBase.java:71)
         at com.sap.aii.ib.bom.gen.TypeServiceImpl.getTypeInformation(TypeServiceImpl.java:82)
         at com.sap.aii.ib.gui.xiitem.services.InternalXiItemService.getTypeInfo(InternalXiItemService.java:23)
         at com.sap.aii.ib.gui.xiitem.services.InternalXiItemService.createEmptyXiItem(InternalXiItemService.java:92)
         at com.sap.aii.ib.gui.xiitem.services.XiItemServiceProvider.createEmptyXiItem(XiItemServiceProvider.java:97)
         at com.sap.aii.ib.gui.xiitem.InternalXiItemServiceForNameNamespaceObjects.addType(InternalXiItemServiceForNameNamespaceObjects.java:68)
         at com.sap.aii.ib.gui.xiitem.InternalXiItemServiceForNameNamespaceObjects.(InternalXiItemServiceForNameNamespaceObjects.java:55)
         at com.sap.aii.ib.gui.applcomp.StartupCodeEntry.guiStartup(StartupCodeEntry.java:151)
         at com.sap.aii.ib.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:108)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:93)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:383)
         at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:209)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$6.run(SplashLoginFrame.java:429)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    #2 13:43:42 DEBUG AutoLog.created.com.sap.aii.ib.core.service.TypeNotRegisteredException: Type "TypeConntestObj" is not registered in the service class Type Service - Type Information
    #1 13:43:42 FINE AutoLog.created.com.sap.aii.ib.core.service.TypeNotRegisteredException: com.sap.aii.ib.core.service.TypeNotRegisteredException: Type "versConflList" is not registered in the service class Type Service - Type Information
         at com.sap.aii.ib.core.service.ServiceBase.getServiceImpl(ServiceBase.java:71)
         at com.sap.aii.ib.bom.gen.TypeServiceImpl.getTypeInformation(TypeServiceImpl.java:82)
         at com.sap.aii.ib.gui.xiitem.services.InternalXiItemService.getTypeInfo(InternalXiItemService.java:23)
         at com.sap.aii.ib.gui.xiitem.services.InternalXiItemServiceBase.(CommonInternalXiItemService.java:326)
         at com.sap.aii.ib.gui.applcomp.StartupCodeEntry.guiStartup(StartupCodeEntry.java:147)
         at com.sap.aii.ib.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:108)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)
         at com.sap.aii.ibrep.gui.applcomp.StartupCodeEntry.startup(StartupCodeEntry.java:93)
         at com.sap.aii.ib.core.applcomp.IStartupCodeEntry.startupIfNotAlreadyDone(IStartupCodeEntry.java:33)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponentImpl.startup(ExplicitApplicationComponentImpl.java:116)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.startup(ExplicitApplicationComponents.java:383)
         at com.sap.aii.ib.core.applcomp.ApplicationComponent.startup(ApplicationComponent.java:209)
         at com.sap.aii.ib.gui.login.SplashLoginFrame$6.run(SplashLoginFrame.java:429)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    #0 13:43:42 DEBUG AutoLog.created.com.sap.aii.ib.core.service.TypeNotRegisteredException: Type "versConflList" is not registered in the service class Type Service - Type Information
    I changed just the description field in another mapping (that I know was working before) and tried to activate it and also got the javac error.  I guess that means I have some java file problems.  Do you have some tips about that?
    Thanks a lot for your time!
    Regards,
    Carlos López

  • Assigning transactions to a user

    Hi All,
    I want to assign 5 transactions to a user where, for 2 transactions the user should have a display option only and for the rest of the transaction he should have the full authorization.
    I know the basics of creating user (su01) and roles (pfcg ), which contain auth. objects followed by profile generation. But in this scenario how can I proceed.        Need your help.
    Regards
    Rajesh

    Of course it does depend on which transactions these 5 transactions are.
    Some tcodes are display only regardless of the access for a specific object checked by the 5 transactions.
    However I agree with the others: the transaction code is not that important (other than it's context for pulling in the authorizations required to actually use the 1 of 5 transactions into the role via SU24 or "case sensitive" for a program based on the transaction context (system field sy-tcode)). Many usefull transactions in SAP care about the authorization object' activity type field values and other application object fields, and most will let you switch to change mode from the display transaction if you have change access - regardless of the transaction (S_TCODE) but sometimes checking other TCD related field ID's.
    Reporting tcodes are often different though: these have the same core checks but other options and objects.
    Both transaction and reporting tcodes often have customizing dependencies as well, so you do not gave to use authorization objects always.
    Rather complicated actually... as are the menus of the transactions from a security perspective....
    Which 5 transaction codes were you specifically asking about?
    Cheers,
    Julius

  • Skip performing Sync Event (1) conversation id (null)

    <b>trying to modify a values and the row is deleted and new row inserted with the old values with different
    syncKey </b>
    [20070828 04:04:57:421] D [MI/Sync                  ] Initial buffer size of BinaryReader is 2628
    [20070828 04:04:57:421] P [MI/Sync                  ] Read current inbound counter from file: 198
    [20070828 04:04:57:421] P [MI/Sync                  ] Received sync counter 199 is valid
    [20070828 04:04:57:421] P [MI/Sync                  ] Inbound file ready to be parsed
    [20070828 04:04:57:421] P [MI/Sync                  ] Number of pending inbound containers before inbound processing = 0
    [20070828 04:04:57:421] P [MI/Sync                  ] Synchronisation: Start processing inbound data
    [20070828 04:04:57:421] P [MI/Sync                  ] Process acknowledge container: 0432D7EBBA0E354FA67F3E3A52359183
    [20070828 04:04:57:421] P [MI/Sync                  ] Process acknowledge container: 0FA80A7592A2EF4687A1EA17B8AF050B
    [20070828 04:04:57:421] P [MI/Sync                  ] Process acknowledge container: 33CD15C1C3D6DC48BAF7D27D860C6D5C
    [20070828 04:04:57:421] P [MI/Sync                  ] Process acknowledge container: 6453D6CF02E56B41938A2F0C43F32056
    [20070828 04:04:57:421] P [MI/Sync                  ] Process acknowledge container: 6B7FA5C705109A448AFDCF28E7A6D5FA
    [20070828 04:04:57:421] P [MI/Sync                  ] Process acknowledge container: FE11DF8B3A8D794F90A79F44AEFFAD2E
    [20070828 04:04:57:421] P [MI/Sync                  ] Process acknowledge container: A5A123B47C183F4ABE0A3AD0542F21DA
    [20070828 04:04:57:421] D [MI/Sync                  ] Write container header to file (container id = 0114aaa4bfcdecbe3d68): C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\c0000007.sync
    [20070828 04:04:57:437] P [MI/Sync                  ] Created outbound container for user (SHARED) and method AGENT_PARAMETERS
    [20070828 04:04:57:437] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20070828 04:04:57:437] P [MI/Sync                  ] Process acknowledge container: C5963B995D257E47987738EF2D2E8C94
    [20070828 04:04:57:437] D [MI/Sync                  ] Write container header to file (container id = 0114aaa4bfdd4ef9382a): C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\c0000008.sync
    [20070828 04:04:57:437] P [MI/Sync                  ] Created outbound container for user (SHARED) and method CLIENT_ALERT
    [20070828 04:04:57:437] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20070828 04:04:57:437] P [MI/Sync                  ] Process acknowledge container: D6C1A16786D74D4FA64ECF1333E3EBEA
    [20070828 04:04:57:437] D [MI/Sync                  ] GUID generation last time (1188273897437) was >= than current time (1188273897437) --> use this time instead 1188273897438
    [20070828 04:04:57:437] D [MI/Sync                  ] Write container header to file (container id = 0114aaa4bfde53bd1140): C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\c0000009.sync
    [20070828 04:04:57:453] P [MI/Sync                  ] Created outbound container for user (SHARED) and method MI_CONFIG_INFO
    [20070828 04:04:57:453] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20070828 04:04:57:453] I [MI/Sync                  ] -
    InboundContainer created: Type:R,Id:79C974AB56499845BB73C49F4DB0DB55,SId:-1,Items:0,MaxI:0
    [20070828 04:04:57:453] P [MI/Sync                  ] SyncInboundProcessing started for method MI_CONFIG_INFO
    [20070828 04:04:57:453] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:453] P [MI/Sync                  ] Process container: Type:R,Id:79C974AB56499845BB73C49F4DB0DB55,SId:-1,Items:0,MaxI:0
    [20070828 04:04:57:453] P [MI/CCMS                  ] Entering process() method of ConfigInfoCollectorInboundProcessor (it's an empty method)
    [20070828 04:04:57:453] P [MI/Sync                  ] Container processed without exceptions
    [20070828 04:04:57:453] P [MI/Core                  ] original context restored
    [20070828 04:04:57:453] P [MI/Sync                  ] SyncInboundProcessing finished successfully for method MI_CONFIG_INFO
    [20070828 04:04:57:453] D [MI/Sync                  ] Write container header to file (container id = 0114aaa4bfed7ef4d3b3): C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\a0000007.sync
    [20070828 04:04:57:453] P [MI/Sync                  ] Created outbound container for user (SHARED) and method MI_CONFIG_INFO
    [20070828 04:04:57:453] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20070828 04:04:57:453] I [MI/Sync                  ] -
    InboundContainer created: Type:R,Id:D1EFC9000E791543836B7E04B8B21265,SId:-1,Items:0,MaxI:2
    [20070828 04:04:57:453] P [MI/Sync                  ] SyncInboundProcessing started for method CLIENT_ALERT
    [20070828 04:04:57:453] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:453] P [MI/Sync                  ] Process container: Type:R,Id:D1EFC9000E791543836B7E04B8B21265,SId:-1,Items:0,MaxI:2
    [20070828 04:04:57:453] I [MI/Sync                  ] -
    InboundContainer created: Type:R,Id:D1EFC9000E791543836B7E04B8B21265,SId:-1,Items:0,MaxI:2
    [20070828 04:04:57:453] I [MI/CCMS                  ] AlertInboundProcessor: Result 1 = 
    [20070828 04:04:57:453] I [MI/CCMS                  ] AlertInboundProcessor: Result 2 = 
    [20070828 04:04:57:453] P [MI/Sync                  ] Container processed without exceptions
    [20070828 04:04:57:468] P [MI/Core                  ] original context restored
    [20070828 04:04:57:468] P [MI/Sync                  ] SyncInboundProcessing finished successfully for method CLIENT_ALERT
    [20070828 04:04:57:468] D [MI/Sync                  ] Write container header to file (container id = 0114aaa4bffc215d2026): C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\a0000008.sync
    [20070828 04:04:57:468] P [MI/Sync                  ] Created outbound container for user (SHARED) and method CLIENT_ALERT
    [20070828 04:04:57:468] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20070828 04:04:57:468] I [MI/Sync                  ] -
    InboundContainer created: Type:R,Id:FFC7B038B9DE7F4794B80F88080CABF2,SId:-1,Items:0,MaxI:1
    [20070828 04:04:57:468] P [MI/Sync                  ] SyncInboundProcessing started for method AGENT_PARAMETERS
    [20070828 04:04:57:468] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:468] P [MI/Sync                  ] Process container: Type:R,Id:FFC7B038B9DE7F4794B80F88080CABF2,SId:-1,Items:0,MaxI:1
    [20070828 04:04:57:468] I [MI/Sync                  ] -
    InboundContainer created: Type:R,Id:FFC7B038B9DE7F4794B80F88080CABF2,SId:-1,Items:0,MaxI:1
    [20070828 04:04:57:468] P [MI/Sync                  ] Container processed without exceptions
    [20070828 04:04:57:468] P [MI/Core                  ] original context restored
    [20070828 04:04:57:468] P [MI/Sync                  ] SyncInboundProcessing finished successfully for method AGENT_PARAMETERS
    [20070828 04:04:57:468] D [MI/Sync                  ] GUID generation last time (1188273897468) was >= than current time (1188273897468) --> use this time instead 1188273897469
    [20070828 04:04:57:468] D [MI/Sync                  ] Write container header to file (container id = 0114aaa4bffd90b2c071): C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\a0000009.sync
    [20070828 04:04:57:468] P [MI/Sync                  ] Created outbound container for user (SHARED) and method AGENT_PARAMETERS
    [20070828 04:04:57:468] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20070828 04:04:57:468] D [MI/Sync                  ] Processed 3 not arranged, 0 arranged, 9 acknowledge containers and 0 sub containers
    [20070828 04:04:57:468] P [MI/Core                  ] original context restored
    [20070828 04:04:57:468] P [MI/Sync                  ] Number of pending inbound containers after inbound processing = 0
    [20070828 04:04:57:468] P [MI/Sync                  ] Synchronisation: Processing of inbound data finished
    [20070828 04:04:57:468] D [MI/Sync                  ] There are no more packages waiting
    [20070828 04:04:57:468] D [MI/Sync                  ] resetting the info which outbound containers are already created for user (SHARED)
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] P [MI/Sync                  ] Synchronization finished for user (SHARED)
    [20070828 04:04:57:484] P [MI/Sync                  ] Repetitive sync is turned off
    [20070828 04:04:57:484] D [MI/Sync                  ] Synchronisation: Fire SyncEvent 2
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.smartsync.core.SyncAdapter on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to C82BA947E50BD949BF9645087F868AEB / C82BA947E50BD949BF9645087F868AEB (User: (SHARED), MSD: Name:  / ZAM_04 (V. 04), Target=, Type=com.sap.ip.me.core.JspApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.smartsync.core.SyncAdapter on ConversationId C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:484] D [MI/Smartsync             ] Smart Sync framework: entering new context :C82BA947E50BD949BF9645087F868AEB - C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:484] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:484] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 2987443
    [20070828 04:04:57:484] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:484] D [MI/Persistence           ] commit() called on instance 2987443
    [20070828 04:04:57:484] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:484] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:484] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 12539221
    [20070828 04:04:57:484] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:484] D [MI/Persistence           ] commit() called on instance 12539221
    [20070828 04:04:57:484] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] D [MI/Smartsync             ] Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429
    [20070828 04:04:57:484] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: MI2853484152454429
    [20070828 04:04:57:484] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 24856323
    [20070828 04:04:57:484] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:484] D [MI/Persistence           ] commit() called on instance 24856323
    [20070828 04:04:57:484] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:484] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: MI2853484152454429
    [20070828 04:04:57:484] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 7549020
    [20070828 04:04:57:484] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:484] D [MI/Persistence           ] commit() called on instance 7549020
    [20070828 04:04:57:484] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI4d4f42494c454353 / 5EAEA7BCE7E08147B19AFEBEEE250467 (User: MOBILECS, MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.mi.systemnews.SyncListener on ConversationId MI4d4f42494c454353
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.remotetracing.RemoteTracingListener on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI4d4f42494c454353 / 5EAEA7BCE7E08147B19AFEBEEE250467 (User: MOBILECS, MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.core.StatusUpdater on ConversationId MI4d4f42494c454353
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.configinfo.ConfigInfoListener on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] D [MI/Sync                  ] Synchronisation: Fire SyncEvent 1
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:484] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429
    [20070828 04:04:57:484] P [MI/Core                  ] original context restored
    [20070828 04:04:57:484] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:500] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.smartsync.core.SyncAdapter on ConversationId MI2853484152454429
    [20070828 04:04:57:500] D [MI/Smartsync             ] Smart Sync received SyncEvent of type 1 for ConvId MI2853484152454429
    [20070828 04:04:57:500] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: MI2853484152454429
    [20070828 04:04:57:500] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 7084674
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:500] D [MI/Smartsync             ] Performing Smart Sync sync done activities for Context com.sap.ip.me.smartsync.core.Context: [ sepereatedConvId=MI2853484152454429, sharedConvId=MI2853484152454429, isSmartSyncRelavant=true, isApplicationErrResolve=false sharedDataVisible=true]
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =0)
    [20070828 04:04:57:500] D [MI/Persistence           ] new ObjectTable():(IClassDescriptor(Name: syncBoResponse)(Attributes:(IAttributeDescriptor(Name: syncBoKey)(Type: BigInteger)(Length: 10)(Decimals: 0))(IAttributeDescriptor(Name: syncBoDescriptorName)(Type: String)(Length: 10)(Decimals: 0))(IAttributeDescriptor(Name: respType)(Type: Byte)(Length: 1)(Decimals: 0))(IAttributeDescriptor(Name: respState)(Type: Byte)(Length: 1)(Decimals: 0))(IAttributeDescriptor(Name: messageClass)(Type: String)(Length: 20)(Decimals: 0))(IAttributeDescriptor(Name: messageNumber)(Type: Integer)(Length: 3)(Decimals: 0))(IAttributeDescriptor(Name: messageText)(Type: String)(Length: 220)(Decimals: 0)))(Key attribute:(IAttributeDescriptor(Name: syncBoKey))))
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =2)
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =1)
    [20070828 04:04:57:500] D [MI/Smartsync             ] Sending Message Reply "SYNC_END" to to observer com.sap.ip.me.security.permission.AuthBoObserver@10f41e9
    [20070828 04:04:57:500] D [MI/Core                  ] Check if AuthSyncBo is already deployed
    [20070828 04:04:57:500] D [MI/Core                  ] AuthSyncBo is deployed
    [20070828 04:04:57:500] D [MI/Core                  ] Create AuthSyncBo instance
    [20070828 04:04:57:500] D [MI/Smartsync             ] SyncProcessing for cMIAUTH_TOP was set to DIRECT_REQUEST
    [20070828 04:04:57:500] D [MI/Persistence           ] commit() called on instance 7084674
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:500] P [MI/Core                  ] original context restored
    [20070828 04:04:57:500] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:500] P [MI/Core                  ] Thread Thread-25 switched context to C82BA947E50BD949BF9645087F868AEB / C82BA947E50BD949BF9645087F868AEB (User: (SHARED), MSD: Name:  / ZAM_04 (V. 04), Target=, Type=com.sap.ip.me.core.JspApplicationType) (stack level 1)
    [20070828 04:04:57:500] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.smartsync.core.SyncAdapter on ConversationId C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:500] D [MI/Smartsync             ] Smart Sync framework: entering new context :C82BA947E50BD949BF9645087F868AEB - C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:500] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:500] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 21006994
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:500] D [MI/Persistence           ] commit() called on instance 21006994
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:500] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:500] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 4814818
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:500] D [MI/Persistence           ] commit() called on instance 4814818
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:500] D [MI/Smartsync             ] Smart Sync received SyncEvent of type 1 for ConvId C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:500] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: C82BA947E50BD949BF9645087F868AEB
    [20070828 04:04:57:500] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 22917439
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:500] D [MI/Smartsync             ] Performing Smart Sync sync done activities for Context com.sap.ip.me.smartsync.core.Context: [ sepereatedConvId=C82BA947E50BD949BF9645087F868AEB, sharedConvId=C82BA947E50BD949BF9645087F868AEB, isSmartSyncRelavant=true, isApplicationErrResolve=false sharedDataVisible=true]
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =0)
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =2)
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.get(IClassDescriptor,Object):(IClassDescriptor(Name: sZAM_04_TOP)),1302317
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.delete():(IClassDescriptor(Name: cZAM_04_TOP)),1302317
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.deleteMultiple():(IClassDescriptor(Name: cZAM_04_010)),(syncBoKey =1302317)
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.get(IClassDescriptor,Object):(IClassDescriptor(Name: sZAM_04_TOP)),1302317
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.update():(IPersistenceContainer(Key: 1302317 / ClassDescriptor: syncBoResponse)(Attributes: (1302317)(ZAM_04)(2)(3)(MEREP_01)(102)(Conflict: R/3 = delete, device = modify))
    [20070828 04:04:57:500] D [MI/Smartsync             ] ErrorConflictFrameworkResolver: Framework resolved SyncBoResponse SyncBoResponseImpl [descriptor=cZAM_04_TOP, key=1302317 type=CONFLICT] with server wins strategy.
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.delete():(IClassDescriptor(Name: syncBoResponse)),1302317
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =1)
    [20070828 04:04:57:500] D [MI/Persistence           ] commit() called on instance 22917439
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:500] P [MI/Core                  ] original context restored
    [20070828 04:04:57:500] D [MI/Smartsync             ] Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429
    [20070828 04:04:57:500] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: MI2853484152454429
    [20070828 04:04:57:500] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 2081190
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:500] D [MI/Persistence           ] commit() called on instance 2081190
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:500] D [MI/Persistence           ] Get IPersistenceManager for ConversationID: MI2853484152454429
    [20070828 04:04:57:500] D [MI/Persistence           ] beginTransaction() called with doWait=false for instance 14850080
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.beginTransaction():false
    [20070828 04:04:57:500] D [MI/Persistence           ] commit() called on instance 14850080
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.commit()
    [20070828 04:04:57:500] P [MI/Core                  ] Thread Thread-25 switched context to MI4d4f42494c454353 / 5EAEA7BCE7E08147B19AFEBEEE250467 (User: MOBILECS, MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:500] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.mi.systemnews.SyncListener on ConversationId MI4d4f42494c454353
    [20070828 04:04:57:500] P [MI/Core                  ] original context restored
    [20070828 04:04:57:500] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:500] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429
    [20070828 04:04:57:515] P [MI/Core                  ] original context restored
    [20070828 04:04:57:515] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:515] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.remotetracing.RemoteTracingListener on ConversationId MI2853484152454429
    [20070828 04:04:57:515] P [MI/Core                  ] original context restored
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:515] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429
    [20070828 04:04:57:515] P [MI/Core                  ] original context restored
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] P [MI/Core                  ] Thread Thread-25 switched context to MI4d4f42494c454353 / 5EAEA7BCE7E08147B19AFEBEEE250467 (User: MOBILECS, MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:515] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.core.StatusUpdater on ConversationId MI4d4f42494c454353
    [20070828 04:04:57:515] P [MI/Core                  ] original context restored
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:515] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.configinfo.ConfigInfoListener on ConversationId MI2853484152454429
    [20070828 04:04:57:515] P [MI/Core                  ] original context restored
    [20070828 04:04:57:515] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:515] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429
    [20070828 04:04:57:515] P [MI/Core                  ] original context restored
    [20070828 04:04:57:515] P [MI/Core                  ] Thread Thread-25 switched context to MI2853484152454429 / 7C7B98EA1DB62A49A1115AB68AF1CA2C (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20070828 04:04:57:515] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429
    [20070828 04:04:57:515] P [MI/Core                  ] original context restored
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.smartsync.core.SyncAdapter for conversation id (null)
    [20070828 04:04:57:515] I [MI/Sync                  ] Synchronization finished, Thread=Thread-25
    <b>trying to modify a values and the row is deleted and new row inserted with the old values with different
    syncKey </b>
    <b>
    [20070828 04:04:57:500] D [MI/Persistence           ] PersistenceManagerImpl.update():(IPersistenceContainer(Key: 1302317 / ClassDescriptor: syncBoResponse)(Attributes: (1302317)(ZAM_04)(2)(3)(MEREP_01)(102)(Conflict: R/3 = delete, device = modify))
    [20070828 04:04:57:500] D [MI/Smartsync             ] ErrorConflictFrameworkResolver: Framework resolved SyncBoResponse SyncBoResponseImpl [descriptor=cZAM_04_TOP, key=1302317 type=CONFLICT] with server wins strategy.
    </b>

    2) what i trying to say is when i create a bapi using standard function
    merep_contact_getlist,merep_contact_getdetail,merep_contact_modify
    when  i try to modify a record, it will changed successfully, and the synckey still remain the same. (not changed to a new one)
    when my situation is when i create my own bapi and try to sync, my modified record get deleted and 1 new record with different syncKey is download with old value.
    this is the printscreen and function
    i want to clarify here is
    GetList: ZBAPI_AM_LIST_V1
    GetDetail: ZBAPI_AM_DETAILS_V1
    Modify : ZEMI_AM_P2P
    ZEMI_AM_P2P will call ZBAPI_AM_P2P
    In ZBAPI_AM_P2P ,it will call transaction as02
    if you see the function ZEMI_AM_P2P
    it will call insert zztable to insert system date and time
    to test if the function get called.
    but i found out the function is not invoke.
    anyone pls checkout this printscreen in doc format
    http://www.savefile.com/files/1005882
    msg from raam
    Change Bapi Wrapper

  • Got Error when migrate repository from obiee10g to obiee 11g

    Hi all,
    i'm testing to migrate repository from obiee10g to obiee 11g , when i done the migration repository and check gobal consistency . It show an error below
    of repository's 11g , but when i check repository's 10g .It doesn' throw any error .Any suggestion ?
    ERRORS:
    BUSINESS MODEL PTTCH Core:
    [nQSError: 15037] Table, PTTCH - Dim - Value Center, has multiple key level associations: Detail and [].
    [nQSError: 15001] Could not load navigation space for subject area PTTCH Core.

    Check this thread:
    Re: nQSerror 15037
    Adil

  • Setup.CAB cannot be created

    Mobile Guru's
    We are creating setup packages for our MI 7.0 (SP13) and the issue is that I am not able to create the Setup.CAB File.
    When I try creating the Setup.Zip file for the PC Version I am able to create it successfully.
    I am installing this on a 64 bit server and have tried installing a 32 bit Jsdk to create SPC
    The CrEme I am using is 3.27B and MAM 3.0 SR4 with DB2E 8.2.4
    Please help...
    Cheers
    Arun Nair

    Hi Shivkumar,
    Thank you for your reply and sorry for not being specific...
    What I meant is..
    I am trying to create a setup package on a 64 bit server and the JDK version that I am using on this server is a 32 bit one.
    As requested I am pasting the trace file as requested..
    [20080905 00:56:06:453] P [MI/Sync                  ] SyncInboundProcessing finished successfully for method AGENT_PARAMETERS
    [20080905 00:56:06:453] D [MI/Sync                  ] Write container header to file (container id = 011c30024235cd8d25dd): E:\MISP\424361584136245\MI\sync\(SHARED)\out\a0000005.sync
    [20080905 00:56:06:453] P [MI/Sync                  ] Created outbound container for user (SHARED) and method AGENT_PARAMETERS
    [20080905 00:56:06:453] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20080905 00:56:06:453] W [MI/SyncMonitor           ] Cannot parse server processing finished timestamp 0
    java.text.ParseException: Unparseable date: "0"
         at java.text.DateFormat.parse(DateFormat.java:335)
         at com.sap.ip.me.sync.SyncMonitor.setServerSendingTime(SyncMonitor.java:160)
         at com.sap.ip.me.sync.in.BinaryInboundReader.readAndUpdateSyncMonitor(BinaryInboundReader.java:457)
         at com.sap.ip.me.sync.SyncManagerMerger.processInboundContainers(SyncManagerMerger.java:187)
         at com.sap.ip.me.sync.SyncManagerImpl.processSyncCycle(SyncManagerImpl.java:835)
         at com.sap.ip.me.sync.SyncManagerImpl.syncForUser(SyncManagerImpl.java:1277)
         at com.sap.ip.me.sync.SyncManagerImpl.processSynchronization(SyncManagerImpl.java:944)
         at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:463)
         at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:318)
         at com.sap.ip.me.api.sync.SyncManager.synchronizeWithBackend(SyncManager.java:79)
         at com.sap.ip.me.itool.InstStepSyncForApplications._execute(InstStepSyncForApplications.java:207)
         at com.sap.ip.me.itool.InstStepSyncForApplications.execute(InstStepSyncForApplications.java:106)
         at com.sap.ip.me.itool.InstallationSession.run(InstallationSession.java:54)
         at com.sap.ip.me.core.FrameworkInitializer.initializeFramework(FrameworkInitializer.java:410)
         at com.sap.ip.me.core.FrameworkInitializer.main(FrameworkInitializer.java:125)
         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.ip.me.core.Startup.main(Startup.java:327)
    [20080905 00:56:06:453] D [MI/SyncMonitor           ] Received new sync guid: DD7AE56AF59D21F19E55005056942CE1
    [20080905 00:56:06:453] D [MI/SyncMonitor           ] Successfully deleted old sync monitor data file
    [20080905 00:56:06:453] D [MI/SyncMonitor           ] Save sync monitor data in file
    [20080905 00:56:06:453] D [MI/Sync                  ] Processed 5 not arranged, 0 arranged, 5 acknowledge containers and 0 sub containers
    [20080905 00:56:06:453] P [MI/Core                  ] original context restored
    [20080905 00:56:06:453] P [MI/Sync                  ] Number of pending inbound containers after inbound processing = 0
    [20080905 00:56:06:453] P [MI/Sync                  ] Synchronisation: Processing of inbound data finished
    [20080905 00:56:06:453] D [MI/Sync                  ] There are no more packages waiting
    [20080905 00:56:06:453] D [MI/SyncMonitor           ] Finished sync cycle at 20080905005606 (1220576166109); inbound processing time was 0 s; sync cycle time was 0 s
    [20080905 00:56:06:453] D [MI/SyncMonitor           ] Successfully deleted old sync monitor data file
    [20080905 00:56:06:453] D [MI/SyncMonitor           ] Save sync monitor data in file
    [20080905 00:56:06:453] D [MI/Sync                  ] resetting the info which outbound containers are already created for user (SHARED)
    [20080905 00:56:06:468] P [MI/Core                  ] original context restored
    [20080905 00:56:06:468] P [MI/Sync                  ] Synchronization finished for user (SHARED)
    [20080905 00:56:06:468] P [MI/Sync                  ] Repetitive sync is turned on
    [20080905 00:56:06:468] P [MI/Sync                  ] Repetitive sync is truned on and proper values for repetitions and sleeping time are configured
    [20080905 00:56:06:468] P [MI/Sync                  ] Starting repetitive sync
    [20080905 00:56:06:468] P [MI/Sync                  ] Maximum number of repetitive syncs not yet reached 0 < 3
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete MI52383633353736)
    [20080905 00:56:06:468] P [MI/Sync                  ] isSyncFinishedForUser: Arun Nair : MOBILEENGINE_JSP : true
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete MI52383633353736)
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete DD7AE563CE834EF19E55005056942CE1)
    [20080905 00:56:06:468] P [MI/Sync                  ] isSyncFinishedForUser: Arun Nair : ZQR_MCD_MAM3SR4_PDA : true
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete DD7AE563CE834EF19E55005056942CE1)
    [20080905 00:56:06:468] P [MI/Sync                  ] Sync is finished for user Arun Nair
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete MI2853484152454429)
    [20080905 00:56:06:468] P [MI/Sync                  ] isSyncFinishedForUser: (SHARED) USER : MOBILEENGINE_JSP : true
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete MI2853484152454429)
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete DD7AE563CE8355F19E55005056942CE1)
    [20080905 00:56:06:468] P [MI/Sync                  ] isSyncFinishedForUser: (SHARED) USER : ZQR_MCD_MAM3SR4_PDA : true
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete DD7AE563CE8355F19E55005056942CE1)
    [20080905 00:56:06:468] P [MI/Sync                  ] Sync is finished for user (SHARED) USER
    [20080905 00:56:06:468] P [MI/Sync                  ] There are no more users to sync for, therefore stopping repetitive sync
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete MI52383633353736)
    [20080905 00:56:06:468] P [MI/Sync                  ] The data is complete for user Arun Nair and application Framework
    [20080905 00:56:06:468] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:468] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:468] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@28ab54eb for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:468] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@28ab54eb using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:468] D [MI/Core                  ] Conversation id is complete DD7AE563CE834EF19E55005056942CE1)
    [20080905 00:56:06:468] P [MI/Sync                  ] The data is complete for user Arun Nair and application MAM 3.0 for PDA
    [20080905 00:56:06:468] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:468] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:468] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@8542529 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:515] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@8542529 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:515] D [MI/Sync                  ] Synchronisation: Fire SyncEvent 2
    [20080905 00:56:06:515] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:515] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:531] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@4c53ab04 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:531] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@4c53ab04 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.remotetracing.RemoteTracingListener on ConversationId MI2853484152454429
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI52383633353736 / DD7AE563CE834FF19E55005056942CE1 (User: R863576, MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.mi.systemnews.SyncListener on ConversationId MI52383633353736
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.StartupAgent on ConversationId MI2853484152454429
    [20080905 00:56:06:531] I [MI/Services/Os           ] actionPerformed of Startup is called :
    [20080905 00:56:06:531] I [MI/Services/Os           ] Force Restart is set to: false
    [20080905 00:56:06:531] I [MI/Services/Os           ] A new Startup Properties file will be written :
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] I [MI/API/Sync              ] Skip performing Sync Event (2) com.sap.ip.me.core.StatusUpdater for conversation id (null)
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.configinfo.ConfigInfoListener on ConversationId MI2853484152454429
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:531] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.ScriptManager on ConversationId MI2853484152454429
    [20080905 00:56:06:531] P [MI/Core                  ] original context restored
    [20080905 00:56:06:531] D [MI/Sync                  ] Synchronisation: Fire SyncEvent 1
    [20080905 00:56:06:531] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:531] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:531] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@900bac2 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:562] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@900bac2 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:562] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:562] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.remotetracing.RemoteTracingListener on ConversationId MI2853484152454429
    [20080905 00:56:06:562] P [MI/Core                  ] original context restored
    [20080905 00:56:06:562] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:562] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] P [MI/Core                  ] Thread main switched context to MI52383633353736 / DD7AE563CE834FF19E55005056942CE1 (User: R863576, MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:578] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.mi.systemnews.SyncListener on ConversationId MI52383633353736
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:578] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.StartupAgent on ConversationId MI2853484152454429
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] I [MI/API/Sync              ] Skip performing Sync Event (1) com.sap.ip.me.core.StatusUpdater for conversation id (null)
    [20080905 00:56:06:578] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:578] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:578] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:578] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:578] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:578] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.configinfo.ConfigInfoListener on ConversationId MI2853484152454429
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:578] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.ScriptManager on ConversationId MI2853484152454429
    [20080905 00:56:06:578] P [MI/Core                  ] original context restored
    [20080905 00:56:06:578] I [MI/Sync                  ] Synchronization finished, Thread=main
    [20080905 00:56:06:578] D [MI                       ] Logging out user R863576
    [20080905 00:56:06:578] P [MI/Core                  ] Set current user to null
    [20080905 00:56:06:578] D [MI                       ] Logging on user R863576 for installation image.
    [20080905 00:56:06:578] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:578] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:578] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@6c69d02b for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:578] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@6c69d02b using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:593] P [MI/Core                  ] Set current user to R863576
    [20080905 00:56:06:609] D [MI/API/Sync              ] SyncEventListener com.sap.ip.me.core.StatusUpdater@6f0ffb38 was registered for key com.sap.ip.me.core.StatusUpdater/MI52383633353736
    [20080905 00:56:06:609] D [MI/Core                  ] Check if AuthSyncBo is already deployed
    [20080905 00:56:06:609] D [MI/Core                  ] AuthSyncBo is deployed
    [20080905 00:56:06:609] D [MI/Core                  ] Create AuthSyncBo instance
    [20080905 00:56:06:625] W [AppLog/MI/Security       ] Error while creating MIAUTH sync bo (no SyncBoDescriptor for MIAUTH available); contact SAP support
    [20080905 00:56:06:625] W [AppLog/MI/Security       ] Cannot start authority query for user because SyncBoDescriptor for MIAUTH is not available
    [20080905 00:56:06:625] D [MI/Smartsync             ] Application has registred MessageReplyObserver for type SYNC_END: com.sap.ip.me.security.permission.AuthBoObserver@50269997
    [20080905 00:56:06:625] D [MI                       ] Setting sync password for user R863576
    [20080905 00:56:06:625] D [MI                       ] Starting synchronisation for installation image.
    [20080905 00:56:06:625] P [MI/Sync                  ] Notify R3 called
    [20080905 00:56:06:625] D [MI/Sync                  ] Successfully added container for method WAF_REGISTRY and user R863576 to the outbound queue
    [20080905 00:56:06:625] D [MI/Sync                  ] Opened temporary container file E:\MISP\424361584136245\MI\sync\R863576\out\t0000002.sync for write (container id = 011c300242e113c8af16)
    [20080905 00:56:06:625] E [AppLog/MI/Deployment     ] Exception while calling native profiler
    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.sapmarkets.web.liTS.util.reg.WafRegistry.addNativeDeviceProfilerInformationToContainer(WafRegistry.java:169)
         at com.sapmarkets.web.liTS.util.reg.WafRegistry.notifyR3(WafRegistry.java:149)
         at com.sap.ip.me.itool.InstStepSyncForApplications._execute(InstStepSyncForApplications.java:206)
         at com.sap.ip.me.itool.InstStepSyncForApplications.execute(InstStepSyncForApplications.java:106)
         at com.sap.ip.me.itool.InstallationSession.run(InstallationSession.java:54)
         at com.sap.ip.me.core.FrameworkInitializer.initializeFramework(FrameworkInitializer.java:410)
         at com.sap.ip.me.core.FrameworkInitializer.main(FrameworkInitializer.java:125)
         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.ip.me.core.Startup.main(Startup.java:327)
    Caused by: java.lang.UnsatisfiedLinkError: getOS
         at com.sap.ip.me.services.device.DeviceProfile.getOS(Native Method)
         ... 16 more
    [20080905 00:56:06:625] D [MI/Sync                  ] Write container header to file (container id = 011c300242e113c8af16): E:\MISP\424361584136245\MI\sync\R863576\out\z0000002.sync
    [20080905 00:56:06:640] D [MI/Sync                  ] Closed container file (container id = 011c300242e113c8af16) and rename container file to E:\MISP\424361584136245\MI\sync\R863576\out\i0000002.sync
    [20080905 00:56:06:640] P [MI/Sync                  ] Created outbound container for user R863576 and method WAF_REGISTRY
    [20080905 00:56:06:640] P [MI/Sync                  ] Created outbound container for conversationId MI52383633353736 / DD7AE563CE834FF19E55005056942CE1 (User: R863576, MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20080905 00:56:06:640] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:640] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:656] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@162db19d for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:656] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@162db19d using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:656] I [MI/Sync                  ] Synchronize with backend called, Thread=main
    [20080905 00:56:06:656] I [MI/Sync                  ] Thread=main took lock for synchronization.
    [20080905 00:56:06:656] P [MI/Sync                  ] Use following gateway for synchronization: http://SAPMMICI:8034
    [20080905 00:56:06:656] D [MI/SyncMonitor           ] New synchronization process has been started
    [20080905 00:56:06:656] D [MI/Sync                  ] Synchronisation: Fire SyncEvent 0
    [20080905 00:56:06:656] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:656] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:656] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@11e7c5cb for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:656] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@11e7c5cb using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:656] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:656] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.remotetracing.RemoteTracingListener on ConversationId MI2853484152454429
    [20080905 00:56:06:656] P [MI/CCMS                  ] Remote Tracing: Sync started, Creating Outbound Container with Device ID
    [20080905 00:56:06:672] P [MI/CCMS                  ] Entering registerItself() method of RemoteTracingInboundProcessor
    [20080905 00:56:06:672] D [MI/Sync                  ] Register inbound processor com.sap.ip.me.ccms.remotetracing.RemoteTracingInboundProcessor for method MI_SET_CLIENTTRACE
    [20080905 00:56:06:687] D [MI/Sync                  ] Opened temporary container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\t0000006.sync for write (container id = 011c3002431fa3973d19)
    [20080905 00:56:06:687] D [MI/Sync                  ] Write container header to file (container id = 011c3002431fa3973d19): E:\MISP\424361584136245\MI\sync\(SHARED)\out\z0000006.sync
    [20080905 00:56:06:687] D [MI/Sync                  ] Closed container file (container id = 011c3002431fa3973d19) and rename container file to E:\MISP\424361584136245\MI\sync\(SHARED)\out\i0000006.sync
    [20080905 00:56:06:703] P [MI/Sync                  ] Created outbound container for user (SHARED) and method MI_SET_CLIENTTRACE
    [20080905 00:56:06:703] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20080905 00:56:06:703] P [MI/Core                  ] original context restored
    [20080905 00:56:06:703] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:703] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429
    [20080905 00:56:06:703] P [MI/Core                  ] original context restored
    [20080905 00:56:06:703] P [MI/Core                  ] Thread main switched context to MI52383633353736 / DD7AE563CE834FF19E55005056942CE1 (User: R863576, MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:703] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.mi.systemnews.SyncListener on ConversationId MI52383633353736
    [20080905 00:56:06:703] D [MI/Sync                  ] Opened temporary container file E:\MISP\424361584136245\MI\sync\R863576\out\t0000003.sync for write (container id = 011c3002432fc0c6ab6f)
    [20080905 00:56:06:703] D [MI/Sync                  ] Write container header to file (container id = 011c3002432fc0c6ab6f): E:\MISP\424361584136245\MI\sync\R863576\out\z0000003.sync
    [20080905 00:56:06:703] D [MI/Sync                  ] Closed container file (container id = 011c3002432fc0c6ab6f) and rename container file to E:\MISP\424361584136245\MI\sync\R863576\out\i0000003.sync
    [20080905 00:56:06:703] P [MI/Sync                  ] Created outbound container for user R863576 and method SYSTEMNEWS
    [20080905 00:56:06:718] P [MI/Sync                  ] Created outbound container for conversationId MI52383633353736 / DD7AE563CE834FF19E55005056942CE1 (User: R863576, MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20080905 00:56:06:718] P [MI/Core                  ] original context restored
    [20080905 00:56:06:718] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:718] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.StartupAgent on ConversationId MI2853484152454429
    [20080905 00:56:06:718] P [MI/Core                  ] original context restored
    [20080905 00:56:06:718] I [MI/API/Sync              ] Skip performing Sync Event (0) com.sap.ip.me.core.StatusUpdater for conversation id (null)
    [20080905 00:56:06:718] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:718] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429
    [20080905 00:56:06:718] P [MI/Core                  ] original context restored
    [20080905 00:56:06:718] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:718] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429
    [20080905 00:56:06:718] D [MI/Sync                  ] Register inbound processor com.sap.ip.me.sync.LogSenderInboundProcessor for method CENTRAL_TRACING
    [20080905 00:56:06:734] D [MI/Sync                  ] Opened temporary container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\t0000007.sync for write (container id = 011c3002434e31914742)
    [20080905 00:56:06:734] D [MI/Sync                  ] Write container header to file (container id = 011c3002434e31914742): E:\MISP\424361584136245\MI\sync\(SHARED)\out\z0000007.sync
    [20080905 00:56:06:797] D [MI/Sync                  ] Closed container file (container id = 011c3002434e31914742) and rename container file to E:\MISP\424361584136245\MI\sync\(SHARED)\out\i0000007.sync
    [20080905 00:56:06:797] P [MI/Sync                  ] Created outbound container for user (SHARED) and method CENTRAL_TRACING
    [20080905 00:56:06:797] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20080905 00:56:06:812] I [AppLog/MI/Sync           ] AppLog severity: Warning (60)
    [20080905 00:56:06:812] P [MI/Core                  ] original context restored
    [20080905 00:56:06:812] P [MI/Core                  ] Thread main switched context to MI52383633353736 / DD7AE563CE834FF19E55005056942CE1 (User: R863576, MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:812] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.core.StatusUpdater on ConversationId MI52383633353736
    [20080905 00:56:06:812] P [MI/Core                  ] original context restored
    [20080905 00:56:06:812] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:812] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429
    [20080905 00:56:06:812] D [MI/Sync                  ] Opened temporary container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\t0000008.sync for write (container id = 011c3002439c9d35c055)
    [20080905 00:56:06:812] D [MI/Sync                  ] Write container header to file (container id = 011c3002439c9d35c055): E:\MISP\424361584136245\MI\sync\(SHARED)\out\z0000008.sync
    [20080905 00:56:06:812] D [MI/Sync                  ] Closed container file (container id = 011c3002439c9d35c055) and rename container file to E:\MISP\424361584136245\MI\sync\(SHARED)\out\i0000008.sync
    [20080905 00:56:06:812] P [MI/Sync                  ] Created outbound container for user (SHARED) and method AGENT_PARAMETERS
    [20080905 00:56:06:812] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20080905 00:56:06:812] P [MI/Core                  ] original context restored
    [20080905 00:56:06:812] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:812] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429
    [20080905 00:56:06:812] P [MI/Core                  ] original context restored
    [20080905 00:56:06:812] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:812] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.ccms.configinfo.ConfigInfoListener on ConversationId MI2853484152454429
    [20080905 00:56:06:812] P [MI/CCMS                  ] Config Info: SYNC_STARTED Event received, creating Checker Container...
    [20080905 00:56:06:812] P [MI/CCMS                  ] Entering registerItself() method of ConfigInfoCheckerInboundProcessor
    [20080905 00:56:06:812] D [MI/Sync                  ] Register inbound processor com.sap.ip.me.ccms.configinfo.ConfigInfoCheckerInboundProcessor for method MI_CONFIG_INFO_CHECKER
    [20080905 00:56:06:859] D [MI/Sync                  ] Opened temporary container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\t0000009.sync for write (container id = 011c300243cbc10eaacf)
    [20080905 00:56:06:859] D [MI/Sync                  ] Write container header to file (container id = 011c300243cbc10eaacf): E:\MISP\424361584136245\MI\sync\(SHARED)\out\z0000009.sync
    [20080905 00:56:06:875] D [MI/Sync                  ] Closed container file (container id = 011c300243cbc10eaacf) and rename container file to E:\MISP\424361584136245\MI\sync\(SHARED)\out\i0000009.sync
    [20080905 00:56:06:875] P [MI/Sync                  ] Created outbound container for user (SHARED) and method MI_CONFIG_INFO_CHECKER
    [20080905 00:56:06:875] P [MI/Sync                  ] Created outbound container for conversationId MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)
    [20080905 00:56:06:875] P [MI/CCMS                  ] Config Info: ...Finished!
    [20080905 00:56:06:875] P [MI/Core                  ] original context restored
    [20080905 00:56:06:875] P [MI/Core                  ] Thread main switched context to MI2853484152454429 / DD7AE563CE8350F19E55005056942CE1 (User: (SHARED), MSD: Name:  / MOBILEENGINE_JSP (V. 70130), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)
    [20080905 00:56:06:875] I [MI/API/Sync              ] SyncEvent Performing com.sap.ip.me.services.os.ScriptManager on ConversationId MI2853484152454429
    [20080905 00:56:06:875] P [MI/Core                  ] original context restored
    [20080905 00:56:06:875] P [MI/Sync                  ] Start updating data completeness flag for user all sync relevant users
    [20080905 00:56:06:875] P [MI/Sync                  ] Update data completeness flag for user R863576
    [20080905 00:56:06:890] P [MI/Sync                  ] Update data completeness flag for user (SHARED)
    [20080905 00:56:06:890] P [MI/Sync                  ] Finished updating data completeness flag for user all sync relevant users
    [20080905 00:56:06:890] P [MI/Sync                  ] Repetitive sync is turned on
    [20080905 00:56:06:890] P [MI/Sync                  ] Repetitive sync is truned on and proper values for repetitions and sleeping time are configured
    [20080905 00:56:06:890] P [MI/Sync                  ] Synchronization started for user (SHARED)
    [20080905 00:56:06:890] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:890] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:890] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@366782a9 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:890] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@366782a9 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:890] D [MI/SyncMonitor           ] Load persisted sync monitor data from file
    [20080905 00:56:06:890] D [MI/SyncMonitor           ] Sucessfully read persisted sync monitor data (ct5=-2147483648, ct6=0, ct7=0, sync guid=DD7AE56AF59D21F19E55005056942CE1)
    [20080905 00:56:06:890] D [MI/SyncMonitor           ] Start sync cycle at 20080905005606 (1220576166890)
    [20080905 00:56:06:890] D [MI/Sync                  ] PackageManager: create package with maximum 2147483647 items
    [20080905 00:56:06:890] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:890] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:890] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@45b34126 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:890] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@45b34126 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:890] A [MI/Sync                  ] Deletion of outbound container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\c0000001.sync was successful
    [20080905 00:56:06:890] A [MI/Sync                  ] Deletion of outbound container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\c0000002.sync was successful
    [20080905 00:56:06:906] A [MI/Sync                  ] Deletion of outbound container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\c0000003.sync was successful
    [20080905 00:56:06:906] A [MI/Sync                  ] Deletion of outbound container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\c0000004.sync was successful
    [20080905 00:56:06:906] A [MI/Sync                  ] Deletion of outbound container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\c0000005.sync was successful
    [20080905 00:56:06:906] D [MI/Sync                  ] PackageManager: filled package with 5 acknowledge received container(s)
    [20080905 00:56:06:906] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:906] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:906] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@7b7a4989 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:906] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@7b7a4989 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:906] D [MI/Sync                  ] PackageManager: filled package with 5 acknowledge container(s)
    [20080905 00:56:06:906] D [MI/API/Services          ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_AU, (null))
    [20080905 00:56:06:906] D [MI/API/Services          ] MEResourceBundle:Constructor: Use classloader sun.misc.Launcher$AppClassLoader@ae80a59
    [20080905 00:56:06:922] D [MI/API/Services          ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@224c47db for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en
    [20080905 00:56:06:922] D [MI/API/Services          ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@224c47db using bundle name: com/sap/ip/me/awtapps/home/mobile_engine
    [20080905 00:56:06:922] D [MI/Sync                  ] Opened container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\i0000006.sync for read (container id = 011c3002431fa3973d19)
    [20080905 00:56:06:922] D [MI/Sync                  ] Closed container file (container id = 011c3002431fa3973d19)
    [20080905 00:56:06:937] D [MI/Sync                  ] Opened container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\i0000007.sync for read (container id = 011c3002434e31914742)
    [20080905 00:56:06:937] D [MI/Sync                  ] Closed container file (container id = 011c3002434e31914742)
    [20080905 00:56:06:937] D [MI/Sync                  ] Opened container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\i0000008.sync for read (container id = 011c3002439c9d35c055)
    [20080905 00:56:06:937] D [MI/Sync                  ] Closed container file (container id = 011c3002439c9d35c055)
    [20080905 00:56:06:937] D [MI/Sync                  ] Opened container file E:\MISP\424361584136245\MI\sync\(SHARED)\out\i0000009.sync for read (container id = 011c300243cbc10eaacf)
    [20080905 00:56:06:937] D [MI/Sync                  ] Closed container file (container id = 011c300243cbc10eaacf)
    [20080905 00:56:06:937] D [MI/Sync                  ] PackageManager: filled package with 34 container items or headers
    [20080905 00:56:06:937] D [MI/Sync                  ] GUID generation last time (1220576166937) was >= than current time (1220576166937) --> use this time instead 1220576166938
    [20080905 00:56:06:937] D [MI/Sync                  ] GUID generation last time (1220576166938) was >= than current time (1220576166937) --> use this time instead 1220576166939
    [20080905 00:56:06:937] D [MI/Sync                  ] GUID generation last time (1220576166939) was >= than current time (1220576166937) --> use this time instead 1220576166940
    [20080905 00:56:06:937] D [MI/Sync                  ] GUID generation last time (1220576166940) was >= than current time (1220576166937) --> use this time instead 1220576166941
    [20080905 00:56:06:937] D [MI/Sync                  ] PackageManager: filled package with 5 notify container(s)
    [20080905 00:56:06:937] D [MI/SyncMonitor           ] Finished outbound preparation at 20080905005606 (1220576166937)
    [20080905 00:56:06:937] D [MI/Sync                  ] Package file E:\MISP\424361584136245\MI\sync\(SHARED)\out\package.out exists and can be read
    [20080905 00:56:06:937] P [MI/Sync                  ] Synchronisation started
    [20080905 00:56:06:937] D [MI/Sync                  ] Begin: Dumping file E:\MISP\424361584136245\MI\sync\(SHARED)\out\package.out
    <ID>MISYNC</ID><FLAGS>0x1</FLAGS><VERSION>701300</VERSION>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c300241d780a40861</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>C</CONTAINER_TYPE>
        <METHOD>WAF_INSTALLATION_LOG</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D24F19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>7</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c300241e761b3db1d</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>C</CONTAINER_TYPE>
        <METHOD>WAF_INSTALLATION_LOG</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D26F19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>81</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c300241e85419c1c0</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>C</CONTAINER_TYPE>
        <METHOD>WAF_INSTALLATION_LOG</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D28F19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>8</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c300241e9d150f071</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>C</CONTAINER_TYPE>
        <METHOD>CLIENT_ALERT</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D2AF19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>1</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c300241ea49899c5a</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>C</CONTAINER_TYPE>
        <METHOD>AGENT_PARAMETERS</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D2DF19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>3</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c300241ebbff942d1</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>A</CONTAINER_TYPE>
        <METHOD>WAF_INSTALLATION_LOG</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D23F19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>0</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c300241ec3e8b0721</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>A</CONTAINER_TYPE>
        <METHOD>WAF_INSTALLATION_LOG</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D25F19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>0</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c30024206573c48f6</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>A</CONTAINER_TYPE>
        <METHOD>WAF_INSTALLATION_LOG</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D27F19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>0</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c30024216c8b26b84</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>A</CONTAINER_TYPE>
        <METHOD>CLIENT_ALERT</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D29F19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>
        <SERVER_ID>NEW_PROTOCOL</SERVER_ID>
        <BODY_TYPE></BODY_TYPE>
        <BODY_LENGTH>0</BODY_LENGTH>
        <SUB_CONTAINER_ID>0</SUB_CONTAINER_ID>
        <SUB_CONT_MAX>1</SUB_CONT_MAX>
        <ITEM_FROM>-1</ITEM_FROM>
        <ITEM_TO>-1</ITEM_TO>
      </HEADER>
    </CONTAINER>
    <CONTAINER>
      <HEADER>
        <CONTAINER_ID>011c30024235cd8d25dd</CONTAINER_ID>
        <OWNER></OWNER>
        <CONTAINER_TYPE>A</CONTAINER_TYPE>
        <METHOD>AGENT_PARAMETERS</METHOD>
        <CONVERSATION_ID>DD7AE563CE8350F19E55005056942CE1</CONVERSATION_ID>
        <PARENT_CONTAINER_ID>DD7AE56AF59D2CF19E55005056942CE1</PARENT_CONTAINER_ID>
        <MESSAGE_INDEX>-1</MESSAGE_INDEX>
        <MESSAGE_TYPE> </MESSAGE_TYPE>

  • "HTTP 404" error when trying to Run Mobile Application

    I am getting "HTTP 404" File not found, when i click MTR Application installed on MI Client using Setup package.

    Oliver ,
                    I did all the steps you told about un installing and reinstalling , but no luck.
    Trace File has
    [20081112 21:01:40:114] I [MI/API/Logging ] ***** LOG / TRACE SWITCHED ON 
    [20081112 21:01:40:114] I [MI/API/Logging ] ***** Mobile Infrastructure Version: MI 25 SP 21 Patch 01 Build 200809011414 
    [20081112 21:01:40:114] I [MI/API/Logging ] ***** Current Timezone: Europe/Berlin 
    [20081112 21:01:40:114] I [MI/API/Logging ] ***** Current Trace Level: 1000 
    [20081112 21:01:40:114] I [MI ] Trace severity: All (1000) 
    [20081112 21:01:40:146] D [MI/PIOS ] No implementations found. Error Code:(3) 
    [20081112 21:01:40:146] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/trace/trace.jsp' 
    [20081112 21:01:42:239] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20081112 21:01:42:239] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20081112 21:01:42:239] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = 'tracechangeTraceLevel' 
    [20081112 21:01:42:239] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/trace/trace.jsp' 
    [20081112 21:01:44:348] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20081112 21:01:44:348] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20081112 21:01:44:348] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    [20081112 21:01:44:348] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/home/home.jsp' 
    [20081112 21:01:46:317] D [MI/Core ] Deactivated application MOBILEENGINE_JSP 
    [20081112 21:01:46:317] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20081112 21:01:46:317] P [MI/Core ] Activate application MOBILEENGINE_JSP 
    [20081112 21:01:46:317] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20081112 21:01:46:317] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = 'logout' 
    [20081112 21:01:46:317] P [MI/Core ] Set current user to null 
    [20081112 21:01:54:050] D [MI/API/Sync ] SyncEventListener com.sap.ip.me.core.StatusUpdater@15d252d was registered for key com.sap.ip.me.core.StatusUpdater/MI4a4f53484953 
    [20081112 21:01:54:050] D [MI/Core ] Check if AuthSyncBo is already deployed 
    [20081112 21:01:54:050] D [MI/Core ] AuthSyncBo is deployed 
    [20081112 21:01:54:050] D [MI/Core ] Create AuthSyncBo instance 
    [20081112 21:01:54:050] D [MI/Smartsync ] SyncProcessing for cMIAUTH_TOP was set to DIRECT_REQUEST 
    [20081112 21:01:54:050] D [MI/Persistence ] Get IPersistenceManager for ConversationID: MI2853484152454429 
    [20081112 21:01:54:050] D [MI/Persistence ] beginTransaction() called with doWait=false for instance 3387681 
    [20081112 21:01:54:050] D [MI/Persistence ] PersistenceManagerImpl.beginTransaction():false 
    [20081112 21:01:54:050] D [MI/Persistence ] PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: cMIAUTH_010)))(Condition: ((MEUSER =JOSHIS) AND(state <16)))(Order: ((IAttributeDescriptor(Name: MEUSER)) asc))(Start index: 0)(Max results: -1) 
    [20081112 21:01:54:050] D [MI/Persistence ] commit() called on instance 3387681 
    [20081112 21:01:54:050] D [MI/Persistence ] PersistenceManagerImpl.commit() 
    [20081112 21:01:54:050] D [MI/Smartsync ] Application has registred MessageReplyObserver for type SYNC_END: com.sap.ip.me.security.permission.AuthBoObserver@1b22920 
    [20081112 21:01:54:050] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/home/home.jsp' 
    [20081112 21:01:55:816] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20081112 21:01:55:816] P [MI/Core ] Activate application MOBILEENGINE_JSP 
    [20081112 21:01:55:816] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20081112 21:01:55:816] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    [20081112 21:01:55:816] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to 'http://localhost:4444/MTR/start' 
    [20081112 21:02:00:206] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20081112 21:02:00:206] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20081112 21:02:00:206] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = ''

  • Extraction from logistics and different ecc tables

    Hi
    I want to get the data from 2lis_11_vahdr and 2lis_11_vaitm and also from tables of too1,tvakt,vbkd,knvI,VBKD,KONP.So
    Please let me know how many datasources I have to create and on what basis I have to make join...or how we can make relations. or is there any alternative to do.
    How to club the tables
    How to get the data from all these to dso and infocube. 
    Thanks  
    Sajith 

    Hi,
    Have you received your technical specs?
    if yes then please read them and find the required data sources.
    Number of data sources is not the main important. But we need to get all fields into bw side(targets) as per your needs.
    First find the existing data sources based on your tables - too1,tvakt,vbkd,knvI,VBKD,KONP.
    After that cors check what fields you want as per needs and later do the test at RSA3 for standard or cusotm data sources.
    Late implement bw data flow at bw side.
    T001 - is company code table. so you can use comp code master data sources to  load data into bw side.
    TVAK - its sales doc type table. so you can explore LO Data sources which name starts with 2LIS_11*
    About tables and relations - please check with ABAP TEeam or functional team. You my get more help about them.
    Thanks

  • Pls help me installing app exxpress 3.1.1 -windows vista

    Hi
    I am new in using app exp.I was trying to install 3.1.1 in windows vista platform.I have got oracle 11g installed. after log on as sys dba i tried to run apexins.sql according to the installation guide. after running this file the sql plus window terminates and exites automatically. so i cannot go to the next stages of installation or even cannot see wht happened as it closed itself?
    anyone pls help me to identify the problems and give me solutions.
    I have changed the size of shared pool as well and started only ORCL service according to the instruction.
    thank you

    HI dear john
    Thanks for your reply. Here is sqlplus code i hav used:
    c:\> sqlplus /nolog
    SQL> connect sys as sysdba
    password: *********
    Connected
    SQL> @C:\apex\apexins.sql
    Session altered.
    . / \ | \ /\ / | /
    .| || / / \ | | |
    .| ||--- ---- | | |--
    .| || \ / \ | | |
    . \____/ | \/ \ \____ |____ \____
    . Application Express Installation.
    ... Checking prerequisites
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    ... Prerequisite check complete. Result passed.
    FOO3
    install2008-07-16_00-12-03.log
    SP2-0606: Cannot create SPOOL file "install2008-07-16_00-12-03.log"
    F
    2
    Enter value for 1:tablespace_apex
    Enter value for 1:tablespace_files
    Enter value for 1:tablespace_temp
    Enter value for 1:tablespace_images
    After entering above values it runs a lot of statements and then exit from sqlplus tp command prompt....as the screen didnt hold the whole of the statement it executed i have found the followings statements on the screen n entering the above values..........
    SP2-0310: unable to open file "core/provision.sql"
    SP2-0310: unable to open file "core/flowjob.sql"
    SP2-0310: unable to open file "core/wwv_flow_item.sql"
    SP2-0310: unable to open file "core/platform.sql"
    SP2-0310: unable to open file "core/tree.sql"
    SP2-0310: unable to open file "core/tree3.sql"
    SP2-0310: unable to open file "core/wizapi.sql"
    SP2-0310: unable to open file "core/flow_isc.sql"
    SP2-0310: unable to open file "core/home.sql"
    SP2-0310: unable to open file "core/imgapi.sql"
    SP2-0310: unable to open file "core/imgapi_public.sql"
    SP2-0310: unable to open file "core/cssapi.sql"
    SP2-0310: unable to open file "core/cssapi_public.sql"
    SP2-0310: unable to open file "core/htmlapi.sql"
    SP2-0310: unable to open file "core/htmlapi_public.sql"
    SP2-0310: unable to open file "core/wwv_flow_fnd_user_api.sql"
    SP2-0310: unable to open file "core/flows_version.sql"
    SP2-0310: unable to open file "core/flows_release.sql"
    SP2-0310: unable to open file "core/wwv_flow_upgrade_report.sql"
    SP2-0310: unable to open file "core/collection.sql"
    SP2-0310: unable to open file "core/z.sql"
    SP2-0310: unable to open file "core/custom_auth_api.sql"
    SP2-0310: unable to open file "core/custom_auth_std.sql"
    SP2-0310: unable to open file "core/sw_api.sql"
    SP2-0310: unable to open file "core/ihelp.sql"
    SP2-0310: unable to open file "core/wwv_flow_admin_api.sql"
    SP2-0310: unable to open file "core/flowcon.sql"
    SP2-0310: unable to open file "core/wwv_flow_svg.sql"
    SP2-0310: unable to open file "core/sw_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_hint.sql"
    SP2-0310: unable to open file "core/wwv_flow_regexp.sql"
    SP2-0310: unable to open file "core/wwv_flow_series_attr.sql"
    SP2-0310: unable to open file "core/edit_report.sql"
    SP2-0310: unable to open file "core/query_api.sql"
    SP2-0310: unable to open file "core/imp_parser.sql"
    SP2-0310: unable to open file "core/wwv_flow_login.sql"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/view.sql"
    SP2-0310: unable to open file "core/wwv_flow_developer_toolbar.sql"
    SP2-0310: unable to open file "core/htmldb_util.sql"
    SP2-0310: unable to open file "core/htmldb_custom_auth.sql"
    SP2-0310: unable to open file "core/htmldb_lang.sql"
    SP2-0310: unable to open file "core/wwv_flow_form_control.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_globals.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_1.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_2.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_3.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_4.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_5.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_6.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_7.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_8.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_9.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_10.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_12.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_11.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_13.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_14.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_15.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_16.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_17.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_18.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_19.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_20.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_manager.sql"
    SP2-0310: unable to open file "core/htmldb_site_admin_privs.sql"
    SP2-0310: unable to open file "core/wwv_flow_ppr_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_script.sql"
    SP2-0310: unable to open file "core/wwv_flow_list.sql"
    SP2-0310: unable to open file "core/wwv_flow_sc_transactions.sql"
    SP2-0310: unable to open file "core/wwv_flow_install_wizard.sql"
    SP2-0310: unable to open file "core/wwv_flow_print_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart2.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_instance_admin.sql"
    SP2-0310: unable to open file "core/wwv_flow_create_app_from_query.sql"
    SP2-0310: unable to open file "core/ldap.sql"
    SP2-0310: unable to open file "core/custom_auth_ldap.sql"
    ...installing files dependend upon 9iR2
    ...if errors are encountered, ignore if not 9iR2
    SP2-0310: unable to open file "core/wwv_flow_web_services.sql"
    SP2-0310: unable to open file "core/processu.sql"
    timing for: Package Specs
    Elapsed: 00:00:00.18
    IV. I N S T A L L F L O W P A C K A G E B O D I E S
    SP2-0310: unable to open file "core/wwv_dbms_sql_noroles.plb"
    wwv_flow_upgrade.FLOWS_FILES_OBJECTS_REMOVE('FLOWS_030100');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.FLOWS_FILES_OBJECTS_REMOVE' must be
    declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.FLOWS_FILES_OBJECTS_CREATE('FLOWS_030100');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.FLOWS_FILES_OBJECTS_CREATE' must be
    declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    SP2-0310: unable to open file "core/meta_cleanup.plb"
    wwv_flow_upgrade.SWITCH_SCHEMAS('FLOWS_030100','FLOWS_030100');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.SWITCH_SCHEMAS' must be declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    SP2-0310: unable to open file "core/wwv_flow_sw_parser.sql"
    SP2-0310: unable to open file "core/calendar.plb"
    SP2-0310: unable to open file "core/chart.plb"
    SP2-0310: unable to open file "core/reports3.plb"
    SP2-0310: unable to open file "core/wwv_flow_page_cache_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_render_query.plb"
    SP2-0310: unable to open file "core/api.plb"
    SP2-0310: unable to open file "core/gen_api_pkg.plb"
    SP2-0310: unable to open file "core/wwv_htf.plb"
    SP2-0310: unable to open file "core/wwv_htp.plb"
    SP2-0310: unable to open file "core/flow_log.plb"
    SP2-0310: unable to open file "core/flow_dml.plb"
    SP2-0310: unable to open file "core/flowu.plb"
    PL/SQL procedure successfully completed.
    SP2-0310: unable to open file "core/wwv_dbms_sql.plb"
    SP2-0310: unable to open file "core/wwv_flow_rpt_std_msg.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_expr.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_standard.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_ui.plb"
    SP2-0310: unable to open file "core/wwv_flow_ajax.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_attachment.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_stickies.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_dialogue.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_form.plb"
    SP2-0310: unable to open file "core/wwv_flow_worksheet_ajax.plb"
    SP2-0310: unable to open file "core/wwv_flow_calendar_ajax.plb"
    SP2-0310: unable to open file "core/apexws.plb"
    SP2-0310: unable to open file "core/audit.plb"
    SP2-0310: unable to open file "core/audit_trigger.sql"
    SP2-0310: unable to open file "core/flowc.plb"
    SP2-0310: unable to open file "core/flowp.plb"
    SP2-0310: unable to open file "core/meta.plb"
    SP2-0310: unable to open file "core/flow.plb"
    SP2-0310: unable to open file "core/flowl.plb"
    SP2-0310: unable to open file "core/template.plb"
    SP2-0310: unable to open file "core/plug.plb"
    SP2-0310: unable to open file "core/customize.plb"
    SP2-0310: unable to open file "core/sw_util.plb"
    SP2-0310: unable to open file "core/generic.plb"
    SP2-0310: unable to open file "core/auth.plb"
    SP2-0310: unable to open file "core/wwv_flow_element.plb"
    SP2-0310: unable to open file "core/form.plb"
    SP2-0310: unable to open file "core/check.plb"
    SP2-0310: unable to open file "core/spell.plb"
    SP2-0310: unable to open file "core/wwv_calculator.plb"
    SP2-0310: unable to open file "core/wwv_flow_builder.plb"
    SP2-0310: unable to open file "core/shortcut.plb"
    SP2-0310: unable to open file "core/wwv_flow_fnd_developer_api.plb"
    ...install demonstration flow specs
    SP2-0310: unable to open file "core/wwv_flow_sample_app.sql"
    ...install demonstration flow bodies
    SP2-0310: unable to open file "core/wwv_flow_sample_app.plb"
    SP2-0310: unable to open file "core/temp_table_init.plb"
    SP2-0310: unable to open file "core/wwv_flow_mail.plb"
    SP2-0310: unable to open file "core/file_mgr.plb"
    SP2-0310: unable to open file "core/prov.plb"
    SP2-0310: unable to open file "core/provision.plb"
    SP2-0310: unable to open file "core/flowjob.plb"
    SP2-0310: unable to open file "core/plsqljob.plb"
    SP2-0310: unable to open file "core/tree.plb"
    SP2-0310: unable to open file "core/tree3.plb"
    SP2-0310: unable to open file "core/wizapi.plb"
    SP2-0310: unable to open file "core/fileapi.plb"
    SP2-0310: unable to open file "core/imgapi.plb"
    SP2-0310: unable to open file "core/imgapi_public.plb"
    SP2-0310: unable to open file "core/cssapi.plb"
    SP2-0310: unable to open file "core/cssapi_public.plb"
    SP2-0310: unable to open file "core/htmlapi.plb"
    SP2-0310: unable to open file "core/htmlapi_public.plb"
    SP2-0310: unable to open file "core/wwv_flow_fnd_user_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_user_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_upgrade_report.plb"
    SP2-0310: unable to open file "core/collection.plb"
    SP2-0310: unable to open file "core/wwv_flow_item.plb"
    SP2-0310: unable to open file "core/custom_auth_api.plb"
    SP2-0310: unable to open file "core/custom_auth_std.plb"
    SP2-0310: unable to open file "core/sw_api.plb"
    SP2-0310: unable to open file "core/ihelp.plb"
    SP2-0310: unable to open file "core/wwv_flow_admin_api.plb"
    SP2-0310: unable to open file "core/flowcon.plb"
    SP2-0310: unable to open file "core/wwv_flow_svg.plb"
    SP2-0310: unable to open file "core/popup.plb"
    SP2-0310: unable to open file "core/wwv_flow_calendar3.plb"
    SP2-0310: unable to open file "core/wwv_flow_hint.plb"
    SP2-0310: unable to open file "core/wwv_flow_series_attr.plb"
    SP2-0310: unable to open file "core/edit_report.plb"
    SP2-0310: unable to open file "core/query_api.plb"
    SP2-0310: unable to open file "core/imp_parser.plb"
    SP2-0310: unable to open file "core/wwv_flow_developer_toolbar.plb"
    SP2-0310: unable to open file "core/flow_isc.plb"
    SP2-0310: unable to open file "core/wwv_flow_web_services.plb"
    SP2-0310: unable to open file "core/htmldb_util.plb"
    SP2-0310: unable to open file "core/htmldb_item.plb"
    SP2-0310: unable to open file "core/htmldb_custom_auth.plb"
    SP2-0310: unable to open file "core/htmldb_lang.plb"
    SP2-0310: unable to open file "core/wwv_flow_form_control.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_1.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_2.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_3.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_4.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_5.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_6.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_7.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_8.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_9.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_10.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_11.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_12.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_13.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_14.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_15.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_16.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_17.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_18.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_19.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_20.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_manager.plb"
    SP2-0310: unable to open file "core/htmldb_site_admin_privs.plb"
    SP2-0310: unable to open file "core/wwv_flow_login.plb"
    SP2-0310: unable to open file "core/wwv_flow_ppr_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_script.plb"
    SP2-0310: unable to open file "core/wwv_flow_list.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_parser.plb"
    SP2-0310: unable to open file "core/wwv_flow_sc_transactions.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_upgrade.plb"
    SP2-0310: unable to open file "core/wwv_flow_install_wizard.plb"
    SP2-0310: unable to open file "core/wwv_flow_print_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart.plb"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart2.plb"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_instance_admin.plb"
    SP2-0310: unable to open file "core/wwv_flow_create_app_from_query.plb"
    SP2-0310: unable to open file "core/wwv_flow_epg_include.plb"
    SP2-0310: unable to open file "core/ldap.plb"
    SP2-0310: unable to open file "core/custom_auth_ldap.plb"
    SP2-0310: unable to open file "core/processu.plb"
    SP2-0310: unable to open file "core/migrate_metadata.plb"
    ...page Builder
    SP2-0310: unable to open file "core/p.sql"
    SP2-0310: unable to open file "core/wwv_flow_regexp.plb"
    SP2-0310: unable to open file "core/apex_views.sql"
    timing for: Package Bodies
    Elapsed: 00:00:00.21
    V. P E R F O R M F L O W G R A N T S
    Grant succeeded.
    Installing flows_files objects 2
    ERROR:
    ORA-01435: user does not exist
    SP2-0310: unable to open file "core/null1.sql"
    Session altered.
    timing for: Grants
    Elapsed: 00:00:00.03
    VI. I N S T A L L F L O W S
    define "^" (hex 5e)
    ...internal messages
    SP2-0310: unable to open file "builder/f4411.sql"
    SP2-0310: unable to open file "builder/f4155.sql"
    ...Initialize SMTP server settings
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Pr
    oduction
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    C:\>
    thanks

Maybe you are looking for

  • Trying to install Boot Camp on MacBook Pro (late 2011) os x Lion

    Hey everyone, I've been trying to install Boot Camp for my MacBook but when I get up to installing the Windows support software it just stops at around 20% and won't go any further. I've tried restarting the whole thing a few times but it still won't

  • Threading with connection pool

    Hi My application is an interface to ldap directory. I have not used any ldap open source api to retrieve data from ldap. I have written connection pool that will help the application to connect to the ldap. It's working fine, but it's creating threa

  • Help - Simple mask not working in Flash CS4

    Hi everyone, Thanks for taking a minute to read my post. I am creating a very simple mask using motion tweening. I created some text on a layer and made it a masked layer. Then I created a mask layer which consists of a circle that will span across t

  • Packaging a captive runtime bundle for desktop computers

    This question was posted in response to the following article: http://help.adobe.com/en_US/air/build/WSfffb011ac560372f709e16db131e43659b9-8000.html

  • Airplay from computer to iPad?

    So I guess I didn't understand Airplay correctly. I thought it was going to be more of a two-way street. Can I not play video from my computer onto my iPad? I was really looking forward to this because I thought we were going to be able to stream vid