ERROR URGENT HELP!!!!!!!!!

Hi
I have made a portlet with pl/sql, on the Edit Default I have to edit the way the information in my portlet It's going to be display, to do that I storage the code on a table in bd and when I clicked Edit Defaults I get this code from db and put it in a html textarea, when the user clicked Ok or Apply I storaged the information back in db. Then in the show mode I got the information from db and then do an EXECUTE IMMEDIATE to run this variable, but I got this problem when the portlet shows:
excepcionORA-06550: line 1, column 16: PLS-00103: Encountered the symbol "" when expecting one of the following: begin function package pragma procedure subtype type use cursor form current
So i checked the code on bd and it has some strange characters, It seems to be added when the user clicked Apply or Ok, but I don't understant why this things to that.
Please can anybody help, it's really urgent
Ana Maria

I don't know if I understand your question, but it looks to me like your trying to use dynamic SQL concepts for something you should solve using Oracle Portal's preference store mechanism. Please provide more details (code).

Similar Messages

  • DiskSpace Report Alert Error - Urgently Help Needed

    Hell All
    I have been take the scripts from https://gallery.technet.microsoft.com/scriptcenter/Disk-Space-Report-Reports-98e64d65
    Which is working fine , but my end of scripts out Auto Disclaimer is added and the output has little bit collapsed
    Disclaimer HAS BEEN added to the waring and critical Table which is mentioned on this script which is underlined now. and how avoid this 
    Urgent help is needed
    #  Check disk space and send an HTML report as the body of an email.        #
    #  Reports only disks on computers that have low disk space.                #
    #  Author: Mike Carmody                                                     #
    #  Some ideas extracted from Thiyagu's Exchange DiskspaceHTMLReport module. #
    #  Date: 8/10/2011                                                          #
    #  I have not added any error checking into this script yet.                #
    # Continue even if there are errors
    $ErrorActionPreference = "Continue";
    # Items to change to make it work for you.
    # EMAIL PROPERTIES
    #  - the $users that this report will be sent to.
    #  - near the end of the script the smtpserver, From and Subject.
    # REPORT PROPERTIES
    #  - you can edit the report path and report name of the html file that is the report. 
    # Set your warning and critical thresholds
    $percentWarning = 15;
    $percentCritcal = 10;
    # EMAIL PROPERTIES
    # Set the recipients of the report.
    $users = "[email protected]"
      #$users = "[email protected]" # I use this for testing by uing my email address.
    #$users = "[email protected]", "[email protected]", "[email protected]";  # can be sent to individuals.
    # REPORT PROPERTIES
    # Path to the report
    $reportPath = "D:\Jobs\DiskSpaceQuery\Reports\";
    # Report name
    $reportName = "DiskSpaceRpt_$(get-date -format ddMMyyyy).html";
    # Path and Report name together
    $diskReport = $reportPath + $reportName
    #Set colors for table cell backgrounds
    $redColor = "#FF0000"
    $orangeColor = "#FBB917"
    $whiteColor = "#FFFFFF"
    # Count if any computers have low disk space.  Do not send report if less than 1.
    $i = 0;
    # Get computer list to check disk space
    $computers = Get-Content "servers_c.txt";
    $datetime = Get-Date -Format "MM-dd-yyyy_HHmmss";
    # Remove the report if it has already been run today so it does not append to the existing report
    If (Test-Path $diskReport)
            Remove-Item $diskReport
    # Cleanup old files..
    $Daysback = "-7"
    $CurrentDate = Get-Date;
    $DateToDelete = $CurrentDate.AddDays($Daysback);
    Get-ChildItem $reportPath | Where-Object { $_.LastWriteTime -lt $DatetoDelete } | Remove-Item;
    # Create and write HTML Header of report
    $titleDate = get-date -uformat "%m-%d-%Y - %A"
    $header = "
    <html>
    <head>
    <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>
    <title>DiskSpace Report</title>
    <STYLE TYPE='text/css'>
    <!--
    td {
    font-family: Tahoma;
    font-size: 11px;
    border-
    border-right: 1px solid #999999;
    border-bottom: 1px solid #999999;
    border-
    padding-
    padding-right: 0px;
    padding-bottom: 0px;
    padding-
    body {
    margin-
    margin-
    margin-right: 0px;
    margin-bottom: 10px;
    table {
    border: thin solid #000000;
    -->
    </style>
    </head>
    <body>
    <table width='100%'>
    <tr bgcolor='#CCCCCC'>
    <td colspan='7' height='25' align='center'>
    <font face='tahoma' color='#003399' size='4'><strong>AEM Environment DiskSpace Report for $titledate</strong></font>
    </td>
    </tr>
    </table>
     Add-Content $diskReport $header
    # Create and write Table header for report
     $tableHeader = "
     <table width='100%'><tbody>
    <tr bgcolor=#CCCCCC>
        <td width='10%' align='center'>Server</td>
    <td width='5%' align='center'>Drive</td>
    <td width='15%' align='center'>Drive Label</td>
    <td width='10%' align='center'>Total Capacity(GB)</td>
    <td width='10%' align='center'>Used Capacity(GB)</td>
    <td width='10%' align='center'>Free Space(GB)</td>
    <td width='5%' align='center'>Freespace %</td>
    </tr>
    Add-Content $diskReport $tableHeader
    # Start processing disk space reports against a list of servers
      foreach($computer in $computers)
    $disks = Get-WmiObject -ComputerName $computer -Class Win32_LogicalDisk -Filter "DriveType = 3"
    $computer = $computer.toupper()
    foreach($disk in $disks)
    $deviceID = $disk.DeviceID;
            $volName = $disk.VolumeName;
    [float]$size = $disk.Size;
    [float]$freespace = $disk.FreeSpace; 
    $percentFree = [Math]::Round(($freespace / $size) * 100, 2);
    $sizeGB = [Math]::Round($size / 1073741824, 2);
    $freeSpaceGB = [Math]::Round($freespace / 1073741824, 2);
            $usedSpaceGB = $sizeGB - $freeSpaceGB;
            $color = $whiteColor;
    # Set background color to Orange if just a warning
    if($percentFree -lt $percentWarning)      
      $color = $orangeColor
    # Set background color to Orange if space is Critical
          if($percentFree -lt $percentCritcal)
            $color = $redColor
     # Create table data rows 
        $dataRow = "
    <tr>
            <td width='10%'>$computer</td>
    <td width='5%' align='center'>$deviceID</td>
    <td width='15%' >$volName</td>
    <td width='10%' align='center'>$sizeGB</td>
    <td width='10%' align='center'>$usedSpaceGB</td>
    <td width='10%' align='center'>$freeSpaceGB</td>
    <td width='5%' bgcolor=`'$color`' align='center'>$percentFree</td>
    </tr>
    Add-Content $diskReport $dataRow;
    Write-Host -ForegroundColor DarkYellow "$computer $deviceID percentage free space = $percentFree";
        $i++
    # Create table at end of report showing legend of colors for the critical and warning
     $tableDescription = "
     </table><br><table width='20%'>
    <tr bgcolor='White'>
        <td width='10%' align='center' bgcolor='#FBB917'>Warning less than 15% free space</td>
    <td width='10%' align='center' bgcolor='#FF0000'>Critical less than 10% free space</td>
    </tr>
      Add-Content $diskReport $tableDescription
    Add-Content $diskReport "</body></html>"
    # Send Notification if alert $i is greater then 0
    if ($i -gt 0)
        foreach ($user in $users)
            Write-Host "Sending Email notification to $user"
    $smtpServer = "MySMTPServer"
    $smtp = New-Object Net.Mail.SmtpClient($smtpServer)
    $msg = New-Object Net.Mail.MailMessage
    $msg.To.Add($user)
            $msg.From = "[email protected]"
    $msg.Subject = "Environment DiskSpace Report for $titledate"
            $msg.IsBodyHTML = $true
            $msg.Body = get-content $diskReport
    $smtp.Send($msg)
            $body = ""
    https://gallery.technet.microsoft.com/scriptcenter/Disk-Space-Report-Reports-98e64d65

    Hi,
    I want to double confirm which version are you used, please also refer to scripting center for the similar scripts:
    Disk Space Monitoring - HTML EMAIL Report
    http://gallery.technet.microsoft.com/scriptcenter/6e935887-6b30-4654-b977-6f5d289f3a63
    Monitor Free Disk Space Information on a Computer
    http://gallery.technet.microsoft.com/scriptcenter/04c29c84-5ecc-4bf6-8dd4-2940db63d9f3
    List Available Disk Space
    http://gallery.technet.microsoft.com/scriptcenter/7fa38863-ad6f-4f46-ac91-9b7d4a30f52b
    Disk Space monitoring
    http://gallery.technet.microsoft.com/scriptcenter/fd4f5235-1a80-41ed-87e2-189278fd376c
    If you encounter any difficulties when customizing the scripts, you may submit a new question in
    The Official Scripting Guys Forum! which is a best resource for scripting related issues.
    Best Regards,
    Allen Wang

  • OSA VB error - Urgent Help is needed

    Dear friends.
    I am using Oracle Sales Analyzer Vs 1.5.2.1 Rev.1.534g
    I am facing the following problem when I am trying to use the Custom Aggregates menu. I receive the following error:
    VB error #14 occured: Out of String Space
    \nfrmDSAggregate: FormLoad\nDSAG: SetupAG\nPMCatGetEntryList. This Application maybe in an unstable state. Do you wish to continue?
    If I choose Yes, it brings up the menu however with no data and no possibility to do anything. If I choose NO the program closes.
    Can you please help me deal with this problem? I urgently need to work on the data and I am stack!
    Please send directly to [email protected]
    Many thanks in advance
    George

    Not sure if it might help but take a look at Patch.5032548.
    Sam
    http://www.appsdbablog.com

  • IPlanet Error - URGENT HELP Required

    Hi All,
    I am facing a problem with a deployed Application on iPlanet 6.0 on Windows 2000 Server.
    The Application works fine but after a couple of days it starts chewing up a lot of memory on the Windows box and ultimately hangs.
    The KJS logs have the following errors :-
    [15/Jan/2002 18:45:32:3] error: SERVLET-put_nonserial: Putting non-serializable object when using NAS session
    [15/Jan/2002 18:45:32:5] error: SERVLET-put_nonserial: Putting non-serializable object when using NAS session
    [15/Jan/2002 18:45:33:1] error: SERVLET-put_nonserial: Putting non-serializable object when using NAS session
    [15/Jan/2002 18:45:33:1] error: SERVLET-put_nonserial: Putting non-serializable object when using NAS session
    [15/Jan/2002 18:47:09:8] error: Exception: SERVLET-exception: Exception occurred
    Exception Stack Trace:
    java.lang.ClassNotFoundException: com.diagnostix.dom.Patient
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:981)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:369)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
         at com.netscape.server.servlet.platformhttp.PlatformNASSession.getMemberValue(Unknown Source)
         at com.netscape.server.servlet.platformhttp.PlatformNASSession.finalInvalidation(Unknown Source)
         at com.netscape.server.servlet.platformhttp.SessionInvalidator.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
         at com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown Source)
         at com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknown Source)
         at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
         at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
         at com.kivasoft.thread.ThreadBasic.run(Native Method)
         at java.lang.Thread.run(Thread.java:479)
    [15/Jan/2002 18:47:09:8] error: Exception: SERVLET-exception: Exception occurred
    Exception Stack Trace:
    java.lang.ClassNotFoundException: com.diagnostix.dom.UserAccount
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:981)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:369)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
         at com.netscape.server.servlet.platformhttp.PlatformNASSession.getMemberValue(Unknown Source)
         at com.netscape.server.servlet.platformhttp.PlatformNASSession.finalInvalidation(Unknown Source)
         at com.netscape.server.servlet.platformhttp.SessionInvalidator.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
         at com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown Source)
         at com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknown Source)
         at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
         at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
         at com.kivasoft.thread.ThreadBasic.run(Native Method)
         at java.lang.Thread.run(Thread.java:479)
    [15/Jan/2002 18:47:09:8] error: Exception: SERVLET-exception: Exception occurred
    Exception Stack Trace:
    java.lang.ClassNotFoundException: com.diagnostix.dom.cumulative.CumDefaultDateRange
         at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:981)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:369)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
         at com.netscape.server.servlet.platformhttp.PlatformNASSession.getMemberValue(Unknown Source)
         at com.netscape.server.servlet.platformhttp.PlatformNASSession.finalInvalidation(Unknown Source)
         at com.netscape.server.servlet.platformhttp.SessionInvalidator.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
         at com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown Source)
         at com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknown Source)
         at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
         at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
         at com.kivasoft.thread.ThreadBasic.run(Native Method)
         at java.lang.Thread.run(Thread.java:479)
    Please help me out with this. This is very urgent.
    THANKS a lot in Advance.

    Hi there,
    It's difficult to be absolutely certain as to whether this is a symptom of another problem particularly as you mention leaking memory (which can generate lots of different errors).
    This first error (error: SERVLET-put_nonserial:...) would must likely be caused by putting a non-serializable object into the a HTTP Session context when the Web application is marked as distributable. The synchronization of session data relies on the Java serialization mechanism and while Non-Serializable objects can be put into the HTTP Session context they will cause the synchronization proces to choke. The exceptions (and the memory leak) may be a consequence of putting some unexpected data into the Session object. You can test this by marking the application as non-distributable.
    Hope this helps
    Amanda
    Developer Tehcnical Support
    Sun Microsystems
    http://www.sun.com/developers

  • Jacob.jar Help/Webutil Error-Urgent Help Needed

    We are not using any OLE object in forms.But after implementation on WEBUTIL the browser starts giving below error:
    java.lang.NoClassDefFoundError:com/jacob/com/ComFailException
    Can anyone help ?
    Is jacob.jar is required to download even if we don't need it.
    Thanks
    Mandeep Singh

    Thanks for quick response.
    But my question is do we need to config jacob lib even we dn't need it.I am asking this because with this release of WEBUTIL,jacob is a seperate lic. product and its not a part of WEBUTIL pack.
    Thanks

  • WRITE BACK ERROR URGENT HELP

    Hi Experts,
    Below is the xml code for the write back and i am getting the error .
    Please go through and let me know how shud i correct the code if it is wrong,...
    <?xml version="1.0" encoding="utf-8"?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
    <WebMessageTable lang="en-us" system="writeBack" table="Messages">
    <WebMessage name="CUST_FPP_REV1">
    <XML>
    <writeBack connectionPool="RecoPool">
    <insert>INSERT into DAILY.REVRECAT (SERVICE_REV) values (@{c4})</insert>
    <update> UPDATE DAILY.REVRECAT set SERVICE_REV=@(c4) where COMBI='@(c17)'</update>
    </writeBack>
    </XML>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    The error I am getting when I click on the write back button is
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. NQODBC SQL_STATE: HY000 nQSError: 10058 A general error has occurred. nQSError: 43093 An error occurred while processing the EXECUTE PHYSICAL statement. nQSError: 17001 Oracle Error code: 904, message: ORA-00904: "C4": invalid identifier at OCI call OCIStmtExecute: UPDATE DAILY.REVRECAT set SERVICE_REV=(c4) COMBI='(c17)'. nQSError: 17011 SQL statement execution failed. (HY000)
    SQL Issued: EXECUTE PHYSICAL CONNECTION POOL RecoPool UPDATE DAILY.REVRECAT set SERVICE_REV=(c4) where COMBI='(c17)' "Also can we pass prsentation variables in the write back xml template..(.in the where clause in the SQL query)
    Appreciate your immediate reponse as this has become a work stopper for me ...
    Please let me know where I am going wrong.
    Regards,
    Veena A
    Edited by: mithuu on Mar 3, 2009 3:17 AM
    Edited by: mithuu on Mar 3, 2009 3:19 AM

    Hi Nico,
    Thanks for your reply but i am really confused...
    I tried with the points you told but not now gettig the error as
    " Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. NQODBC SQL_STATE: HY000 nQSError: 10058 A general error has occurred. nQSError: 43093 An error occurred while processing the EXECUTE PHYSICAL statement. nQSError: 17001 Oracle Error code: 904, message: ORA-00904: "C4": invalid identifier at OCI call OCIStmtExecute: UPDATE DAILY.REVRECAT set SERVICE_REV=(c4) COMBI='(c17)'. nQSError: 17011 SQL statement execution failed. (HY000)
    SQL Issued: EXECUTE PHYSICAL CONNECTION POOL RecoPool UPDATE DAILY.REVRECAT set SERVICE_REV=(c4) where COMBI='(c17)' "
    Please help as i am new to this tool.
    Appreciate your help.
    Regards,
    Veena A
    Edited by: mithuu on Mar 3, 2009 3:20 AM

  • ORA-12560  TNS protocol adapter error--URGENT HELP!

    To Experts:
    I tried to log in the SQL by using the username: system, manager for password. however, it gave me the message:
    ORA-12560 TNS protocol adapter error.
    I am using Oracle 9i and Developer 6 in Wins XP environment.
    Thank you much!

    Yes,Thank you very much.I am ok to invoke these commands.
    the listener started already.The listener name is just LISTENER.But i still can't login sql plus.Help me on.
    hi,Mr sb92075
    Do you use what kind of messenger?If we can communicate on messenger,it will facilitate solving my problem I think.I don't mean to disrespect you but I just want to overcome the problem very quickly.
    with best regards,
    Ian Su
    Can I know very clearly?
    what are the things(eg dbname,username,protocol I don't know exactly just guessing)needed to connect to the database?
    I already installed oracle developer suite 10 and oracle 10g xe database server.
    I can't login to sqlplus and what are the things i need to check to get connected to the database from sqlplus?
    I appreciate your help and need somebody help.
    Edited by: Ian Su on Jun 18, 2011 11:21 PM
    Edited by: Ian Su on Jun 18, 2011 11:29 PM

  • Cisco MCS 7835i3 CM 7.1.5, unable to boot giving ECC bit DIMM Error, Urgent help required

    Hi,
    One of our client is using CUCM 7.1.5, on MCS 7835i3. CM is now unable to boot. giving ECC bit DIMM error. We have serviced MCS, then started, it started working but only one hard light is blinking. Is there any problem with hard or something else. As well show hardware logs are attached.
    Please find attached snapshots.
    Regards,
    Humza Khan

    Hi ,
    Try to reseat the RAID controller  i it helps else follow what Terry has said.
    http://www-947.ibm.com/support/entry/portal/docdisplay?lndocid=migr-5074114
    http://public.dhe.ibm.com/systems/support/system_x_pdf/ibm_doc_sraidmr_10i-10.03_user-guide.pdf
    regds,
    aman

  • Disk Error, Urgent help needed

    I will try to explain everything in a summarised form:
    i am using Macbook Air 2014 with Mavericks and Bootcamp windows 8.1
    I wanted the notes app of mountain lion to run in mavericks
    so created extra partition using disk utility and installed mountain lion using usb installer
    after finding out that  i cannot run old version of app in mavericks
    i deleted the mountain lion partition but when i dragged my Mavericks partition to expand it did not do anything
    i tried again by expanding it a little above the maximum available space
    it worked and my mavericks partition was 120 gb once again
    now my bootcamp partition was corrupt
    and recovery partition was missing from startup instead it shows boot efi
    disk utility gives Invalid number of allocation blocks and cannot repair it
    please tell me what should i do?
    would reinstalling mavericks be of any help?

    It is probable that you are creating an element, and then explicitly setting its value to null. This will cause the error you are getting even if the minOccurs for the particular element is set to 0.

  • Weblogic Service Invocation Error-Urgent help required.

    failed to invoke operation 'searchCustomerDetails' due to an error in the soap layer (SAAJ); nested exception is: Message[ failed to serialize class java.lang.Objectweblogic.xml.schema.binding.SerializationException: type mapping lookup failure on class=class org.apache.xerces.dom.DeferredDocumentImpl TypeMapping=TYPEMAPPING SIZE=0
    ]StackTrace[
    javax.xml.soap.SOAPException: failed to serialize class java.lang.Objectweblogic.xml.schema.binding.SerializationException: type mapping lookup failure on class=class org.apache.xerces.dom.DeferredDocumentImpl TypeMapping=TYPEMAPPING SIZE=0
    at weblogic.webservice.core.DefaultPart.invokeSerializer(DefaultPart.java:332)
    at weblogic.webservice.core.DefaultPart.toXML(DefaultPart.java:297)
    at weblogic.webservice.core.DefaultMessage.toXML(Def

    Hello,
    are you sure you have setup the ADSUser in the ADSProxy correctly for the webdynpro?
    Copy from the Config Guide:
    Procedure
    To set up Basic Authentication in a Java environment:
    1. Log on to the Visual Administrator. (See How to Start the Visual Administrator [Seite 54]) . 2. On the Cluster tab, choose Server <x> &#8594; Services &#8594; Web Services Security
    3. Choose Web Service Clients &#8594; sap.com > tcwdpdfobject &#8594; com.sap.tc.webdynpro.adsproxy.AdsProxy*ConfigPort_Document.
    4. From the Authentication list, select BASIC.
    Adobe Document Services Configuration Guide - 22 -
    Adobe Document Services Configuration for SAP Web AS 7.0
    ADSUser 5. In the User and boxes, enter as Username and a Password. Password
    6. Choose Save.
    7. The authentication data must be activated. For doing this navigate to Services &#8594; Deploy.
    8. Choose the button Application.
    9. Choose sap.com/tcwdpdfobject in the tree.
    10. Choose Stop Application.
    11. For restarting the application choose . Start Application
    Best regards,
    Dezso

  • Client copy error (URGENT HELP Required)

    Hi all,
    We did system copy of production system after that we were asked to do the client copy from 500 as source client but while performing this activity disp + work dispatcher is going in standstill mode and its turning yellow in color.
    There is no error in developer trace and other logs.
    Please suggest me the solution to resolve this problem as we have to finish this activity by today evening.
    Thanks & Regards,
    Prashant.

    Hi prashant,
    u checked the swap memory size.
    Check ur disk sapca and also the log file folder. If it is full then
    the dispatcher will not start because it can not write the log.
    check the path
    \usr\sap\sid\instanace\j2ee\cluster\server0\log
    check this folder size if this folder size is more then remove the log
    files from the archive folder which is a sub directory in log folder
    copy the archives files in to a new disk and then delete from the
    archive folder. Then try to start the SAP sytem .
    Regards,
    R.Suganya

  • Wlj2eedeployer.ear  ERROR  - urgent help needed

    I was trying to deploy wlj2eedeployer.ear in WLS 9.2 MP1 for ALBPM in an integrated environment. And I noticed an error for the first time. This error stops to deploy wlj2eedeployer and as a result of that I am not able to deploy the other ears.
    Upon further introspection I found a ALBPM installer document in which remedy of the error is as follow:
    “Unable to access the selected application. exception in AppMerge flows progression”
    If you get the error:
    “Unable to access the selected application. exception in AppMerge flows progression” then your installation of WebLogic 9.2 does not have MP1 applied (see “Prerequisites” section of this document). Apply MP1 and repeat this step.
    But as I already mention, I am using WLS 9.2 MP1. Could the root cause of the error be different from what we expected ?

    i think you should first deploy the fuegoj2ee-lib-all.jar.
    download this jar file form albpm webconsole,
    and put it in the lib floder(weblogic domain's lib).
    and then, reboot the weblogic server.
    and then ,deploy this wlj2eedeployer.ear.
    you can try it.

  • WIP Interface errors - Urgent help needed

    I am using the WIP Mass load program to create DJs. The program completed successfully but for some order lines the DJs were not created. I receive the following error messages,
    ORDER_NUMBER LINE NO. ERROR_MESSAGE
    =========================================================================================================================
    2005379022 4 Value for column ORGANIZATION_CODE is being ignored.
    2005379022 4 Value for column WIP_ENTITY_ID is being ignored.
    2005379022 4 Value for column DAILY_PRODUCTION_RATE is being ignored.
    2005379022 4 Value for column LAST_UNIT_START_DATE is being ignored.
    2005379022 4 Value for column FIRST_UNIT_COMPLETION_DATE is being ignored.
    2005379022 5 Value for column ORGANIZATION_CODE is being ignored.
    2005379022 5 Value for column WIP_ENTITY_ID is being ignored.
    2005379022 5 Value for column DAILY_PRODUCTION_RATE is being ignored.
    2005379022 5 Value for column LAST_UNIT_START_DATE is being ignored.
    I went through the WIP API but still couldnt find the root cause of the messages. Records with similar values in the WIP Interface tables have completed successfully.
    Appreciate if you can throw some light on this.

    All these errors are from WIP_JSI_VALIDATOR and WIP_JSI_DEFAULTER. You can search the package using these column and you can find the issue.
    Thanks
    Nagamohan

  • Deployment Error- Urgent Help needed

    Hello All,
    I am facing a error while deployment. Please find the error as follows:
    Oct 11, 2007 3:59:23 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [006]Deployment aborted
    Settings
    SDM host : INLD50047221A
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/I038687/LOCALS1/Temp/temp52460JA310_01.ear
    Result
    => deployment aborted : file:/C:/DOCUME1/I038687/LOCALS1/Temp/temp52460JA310_01.ear
    Aborted: development component 'JA310_01'/'local'/'LOKAL'/'0.2007.10.11.15.59.21':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Only Administrators have the right to perform this operation.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted
    Quick response will be appreciated.
    Best Regards,
    Shakti Barath

    Make Sure that the Administrator user belongs to the Group
    "Administrators".
    Check here :  User Administration --> Groups and search for Administrators.
    refer this Thread
    Problem while Deploying WebDynpro application-error:java.rmi.RemoteExceptio
    regards
    Rajendra

  • SAP_XI_IDOC/IDOCFlatToXmlConvertor error: URGENT Help Needed

    Hi Team,
    I have Flat Idoc text file need to convert xml formate I am trying to use module configuration here . I have configured like below
    1 SAP_XI_IDOC/IDOCFlatToXmlConvertor Local Enterprise Bean 1
    2 CallSapAdapter                                    Local Enterprise Bean 0
    Module Configuration
    Module Key  Parameter name Parameter value
    1                 SAPRelease       700
    1       SourceJRA       XI_IDOC_DEFAULT_DESTINATION
    1     TargetDestination  ECC_JNDI_603
    I am getting error below
    Error: com.sap.engine.services.jndi.persistent.exceptions720.NameNotFoundException: Path to object does not exist. First missing component is [XI_IDOC_DEFAULT_DESTINATION], the whole lookup name is [deployedAdapters/XI_IDOC_DEFAULT_DESTINATION/shareable/XI_IDOC_DEFAULT_DESTINATION].
    Can you please suggest to me where I am doing wrong .
    Regards
    Tahir.A

    Check out this discussion:
    http://scn.sap.com/thread/3344764
    Also check William's blog:
    How to Use User-Module for Conversion of IDoc Messages Between Flat and XML Formats

Maybe you are looking for

  • Zen V Plus won't switch

    Interesting problem here - when I switch the player off (it gives me the "Shutting down" screen) it powers down, and then decides to switch itself on again! Recently I put a bit more music on there (which caused it to crash more than regularly - a ne

  • HP photosmart C4700 cannot be connected over the network.

    my printer was recently unplugged and refuses to print. i have reinstalled all drivers and software but still cannot connect over the network. please help soon as i desperatley need to print off college work. this has happened before but reinstalling

  • Popup new page

    Hi. Is it possible to open a popup window from an applet much like showDocument() but only show a frame without the navigation bar etc. More like, a new Frame not a new Browser window. Thanx.

  • Pie Chart Help

    Hi, I have a pie chart Its with AS2.0 i want to make it with AS3.0 can any one help me to start with it.

  • Assigning a Custom URL to a Blog? Possible?

    Any chance of assigning a custom URL to a specific weblog? For example http://weblog.mycustomerdomain.com