Exception in CMS when transporting the Components in the assembly stage

Hi,
I am getting the following exception in CMS when transporting the Components in the assembly stage:
com.sap.cms.tcs.interfaces.exceptions.TCSFileCreateException: cannot create file:*****.sca Error adding file *****/pr_deployarchivedr/TestDc.sda to archive.
File was already added before.
Any pointers to resolve the exception will be helpful.
Regards.
Rajat

Hi Rajat,
two things causes this type of error.
1) Check whether the systems are in SYNC or not(patch level, versions).
2)Check whether the dependencies are transported or not to assemble tab.
Regards,
Anil.

Similar Messages

  • How to import the components onto the portal

    Dear All,
    I've got installed ECC6 in my home PC with some of the netweaver components like XI, BI and etc. But after login into the Portal, I'm not finding any of the components on the portal, except the welcome screen. And ABAP is working well from the SAP logon pad.
    So can anyone explain that, how to import the netweaver components onto the portal. Pl. give me the step-by-step explanation as i'm very new to this aspect.
    Best Regards
    Mahesh

    See this -> iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install
    and this -> iTunes for Windows: Troubleshooting CD issues caused by device filters

  • How to change the components of the planned order? (FM or BAPI)

    I need to change the storage(LGORT) in the components.
    I found only MD_PLDORD_CHANGE_COMP_ITEMS, but could not get the correct result.
    Has anyone used this FM to change the components of the planned order?
    Can you please tell how to use it. Or advise an alternative solution.

    Hi Anton,
    There's a BAPI to change planned orders - BAPI_PLANNEDORDER_CHANGE, but it allows to change only header data.
    Therefore you'll have to go a bit longer, and use a couple of other BAPIs:
    First read the order that you want to change - BAPI_PLANNEDORDER_GET_DETAIL
    Second, create a new planned order with the changed data, based on the read planned order - BAPI_PLANNEDORDER_CREATE.
    Third, delete the old planned order - BAPI_PLANNEDORDER_DELETE.
    Regards,
    Mario

  • Issue of the components to the production

    Hi,
    There is situation to issue the componnets of 500-600 to the production through syatem against single Finish Product,
    Production person create requisition with the components and sent to stores,store person manually issue the components against the availability.
    which takes lot of time,
    Whetehr there is user friendly transactions for such issue?
    Whether it is possible to issue the child parts by selectong only FG code? and issue of the child parts?
    With Regards,
    Devendra

    Hi
    You can do back flash for the FG's BOM component ( Check MRP3 view Backflash indicator marked ) while confirmation posting in CO11N
    You can also perform Pick List in CO27 or COHV
    If its REM and Discrete  , then use MF50 /MF65 for GI
    You can also develop a custom transaction in back ground program using BAPI BAPI_GOODSMVT_CREATE with the movement type=261 where program will  select
    all the materials (RESB-MATNR), Item No. of Reservation (RESB-RSPOS), BOM Item (RESB-POSNR)
    from RESB where movement type (RESB-BWART) and  trigger Auto Goods Issue for Child item
    Regards
    JH

  • 'Valid to' dates for both the Header & the components in the BOM report.

    Hi Experts,
    My Requirement:
    Need to display the 'Valid to' dates for both the Header & the components in the BOM report.
    Right now we are using the Functional modules 'GET_STKO' & 'GET_STPO' for the header
    & the components respectively. The report gives the correct output for the all the BOM alternatives
    which exist. But for the BOM alternatives which have been deleted(updated in STKO-LKENZ)
    'Valid to' dates are displayed as'00/00/0000'.
    (Note:ECM is used for BOMs)
    Is there any Logical Database that I can fetch the 'Valid to' dates of both BOM Header & components
    which are deleted?
    Regards,
    Mahesh

    Dear Mahesh,
    In my understanding I dont think you cannot get the valid to date for BOM header,unless a ECN,(engineering change number) is
    used to set the deletion flag.In otherwords none of the business sets for all these BOM's the valid to date(which means the
    default valid to date 31.12.9999 is taken).
    Check with this FM, CS_BOM_EXPL_MAT_V2 whether can you get the valid to date for the components(infact here also the
    valid from date given in the input screen impacts the report output).
    Check and revert back.
    Regards
    Mangalraj.S

  • On minimizing application,the components of the frame become unordered

    Hi all,
    On minimizing application,the components of the frame become unordered in Swings.Can anyone suggest wat to do?
    Regards,
    Mansi

    Please do not cross-post questions in multiple forums. This will frustrate anyone who tries to help you only to find out later that the same answer was given hours ago in a cross-posted thread. For this reason, many volunteers here and at the other sites refuse to help repeat offenders. Also, your not replying to posts in the previous thread before posting here suggests that you aren't reading the suggestions, so why should we bother putting in any effort to help you if you don't demonstrate that its worth our doing so?
    [http://forums.sun.com/thread.jspa?threadID=5333175]

  • Only the components of the first tab is visible

    I have created an application with 4 tabs in a jtabbedpane. Depending on the users rights in a node(of a tree) the tabs should be visible or removed.
    Here is an example of how I add and remove tabs.
    if (status) {
    String title = ((ObjectObjectData)myTabs.elementAt(index)).getObj2().toString();
    boolean there = false;
    Component allEnabledComp[] = tabPanel.getComponents();
    for (int i=0; i<allEnabledComp.length; i++) {
    // Compare the tabs with the orign tabs stored in a vector
    if (allEnabledComp.equals(((ObjectObjectData)myTabs.elementAt(index)).getObj1())) {
    there = true;
    break;
    if (!there) {
    int newIndex = getNewIndex(index);
    tabPanel.insertTab(title, null, (Component)((ObjectObjectData)myTabs.elementAt(index)).getObj1(), "", newIndex);
    Component comp[] = tabPanel.getComponents();
    else {
    for (int i=0; i<tabPanel.getComponents().length; i++) {
    // Check if the tab should be removed or if it is already removed
    if (tabPanel.getComponentAt(i).equals(((ObjectObjectData)myTabs.elementAt(index)).getObj1())) {
    tabPanel.removeTabAt(i);
    break;
    The problem is that when I add and remove tabs only the first tab will show its components. The other tabs are empty.
    And an other strange thing. If I change the order of the tabs all components of every tab will be visible...
    Any suggestions ?

    I have tested to use setVisible instead of removeXXX and insertXXX.
    if (status) {
    String title = ((ObjectObjectData)myTabs.elementAt(index)).getObj2().toString();
    boolean there = false;
    Component allEnabledComp[] = tabPanel.getComponents();
    for (int i=0; i<allEnabledComp.length; i++) {
    if (allEnabledComp.equals(((ObjectObjectData)myTabs.elementAt(index)).getObj1())) {
    // there = true;
    allEnabledComp[i].setVisible(true);
    break;
    /*if (!there) {
    int newIndex = getNewIndex(index);
    tabPanel.insertTab(title, null, (Component)((ObjectObjectData)myTabs.elementAt(index)).getObj1(), "", newIndex);
    Component comp[] = tabPanel.getComponents();
    else {
    //Component allEnabledComp[] = tabPanel.getComponents();
    for (int i=0; i<tabPanel.getComponents().length; i++) {
    if (tabPanel.getComponentAt(i).equals(((ObjectObjectData)myTabs.elementAt(index)).getObj1())) {
    //tabPanel.removeTabAt(i);
    tabPanel.getComponentAt(i).setVisible(false);
    break;
    If I debug the code the components method isVisible() will return the state that was assign to it. But when I se the GUI, all components are visible !
    Any ideas ?

  • Problem in the code for detecting the components on the PCB image.

    I am working on a code to detect whether all the trained components are present on the PCB or not.
    I am using the quantum camera and vision acquisition software in labview to capture the image of the PCB to be tested. Then the image is compared with the original PCB image which is having all components.
    I had written the code and it is working only at some instances. I can't understand what the problem really was. Please help to know what the problem was and also help me by specifying the requirements like camera pixel, surrounding effects when the image was being captured, camera options like ZOOM, distance of the object from the camera.
    Thank you

    Hello,
    for starters I suggest reading:
    http://zone.ni.com/reference/en-XX/help/372916M-01​/nivisionconcepts/setting_up_your_imaging_system/
    And in my opinion, you should (in the future) describe the problem more thoroughly and in detail. There is not enough information in your explanation.
    Best regards,
    K
    https://decibel.ni.com/content/blogs/kl3m3n
    "Kudos: Users may give one another Kudos on the forums for posts that they found particularly helpful or insightful."

  • HT201343 i have a mid 2010 mac pro and the fact that it have most of the components as the ones compatible with the airplay mirroring mine does not work ?

    i have verify that all the components are almost the same please advice why because i was able to previously airply movies why not now that i have the latest os x mountain lion

    iTunes airplay still works as it always has.
    AirPlay Mirroring (the ML-added feature) requires the latest Intel hardware (specifically the Intel HD Graphics subprocessor).  This hardware includes a feature called QuickSync Video (similar to HDMI-over-wifi).
    There is no 'almost' have it.  Either you do or you do not.  It wasn't an arbitrary decision by Apple to deny older Macs of this hardware feature.

  • Get the Values of the components inside the region onto the Parent Page

    Hi All,
    I am using Jdeveloper 11.1.1.5.
    I just wanted to know that my use case can be fitted to contextual events or should i use the #{data.pageDef.Attribute.inputValue} to get the values.
    I have a bounded taskflow "ChildTF.xml" with fragment say "child.jsff".Now i have dragged the ChildTF.xml on the other page say "Parent.jspx" as a region.In the child.jsff page i had input form having 20 fields and all the 20 fields are dragged from a View Object so i don't have the field values binded to the Managed Bean and on the parent page "Parent.jspx" i have a button. Now on click of button i need to get the values of those 20 fields of "child.jsff" page.
    How can i achieve this?
    Thanks
    Shah

    Hi Timo,
    Thanks .
    For sharing the data control i should follow this :-
    In the Property Inspector for the called task flow i.e ChildTF.xml, select Behavior.
    In the data-control-scope list, select shared.
    Is there anything else do i need to do ??
    I mean do i need to add the iterator to the parent page also. ?
    Kindly Suggest!!
    Regards,
    Shah

  • Regarding the Components in the RWB

    HI Experts,
    In the RWB->>>Component Monitoring-->>>
    <u><b>Components</b></u>
         Adapter Engine
            System Landscape Directory
            Integration Directory
            Integration Repository
            Runtime Workbench
    When Ever I Started the RWB The Above All are in the Grey State Only
    After that when I Clicked on those Components Means Its Comming in to the GREEN State .
    What Could be the Reason. Please Let Me Know
    Regards
    Khanna

    Hi Sergio Cipolla,
    When I Check With the RWB Components, Here I am Unable to Find out the Communication Channels Monitoring .
    I Followed this way to see the CC Monitoring
    Goto RWB--Component Monitoring--Adapter Engine
    Here CC Monitoring should be in between the <b>Background Processing</b> Tab and the <b>Adapter Monitoring</b> Tab.
    But here it is missing  . what to Now
    Regards
    Khanna

  • Subcontractor Process, but sell the components to the Contract Manufacturer

    We currently are executing a process that is more or less like SAP standard subcontracting solution.  We manufacture a component "A", and supply it to a Contract Manufacturer. After the CM is done working with it, he produces a new product 'B', which he sells to us.  When we book the receipt of B, we also book the consumption of A.  We are using standard Subcontracting POs or Scheduling Agreements.  It is our responsibility to plan both the component A and the product B that he produces, since the product B is a component of our Finished goods.
    Now, our company has determined that they wish to sell the component (A) to the CM rather than just ship the component to him.  In this case, we do not retain ownership and we may not value the inventory.  We still wish to perform planning on A, according to our planning situation of B and our knowledge of the entire planning situation of A (all supply/all demand/all stock that was generated by our company).
    Can anyone think of a solution that would allow us to plan "A" in this situation?  We prefer a non-enhanced solution, but in the end, it has to work 'somehow'.
    Best Regards,
    DB49

    3 suggestions at this point (first 2 of them differ only slightly):
    1. With proc. key as F-30 for B (benefit with this, at a later date if BOM of B is expanded & chile parts other than A are to follow normal subcon, this will be handy)
    - In BOM item details for A, maintain the material prov. indicator as L
    - Sub-con demand from B will not trigger a demand for A
    - Create SO manually for A, whenever there is demand for B
    - Rest of the process should be just as per normal
    2. With proc. key as F for B
      - Create SO manually for A,  whenever there is demand for B
      - Rest of the process should be just as per normal
    3. I understand from my colleague that in EhP 5 for ECC 6.0, there is a consignment stock flow which can be used for sub-con flow. Although I haven't tested this or read much about it, would suggest to have a look at it, to see if it helps to address your need.
    If one of the above is suitable, then am quite sure you can automate the creation of SO via a Z program.
    If in case I get any further brain waves will update this thread.

  • How to lay the components in the form of rows

    I started developing one Database application, wherein I need to have the following way of Component layout in the Frame:
    EmpName:TextBox
    EmpId:TextBox
    DOB:TextBox
    and so on
    And i need to add some buttons at the end..
    Can anybody suggest me which layout manager should i have to go for and how?

    Well, you have to know that almost anything can be done with a combination of several JPanels with different LayoutManagers. In your case, I would advise you to work with a GridBagLayout.
    I also know about a LayoutManager that isn't part of the api. It is called SGLayout. I think it was given on a tip at JavaWorld. Try to google it. It is supposed to be a simplier version of GridBagLayout for "Forms".

  • How to resize the components in a JFrame when the JFrame Resizes?

    Hi all,
    i have some problems with my app. I have set the JFrame resizable and that works fine for the JFrame but not for the components in the JFrame.
    So my question is how can i set the components in a JFrame to resize automatically when the JFrame resizes?
    Here are the important things from my code,...if you need more, just let me know, its my first post in a forum .
    Its a JFrame with a JTabbedPane and on the Tabs are Panels with buttons and Tables.
    Thank you in advance!
    public class MainMonitor extends JFrame {
    public MainMonitor() {
              super();
              initialize();
              setVisible(true);
         private void initialize() {
              this.setSize(1145, 785);
              this.setIconImage(Toolkit.getDefaultToolkit().getImage("Images/c.gif"));
              this.setContentPane(getJContentPane());
              this.setTitle("Company Manager");
              this.setResizable(true);
              this.setLocationRelativeTo(null);
         private JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new JPanel();
                   jContentPane.setLayout(null);
                   jContentPane.setOpaque(true);
                   jContentPane.add(getJTabbedPane(), null);
                   jContentPane.add(getJPanel11(), null);
              return jContentPane;
         private JTabbedPane getJTabbedPane() {
              if (jTabbedPane == null) {
                   jTabbedPane = new JTabbedPane();
                   jTabbedPane.setLocation(new Point(6, 69));
                   jTabbedPane.setSize(new Dimension(1120, 684));
                   jTabbedPane.addTab("P", null, getJPanel(), null);
                   jTabbedPane.addTab("K", null, getJPanel1(), null);
                   jTabbedPane.addTab("B", null, getJPanel2(), null);
              return jTabbedPane;
         

    Giasaste wrote:
    Thanks a lot, i didnt knew that the Layout Manager is a must.It's not a must, but it is the way to allow your app to be resized nicely and makes it much easier to maintain and enhance your program. Imagine creating a complex gui then later decide that you want another radiobutton and to remove a jlabel / jtextfield pair. with layout managers a chore becomes easy.

  • Getting the below Exception after starting the components in JavaES5

    Hi All,
    I have Installed the JES5 "java_es-5_appsuite-windows-x86" on windows and after successfull intsallation and checking the option to start all the components getting the below error in the appserver-->domains-->domain1-->logs-->server.log file
    ===============================
    [#|2008-05-19T22:20:34.562+0530|SEVERE|sun-appserver-pe8.2|javax.enterprise.tools.launcher|_ThreadID=10;|launcher.jvmoptions_exception
    com.sun.enterprise.admin.util.InvalidJvmOptionException: Invalid Jvm Option Files/Sun/JavaES5/appserver/domains/domain1/config/server.policy. Option must start with -.
         at com.sun.enterprise.admin.util.JvmOptionsElement.checkValidOption(JvmOptionsHelper.java:393)
         at com.sun.enterprise.admin.util.JvmOptionsElement.<init>(JvmOptionsHelper.java:280)
         at com.sun.enterprise.admin.util.JvmOptionsHelper.<init>(JvmOptionsHelper.java:69)
         at com.sun.enterprise.tools.launcher.ProcessLauncher.buildInternalCommand(ProcessLauncher.java:545)
         at com.sun.enterprise.tools.launcher.ProcessLauncher.buildCommand(ProcessLauncher.java:414)
         at com.sun.enterprise.tools.launcher.ProcessLauncher.process(ProcessLauncher.java:204)
         at com.sun.enterprise.tools.launcher.ProcessLauncher.main(ProcessLauncher.java:128)
    [#|2008-05-19T22:03:56.125+0530|WARNING|sun-appserver-ee8.2|javax.enterprise.system.tools.admin|_ThreadID=16;|ADM1082:Creating the application reference failed - Detailed Message:
    com.sun.enterprise.deployment.backend.IASDeploymentException: Component not registered
         at com.sun.enterprise.deployment.phasing.DeploymentServiceUtils.getRegisteredType(DeploymentServiceUtils.java:973)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.associate(PEDeploymentService.java:232)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.associate(PEDeploymentService.java:276)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.createApplicationReference(ApplicationsConfigMBean.java:652)
         at sun.reflect.GeneratedMethodAccessor218.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:305)
         at com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:360)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at sun.reflect.GeneratedMethodAccessor22.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:54)
         at $Proxy1.invoke(Unknown Source)
         at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:272)
         at com.sun.enterprise.admin.jmx.remote.server.callers.InvokeCaller.call(InvokeCaller.java:38)
         at com.sun.enterprise.admin.jmx.remote.server.MBeanServerRequestHandler.handle(MBeanServerRequestHandler.java:92)
         at com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.processRequest(RemoteJmxConnectorServlet.java:69)
         at com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.doPost(RemoteJmxConnectorServlet.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:767)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at sun.reflect.GeneratedMethodAccessor141.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at com.sun.enterprise.web.connector.httpservice.HttpServiceProcessor.process(HttpServiceProcessor.java:235)
         at com.sun.enterprise.web.HttpServiceWebContainer.service(HttpServiceWebContainer.java:2114)
    |#]
    [#|2008-05-19T22:04:03.718+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.deployment|_ThreadID=26;|DPL5109: EJBC - START of EJBC for [guessnumber]|#]
    [#|2008-05-19T22:04:03.718+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.deployment|_ThreadID=26;|Processing beans ...|#]
    [#|2008-05-19T22:04:03.781+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.deployment|_ThreadID=26;|DPL5110: EJBC - END of EJBC for [guessnumber]|#]
    [#|2008-05-19T22:04:03.937+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.deployment|_ThreadID=26;|Total Deployment Time: 4875 msec, Total EJB Compiler Module Time: 63 msec, Portion spent EJB Compiling: 1%
    Breakdown of EJBC Module Time: Total Time for EJBC: 63 msec, CMP Generation: 0 msec (0%), Java Compilation: 0 msec (0%), RMI Compilation: 0 msec (0%), JAX-RPC Generation: 63 msec (100%),
    |#]
    [#|2008-05-19T22:04:11.437+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.deployment|_ThreadID=26;|deployed with moduleid = guessnumber|#]
    [#|2008-05-19T22:04:11.718+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.admin|_ThreadID=14;|ADM1041:Sent the event to instance:[ApplicationDeployEvent -- reference-added guessnumber]|#]
    [#|2008-05-19T22:04:12.000+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.admin|_ThreadID=14;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2008-05-19T22:04:12.031+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.admin|_ThreadID=16;|ADM1041:Sent the event to instance:[ModuleDeployEvent -- deploy web/guessnumber]|#]
    [#|2008-05-19T22:04:12.046+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.container.web|_ThreadID=16;|WEB0100: Loading web module [guessnumber] in virtual server [server] at [guessnumber]|#]
    [#|2008-05-19T22:04:15.734+0530|INFO|sun-appserver-ee8.2|javax.enterprise.system.tools.admin|_ThreadID=16;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    [#|2008-05-19T22:04:23.593+0530|WARNING|sun-appserver-ee8.2|javax.enterprise.system.tools.admin|_ThreadID=14;|ADM1082:Creating the application reference failed - Detailed Message:
    com.sun.enterprise.deployment.backend.IASDeploymentException: Component not registered
         at com.sun.enterprise.deployment.phasing.DeploymentServiceUtils.getRegisteredType(DeploymentServiceUtils.java:973)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.associate(PEDeploymentService.java:232)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.associate(PEDeploymentService.java:276)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.createApplicationReference(ApplicationsConfigMBean.java:652)
         at sun.reflect.GeneratedMethodAccessor218.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:305)
         at com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:360)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at sun.reflect.GeneratedMethodAccessor22.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:54)
         at $Proxy1.invoke(Unknown Source)
         at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:272)
         at com.sun.enterprise.admin.jmx.remote.server.callers.InvokeCaller.call(InvokeCaller.java:38)
         at com.sun.enterprise.admin.jmx.remote.server.MBeanServerRequestHandler.handle(MBeanServerRequestHandler.java:92)
         at com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.processRequest(RemoteJmxConnectorServlet.java:69)
         at com.sun.enterprise.admin.jmx.remote.server.servlet.RemoteJmxConnectorServlet.doPost(RemoteJmxConnectorServlet.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:767)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at sun.reflect.GeneratedMethodAccessor141.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at com.sun.enterprise.web.connector.httpservice.HttpServiceProcessor.process(HttpServiceProcessor.java:235)
         at com.sun.enterprise.web.HttpServiceWebContainer.service(HttpServiceWebContainer.java:2114)
    |#]
    =========================================================
    Any suggestions would be greatly appreciated.
    Thanks & regards
    Srikanth

    Solution
    Hi,
    It is what I guessed as the web page explains. The domain.xml file does not recognize any equipment name that has an acute in it. That was my case. So I have changed the name of my equipment and the problem was resolved when I installed the GlassFish again.
    Thanks for all of you about to visit my posts
    See you around,
    Oggie
    PS:
    Here I leave you the tag in the domain.xml that causes the problem,
    <jms-service addresslist-behavior="random" addresslist-iterations="3" default-jms-host="default_JMS_host" init-timeout-in-seconds="60" reconnect-attempts="3" reconnect-enabled="true" reconnect-interval-in-seconds="5" type="EMBEDDED">
            <jms-host admin-password="admin" admin-user-name="admin" host="Jose" name="default_JMS_host" port="7676"/>
          </jms-service>I hope this time you get it like me

Maybe you are looking for

  • Setting thin titlebar on a JFrame

    Hi, I'm using JFrame for my non-modal dialogs. What I want is to be able to set the height of the toolbars to be half of what they currently are, and making corresponding changes to the font used and the minimize\maximize/close buttons so that they f

  • Can anyone explain this to me? please! :D

    Code Process Original Route Map Last Route Map Update Location Status Exception PUP Pick up 06 Jul 2010 14:00 06 Jul 2010 12:00 REW Arrival at KN origin 07 Jul 2010 02:00 06 Jul 2010 23:40 DEH Departure to airline 07 Jul 2010 23:49 07 Jul 2010 23:49

  • Can't open MS Office programs & files after Security Update 2007-004

    if anyone has faced similar problem or found out a solution to fix this, please share with me. Thanks in advance.

  • Premiere Elements 11 consuming obscene amounts of RAM

    Swear, I've forgotten where the search bar is around here . . . I'd be surprised if there wasn't already a thread about this. This has been sort of a problem since I started using PrEl 11 two summers ago, but for some odd reason it's been becoming mo

  • Where i can find the camera sittings in 3gs ios5.0.1

    where is the camera sitting in ios 5.0.1 like nightvisin (nightmode) for take pic in low light  and how many pixel i use for pic & vides