UNWANTED LOGS REMOVING

Hi All
      We have a SAP - 4.7 . Now the problem is our E drive full , there was no space inside the E drive . So we are not able to take backup . Kindly give me suggestion to remove unwanted logs inside the E drive to make free space .
Regards
Selvan

you will have a good idea if you follow http://help.sap.com/saphelp_nw70/helpdata/en/24/b884388b81ea55e10000009b38f842/frameset.htm
cheers,
-Sunil

Similar Messages

  • DB analyzer logs remove

    In our live cache server DB analyzer logs are not deleting from 2008 & we need to keep only last 30 days logs. I have used automatic remove option for "Bottlenecks" logs.
    LC10 >Problem Analysis>Performance>DB analyzer>Bottlenecks & than "Administration of performance data" from "go to "
    & for Expert Analysis logs
    LC10 >Problem Analysis>Performance>DB analyzer>Expert Analysis >EDIT>Administration of performance data
    I have given 30 days for LC host  & 4 weeks for DB
    Its work from "Bottlenecks" logs but not for "Expert Analysis" logs. So there is any other option to delete Expert Analysis logs.

    Hello,
    Please review the SAP Notes No. 530394, No. 1389225 and No. 945757.
    -> What is the SAP Basis SP on your system?
        What is the version of the liveCache on your system?
    -> Did you create the SAP message on this issue?
    Thank you & best regards, Natalia Khlopina

  • Data Guard archive log remove

    Hi,
    I am using 9i Data Guard now. I try to set up automatic procedure to remove the archive log on the standby site once it got applied. But except the manual remove/delete, there is no option to set the automatic procedure in Oracle Data Guard setting.
    Do anyone has solution for it?
    Thanks

    user3076922 wrote:
    Hi
    Standby database configured with broker and applying the redo in really time; however, I want to change this to archive log apply mode without losing the broker configuration. Is it possible? If it is not possible to use broker to do archive log apply, can I remove the broker and use data guard to set up the standby to use archive log apply?
    RegardsHi
    I think mseberg is answered correct, you can use enable/disable apply log with change of state on standby database with DGMGRL, as writen mseberg.
    or you can disable recover standby database with following script from SQL*Plus.
    SQL> alter database recover managed standby database cancel;Regards
    Mahir M. Quluzade
    www.mahir-quluzade.com

  • Search for records in the event viewer after the last run (not the entire event log), remove duplicate - Output Logon type for a specific OU users

    Hi,
    The following code works perfectly for me and give me a list of users for a specific OU and their respective logon types :-
    $logFile = 'c:\test\test.txt'
    $_myOU = "OU=ABC,dc=contosso,DC=com"
    # LogonType as per technet
    $_logontype = @{
        2 = "Interactive" 
        3 = "Network"
        4 = "Batch"
        5 = "Service"
        7 = "Unlock"
        8 = "NetworkCleartext"
        9 = "NewCredentials"
        10 = "RemoteInteractive"
        11 = "CachedInteractive"
    Get-WinEvent -FilterXml "<QueryList><Query Id=""0"" Path=""Security""><Select Path=""Security"">*[System[(EventID=4624)]]</Select><Suppress Path=""Security"">*[EventData[Data[@Name=""SubjectLogonId""]=""0x0""
    or Data[@Name=""TargetDomainName""]=""NT AUTHORITY"" or Data[@Name=""TargetDomainName""]=""Window Manager""]]</Suppress></Query></QueryList>" -ComputerName
    "XYZ" | ForEach-Object {
        #TargetUserSid
        $_cur_OU = ([ADSI]"LDAP://<SID=$(($_.Properties[4]).Value.Value)>").distinguishedName
        If ( $_cur_OU -like "*$_myOU" ) {
            $_cur_OU
            #LogonType
            $_logontype[ [int] $_.Properties[8].Value ]
    #Time-created
    $_.TimeCreated
        $_.Properties[18].Value
    } >> $logFile
    I am able to pipe the results to a file however, I would like to convert it to CSV/HTML When i try "convertto-HTML"
    function it converts certain values . Also,
    a) I would like to remove duplicate entries when the script runs only for that execution. 
    b) When the script is run, we may be able to search for records after the last run and not search in the same
    records that we have looked into before.
    PLEASE HELP ! 

    If you just want to look for the new events since the last run, I suggest to record the EventRecordID of the last event you parsed and use it as a reference in your filter. For example:
    <QueryList>
      <Query Id="0" Path="Security">
        <Select Path="Security">*[System[(EventID=4624 and
    EventRecordID>46452302)]]</Select>
        <Suppress Path="Security">*[EventData[Data[@Name="SubjectLogonId"]="0x0" or Data[@Name="TargetDomainName"]="NT AUTHORITY" or Data[@Name="TargetDomainName"]="Window Manager"]]</Suppress>
      </Query>
    </QueryList>
    That's this logic that the Server Manager of Windows Serve 2012 is using to save time, CPU and bandwidth. The problem is how to get that number and provide it to your next run. You can store in a file and read it at the beginning. If not found, you
    can go through the all event list.
    Let's say you store it in a simple text file, ref.txt
    1234
    At the beginning just read it.
    Try {
    $_intMyRef = [int] (Get-Content .\ref.txt)
    Catch {
    Write-Host "The reference EventRecordID cannot be found." -ForegroundColor Red
    $_intMyRef = 0
    This is very lazy check. You can do a proper parsing etc... That's a quick dirty way. If I can read
    it and parse it as an integer, I use it. Else, I just set it to 0 meaning I'll collect all info.
    Then include it in your filter. You Get-WinEvent becomes:
    Get-WinEvent -FilterXml "<QueryList><Query Id=""0"" Path=""Security""><Select Path=""Security"">*[System[(EventID=4624 and EventRecordID&gt;$_intMyRef)]]</Select><Suppress Path=""Security"">*[EventData[Data[@Name=""SubjectLogonId""]=""0x0"" or Data[@Name=""TargetDomainName""]=""NT AUTHORITY"" or Data[@Name=""TargetDomainName""]=""Window Manager""]]</Suppress></Query></QueryList>"
    At the end of your script, store the last value you got into your ref.txt file. So you can for example get that info in the loop. Like:
    $Result += $LogonRecord
    $_intLastId = $Event.RecordId
    And at the end:
    Write-Output $_intLastId | Out-File .\ref.txt
    Then next time you run it, it is just scanning the delta. Note that I prefer this versus the date filter in case of the machine wasn't active for long or in case of time sync issue which can sometimes mess up with the date based filters.
    If you want to go for a date filtering, do it at the Get-WinEvent level, not in the Where-Object. If the query is local, it doesn't change much. But in remote system, it does the filter on the remote side therefore you're saving time and resources on your
    side. So for example for the last 30 days, and if you want to use the XMLFilter parameter, you can use:
    <QueryList>
    <Query Id="0" Path="Security">
    <Select Path="Security">*[System[TimeCreated[timediff(@SystemTime) &lt;= 2592000000]]]</Select>
    </Query>
    </QueryList>
    Then you can combine it, etc...
    PS, I used the confusing underscores because I like it ;)
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Unwanted log off

    how do i stop my computer from logging me off while i am watching my show on my external hard drive?

    From the menu bar, select
     ▹ System Preferences... ▹ Security & Privacy ▹ Advanced...
    and uncheck the box marked
    Log out after … minutes of inactivity
    If there's a closed padlock icon in the lower left corner of the preference pane, you may need to click it to unlock the settings. Enter your login password when prompted.

  • Log files can't be removed automatically in HA environment

    Hi BDB experts,
    I am writing db HA application based on bdb version 4.6.21. Two daemons run on two machines, one as master which will read/write db, one as client/backup will only read db. There is one thread in master daemon that run checkpoint every 1 second: dbenv->txn_checkpoint(dbenv, 1, 1, 0), and dbenv->log_archive(dbenv, NULL, DB_ARCH_REMOVE) will be called after runnng checkpoint each time. The env was open with flag: DB_CREATE | DB_INIT_TXN |  DB_INIT_LOCK | DB_INIT_LOG | DB_REGISTER | DB_RECOVER | DB_INIT_MPOOL | DB_THREAD  | DB_INIT_REP;   Autoremove flag was set by: envp->set_flags(uid_dbs.envp, DB_LOG_AUTOREMOVE, 1) before open env.
    I found this thread https://forums.oracle.com/message/10945602#10945602 which discussed about non-ha environment, and I tested my code in a non-ha env without DB_INIT_REP, it worked. However in HA env those log files were never removed. Could you help on this issue? Does the client need to run checkpoint? May there be a bdb bug?
    Thanks,
    Min

    There is one thread in master daemon that run checkpoint every 1 second: dbenv->txn_checkpoint(dbenv, 1, 1, 0), and dbenv->log_archive(dbenv, NULL, DB_ARCH_REMOVE) will be called after runnng checkpoint each time. The env was open with flag: DB_CREATE | DB_INIT_TXN |  DB_INIT_LOCK | DB_INIT_LOG | DB_REGISTER | DB_RECOVER | DB_INIT_MPOOL | DB_THREAD  | DB_INIT_REP;   Autoremove flag was set by: envp->set_flags(uid_dbs.envp, DB_LOG_AUTOREMOVE, 1) before open env.
    I am not saying that this is causing a problem, but doing the DB_ENV->log_archive(DB_ARCH_REMOVE) in your thread and setting DB_ENV->set_flags(DB_LOG_AUTOREMOVE) is redundant. In your thread, you control the timing. The DB_ENV->set_flags(DB_LOG_AUTOREMOVE) option checks for and removes unneeded log files when we create a new log file.
    Did you see in the documentation for DB_ENV->set_flags(DB_LOG_AUTOREMOVE) that we don't recommend doing automatic log file removal with replication? Although this warning is not repeated in DB_ENV->log_archive(DB_ARCH_REMOVE), it also applies to this option. You should reconsider using this option, particularly if it is possible that your client could go down for a long time.
    But this is only a warning and automatic log removal should work. My first thought here is to ask whether your client has recently gone through a sync? Internally, we block archiving on the master during some parts of a client sync to improve the chances that we will keep around all logs needed by the syncing client. We block archiving for up to 30 seconds after the client sync.
    I found this thread https://forums.oracle.com/message/10945602#10945602 which discussed about non-ha environment, and I tested my code in a non-ha env without DB_INIT_REP, it worked. However in HA env those log files were never removed.
    This thread is discussing a different issue. The reason for our warning in BDB 4.6 against using automatic log removal with replication is that it doesn't take into account all the sites in your replication group, so we could remove a log from the master that a client still needs.
    We added replication group-aware automatic log removal in BDB 5.3 Replication Manager, and this discussion is about a change of behavior from this addition. With this addition, we no longer need to recommend against using automatic log removal with replication in BDB 5.3 and later releases.
    Could you help on this issue? Does the client need to run checkpoint? May there be a bdb bug?
    I'm not sure the client needs to run its own checkpoints because it performs checkpoints when it receives checkpoint log records from the master.
    But none of the log removal options on the master does anything to remove logs on the client. You will need to perform steps to archive logs separately on the client and the master.
    Paula Bingham
    Oracle

  • Reading log file and calculating time between

    If someone could help me with this one, I would be very grateful.
    I have a log file and I need to search a string that contains a start time and end time (eg. <time="11:10:58.000+000">). When I have these two values, I need to measure the time that has been elapsed between these two (from start to end).

    $Path="C:\Times.log"
    remove-item $Path
    Add-Content $Path '<time="11:10:58.000+000">'
    Add-Content $Path '<time="12:10:58.000+000">'
    Add-Content $Path '<time="13:10:58.000+000">'
    Add-Content $Path '<time="15:13:38.000+000">'
    Add-Content $Path '<time="16:10:58.000+000">'
    Add-Content $Path '<time="17:08:28.000+000">'
    $File=Get-Content $Path
    $StartTime=$Null
    $EndTime=$Null
    $ElapsedTime = $Null
    ForEach ($Line in $File)
    If ($Line.Contains("time="))
    $Position = $Line.IndexOf("time=")
    $TimeStr =$Line.SubString($Position+6,8)
    IF ($StartTime -EQ $Null)
    $StartTime = $TimeStr -As [System.TimeSpan]
    Else
    $EndTime = $TimeStr -As [System.TimeSpan]
    $ElapsedTime = $EndTime.Subtract($StartTime)
    "StartTime=$StartTime EndTime=$EndTime ElapsedTime=$ElapsedTime"
    $StartTime = $Null
    Gives this output
    StartTime=11:10:58 EndTime=12:10:58 ElapsedTime=01:00:00
    StartTime=13:10:58 EndTime=15:13:38 ElapsedTime=02:02:40
    StartTime=16:10:58 EndTime=17:08:28 ElapsedTime=00:57:30

  • Reading log file

    Hi all ,
    I want to view a particular log file. Is there any transaction to view log files.Do i need basis rights for that?

    $Path="C:\Times.log"
    remove-item $Path
    Add-Content $Path '<time="11:10:58.000+000">'
    Add-Content $Path '<time="12:10:58.000+000">'
    Add-Content $Path '<time="13:10:58.000+000">'
    Add-Content $Path '<time="15:13:38.000+000">'
    Add-Content $Path '<time="16:10:58.000+000">'
    Add-Content $Path '<time="17:08:28.000+000">'
    $File=Get-Content $Path
    $StartTime=$Null
    $EndTime=$Null
    $ElapsedTime = $Null
    ForEach ($Line in $File)
    If ($Line.Contains("time="))
    $Position = $Line.IndexOf("time=")
    $TimeStr =$Line.SubString($Position+6,8)
    IF ($StartTime -EQ $Null)
    $StartTime = $TimeStr -As [System.TimeSpan]
    Else
    $EndTime = $TimeStr -As [System.TimeSpan]
    $ElapsedTime = $EndTime.Subtract($StartTime)
    "StartTime=$StartTime EndTime=$EndTime ElapsedTime=$ElapsedTime"
    $StartTime = $Null
    Gives this output
    StartTime=11:10:58 EndTime=12:10:58 ElapsedTime=01:00:00
    StartTime=13:10:58 EndTime=15:13:38 ElapsedTime=02:02:40
    StartTime=16:10:58 EndTime=17:08:28 ElapsedTime=00:57:30

  • JDev 10.1.3.3.0: Trouble setting logging level

    I have an application that I did not write that has a large amount of "info" level logging using "java.util.logging.Logger".
    These logging statements look like this in the code:
    log.info("My message");
    There are only a few points in the application where I want to log statements for now, so I thought a quick way to suppress all the unwanted logging would be to change the severity of the items I want to see in the log as follows:
    log.severe("My message");
    Then, I went into the file [JDeveloper Root]\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\j2ee-logging.xml.
    I changed all the level="XYX" statements to level="SEVERE", and restarted the application in JDeveloper.
    I did not see my "log.severe" statements in the log.
    Then I changed all the level="XYX" statements to level="ERROR:1", and restarted the application in JDeveloper.
    I still did not see my "log.severe" statements in the log.
    Any ideas on what I'm doing wrong?
    Thanks,
    Jonathan

    Sorry...Operator error.
    There was a conditional block around the logging statement that I didn't notice.
    The logging is now working as expected.

  • Ultra 40 Event12, Kernel-WHEA error log in WinVista x64

    While I still enjoy working with my Ultra 40 Workstation, lately, I've noticed Kernel-WHEA (EventID 12) error log which seems to appear everytime Windows Vista x64 boots up.
    My Ultra 40 has AMD Opteron 280 box with 4GB RAM and is running Windows Vista Ultimate x64.
    And here' the error log in Event Viewer;
    Event12, Kernel-WHEA
    Machine Check Event reported is a fatal Bus or Interconnect timeout error.
    Memory Hierarchy Level: 3
    Participation: 0
    Request Type: 3
    Memory/IO: 0
    Address: 30422400
    Very same error log (only with different numbers in the address section) appears everytime Windows boots up, but it does not seem to reappear while Windows is on. In other words, this specific error gets logged only during the bootup process.
    Anyway, I did some research and tried to find out what it meant and how to fix it, but only things I found were WHEA meaning 'Windows Hardware Error Architecture' and Event12, Kernel-WHEA meaning 'Bus timeout machine check exception'.
    So I ran AMD's MCAT (Machine Check Analysis Tool) to dig little more information about the error, and here what MCAT says:
    Event Source 0
    Processor Number  : 0
    Bank Number       : 0
    Time Stamp    (0x): 01C83B55 755106C4
    Error Status  (0x): D4384000 00000833
    Error Address (0x): 00000000 01D03580
    Error Misc.   (0x): 00000000 00000000
    Single bit errors:
    Correctable ECC error
    Error address valid in MCi_ADDR
    Error reporting enabled
    Second error
    Error valid
    Bus Error Code:
    Participation processor: Local node originated the request (SRC)
    Time-out: Request did not time out
    Memory transaction type: Data read (DRD)
    I/O: DRAM memory access (MEM)
    Cache level: Generic (LG)
    Data Cache Error MC0:
    System line fill error into data cache
    Syndrome: 0x70
    I did ran Sun provided diagnostic tool to see if I get any CPU/RAM related error, but all tests had passed.
    And I do not have any problem in 'Device Manager' and even clean installation of Windows Vista didn't resolve the issue.
    So pelase, I desperately need any input to either resolve this annoying error, or at least a hint what part of my hardware is gone wrong.
    Thanks in advance

    rukbat,
    Thanks for your comment and suggestion.
    But I just cannot ignore this error, and here's why;
    My system used to run flawlessly without any error log previsouly. This error occured recently. (No it's not due to MS update, since clean-installation of Windows without any update exhibits the same error with ever since).
    So something has gone bad and it must be hardware.
    Anyway, I did some more tests in the mean time
    Swapping CPU1 to CPU2: same error message
    Repositioning DIMMs with each other: same error message
    Removing DIMM's for CPU1 (with rest of 2GB installed for CPU2): no error log
    Removing DIMM's for CPU2 (with rest of 2GB installed for CPU1): same error message.
    So it seems neither CPU's nor DIMM's is causing the error.
    Would it be due to faulty motherboard?
    Edited by: sangwooksohn on Dec 15, 2007 11:11 AM

  • How to keep logs for one week through sm36 jobs creation

    Hi
       As i define a job through sm36. Its logs removed next day , but its logs removed through sm37 through next days. But some of the job logs does not removed for even one week. can somebody be help me to sort it out . I want to keep job logs for one week then where i have to define it. If some job is defined which remove all these logs then where we have to define that these logs will remain for one week , because some of the job logs will remain there for one week.
    Thanks in advance
    Regards
    Ravi Kant Arya
    +91 9999530385

    Hello,
    please check the variants of the report used in the job SAP_REORG_JOBS. With the report RSBTCDEL2 you can specify very detailed how long logs should be kept for which jobs (e.g. depending on the job name or job class).
    Regards
    Christian

  • Data Sync logs not showing in Azure Portal

    The Data sync Logs are no longer showing in the Azure Portal.  this started about a month ago.  Please help.   I opened a support ticket with Azure Support and they suggest the Logs Storage may have become full.
    LAST SYNC
    12/30/2014 7:28:22 AM
    SYNC GROUP ID
    ac33f15d-40c7-4e11-9f8c-c840c8cd1732_East US
    LOCATION
    East US
    SUBSCRIPTION NAME
    GEX-Azure-1
    SUBSCRIPTION ID
    653e04dd-c69f-4b16-8fd3-5efa954a6132
    CONFLICT RESOLUTION
    Hub Wins
    James Glenn

    Hi James,
    If there is on-premise database in the sync group,  you can use the following methods to check the log.
    • Check the Event Log entries on the box where you installed the SQL Data Sync Agent.
    Event Viewer->Applications and Services Logs->SQL Azure Data Sync Preview or Event Viewer->Applications and Services Logs->Data Sync Service
    • Turning logging in verbose mode. Open LocalAgentHost.exe.config in notepad. This file should be present in your installation directory.
    a) Uncomment the section that is currently commented < !-- < switches> < add name="SyncAgentTracer" value="4" /> < /switches> < trace autoflush="true" indentsize="4"> < listeners> <
    add name="myListener" type="Microsoft.SqlAzureDataSync.ClientLogging.DSSClientTraceListener, Microsoft.SqlAzureDataSync.ClientLogging, Version=2.0.0.0" initializeData="DSSAgentOutput.log" /> < remove name="Default"
    /> < /listeners> < /trace> -->
    b) Stop and restart SQL Azure Data Sync Preview Windows Service. Now you would find the detailed logs in files named DSSAgentOutput*.log
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Log User Information

    I want to write to notepad the date, time, ipaddress, mac address and username of each person opening a windows form.  How would I go about doing such?
    And each subsequent entry should be appended to the previous text file, so it is a log file with every entry.

    Hi IndigoMontoya,
    >>I want to write to notepad the date, time, ipaddress, mac address and username of each person
    Opening a windows form.
    I would suggest you use
    TextWriterTraceListener Class.  But I am not sure it works for you. You can try.
    To add a trace listener, edit the configuration file that corresponds to the name of your application. 
    <configuration>
    <system.diagnostics>
    <trace autoflush="false" indentsize="4">
    <listeners>
    <add name="myListener"
    type="System.Diagnostics.TextWriterTraceListener"
    initializeData="TextWriterOutput.log" />
    <remove name="Default" />
    </listeners>
    </trace>
    </system.diagnostics>
    </configuration>
    For more information, Please check
    TextWriterTraceListener Class
    Have a nice day!
    Krsitin

  • Refresh database I need to automise the process

    Hello All,
    I need to automise the process of refreshing the database.
    The scenario is:
    I have one database intance and I need to copy the database to another instance every day.
    How is the best way to do this?
    Regards

    There is a very simple way to do it, as most of the time these days, people want even reporting db into read-write mode for which depending on db size and transactions happening per day, you can consider replication too or other solution like log-shipping\db
    mirroring if you have to have db in read - only mode.
    Below ones are easy to follow if simple ways you want to follow, but first get smtp  access for  this server so that you can use alert for this.
    Create a Sql  Server job to add step by keeping below step A, then add step to wait for backup, copy files steps to be done, like wait T-sql command. Then add final restoration step.
    A). Create a batch file wherein you will be calling first job using osql.
    B). Create a batch file wherein you will be calling restore job using osql.
    1. Create and disable Sql Server Job to backup database. It shd have steps like backup, old files removal, success and failure alerts. Add step to call to Robocopy job for copy backup files.
    2. Create and disable Robocopy backup file copy job to copy backup file to required server again with all options like copy just latest files, enable logging for copy. Add dos command to alert in case of success and failure message. This shd be one db at
    a time so that error and success message can be handled properly. Once copy of file is done then move the backup files to archive folder. Again maintain some retention for all folders where you keep backup files.
    3. Create and disable restore job on required server. Add steps like first kill all session for this db, bring db into single user mode, restore backup db, bring db into multi user mode, add any logins, fix required orphan users{If sql server 2012 use contained
    db to carry on logins and password}, shrink log files to remove unwanted log space, success and failure accordingly. Once backup file gets restored then move the backup files to archive folder, so that by mistake also, nobody shd be able to restore it.
    Thanks,
    Santosh Singh

  • First feedback after 1 day with BPM11gR1

    This is my feedback after one day of work with the BPM11gR1 (installation from scratch, no reuse of beta2 environments):
    The goal of the first test was short:
    -> Making a small process in BPM Composer with 1 initiator task and 1 human task to validate without gateway, with the default role.
    -> Publish it in MDS repository
    -> Import it in JDeveloper and add 2 string data object ("name" and "lastOutcome")
    -> auto-generate human task
    -> deploy the process and screens (and mapping role and users)
    -> make one execution from start to end (only 2 steps) without any error.
    My observations during this quick test:
    - The "call" activities are activated in BPM Composer but not in JDeveloper
    - The name of activities and all graphical elements are not transfer from BPM Composer to JDeveloper (and from JDeveloper to BPM Composer)
    - During the auto-generation of the second human task, JDeveloper has frozen and needed to be killed by the Windows task manager. The project folder had to be cleaned manually.
    - The import from MDS in JDeveloper generate a double project windows folder (like
    ..\myWork\<myApplicationName>\<myProjectName>\<myProjectName>\...)
    - On first deployment (process + the 2 screens), JDeveloper ask to restart the server to finish the deployment of the 2 screens.
    - After writing the mail to ask the restart and doing 1 short work, I came back to JDeveloper and it was another time frozen (taking 30%-40% of CPU). I did not killed it immediately to see if it is just temporary frozen. I had waiting a meeting delay (more than 1 hour) without any modification on Jdeveloper => Another Windows kill.
    - After the reboot of the server, the initiator task works. I had the screen auto generated and I was able to submit the first step. But the second screen (just to approve or refuse) didn't work. I got an internal server error 500 (null pointer exception).
    - I had made several deployments of the 2 screens (the 2 screens are in the same .ear file and always deployed in same time). Sometimes the second screen worked but not the first, another time it was the first but not the second or both didn't work. I had never managed to have both screens working in the same time if I deploy them in the same deployment. To have both working screen, I needed to deploy them separately.
    - If we deploy the process and screens with the option "Append composite revision to name": the first time we got on ear profile name
    "BC-UI-BPMComposer_rev_c1v1.0", the second time "BC-UI-BPMComposer_rev_c1v1.0_rev_c1v1.0", etc...
    - I got another time the JDeveloper freeze. It's seems to append when I do nothing with it during a "long" delay.
    During this test a colleague had tried to design our prototype process (one main process with 2 possible starts (a human or a web service) with 4 sub-processes linked with service activities). He got same errors but also others:
    - One unwanted log-off during the design of BPM Composer
    - JDeveloper crash during Auto-generation of ADF Screens.
    - In the beginning, he had save the project on a network drive but JDeveloper was too slow. So he made a "make clean" and copy the project folder to a local hard drive. On the first deployment, JDeveloper had an error because it couldn't create the file: ..\myWork\<myApplicationName>\<myProjectName>\<myProjectName>\classes\scac_out.xml. He had to create manually the folder "classes" and after JDeveloper can start the deployment.
    - After the deployment, he had mapped all roles to users. But he couldn't manage to have the link in the application panel to start manually the process with the initiator task. He tested also by removing the web service start (and having just one human start).
    - He tried to create a small process, with just one initiator task reusing the initiator human task of the previous process but he got null pointer exception on delpoyment (even he put data object in process with mapping, added other human task)...

    Hi Heidi,
    The current used version was downloaded on OTN the 28th of April. SOA and BPM extension were imported by "check for update...".
    You can find bellow the a part of the about of JDeveloper :
    About
    Oracle JDeveloper 11g Release 1 11.1.1.3.0
    Studio Edition Version 11.1.1.3.0
    Build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660
    Copyright © 1997, 2010 Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.3.37.56.60
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.3.37.56.60
    Version
    Component     Version
    =========     =======
    ADF Business Components     11.1.1.56.60
    BPMN Editor     11.1.1.3.0.6.84
    Java(TM) Platform     1.6.0_18
    Oracle IDE     11.1.1.3.37.56.60
    SOA Composite Editor     11.1.1.3.0.25.57
    Versioning Support     11.1.1.3.37.56.60
    Extensions
    Name     Identifier     Version     Status
    ====     ==========     =======     ======
    ADF Business Components     oracle.BC4J     11.1.1.3.37.56.60     Loaded
    ADF Business Components Dependency     oracle.bc4j.dependency     11.1.1.3.37.56.60     Loaded
    ADF Business Components Deployment     oracle.bc4jdt.deploy     11.1.1.3.37.56.60     Loaded
    ADF Business Components Modeler     oracle.adfbcdt.modeler     11.1.1.3.37.56.60     Loaded
    ADF Business Components Tester     oracle.bc4j.tester     11.1.1.3.37.56.60     Loaded
    ADF Context Debugger     oracle.adf.share.debug     11.1.1.3.37.56.60     Loaded
    ADF Controller Configuration Design Time     oracle.adf.controller.config.dt     11.1.1.3.37.56.60     Loaded
    ADF Data Visualizations Design Time Tests     oracle.dvt.dt     11.1.1.3.37.56.60     Loaded
    ADF Debugger     oracle.adf.debug     11.1.1.3.37.56.60     Loaded
    ADF Debugger Diagram Support     oracle.adf.debug.diagram     11.1.1.3.37.56.60     Loaded
    ADF Desktop Integration Design Time     oracle.adfdt.desktopintegration     11.1.1.3.37.56.60     Loaded
    ADF Faces Cache     oracle.webcache     11.1.1.3.37.56.60     Loaded
    ADF Faces Data Visualization Tools Help     oracle.dvt-faces-doc     11.1.1.0.0     Loaded
    ADF Faces Databinding Design Time     oracle.adf-faces-databinding-dt     11.1.1.3.37.56.60     Loaded
    ADF Faces Design Time     oracle.adf-faces-dt     11.1.1.3.37.56.60     Loaded
    ADF Faces Design Time Migration     oracle.adffacesdt.migration     11.1.1.3.37.56.60     Loaded
    ADF Faces Runtime Help     oracle.adf-faces-rt-doc     11.1.1.0.0     Loaded
    ADF Faces Skin Design Time     oracle.adf-faces-skin-dt     11.1.1.3.37.56.60     Loaded
    ADF Java Server Faces Diagram     oracle.adf.jsf.diagram     11.1.1.3.37.56.60     Loaded
    ADF Library Design Time     oracle.jdeveloper.adflibrary     11.1.1.3.37.56.60     Loaded
    ADF Lifecycle Design Time     oracle.adf.lifecycle.dt     11.1.1.3.37.56.60     Loaded
    ADF Management Pages     oracle.adf.management     11.1.1.3.37.56.60     Loaded
    ADF Menu Model Design-Time     oracle.adfmenudt     11.1.1.3.37.56.60     Loaded
    ADF Page Flow Design Time     oracle.adf.pageflow.dt     11.1.1.3.37.56.60     Loaded
    ADF Page Flow Design Time Extras     oracle.adf.pageflow.dt.extras     11.1.1.3.37.56.60     Loaded
    ADF Page Template DT     oracle.adf-faces-templating-dt     11.1.1.3.37.56.60     Loaded
    ADF Region Design Time     oracle.adf-faces-region-dt     11.1.1.3.37.56.60     Loaded
    ADF Struts Page Flow Modeler     oracle.struts.adf     11.1.1.3.37.56.60     Loaded
    ADF Struts and Model One Databinding     oracle.adf.struts.and.model.one.databinding.dt     11.1.1.3.37.56.60     Loaded
    ADF Swing     oracle.adfdt.swingcore     11.1.1.3.37.56.60     Loaded
    ADF View Debugging Design Time     adf.view.debugging.dt     11.1.1.3.37.56.60     Loaded
    ADFv Common Databinding     oracle.adf-view-databinding-dt     11.1.1.3.37.56.60     Loaded
    Ant     oracle.ant     11.1.1.3.37.56.60     Loaded
    Application Server Manager     oracle.jdeveloper.asnav     11.1.1.3.37.56.60     Loaded
    Application State - Application Navigator     oracle.ideimpl.appstate.appnav     11.1.1.3.37.56.60     Loaded
    Application State - Editors     oracle.ide.appstate.editors     11.1.1.3.37.56.60     Loaded
    Application State Manager     oracle.ide.appstate     11.1.1.3.37.56.60     Loaded
    Archive Compare     oracle.jdeveloper.archive-compare     11.1.1.3.37.56.60     Loaded
    BAM     oracle.bam     11.1.1     Loaded
    BI Beans Graph     oracle.bibeans     11.1.1.3.37.56.60     Loaded
    BM metamodel framework     oracle.bm.meta     11.1.1.3.37.56.60     Loaded
    Bug Reporter     oracle.jdeveloper.bugfiler     11.1.1.3.37.56.60     Loaded
    Business Modelers     oracle.bm     11.1.1.3.37.56.60     Loaded
    Check For Updates     oracle.ide.webupdate     11.1.1.3.37.56.60     Loaded
    Code Editor     oracle.ide.ceditor     11.1.1.3.37.56.60     Loaded
    Command Line Formatting Support     oracle.jdeveloper.ojformat     11.1.1.3.37.56.60     Loaded
    Command Line Make/Rebuild Support     oracle.jdevimpl.oj-compiler     11.1.1.3.37.56.60     Loaded
    Common Controller Design-Time     oracle.controller.dt     11.1.1.3.37.56.60     Loaded
    Common Page Flow Design-Time     oracle.pageflow.dt     11.1.1.3.37.56.60     Loaded
    Component Palette     oracle.ide.palette1     11.1.1.3.37.56.60     Loaded
    Controller to ADF Bindings Bridge     oracle.controller.bindings.dt     11.1.1.3.37.56.60     Loaded
    Database Connection Support     oracle.jdeveloper.db.connection     11.1.1.3.37.56.60     Loaded
    Database Features (JDeveloper)     oracle.jdeveloper.db     11.1.1.3.37.56.60     Loaded
    Database Features (SQLDeveloper in JDeveloper)     oracle.jdeveloper.db.navigator     11.1.1.3.37.56.60     Loaded
    Database Modeler     oracle.dbmodeler     11.1.1.3.37.56.60     Loaded
    Database Modeler Migration     oracle.dbmodeler.migrate     11.1.1.3.37.56.60     Loaded
    Database Object Dependency API Support     oracle.jdeveloper.db.dependency     11.1.1.3.37.56.60     Loaded
    Database Object Explorers     oracle.ide.db.explorer     11.1.1.3.37.56.60     Loaded
    Database Object Transfer Framework     oracle.jdeveloper.db.transfer     11.1.1.3.37.56.60     Loaded
    Database UI     oracle.ide.db     11.1.1.3.37.56.60     Loaded
    Design Time Resource Bundle Variable Resolver     oracle.jdeveloper.resourcebundle.resolver.dt     11.1.1.3.37.56.60     Loaded
    Diagram Framework     oracle.diagram     11.1.1.3.37.56.60     Loaded
    Diagram Framework Toplink extensions     oracle.diagram.toplink     11.1.1.3.37.56.60     Loaded
    Diagram Javadoc Extension     oracle.diagram.javadoc     11.1.1.3.37.56.60     Loaded
    Diagram Thumbnail     oracle.diagram.thumbnail     11.1.1.3.37.56.60     Loaded
    Diagram to XMLEF Bridge     oracle.diagram.xmlef     11.1.1.3.37.56.60     Loaded
    Diff/Merge     oracle.ide.diffmerge     11.1.1.3.37.56.60     Loaded
    EJB     oracle.ejb     11.1.1.3.37.56.60     Loaded
    EJB Modeler     oracle.ejbmodeler     11.1.1.3.37.56.60     Loaded
    Editor Tint     oracle.ide.ceditor-tint     11.1.1.3.37.56.60     Loaded
    Editor Tint (Java)     oracle.jdeveloper.ceditor-tint-java     11.1.1.3.37.56.60     Loaded
    Extended IDE Platform     oracle.javacore     11.1.1.3.37.56.60     Loaded
    Extension Designtime Core     oracle.jdeveloper.extensiondt.core     11.1.1.3.37.56.60     Loaded
    Extension Designtime UI     oracle.jdeveloper.extensiondt.ui     11.1.1.3.37.56.60     Loaded
    External Tools     oracle.ide.externaltools     11.1.1.3.37.56.60     Loaded
    Feedback     oracle.ide.feedback     11.1.1.3.37.56.60     Loaded
    File Support     oracle.ide.files     11.1.1.3.37.56.60     Loaded
    Fusion Application Overview Definition     oracle.ide.appoverview.fusion.definition     11.1.1.3.37.56.60     Loaded
    Fusion Web Application (ADF) Template     oracle.adf.webapp.template     11.1.1.3.37.56.60     Loaded
    Go to File     oracle.ide.gotofile     11.1.1.3.37.56.60     Loaded
    Go to Java Type     oracle.jdeveloper.gotojava     11.1.1.3.37.56.60     Loaded
    HTML     oracle.html     11.1.1.3.37.56.60     Loaded
    Help System     oracle.ide.help     11.1.1.3.37.56.60     Loaded
    History Support     oracle.jdeveloper.history     11.1.1.3.37.56.60     Loaded
    IDE Reports Extension     oracle.ide.report     11.1.1.3.37.56.60     Loaded
    Import/Export Support     oracle.ide.importexport     11.1.1.3.37.56.60     Loaded
    Index Migrator support     oracle.ideimpl.indexing-migrator     11.1.1.3.37.56.60     Loaded
    J2EE     oracle.j2ee     11.1.1.3.37.56.60     Loaded
    J2EE     oracle.j2ee.webapp.ve     11.1.1.3.37.56.60     Loaded
    J2EE     oracle.j2ee.webapp.ve.facelets     11.1.1.3.37.56.60     Loaded
    J2EE CSS     oracle.css     11.1.1.3.37.56.60     Loaded
    J2EE Faces Config     oracle.j2ee.facesconfig     11.1.1.3.37.56.60     Loaded
    J2EE Web App     oracle.j2ee.webapp     11.1.1.3.37.56.60     Loaded
    J2EE-ADRS     oracle.j2ee.adrs     11.1.1.3.37.56.60     Loaded
    J2ee extension help     oracle.j2ee.help     11.1.1.0.0     Loaded
    JDeveloper     oracle.jdeveloper     11.1.1.3.37.56.60     Loaded
    JDeveloper Runner     oracle.jdeveloper.runner     11.1.1.3.37.56.60     Loaded
    JGoodies Forms     oracle.jdeveloper.jgoodies     11.1.1.3.37.56.60     Loaded
    JPublisher     oracle.jdeveloper.db.jpub     11.1.1.3.37.56.60     Loaded
    JSON Language support     oracle.jdeveloper.json     11.1.1.3.37.56.60     Loaded
    JViews Registration Addin     oracle.diagram.registration     11.1.1.3.37.56.60     Loaded
    Java Annotation Inspector     oracle.jdeveloper.annotation.inspector     11.1.1.3.37.56.60     Loaded
    Java Breadcrumbs     oracle.jdeveloper.ceditor-breadcrumbs-java     11.1.1.3.37.56.60     Loaded
    Java Class Modeler     oracle.javamodeler     11.1.1.3.37.56.60     Loaded
    Java Modeler Toplink extensions     oracle.javamodeler.toplink     11.1.1.3.37.56.60     Loaded
    Java Server Faces Page Flow Modeler     oracle.jsfmod     11.1.1.3.37.56.60     Loaded
    Java Structure Compare     oracle.jdeveloper.java-compare     11.1.1.3.37.56.60     Loaded
    Java Type Search     oracle.jdeveloper.searchbar.java     11.1.1.3.37.56.60     Loaded
    Java extension help     oracle.java.help     11.1.1.0.0     Loaded
    JavaBeans, Swing, and AWT     oracle.swingawt     11.1.1.3.37.56.60     Loaded
    JavaScript Language Support     oracle.ide.javascript     11.1.1.3.37.56.60     Loaded
    Jdeveloper UI Editor     oracle.jdeveloper.uieditor     11.1.1.3.37.56.60     Loaded
    Jdeveloper XML Extension     oracle.jdeveloper.xml     11.1.1.3.37.56.60     Loaded
    Legacy Controller Design-Time     oracle.controller.bm.dt     11.1.1.3.37.56.60     Loaded
    Legacy Preferences integration for BM     oracle.modeler.bm.prefs     11.1.1.3.37.56.60     Loaded
    Log Window     oracle.ide.log     11.1.1.3.37.56.60     Loaded
    MDS Extension     oracle.mds     11.1.1.3.37.56.60     Loaded
    MOF Ide Integration     oracle.mof.ide     11.1.1.3.37.56.60     Loaded
    MOF Modeler Integration     oracle.modeler.mof     11.1.1.3.37.56.60     Loaded
    Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.3.37.56.60     Loaded
    Modeler Framework     oracle.modeler     11.1.1.3.37.56.60     Loaded
    Modeler Framework Common Layer     oracle.modeler.common     11.1.1.3.37.56.60     Loaded
    Modelling migration from BM     oracle.modeler.bm.migrate     11.1.1.3.37.56.60     Loaded
    Navigator     oracle.ide.navigator     11.1.1.3.37.56.60     Loaded
    Nightly Indexing support     oracle.ideimpl.indexing-rt     11.1.1.3.37.56.60     Loaded
    OAR/MAR/SAR Deployment Support Extension     oracle.deploy.orapp     11.1.1.3.37.56.60     Loaded
    OWSM Policy Manager Installer     oracle.jdeveloper.webservice.wsmpm.installer     11.1.1.3.37.56.60     Loaded
    Object Gallery     oracle.ide.gallery     11.1.1.3.37.56.60     Loaded
    Object Viewer     oracle.sqldeveloper.oviewer     11.1.1.63.74     Loaded
    Offline Database     oracle.jdeveloper.offlinedb     11.1.1.3.37.56.60     Loaded
    Offline Database Import/Generate     oracle.jdeveloper.offlinedb.transfer     11.1.1.3.37.56.60     Loaded
    Offline Database Reports Extension     oracle.jdeveloper.offlinedb.report     11.1.1.3.37.56.60     Loaded
    Offline Database SXML     oracle.jdeveloper.offlinedb.sxml     11.1.1.3.37.56.60     Loaded
    Offline Database User Properties     oracle.jdeveloper.offlinedb.userprops     11.1.1.3.37.56.60     Loaded
    Offline Database User Properties SXML     oracle.jdeveloper.offlinedb.userprops.sxml     11.1.1.3.37.56.60     Loaded
    Oracle BPEL Designer     oracle.bpm.modeler     11.1.1.3.0.25.55     Loaded
    Oracle BPEL Designer Plugins     oracle.bpm.modeler.plugins     11.1.1.3.0.25.57     Loaded
    Oracle BPM DVM     oracle.bpm.dvm     11.1.1.3.0.25.57     Loaded
    Oracle BPM Internal     oracle.bpm.fusion.internal     11.1.1.3.0.6.84     Loaded
    Oracle BPM Internal     oracle.bpm.resources     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ar     oracle.bpm.resourcesrt-ar     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal cs     oracle.bpm.resourcesrt-cs     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal da     oracle.bpm.resourcesrt-da     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal de     oracle.bpm.resourcesrt-de     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal el     oracle.bpm.resourcesrt-el     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal en     oracle.bpm.resources-en     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal es     oracle.bpm.resourcesrt-es     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal fi     oracle.bpm.resourcesrt-fi     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal fr     oracle.bpm.resourcesrt-fr     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal hu     oracle.bpm.resourcesrt-hu     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal it     oracle.bpm.resourcesrt-it     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal iw     oracle.bpm.resourcesrt-iw     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ja     oracle.bpm.resources-ja     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ko     oracle.bpm.resourcesrt-ko     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal nl     oracle.bpm.resourcesrt-nl     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal no     oracle.bpm.resourcesrt-no     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal pl     oracle.bpm.resourcesrt-pl     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal pt     oracle.bpm.resourcesrt-pt     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal pt_BR     oracle.bpm.resourcesrt-pt_BR     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ro     oracle.bpm.resourcesrt-ro     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal ru     oracle.bpm.resourcesrt-ru     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal sk     oracle.bpm.resourcesrt-sk     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal sv     oracle.bpm.resourcesrt-sv     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal th     oracle.bpm.resourcesrt-th     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal tr     oracle.bpm.resourcesrt-tr     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal zh_CN     oracle.bpm.resourcesrt-zh_CN     11.1.1.0.30.50.25     Loaded
    Oracle BPM Internal zh_TW     oracle.bpm.resourcesrt-zh_TW     11.1.1.0.30.50.25     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.core     11.1.1.3.0.6.84     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.repository     11.1.1.3.0.6.84     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.builder     11.1.1.3.0.6.84     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.ui     11.1.1.3.0.6.84     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.designer     11.1.1.3.0.6.84     Loaded
    Oracle BPM Studio     oracle.bpm.fusion.studio     11.1.1.3.0.6.84     Loaded
    Oracle BPM Studio     oracle.bpm.tests.jdev-test     11.1.1.3.0.6.84     Loaded
    Oracle BPM Studio SOA Extension     oracle.bpm.fusion.soa     11.1.1.3.0.6.84     Loaded
    Oracle BPM XREF     oracle.bpm.xref     11.1.1.3.0.25.57     Loaded
    Oracle Business Rules Designer     oracle.bpm.rules     11.1.1.3.0.25.57     Loaded
    Oracle Database Browser     oracle.sqldeveloper.thirdparty.browsers     11.1.1.63.74     Loaded
    Oracle ESS Designer     oracle.bpm.ess     11.1.1.3.0.25.57     Loaded
    Oracle Enterprise Repository Editor     oracle.jdeveloper.oereditor     11.1.1.3.37.56.60     Loaded
    Oracle Events Designer     oracle.bpm.events     11.1.1.3.0.25.57     Loaded
    Oracle Fabric Plugins     oracle.sca.modeler.plugins     11.1.1.3.0.25.57     Loaded
    Oracle Human Task Designer     oracle.bpm.workflow     11.1.1.3.0.25.57     Loaded
    Oracle IDE     oracle.ide     11.1.1.3.37.56.60     Loaded
    Oracle JDevloper Deployment Core Module     oracle.deploy.core     11.1.1.3.37.56.60     Loaded
    Oracle MDS Design time     oracle.mds.dt     11.1.1.3.37.56.60     Loaded
    Oracle Mobile ADF     oracle.wireless.dt     11.1.1.3.37.56.60     Loaded
    Oracle Page Templates     oracle.adf-page-template-samples     11.1.1.3.37.56.60     Loaded
    Oracle SOA Composite Editor     oracle.sca.modeler     11.1.1.3.0.25.57     Loaded
    Oracle SOA Mediator     oracle.sca.mediator     11.1.1.3.0.25.57     Loaded
    Oracle SQL Developer     oracle.sqldeveloper     11.1.1.63.74     Loaded
    Oracle SQL Developer Reports     oracle.sqldeveloper.report     11.1.1.63.74     Loaded
    Oracle SQL Developer Worksheet     oracle.sqldeveloper.worksheet     11.1.1.63.74     Loaded
    Oracle XML Schema Support     oracle.sqldeveloper.xmlschema     11.1.1.63.74     Loaded
    PL/SQL Debugger     oracle.jdeveloper.db.debug.plsql     11.1.1.3.37.56.60     Loaded
    PROBE Debugger     oracle.jdeveloper.db.debug.probe     11.1.1.3.37.56.60     Loaded
    Peek     oracle.ide.peek     11.1.1.3.37.56.60     Loaded
    Persistent Storage     oracle.ide.persistence     11.1.1.3.37.56.60     Loaded
    Profiler     oracle.jdeveloper.profiler     11.1.1.3.37.56.60     Loaded
    Properties File Support     oracle.jdeveloper.props     11.1.1.3.37.56.60     Loaded
    Property Inspector     oracle.ide.inspector     11.1.1.3.37.56.60     Loaded
    Quick Start Features for Web Applications     quickstart.webapp.dt     11.1.1.3.37.56.60     Loaded
    QuickDiff     oracle.ide.quickdiff     11.1.1.3.37.56.60     Loaded
    REST Web Services     oracle.jdeveloper.webservice.rest     11.1.1.3.37.56.60     Loaded
    Refactoring     oracle.jdeveloper.refactoring     11.1.1.3.37.56.60     Loaded
    Replace With     oracle.ide.replace     11.1.1.3.37.56.60     Loaded
    Reports Extension     oracle.javatools.report     11.1.1.3.37.56.60     Loaded
    Resource Bundle Support     oracle.ide.resourcebundle     11.1.1.3.37.56.60     Loaded
    Resource Bundle Support for Properties Files     oracle.jdeveloper.resourcebundle.props     11.1.1.3.37.56.60     Loaded
    Resource Catalog Application Server Adapter     oracle.jdeveloper.asadapter     11.1.1.3.37.56.60     Loaded
    Resource Catalog DB UI extension     oracle.jdeveloper.db.rcadapter.ui     11.1.1.3.37.56.60     Loaded
    Resource Catalog Database Adapter     oracle.jdeveloper.rcdbadapter     11.1.1.3.37.56.60     Loaded
    Resource Catalog WSIL Adapter     oracle.jdeveloper.rcwsiladapter     11.1.1.3.37.56.60     Loaded
    Resource Lookup     oracle.jdeveloper.rclookup     11.1.1.3.37.56.60     Loaded
    Runner     oracle.ide.runner     11.1.1.3.37.56.60     Loaded
    SQL*Plus Integration     oracle.jdeveloper.db.sqlplus     11.1.1.3.37.56.60     Loaded
    SQLJ     oracle.jdeveloper.sqlj     11.1.1.3.37.56.60     Loaded
    Search Bar     oracle.ide.searchbar     11.1.1.0.0     Loaded
    SearchBar Commands     oracle.ide.searchbar.commands     11.1.1.3.37.56.60     Loaded
    Searchbar Preferences     oracle.ide.searchbar.preferences     11.1.1.3.37.56.60     Loaded
    Snippet Window     oracle.sqldeveloper.snippet     11.1.1.63.74     Loaded
    Struts Page Flow Modeler     oracle.struts     11.1.1.3.37.56.60     Loaded
    Studio     oracle.studio     11.1.1.3.37.56.60     Loaded
    Studio extension help     oracle.studio.help     11.1.1.0.0     Loaded
    Template     oracle.ide.ceditor-template     11.1.1.3.37.56.60     Loaded
    TopLink     oracle.toplink     11.1.1.3.37.56.60     Loaded
    Trinidad Databinding Design Time     oracle.trinidad-databinding-dt     11.1.1.3.37.56.60     Loaded
    Trinidad Design Time     oracle.trinidad-dt     11.1.1.3.37.56.60     Loaded
    UDDI Resource Catalogue Provider     oracle.jdevimpl.uddiadapter     11.1.1.3.37.56.60     Loaded
    UML XMI     oracle.uml.v2.xmi     11.1.1.3.37.56.60     Loaded
    UML v2     oracle.uml.v2     11.1.1.3.37.56.60     Loaded
    UML v2 Activity Modeler     oracle.uml.v2.activity     11.1.1.3.37.56.60     Loaded
    UML v2 Class Diagram     oracle.uml.v2.clazz     11.1.1.3.37.56.60     Loaded
    UML v2 Migration     oracle.uml.v2.migrate     11.1.1.3.37.56.60     Loaded
    UML v2 Sequence Diagram     oracle.uml.v2.sequence     11.1.1.3.37.56.60     Loaded
    UML v2 Transformation to Java     oracle.uml.v2.umljava     11.1.1.3.37.56.60     Loaded
    UML v2 Use Case Diagram     oracle.uml.v2.usecase     11.1.1.3.37.56.60     Loaded
    UML2 Modelers Common Classes     oracle.uml.v2.modeler     11.1.1.3.37.56.60     Loaded
    URL Connection     oracle.jdevimpl.urlconn     11.1.1.3.37.56.60     Loaded
    VHV     oracle.ide.vhv     11.1.1.3.37.56.60     Loaded
    Versioning Support     oracle.jdeveloper.vcs     11.1.1.3.37.56.60     Loaded
    Versioning Support for Subversion     oracle.jdeveloper.subversion     11.1.1.3.37.56.60     Loaded
    Virtual File System     oracle.ide.vfs     11.1.1.3.37.56.60     Loaded
    WSDL Chooser     oracle.jdeveloper.wsdllookup     11.1.1.0.0     Loaded
    WSDL web services extension     oracle.jdevimpl.wsdl     11.1.1.3.37.56.60     Loaded
    Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.3.37.56.60     Loaded
    Web Services     oracle.jdeveloper.webservice     11.1.1.3.37.56.60     Loaded
    WebDAV Connection Support     oracle.jdeveloper.webdav2     11.1.1.3.37.56.60     Loaded
    WebStart     oracle.j2ee.webstart     11.1.1.0.0     Loaded
    XML Compare     oracle.jdeveloper.xml-compare     11.1.1.3.37.56.60     Loaded
    XML Editing Framework IDE Extension     oracle.ide.xmlef     11.1.1.3.37.56.60     Loaded
    XML Editing Framework Java Integration     oracle.jdeveloper.xmlef     11.1.1.3.37.56.60     Loaded
    XSL Mapper     oracle.bpm.mapper     11.1.1.3.0.25.57     Loaded
    adf-deploy-dt     oracle.adfdt.common.deploy     11.1.1.3.37.56.60     Loaded
    adf-deploy-dt-mds     oracle.adfdt.common.deploy.mds     11.1.1.3.37.56.60     Loaded
    adf-installer-ide     adf.installer.dt     11.1.1.3.37.56.60     Loaded
    adf-jmxdc-ide     oracle.adf.jmxdc     11.1.1.3.37.56.60     Loaded
    adf-logging-dt     oracle.adf.logging.dt     11.1.1.3.37.56.60     Loaded
    adf-model-debugger-dt     oracle.adf-model-debugger-dt     11.1.1.3.37.56.60     Loaded
    adf-model-tools     oracle.adf.model.tools     11.1.1.3.37.56.60     Loaded
    adf-security-policy-dt     oracle.adfdtinternal.adf-security-policy-dt     11.1.1.3.37.56.60     Loaded
    adf-share-deploy-dt     oracle.adf.share.deploy.dt     11.1.1.3.37.56.60     Loaded
    adf-share-dt     oracle.adf.share.dt     11.1.1.3.37.56.60     Loaded
    adfmcoredt-xdf     oracle.adfm.xdf     11.1.1.3.37.56.60     Loaded
    adfquerylovdt     oracle.adf-faces-query-and-lov-dt     11.1.1.3.37.56.60     Loaded
    analytics.measurement     oracle.bpm.analytics.measurement     11.1.1.3.0.6.84     Loaded
    appoverview     oracle.ide.appoverview     11.1.1.3.37.56.60     Loaded
    asnav-weblogic     oracle.jdeveloper.asnav.weblogic     11.1.1.3.37.56.60     Loaded
    audit     oracle.ide.audit     11.1.1.3.37.56.60     Loaded
    audit-core     oracle.ide.audit.core     11.1.1.3.37.56.60     Loaded
    bam     oracle.bpm.bam     11.1.1.3.0.6.84     Loaded
    bi-jdbc     oracle.bi.jdbc     11.1.1.3.37.56.60     Loaded
    boot     oracle.bpm.boot     11.1.1.3.0.6.84     Loaded
    bpa     oracle.bpm.bpa     11.1.1.3.0.6.84     Loaded
    bpm-services.client     oracle.bpm.bpm-services.client     11.1.1.3.0.6.84     Loaded
    bpm-services.interface     oracle.bpm.bpm-services.interface     11.1.1.3.0.6.84     Loaded
    bpmobject     oracle.bpm.bpmobject     11.1.1.3.0.6.84     Loaded
    bpmobject.datacontrol     oracle.bpm.bpmobject.datacontrol     11.1.1.3.0.6.84     Loaded
    bpmobject.runtime     oracle.bpm.bpmobject.runtime     11.1.1.3.0.6.84     Loaded
    chart     oracle.bpm.chart     11.1.1.3.0.6.84     Loaded
    classpath: protocol handler extension     oracle.jdeveloper.classpath     11.1.1.0.0     Loaded
    compiler     oracle.bpm.compiler     11.1.1.3.0.6.84     Loaded
    compiler.debug     oracle.bpm.compiler.debug     11.1.1.3.0.6.84     Loaded
    compiler.xpath     oracle.bpm.compiler.xpath     11.1.1.3.0.6.84     Loaded
    configuration     oracle.bpm.configuration     11.1.1.3.0.6.84     Loaded
    connectors     oracle.bpm.connectors     11.1.1.3.0.6.84     Loaded
    core     oracle.bpm.core     11.1.1.3.0.6.84     Loaded
    dashboard     oracle.bpm.dashboard     11.1.1.3.0.6.84     Loaded
    db-audit     oracle.ide.db.audit     11.1.1.3.37.56.60     Loaded
    db-modeler-transform     oracle.dbmodeler.transform     11.1.1.3.37.56.60     Loaded
    dcadapters-ide     oracle.adfm.dc-adapters     11.1.1.3.37.56.60     Loaded
    dependency-java     oracle.jdeveloper.java.dependency     11.1.1.3.37.56.60     Loaded
    dependency-refactor     oracle.jdeveloper.refactoring.dependency     11.1.1.3.37.56.60     Loaded
    deploy-ant     oracle.deploy.ant     11.1.1.3.37.56.60     Loaded
    deploy-rt     oracle.jdevimpl.deploy-rt     11.1.1.3.37.56.60     Loaded
    designer     oracle.bpm.designer     11.1.1.3.0.6.84     Loaded
    editor     oracle.bpm.editor     11.1.1.3.0.6.84     Loaded
    fdi     oracle.bpm.fdi     11.1.1.3.0.6.84     Loaded
    feedback-client2     oracle.ideimpl.feedback2.client     11.1.1.3.37.56.60     Loaded
    fuegoui     oracle.bpm.fuegoui     11.1.1.3.0.6.84     Loaded
    fusion.sca     oracle.bpm.fusion.sca     11.1.1.3.0.6.84     Loaded
    fusion.scac     oracle.bpm.fusion.scac     11.1.1.3.0.6.84     Loaded
    ide-diagnostics     oracle.ide.diagnostics     11.1.1.0.0     Loaded
    j2ee-adrsimpl     oracle.j2ee.adrsimpl     11.1.1.0.0     Loaded
    j2ee-facelets     oracle.j2ee.facelets     11.1.1.3.37.56.60     Loaded
    j2ee-jpsconfig     oracle.j2ee.jpsconfig     11.1.1.3.37.56.60     Loaded
    j2ee-security     oracle.j2ee.security     11.1.1.3.37.56.60     Loaded
    j2ee-server     oracle.j2ee.server     11.1.1.0.0     Loaded
    j2ee-server-dt     oracle.j2ee.server.dt     11.1.1.3.37.56.60     Loaded
    j2ee-serverimpl     oracle.j2ee.serverimpl     11.1.1.3.37.56.60     Loaded
    j2ee-weblogic     oracle.j2ee.weblogic     11.1.1.3.37.56.60     Loaded
    j2ee-weblogic-editors     oracle.j2ee.weblogic.editors     11.1.1.3.37.56.60     Loaded
    jdukshare     oracle.bm.jdukshare     11.1.1.3.37.56.60     Loaded
    lib     oracle.bpm.lib     11.1.1.3.0.6.84     Loaded
    library-dconfig-infra     oracle.jdeveloper.library.dconfig.infra     11.1.1.3.37.56.60     Loaded
    library-jee-api     oracle.jdeveloper.library.jee.api     11.1.1.3.37.56.60     Loaded
    library-jmx     oracle.jdeveloper.library.jmx     11.1.1.3.37.56.60     Loaded
    library-jps     oracle.jdeveloper.library.jps     11.1.1.3.37.56.60     Loaded
    library-weblogic-api     oracle.jdeveloper.library.weblogic.api     11.1.1.3.37.56.60     Loaded
    library-weblogic-client     oracle.jdeveloper.library.weblogic.client     11.1.1.3.37.56.60     Loaded
    mof     oracle.mof     11.1.1.3.37.56.60     Loaded
    mof-index     oracle.mof.index     11.1.1.3.37.56.60     Loaded
    mof-xmi     oracle.mof.xmi     11.1.1.3.37.56.60     Loaded
    obpi     oracle.bpm.obpi     11.1.1.3.0.6.84     Loaded
    oracle.adfm     oracle.adfm     11.1.1.3.37.56.60     Loaded
    oracle.adfm.contextual     oracle.adfm.contextual     11.1.1.3.37.56.60     Loaded
    oracle.dynamic-faces-dt     oracle.dynamic.faces     11.1.1.3.37.56.60     Loaded
    oracle.ide.dependency     oracle.ide.dependency     11.1.1.3.37.56.60     Loaded
    oracle.ide.filequery     oracle.ide.filequery     11.1.1.3.37.56.60     Loaded
    oracle.ide.indexing     oracle.ide.indexing     11.1.1.3.37.56.60     Loaded
    oracle.ide.usages-tracking     oracle.ide.usages-tracking     11.1.1.3.37.56.60     Loaded
    oracle.todo.tasks     oracle.todo.tasks     11.1.1.3.37.56.60     Loaded
    palette2     oracle.ide.palette2     11.1.1.3.37.56.60     Loaded
    papi     oracle.bpm.papi     11.1.1.3.0.6.84     Loaded
    parser     oracle.bpm.parser     11.1.1.3.0.6.84     Loaded
    placeholder-jsf-ui     oracle.placeholderjsf-ui     11.1.1.3.37.56.60     Loaded
    placeholderdc-dt     oracle.placeholderdc.dt     11.1.1.3.37.56.60     Loaded
    pml.service     oracle.bpm.pml.service     11.1.1.3.0.6.84     Loaded
    project     oracle.bpm.project     11.1.1.3.0.6.84     Loaded
    project.catalog     oracle.bpm.project.catalog     11.1.1.3.0.6.84     Loaded
    project.command     oracle.bpm.project.command     11.1.1.3.0.6.84     Loaded
    project.compile     oracle.bpm.project.compile     11.1.1.3.0.6.84     Loaded
    project.draw     oracle.bpm.project.draw     11.1.1.3.0.6.84     Loaded
    project.importer     oracle.bpm.project.importer     11.1.1.3.0.6.84     Loaded
    project.interface     oracle.bpm.project.interface     11.1.1.3.0.6.84     Loaded
    project.io     oracle.bpm.project.io     11.1.1.3.0.6.84     Loaded
    project.metadata     oracle.bpm.metadata     11.1.1.3.0.6.84     Loaded
    project.model     oracle.bpm.project.model     11.1.1.3.0.6.84     Loaded
    project.ui     oracle.bpm.project.ui     11.1.1.3.0.6.84     Loaded
    project.view     oracle.bpm.project.view     11.1.1.3.0.6.84     Loaded
    rcasadapter-dt     oracle.jdeveloper.asadapter.dt     11.1.1.3.37.56.60     Loaded
    rcasadapter-oc4j     oracle.jdeveloper.asadapter.oc4j     11.1.1.3.37.56.60     Loaded
    rcasadapter-rescat2     oracle.jdeveloper.asadapter.rescat2     11.1.1.3.37.56.60     Loaded
    rcasadapter-thirdparty     oracle.jdeveloper.asadapter.thirdparty     11.1.1.3.37.56.60     Loaded
    rcasadapter-weblogic     oracle.jdeveloper.asadapter.weblogic     11.1.1.3.37.56.60     Loaded
    rcasadapter-weblogic-api     oracle.jdeveloper.asadapter.weblogic.api     11.1.1.3.37.56.60     Loaded
    rescat2     oracle.jdevimpl.rescat2     11.1.1.3.37.56.60     Loaded
    resourcebundle-api-adfdeps     oracle.jdeveloper.resourcebundle.adfdeps     11.1.1.3.37.56.60     Loaded
    resourcebundle-api-xliff     oracle.resourcebundle.xliff     11.1.1.3.37.56.60     Loaded
    resourcebundle-customization     oracle.jdeveloper.resourcebundle.customization     11.1.1.3.37.56.60     Loaded
    rmi     oracle.bpm.rmi     11.1.1.3.0.6.84     Loaded
    searchbar-gallery     oracle.ide.searchbar.gallery     11.1.1.3.37.56.60     Loaded
    searchbar-help     oracle.ide.searchbar.help     11.1.1.3.37.56.60     Loaded
    searchbar-index     oracle.ide.searchbar.index     11.1.1.3.37.56.60     Loaded
    status     oracle.ide.status     11.1.1.3.37.56.60     Loaded
    tests.core     oracle.bpm.tests.core     11.1.1.3.0.6.84     Loaded
    ui     oracle.bpm.ui     11.1.1.3.0.6.84     Loaded
    vfilesystem     oracle.bpm.vfilesystem     11.1.1.3.0.6.84     Loaded
    web.execution     oracle.bpm.web.execution     11.1.1.3.0.6.84     Loaded
    web.formdesigner     oracle.bpm.web.formdesigner     11.1.1.3.0.6.84     Loaded
    xml     oracle.bpm.xml     11.1.1.3.0.6.84     Loaded
    xml-schema-dt     oracle.jdevimpl.xml.schema     11.1.1.3.37.56.60     Loaded
    xobject.devel     oracle.bpm.xobject.devel     11.1.1.3.0.6.84     Loaded
    xobject.runtime     oracle.bpm.xobject.runtime     11.1.1.3.0.6.84     Loaded
    xsl-dt     oracle.jdevimpl.xml.xsl     11.1.1.3.37.56.60     Loaded
    xsqldt-ide     oracle.xsqldt-ide     11.1.1.3.37.56.60     Loaded
    Best regards,
    Benoît

Maybe you are looking for

  • FB03 Attachment List

    Dear ABAP gurus :    In transaction FB03, when users display the attachment list, I got a requirement to add some checks when they select a document and press 'VIEW' button.   I have debugged FB03 transaction triying to find the program/methos/class

  • Urgent:download data in differnt tabs of excel sheet

    Hi, I want to save data from internal table to different worksheet of an excel sheet file without using ole. I am having thousands of record in my internal table. Currently I am doing this by using OLE but its response time is very high. Plz suggest

  • LSMW for RFBIBL00

    Hello everyone, I am trying to post vendor postings for FI using LSMW and program RFBIBL00. I have to upload the withholding tax(TDS) for this postings. I am assigning 3 files 1) Header Data 2) Line item data and 3)Tax Data. All the files are read an

  • Did anyone experience drop down in # of user usage in Apple's weekly report after transitioning?

    Hello, Did anyone experience drop down in # of user usage in Apple's weekly report after transitioning to the new structure (or design)? We transitioned our public iTunes U site on the first week of April. Since then, the number in the apple's weekly

  • Information Broadcasting - Error in the Workbook

    Hi, We are implementing Information broadcasting for the workbook. It works pretty good as far as running the workbook, scheduling the workbook on a precalc server. When we try to email the workbook we get the email but the file is corrupted. We see