Missing deployment summary list

Hi,
I've done deployment on my environment and it was successful.
When I browse to the managed server deployment tab, it is listed. But when I go to Deployment Summary, the application I deployed is not listed there. Hence, I'm unable to delete the deployment since it is not listed in the summary table.
Any idea why it has gone missing? The deployment is there, application is running, it is just not being listed in the summary table.

Thanks for your quick response.
I've tried that, but the list is still empty.
Yes, I have more than 10 deployed application, but the list still shows empty.
On the Deployment -> Monitoring tab, I got a message saying
"The object that you were viewing has been deleted, either by you or another user"
Even if I go through the Managed Server -> Deployment tab and select the deployed application, I can get to the configuration page for that app. But once I clicked on the monitoring, it gave the same message above.
It seems like the app is already been deleted, but it is still there where all servers are running without issue even after restarts.

Similar Messages

  • Missing Deployment Descriptor

    Hi..
    have a little Web-Project (in Eclipse with Sun Application Server 9.1_01) for Persistence i Use Toplink. All work fine, until i change a jsp for example and eclipse do a redeploy. After this Redoploy i got the following error:
    [#|2008-03-03T16:33:32.829+0100|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=18;_ThreadName=httpSSLWorkerThread-8080-0;_RequestID=dc10582e-b7f2-4c4e-8b24-bd0262149cdf;|StandardWrapperValve[data]: PWC1406: Servlet.service() for servlet data threw exception
    Local Exception Stack:
    Exception [TOPLINK-6007] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.QueryException
    Exception Description: Missing descriptor for [class dd.entities.Dreminder].
    Query: ReadAllQuery(dd.entities.Dreminder)
         at oracle.toplink.essentials.exceptions.QueryException.descriptorIsMissing(QueryException.java:419)
         at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.checkDescriptor(ObjectLevelReadQuery.java:412)
         at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.checkPrePrepare(ObjectLevelReadQuery.java:494)
         at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.checkEarlyReturn(ObjectLevelReadQuery.java:433)
         at oracle.toplink.essentials.queryframework.DatabaseQuery.execute(DatabaseQuery.java:575)
         at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:692)
         at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:746)
         at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2233)
         at oracle.toplink.essentials.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:952)
         at oracle.toplink.essentials.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:924)
         at oracle.toplink.essentials.internal.ejb.cmp3.base.EJBQueryImpl.executeReadQuery(EJBQueryImpl.java:367)
         at oracle.toplink.essentials.internal.ejb.cmp3.base.EJBQueryImpl.getResultList(EJBQueryImpl.java:478)
         at dd.servlets.DataManager.service(DataManager.java:43)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
         at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:290)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
         at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
         at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
         at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
         at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
         at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
    |#]
    I test it in a very ! Simple Program. Just one Servlet and One Entity, her ist my Code. I hope somebody could help me.
    Entity:
    @Entity
    @Table(name="dreminder")
    public class Dreminder implements Serializable {
         @Id
         @GeneratedValue
         private int id;
    ....+ getter & setter
    My Servlet:
    @PersistenceUnit
         private EntityManagerFactory factory = Persistence.createEntityManagerFactory("default");
         @Override
         protected void service(HttpServletRequest arg0, HttpServletResponse arg1) throws ServletException, IOException {
              EntityManager em = factory.createEntityManager();
              Query query;
              query = em.createNativeQuery("select * from Dreminder", Dreminder.class);
              for (Dreminder reminder:(List<Dreminder>) query.getResultList()) {
                   arg1.getWriter().write("ID: " + reminder.getId());
              em.close();
    my Persistence.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="default" transaction-type="RESOURCE_LOCAL">
    <provider>oracle.toplink.essentials.PersistenceProvider</provider>
    <class>dd.entities.Dreminder</class>
    <properties>
    <property name="toplink.jdbc.driver" value="org.apache.derby.jdbc.EmbeddedDriver"/>
    <property name="toplink.jdbc.url" value="jdbc:derby:C:\DerbyDatabases\dreminder2;create=true"/>
    <property name="toplink.jdbc.user" value="admin"/>
    <property name="toplink.jdbc.password" value="admin123"/>
    <property name="toplink.logging.level" value="INFO"/>
    </properties>
    </persistence-unit>
    </persistence>
    thanks for helping !!!
    D

    ...have the first mistake...i really don't know where eclipse has stored the Persistence-Unit name "default", but if i change it in persistence.xml, he get the Factory i thing. But now i have my old Problem: "missing deployment descriptor" (only with eclipse)
    Exception:
    [#|2008-03-12T16:12:27.954+0100|SEVERE|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=17;_ThreadName=httpSSLWorkerThread-8080-0;_RequestID=6547fbd4-c661-4d2a-960d-e9cd78ab290d;|StandardWrapperValve[data]: PWC1406: Servlet.service() for servlet data threw exception
    Local Exception Stack: Exception [TOPLINK-6007] (Oracle TopLink Essentials - 2.0.1 (Build b09d-fcs (12/06/2007))): oracle.toplink.essentials.exceptions.QueryException
    Exception Description: Missing descriptor for [class dd.entities.Dreminder].
    Query: ReadAllQuery(dd.entities.Dreminder)
    at oracle.toplink.essentials.exceptions.QueryException.descriptorIsMissing(QueryException.java:419)
    at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.checkDescriptor(ObjectLevelReadQuery.java:412)
    at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.checkPrePrepare(ObjectLevelReadQuery.java:494)
    at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.checkEarlyReturn(ObjectLevelReadQuery.java:433)
    at oracle.toplink.essentials.queryframework.DatabaseQuery.execute(DatabaseQuery.java:575)
    at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:692)
    at oracle.toplink.essentials.queryframework.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:746)
    at oracle.toplink.essentials.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2233)
    at oracle.toplink.essentials.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:952)
    at oracle.toplink.essentials.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:924)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EJBQueryImpl.executeReadQuery(EJBQueryImpl.java:367)
    at oracle.toplink.essentials.internal.ejb.cmp3.base.EJBQueryImpl.getResultList(EJBQueryImpl.java:478)
    at dd.servlets.DataManager.getData(DataManager.java:107)
    at dd.servlets.DataManager.service(DataManager.java:87)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:290)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
    at com.sun.enterprise.web.portunif.PortUnificationPipeline$PUTask.doTask(PortUnificationPipeline.java:380)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
    at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
    |#]

  • HT1386 Recently I updated iTunes on my PC and now the "Summary" for syncing my iPhone no longer appears near the top of my iTunes Window. The Summary lists items that I can sync with my iPhone such as "Music, Photos, Apps" etc.

    Recently I updated iTunes on my PC and now the "Summary" for syncing my iPhone with iTunes no longer appears near the top of my iTunes window.  "Summary" lists items I can sync such as "Music, Photos, Apps", etc with drop-down boxes I can use to manage how I sync those items.  An icon for my iPhone does appear near the top right corner of the iTunes window; however, when I click on the icon, the sync automatically begins and there is no display of what is syncing or how much space has been used or how much space is left for syncing music, photos, apps, etc. The new iTunes window no longer lists "Devices" on the left-hand side of the window.  Has anyone had the same issue?

    In iTunes go to View>Show Sidebar.

  • No option to save files, content/file type missing from Applications list

    I want to be able to click a link to a file and have the option to Open the file with a specified application.
    When clicking on the file I want to Open with a specified application, I only get a Save or Cancel option.
    When I look in Preferences > Applications, the file type is missing from the list.
    This was working. It is not working anymore. It is not a problem with the website. I need to know where in the FF settings I can change this.
    FF 30.0
    Kubuntu 13.10
    Thanks

    ''Tahl [[#answer-693773|said]]''
    <blockquote>
    OP, did you ever get a solution to this problem? It's driving me nuts having to specify a download destination then go into a program to open the file I just downloaded!! Have tried deleting file types .rdf and no success either!
    </blockquote>
    I'm not sure of the solution on Windows. But this worked for me on Linux.
    I needed to edit mimeTypes.rdf
    See the links below for details. The first one was someone having a problem with Transmission. I was having a problem with ktorrent, so I just adapted that. If you're having a problem with a different file type, then you'll need to adapt it differently. But the general idea is the same.
    http://askubuntu.com/questions/384375/how-can-i-get-firefox-to-open-torrent-files-with-transmission
    http://forums.mozillazine.org/viewtopic.php?f=9&t=1706945
    Also, I suspect that FlashGot or some similar download manger plugin was responsible for screwing this up. I haven't confirmed it yet, but I've seen some things that make me suspect it.

  • Payment summary list , F110

    Hi Guys ,
    Is there a way  to print  preview the Payment summary list  and also the payment advice which are run backgound from F110 .
    Thanks in ADV
    Vinay Kolla

    There is a program defined in the printout/data medium section with a specified variant name, please run that progra on a online basis to see the print preview. Most of the cases you will receive a spool output only as the output of that program, but that can be handled inside from your program.
    Hope that helps
    Anirban M.

  • Spry Validation Textarea Widget "error: missing ) after argument list"

    Hi all,
    I'm trying to apply validation on textarea in one of my forms but it keeps giving me the same error msg in Firefox "missing ) after argument list". Funny thing is that the line witch initiate the textarea object is one on one from the Spry Framework Documentation!
    Here is fragment of the form code:
    <label id="cContentCont">
         <span class="cFormTag">Comment: <span id="charCounter"></span></span>
         <textarea name="comContent" id="comContent"></textarea>
         <span class="textfieldRequiredMsg"></span>
    </label>
    Here is the code that initialize this object:
    var sprytextarea1    = new Spry.Widget.ValidationTextarea("cContentCont" {maxChars:100, counterType:"chars_remaining", counterId:"charCounter"} ) ;
    I have also 2 other text inputs befor that element and they are working just fine befor i initiate that particular textarea!
    I can't see an error or missing argument in this line, please if somebody encounter the same problem and have solution I be glade to share his experience!
    Thanks !

    Your code is missing a comma after "chars_remaining" as in
    var sprytextarea1 = new Spry.Widget.ValidationTextarea("cContentCont", {maxChars:100, counterType:"chars_remaining", counterId:"charCounter"});
    Hope this helps,
    Ben

  • I loaded a lot of music from my CDs on to my iMac at home.  All my music is stored on the cloud.  So why is the music on my MacBook Pro different.  The CDs are missing from this list.

    I loaded a lot of music from my CDs on to my iMac at home.  All my music is stored on the cloud.  So why is the music on my MacBook Pro different.  The CDs are missing from this list. The iTunes account details I use on both computers is the same.

    Hi Chris,
    Thanks for the reply.
    I think you ave sorted my problem with your question.  I thought that as my iTunes account was on their server (Cloud) and I had previously added CDs which showed up, that all my music was "on the cloud".  I used to use Match but when I turned it off lost all my music that I had previously loaded onto my computer.
    So I guess I have to use the cloud again to access my songs.  This is frustrating as I fly a lot and can not use the music (Cloud based) when the phone is in flight mode as there is no internet.
    So how then do I retrieve all my music to my iMac and have my laptop synced so they are the same?
    I am totally confused now.

  • DELJIT Idoc issue, delivery Item missing from Due list

    We have recieved an Inbound DELJIT Idoc with status 53 that means the Scheduling agreement was updated successfully, but one of the Delivery line items of the Idoc does not appear in Delivery due list in VL10,  any reason Why?
    Thanks

    Hi Dirk,
    Please see below configuration in XXXID.h file:
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPServiceProviderImpl, kCSDTPPrefix + 0)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPIndesignResponderImpl, kCSDTPPrefix + 1)
    DECLARE_PMID(kImplementationIDSpace, kCSDTSelectionObserverImpl, kCSDTPPrefix + 2)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 3)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPStartupShutdownServiceImpl,  kCSDTPPrefix + 4)
    Above configuration is giving me below ASSERT:
    FillOutInterfaceInfo - Impl kCSDTPObserverImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    Now I changed the configuration as below:
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPServiceProviderImpl, kCSDTPPrefix + 0)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPIndesignResponderImpl, kCSDTPPrefix + 1)
    DECLARE_PMID(kImplementationIDSpace, kCSDTSelectionObserverImpl, kCSDTPPrefix + 2)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 4)        //<-------changed from 3 to 4
    DECLARE_PMID(kImplementationIDSpace, kCSDTPStartupShutdownServiceImpl,   kCSDTPPrefix + 3)    //<-------changed from 4 to 3
    Now it is giving below ASSERT:
    FillOutInterfaceInfo - Impl kCSDTPStartupShutdownServiceImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    Now this looks really wierd. I also tried with some random combinations 5,6,7 but none is working and some how 3 is not working but 4 is working. Now how can I decide which
    is going to work and why 3 is not working here.
    Please enlighten me if any one has any clue here

  • *REC Error - missing ) after argument list

    Hi all,
    Please note the following code
    *XDIM_MEMBERSET P_ACCOUNT = 50100010.FOB.FC
    *XDIM_MEMBERSET P_PCA = <ALL>
    *XDIM_MEMBERSET P_CUSTOMER = P_DUMMY
    *XDIM_MEMBERSET P_MONTH AS %DUMMY_MONTH%= 2011_DUMMY_MONTH
    *XDIM_MEMBERSET P_MONTH AS %MONTHS% = BAS(2011.TOTAL)
    *XDIM_MEMBERSET P_BUDGET_MODEL AS %BUDGET_MODELS% = BAS(2011.TOTAL)
    *XDIM_MEMBERSET P_VERSION AS %VERSION% = 10
    *LOOKUP COLMOBIL01
    *DIM P_CURR_FROM="%P_BUDGET_MODEL%.CURR_FOB"
    *DIM P_EXCH_RATE_TYPE="%P_BUDGET_MODEL%.EXCH_RATE_FOB"
    *DIM P_CURR_TO="ILS"
    *DIM P_ACCOUNT="P_DUMMY"
    *DIM P_PCA="9999999999"
    *DIM MEASURES="PERIODIC"
    *FOR %S_MONTH% = %MONTHS%
    *DIM LK_%S_MONTH%:P_MONTH="%S_MONTH%"
    *NEXT
    *ENDLOOKUP
    *WHEN P_ACCOUNT
    *IS 50100010.FOB.FC
    *FOR %S_MODEL% = %BUDGET_MODELS%
    *FOR %S_MONTH% = %MONTHS%
    *REC(EXPRESSION=%VALUE%*LOOKUP(LK_%S_MONTH%), P_ACCOUNT=50100010.FOB.ILS)
    *NEXT
    *NEXT
    *ENDWHEN
    When I validate it, I receive a message:
    LINE 0 syntax error: " missing ) after argument list"
    When I delete the *REC line, the validation is OK.
    Any idea why do I get this message?

    Hi Gersh,
    I am sorry if I have not been lear. The script passed validation. The "." is not in the name of the variable but in the values of the dimension. My Budget models IDs were YYYY.MODEL1. I have an attribute called MODEL_NOYEAR, which includes the characters to the right of the ".". When I used it and only inside the LOOKUP added the year it worked fine.
    My Time dimension has the same issue, It is defined as YYYY.MM. Again, in your last proposed script, you have cycled over a property, which only includes the period number. This gave me the idea.
    I know that the REC needs the ( without spaces. Took me one night to find this out....:(
    Now, after I have passed validation a new challenge arrived.
    Basically each Budget Model has 2 properties. One is the Exchange Rate Type and the other is the currency of purchase. The LOOKUP should be accessing another application based on the Month and the two properties of the model.
    It suddenly struck me that the script is not good since the lookup is not bringing the values.
    I have tried the following versions:
    1. Straight forward version - use the name of the propery of the calling dimension. Did not work.
    *DIM L_%SMDL%_%SMNTH%:P_CURR_FROM = P_BUDGET_MODEL.CURR_FOB
    2. Use the value of the calling dimension "." the propery name. Did not work
    *DIM L_%SMDL%_%SMNTH%:P_CURR_FROM = 2011_%SMDL%.CURR_FOB
    3. I have created a variable that should hold the value and then used it. Did not work.
    *LOOKUP COLMOBIL01
    *DIM P_CURR_TO="ILS"
    *DIM P_ACCOUNT="P_DUMMY"
    *DIM P_PCA="9999999999"
    *DIM MEASURES="PERIODIC"
    *FOR %SMDL% = %BUDGET_MODELS%
    *FOR %SMNTH% = %MONTHS%
    *DIM L_%SMDL%_%SMNTH%:P_CURR_FROM = %CF%
    *DIM L_%SMDL%_%SMNTH%:P_EXCH_RATE_TYPE = %ERF%
    *DIM L_%SMDL%_%SMNTH%:P_MONTH="%BY%.%SMNTH%"
    *NEXT
    *NEXT
    *ENDLOOKUP
    *WHEN P_ACCOUNT
    *IS 50100010.FOB.FC
    *FOR %SMDL% = %BUDGET_MODELS%
    *FOR %SMNTH% = %MONTHS%
    *SELECT(%CF%, CURR_FOB, P_BUDGET_MODEL, "ID = 2011_%SMDL%")
    *SELECT(%ERF%, EXCH_RATE_FOB, P_BUDGET_MODEL, "ID = 2011_%SMDL%")
    *BEGIN
    *REC(EXPRESSION=%VALUE%*LOOKUP(L_%SMDL%_%SMNTH%), P_ACCOUNT=50100010.FOB.ILS)
    *END
    *NEXT
    *NEXT
    *ENDWHEN
    I can not escape the feeling that somehow I do not understand the way the BPC is handling the data and how and when it calculates variables and defines them.
    Any idea how do I perform the lookup based on the property values?
    Thanks,
    Avihay

  • J2EE:160043]Missing deployment descriptor "WEB-INF/web.xml"

    Hi ,
    When I try to deploy using admin console i get the following error msg.
    J2EE:160043]Missing deployment descriptor "WEB-INF/web.xml"
    The war file has web.xml.
    Can some give me the reason for the above error.
    LOG content:
    weblogic.management.ApplicationException: [J2EE:160043]Missing deployment descriptor
    "WEB-INF/web.xml" at "C:\bea8\user_projects\domains\eConnect\applications\myEconnect.war"
         at weblogic.j2ee.J2EEApplicationContainerFactory.handleError(J2EEApplicationContainerFactory.java:729)
         at weblogic.j2ee.J2EEApplicationContainerFactory.initializeDeployment(J2EEApplicationContainerFactory.java:470)
         at weblogic.management.deploy.DeployerRuntime.unprotectedActivate(DeployerRuntime.java:833)
         at weblogic.management.deploy.DeployerRuntime.access$000(DeployerRuntime.java:63)
         at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1499)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1490)
         at weblogic.management.deploy.DeployerRuntime.activate(DeployerRuntime.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:711)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:690)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:947)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:908)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:946)
         at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:481)
         at weblogic.management.runtime.DeployerRuntimeMBean_Stub.activate(DeployerRuntimeMBean_Stub.java:1064)
         at weblogic.management.console.actions.mbean.WebAppComponentDeployAction.prePerform(WebAppComponentDeployAction.java:141)
         at weblogic.management.console.actions.mbean.DoMBeanWizardAction.perform(DoMBeanWizardAction.java:215)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:173)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:971)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:402)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6350)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3635)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

    You'll have to at least show me the out contents of that WAR file.
    -- Rob
    Sowjanya wrote:
    Suppose the directory structure of the appl is c:\myroot\webapp\...
    then we need to go to webapp and then build the war file.
    C:\myroot\webapp>jar -cvf abc.war *
    then copy the war file and paste it in applicaitons folder.
    "sowjanya" <[email protected]> wrote:
    Hi ,
    When I try to deploy using admin console i get the following error msg.
    J2EE:160043]Missing deployment descriptor "WEB-INF/web.xml"
    The war file has web.xml.
    Can some give me the reason for the above error.
    LOG content:
    weblogic.management.ApplicationException: [J2EE:160043]Missing deployment
    descriptor
    "WEB-INF/web.xml" at "C:\bea8\user_projects\domains\eConnect\applications\myEconnect.war"
         at weblogic.j2ee.J2EEApplicationContainerFactory.handleError(J2EEApplicationContainerFactory.java:729)
         at weblogic.j2ee.J2EEApplicationContainerFactory.initializeDeployment(J2EEApplicationContainerFactory.java:470)
         at weblogic.management.deploy.DeployerRuntime.unprotectedActivate(DeployerRuntime.java:833)
         at weblogic.management.deploy.DeployerRuntime.access$000(DeployerRuntime.java:63)
         at weblogic.management.deploy.DeployerRuntime$1.run(DeployerRuntime.java:1499)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.management.deploy.DeployerRuntime.checkAndPerformDeployerActions(DeployerRuntime.java:1490)
         at weblogic.management.deploy.DeployerRuntime.activate(DeployerRuntime.java:186)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:711)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:690)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
         at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:947)
         at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:908)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:946)
         at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:481)
         at weblogic.management.runtime.DeployerRuntimeMBean_Stub.activate(DeployerRuntimeMBean_Stub.java:1064)
         at weblogic.management.console.actions.mbean.WebAppComponentDeployAction.prePerform(WebAppComponentDeployAction.java:141)
         at weblogic.management.console.actions.mbean.DoMBeanWizardAction.perform(DoMBeanWizardAction.java:215)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:173)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:971)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:402)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6350)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3635)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

  • I paid for songs that are missing from my list where are they?

    i paid for songs that are missing from my list where are they?

    Correct.
    Audiobooks have never been available for redownlaod and have never been listed among the content that can be redownloaded.
    As always, it is your responsibility to back up your content.

  • FillOutInterfaceInfo - Impl kCSDTPObserverImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?

    I know this is a very basic question and I also undestand that I have to include the same in my XXXFactoryList.h file.
    But the issue is that I have included it perfectly every where and still I an getting this ASSERT due to this, no instance of my CSDTPObserver:CObserver is getting created
    Please help to get this rectifiedFillOutInterfaceInfo - Impl kCSDTPObserverImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    below code from file CSDTPObserverImpl.cpp
    CREATE_PMINTERFACE(CSDTPObserverImpl, kCSDTPObserverImpl)
    /* CSDTPObserverImpl Constructor
    CSDTPObserverImpl::CSDTPObserverImpl(IPMUnknown* boss)
      : CObserver(boss, IID_ICSDTPOBSERVER)
    below code from CSDTPFactoryList.h:
    REGISTER_PMINTERFACE(CSDTPObserverImpl, kCSDTPObserverImpl)
    Below code from CSDTP.fr:
    resource FactoryList (kSDKDefFactoryListResourceID)
      kImplementationIDSpace,
      #include "CSDTPFactoryList.h"
    resource ClassDescriptionTable(kSDKDefClassDescriptionTableResourceID)
    AddIn
      kDocBoss,
      kInvalidClass,
      IID_ICSDTPOBSERVER, kCSDTPObserverImpl,
    Below code from CSDTPID.h:
    // InterfaceIDs:
    DECLARE_PMID(kInterfaceIDSpace, IID_ICSDTPOBSERVER, kCSDTPPrefix + 6)
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 5)
    Can some one please point out the mistake I am doing here???

    Hi Dirk,
    Please see below configuration in XXXID.h file:
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPServiceProviderImpl, kCSDTPPrefix + 0)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPIndesignResponderImpl, kCSDTPPrefix + 1)
    DECLARE_PMID(kImplementationIDSpace, kCSDTSelectionObserverImpl, kCSDTPPrefix + 2)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 3)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPStartupShutdownServiceImpl,  kCSDTPPrefix + 4)
    Above configuration is giving me below ASSERT:
    FillOutInterfaceInfo - Impl kCSDTPObserverImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    Now I changed the configuration as below:
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPServiceProviderImpl, kCSDTPPrefix + 0)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPIndesignResponderImpl, kCSDTPPrefix + 1)
    DECLARE_PMID(kImplementationIDSpace, kCSDTSelectionObserverImpl, kCSDTPPrefix + 2)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 4)        //<-------changed from 3 to 4
    DECLARE_PMID(kImplementationIDSpace, kCSDTPStartupShutdownServiceImpl,   kCSDTPPrefix + 3)    //<-------changed from 4 to 3
    Now it is giving below ASSERT:
    FillOutInterfaceInfo - Impl kCSDTPStartupShutdownServiceImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    Now this looks really wierd. I also tried with some random combinations 5,6,7 but none is working and some how 3 is not working but 4 is working. Now how can I decide which
    is going to work and why 3 is not working here.
    Please enlighten me if any one has any clue here

  • Unable to find the default new form for list mylist1 - deploying the list instance via module feature

    hi,
    am facing a problem deploying a list instance via a feature, 
      I created the list in the UI with content and views.
    Exported the site template as WSP.
    Imported into Visual Studio the list instance, pages module and property bags.
    Copied into my new solution.
    Deploy list instance as a site-collection level scoped feature.
    activated the below features :
    mylist_ModulesFeature
    mylist_ListInstancesFeature
    mylist_PropertyBagFeature
    List deploys fine with content and views. However, I receive the following error when trying to add a new item: “Unable to find the default new form for list”. The same applies for editing items.
    can anyone pls help why i am getting this  error ?

    try these links:
    http://tomvangaever.be/blogv2/2010/04/unable-to-find-the-default-new-form-for-list/
    http://sharebrad.blogspot.in/2012/08/unable-to-find-default-edit-form-for.html
    http://stackoverflow.com/questions/10243131/deploying-a-list-instance-to-sharepoint-2010-error-unable-to-find-the-default-n
    https://happiestsharepointminds.wordpress.com/2014/03/01/unable-to-find-the-default-edit-form-for-list-or-unable-to-find-the-default-display-form-for-list/
    http://itsolutionsblog.net/sharepoint-problem-with-library-forms-unable-to-create-folder-ore-edit-properties/
    http://blogs.technet.com/b/yashgoel-msft/archive/2013/08/30/recreating-default-display-edit-and-new-forms-of-a-list-in-sharepoint-2010-using-powershell.aspx
    Please mark answer as correct if it is correct else vote for it if you find it useful

  • Missing Deployment Profile item

    I want to create WebCenter Application WAR profile but is missing form the list. How can I update this item? Please refer the below Oracle step by step image.
    http://download.oracle.com/docs/cd/E12529_01/webcenter.1013/b31074/img/jpsdg_deploy_deprofil.gif

    Are you able to create a new Webcenter portal Application when you click on 'Application' ---> 'New' menu?
    If not webcenter extensions are NOT available - please download the extensions manually & add them as mentioned in
    http://blogs.oracle.com/jdeveloperpm/entry/installing_jdeveloper_extensions_locally
    Thanks,
    Navaneeth

  • ApplicationException: [J2EE:160043]Missing deployment descriptor

    <Sep 20, 2004 9:38:19 AM EDT> <Error> <Deployer> <BEA-149027> <Unable to activat
    e application, BillingDepot, from source, C:\bea\weblogic81\server\bin\.\myserve
    r\upload\BillingDepot\BillingDepot.war. Reason: [J2EE:160043]Missing deployment
    descriptor "WEB-INF/web.xml" at "C:\bea\weblogic81\server\bin\.\myserver\upload\
    BillingDepot\BillingDepot.war">
    Got this exception during war file deployment, here's war file content :
    C:\Documents and Settings\admin>c:\jdk1.4.2_04\bin\jar tvf C:\bea\weblogic81\
    server\bin\.\myserver\upload\BillingDepot\BillingDepot.war
    342 Mon Sep 20 09:38:10 EDT 2004 META-INF/MANIFEST.MF
    9 Mon Sep 20 09:38:12 EDT 2004 /index.htm
    9 Mon Sep 20 09:38:12 EDT 2004 /index.html
    45386 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/activation.jar
    1235721 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/axis.jar
    958352 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/bcprov-jdk14-118.jar
    71442 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/commons-discovery.jar
    31605 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/commons-logging.jar
    115060 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/ipdr.jar
    35759 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/jaxrpc.jar
    352668 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/log4j-1.2.8.jar
    276098 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/mail.jar
    18402 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/saaj.jar
    113853 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/wsdl4j.jar
    906248 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/xalan.jar
    1728861 Mon Sep 20 09:38:12 EDT 2004 /WEB-INF/lib/xercesImpl.jar
    108484 Mon Sep 20 09:38:14 EDT 2004 /WEB-INF/lib/xml-apis.jar
    131919 Mon Sep 20 09:38:14 EDT 2004 /WEB-INF/lib/xmlParserAPIs.jar
    354491 Mon Sep 20 09:38:14 EDT 2004 /WEB-INF/lib/xmlsec.jar
    9492 Mon Sep 20 09:38:14 EDT 2004 /WEB-INF/server-config.wsdd
    4000 Mon Sep 20 09:38:14 EDT 2004 /WEB-INF/web.xml
    What can be possibly wrong with the file ? BTW, deployed fine on Tomcat.

    Hi,
    Please check if the JRE being used is for Java 1.3 or 1.4.
    How are you deploying the application? Using weblogic.Deployer or through the admin console? If the former then ensure that your classpath and path refer to the JDK 1.4 files/folder.
    This is what comes to mymind at the moment, do try and see if this works.
    Regards,
    Rommel.

Maybe you are looking for

  • Flash ActiveX's CallFunction method always fails (E_FAIL)

    Hi, I likely have collected all information in the web, but still facing the problem. I am trying to host the Flash ActiveX in a C# program and establish two-way communication between the host application and the ActionScript contained in my SWF file

  • Converting video for Pocketdish

    I got Quicktime Pro hoping to have it convert some .mp4 or .mov movies I had to the appropriate format to get them to work on Pocketdish AV500e, but the Pocketdish does not recognize the video. I was shown the specs for what the video needs to be, bu

  • InDesign CC crashes on quit. Windows 7. I've removed Batang.ttc from my system... (updated)

    ...and run the script from here. I don't have any third party plugins or scripts. I'm using defaut workspaces. Anyone have suggestions? Windows says dvaui.dll is the problem. Anyone know how to replace repair this?

  • Hitting ENTER causes cursor to jump to other blocks

    Hi, In my custom 6i form, if the user accidentally hits ENTER on any field (null or not null), the cursor jumps to a particular block everytime. How can I stop this event to occur so the cursor stays at that field only? Thanks.

  • No sound and audio device not working properly, T61 vista

    I unistalled the audio device SoundMax integrated HD audio because I had problems getting the mic of my new webcam (Logitech pro 9000) to work. But after reinstalling the SoundMax audio driver the audio device is no longer working. Installing the Sou