Problem in s/w components

Hi experts,
    While importing the s/w components it is not imported to IR.
what is the problem? I have faced this question in interiew.But i could not find the answer till now.
Thnx& regds,
prerna.
[email protected]

Point out what error exactly u get while importing?
If you are unable to see the swcv in IR
Clear SLD cache
Check whether you have assigned the SWC to a product in SLD.
<b>
also someother checks</b>
Did you run the SLDCHECK transaction on your XI R/3 stack. I do not think this is the error of your connected R/3 System.
Go to SU01 and check XILDUSER is locked ? if not try to reset the password to what it was again. If it is locked unlock it.
In the exchange Profile http://<host>:50500/exchangeProfile, go to the Connection tab and enter the correct password of XILDUSER.
How to change passwords of XI users ?
Check OSS Note 721548
Message was edited by:
        Anusha  Ramsiva

Similar Messages

  • Problem in loading Flash Components

    Hai,
    I have a problem in loading flash components using
    actionscript.
    Example( List Components).
    I can load List components dynamically using frame script
    like.
    import mx.controls.List;
    var myList:List = createObject("List","nList",10);
    But I can't load dynamically from inside a class file like.
    import mx.controls.List;
    class testClass{
    private var myList;
    function testClass( ){
    myList = createObject( "List","nList",10 );
    But it is not working i don't know why ?
    If any one knows Please reply me.
    Thank you.

    The over flash file works if i'm loading images direct from a
    path but, i'm using php script to pull the files in binary format
    and, it's causing problems in in firefox..

  • Problem while importing NWDI components in CRM5.0.

    Hi All,
        I'm facing problem while importing NWDI components in CRM5.0. Imports are running for long time and failing.
    Could anyone please help me out.
    Thanks in advance.
    Regards,
    Deepthi.

    Thanks for your replies.
    Can any one guide me Is there any need to deploy once again into production  after or before importing into production through NWDI?
    From development i released activities and able to see them in NWDI(CMS). I was able to successfully import in consolidation and even approved it without any errors. But when I tried to import in production tab , I am facing above problem.
    Can any one explain me do I need to deploy directly into production (through NWDS) in WebDynpro perspective before importing into production from NWDI?
    As far as my understanding if I import successfully into production I may need not to deploy it again.

  • Problem seeing a jframe components

    Hello,
    My problem is this. I have a main jframe. Now on my main jframe i have to do a time expensive procedure called refresh(); While this procedure is running i want to display a message in a JWindow that says "Please wait". Problem is that no matter what the JWindow object won't show its components until the procedure refresh is done. That means of course that my JWindow is pointless.
    So I tried with swingworker to create a thread that runs the procedure refresh(). But that doesn't seem to work.
    final please_wait ff= new please_wait();//this is my JWindow
    final SwingWorker worker = new SwingWorker() {
    public Object construct() {
    Runnable doWorkRunnable = new Runnable() {
    public void run() {   refresh();//this is the time consumming procedure }
    SwingUtilities.invokeLater(doWorkRunnable);
    return "s"; //return value not used by this program
    //Runs on the event-dispatching thread.
    public void finished() {
    ff.dispose(); ///here i destroy the JWindow because the time consuming procedure is over
    worker.start();

    I believe you have misunderstood the use of the invokeLater() method. It isn't used to execute time consuming tasks. You would use invokeLater() to put a GUI operation on the event dispatcher thread from a thread you have spawned off to execute outside of the event dispather thread i.e. from the thread you will use to execute your time consuming task (Since all GUI operations should be executed from the event dispatcher thread).
    Your steps of actions here would be (assuming what ever kicks off your time consuming task happens from an event listener...like a button press):
    1) Construct and display our JWindow
    2) Spawn a new thread with your time consuming task in it.
    3) When your time consuming task is done remove your JWindow by putting a call to its dispose() method in a Runnable object which you pass to SwingUtilities.invokeLater(Runnable).
    You can replace steps 2 and 3 with SwingWorker if you prefer (and it appears you do) since it encapulates this functionality. SwingWorker's finished method is where you would dispose of your JWindow and since the operations in the finished method are already executed on the event dispather thread you don't need to worry about invokeLater.

  • MDS Customization Problem with multiple root components

    Hello,
    Oracle JDeveloper 11.1.1.5.0 and WebLogic Server Version: 10.3.5.0
    I am using Oracle MDS Customization class with the following classes:
    oracle.adf.view.rich.change.MDSDocumentChangeManager
    org.apache.myfaces.trinidad.change.ChangeManager
    org.apache.myfaces.trinidad.change.MoveChildComponentChange
    Based on these classes I am moving UI components
    <af:panelStretchLayout>
    <f:facet name="center">
    <af:region />
    </f:facet>
    </af:panelStretchLayout>
    into another component thanks to the MDS.
    Once I do the movement and persist, I receive the following waning message:
    *<RegionRenderer> <encodeAll> The region component with id: pt1:r1:0:pt2:r1:0:r1 has detected a page fragment with multiple root components. Fragments with more than one root component may not display correctly in a region and may have a negative impact on performance. It is recommended that you restructure the page fragment to have a single root component.*
    When I run the application in Oracle JDeveloper 11.1.1.5.0, it work fine, but when I deploy it on WebLogic Server Version: 10.3.5.0 it is not working.
    I receive the same warning message on the server and in JDeveloper.
    I think that MDS makes a copy of the components that I move because of that it says me that "a page fragment with multiple root components"
    The problem is not because of duplication any of the tags <af:document> <f:view><f:form> <html> <head> <body>
    After the movement and persistence, I also call the FacesContext to reset its view root with the following code:
    FacesContext context =FacesContext.getCurrentInstance();
    String currentView = context.getViewRoot().getViewId();
    ViewHandler vh = context.getApplication().getViewHandler();
    UIViewRoot x = vh.createView(context, currentView);
    x.setViewId(currentView);
    context.setViewRoot(x);
    The idea is that the entire JSF tree to be rebuild on entering page with aim to clear previously drag and drop settings.
    Do you know how I can overcome the problem on the server WebLogic Server Version: 10.3.5.0?
    This worked on Oracle JDeveloper 11.1.1.3.0 and now the problem is with Oracle JDeveloper 11.1.1.5.0.
    Regards,
    Niki

    Hi,
    what the error means is that you have more than one node under the jsp:root node of the fragment. Say the content of your fragment is
    <af:panelGroupLayout id="pgl1">
    </af:PanelGrouPLayout>
    Then this is okay
    if you have
    <af:panelGroupLayout id="pgl1">
    </af:PanelGrouPLayout>
    <af:panelGroupLayout id="pgl2">
    </af:PanelGrouPLayout>
    or
    <af:panelGroupLayout id="pgl1">
    </af:PanelGrouPLayout>
    <af:commandButton id="cb1"/>
    Then these mean duplicated root components. The JDeveloper IDE flags this as Warnings (Structure Window) when selecting the page fragment
    Frank

  • Problem Adding Custom JSF Components to Oracle JDeveloper 10g (10.1.3) Prev

    I'm having a problem on Adding Custom JSF Components to Oracle JDeveloper 10g (10.1.3) Preview (http://www.oracle.com/technology/products/jdev/101/collateral/101/adffaces/howto_customcomponents.html)
    The step 1 of 5 isn't visible for me and I don't see the "Install from local file" option to select the adf-faces-bundle.zip from my file system. The OTN check for updates don't prove the ADF Faces...
    What may I do?

    And...
    If "Check for Updates Wizard" is not launched, you can try to set LANG.
    see: 10.1.3 Can't not launch Update Wizard in Japanese environment.
    10.1.3 Can't not launch Update Wizard in Japanese environment.
    Thanks.
    Takuya Ono

  • Facing problems in Registering AIA Components with OSB

    Hi all,
    I am trying to implement AIA on OSB for that as an initial step I am trying to Register AIA Components with OSB.
    In this step I am facing problems getting 705 conflicts removing these conflicts manually is a huge task .
    Can anyone suggest me good approach or if any one has removed AIA components jar please share with me.
    Thanks
    Phani

    Hi Madhavi,
    You said:
    OMB+> OMBALTER LOCATION 'TEST_LOCATION' SET PROPERTIES ( HOST, PORT, SERVICE_NAME , SCHEMA, CONNECT_AS_USER,PASSWORD, VERSION, UOID,DATABASE_NAME) \
    VALUES ( '$HOST', $PORT,'$SERVICE', '$TgtDBUser', '$TgtDBUser', 'TgtDBPWD','$
    dbversion','true','$SERVICE');
    Did you leave out the "$"-character for the TgtDBPWD variable in purpose? Could this be the source of your problem?
    Regards,
    Ed

  • Problem of dynamically change components in Applet

    Hello, All,
    I need to dynamically change Applet components. For example, remove a button, and replace it with drop down list etc. I use remove and add methods to perform the task. But it does not work. Applet just become blank. And repaint does not help either. Any of you know how to solve the problem. I will really apprecation that.
    [email protected]

    /*    <applet code="AddAndRemove" width="400" height="300"></applet>
    *  use: >appletviewer AddAndRemove.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class AddAndRemove extends JApplet {
      ButtonListener buttonListener = new ButtonListener();
      JButton
        addButton,
        removeButton;
      JPanel centerPanel;
      JLabel statusLabel;
      GridBagConstraints gbc;
      int buttonCount = 0;
      public void init() {
        addButton = new JButton("add");
        removeButton = new JButton("remove");
        addButton.addActionListener(buttonListener);
        removeButton.addActionListener(buttonListener);
        JPanel northPanel = new JPanel();
        northPanel.add(addButton);
        northPanel.add(removeButton);
        centerPanel = new JPanel(new GridBagLayout());
        centerPanel.setBackground(Color.yellow);
        gbc = new GridBagConstraints();
        gbc.weightx = 1.0;
        gbc.weighty = 1.0;
        gbc.gridwidth = gbc.REMAINDER;
        statusLabel = new JLabel(" ", JLabel.CENTER);
        Container cp = getContentPane();
        cp.setLayout(new BorderLayout());
        cp.add(northPanel, "North");
        cp.add(new JScrollPane(centerPanel), "Center");
        cp.add(statusLabel, "South");
      private class ButtonListener implements ActionListener {
        public void actionPerformed(ActionEvent e) {
          JButton button = (JButton)e.getSource();
          if(button == addButton) {
            centerPanel.add(new JButton("Button " + ++buttonCount), gbc);
            // JComponent method
            centerPanel.revalidate();
            Component[] components = centerPanel.getComponents();
            statusLabel.setText("Currently " + components.length + " buttons showing");
          if(button == removeButton) {
            Component[] components = centerPanel.getComponents();
            if(components.length == 0)
              return;
            centerPanel.remove(components[components.length - 1]);
            // container method
            centerPanel.validate();
            // comment this out to see what happens without it
            centerPanel.repaint();
            statusLabel.setText("Currently " + (components.length - 1) + " buttons showing");
      public static void main(String[] args) {
        JFrame f = new JFrame("Add And Remove Applet");
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JApplet applet = new AddAndRemove();
        f.getContentPane().add(applet);
        f.setSize(400,300);
        f.setLocation(400,300);
        applet.init();
        applet.start();
        f.setVisible(true);
    }

  • Problem in viewing the components on running a window using java or javaw

    hi
    whenever i run a windowed application built in swing i have to resize the window in order to view the components i added to the container of the window.
    but this does not happens when i use a JProgressBar
    please help me out with this

    Read the [url http://java.sun.com/docs/books/tutorial/uiswing/TOC.html]Swing tutorial. There are plenty of examples that work correctly.
    If you still have problems then post your [url http://www.physci.org/codes/sscce.jsp]Simple, Executable Demo Program that shows the incorrect behaviour. We are not going to sit here guessing what you may or may not be doing.

  • Problem with setSelection and components

    Hi! I have a problem with setSelection function when there is
    any component on the stage or in the library. Just look on the
    sample
    here The first
    button sets focus and sets selection, the second one removes focus.
    It works good, but add any component to break it. Is there any
    other way to unset focus? Maybe this is the problem... Any help?
    BTW Sorry for my english :)

    Selection.setFocus(component) removes current
    selection

  • Character reordering problem in swing text components  on macintosh

    I have created a swing application that handles devanagari script.(script for Hindi language).The application works perfectly in windows but in apple macintosh
    there is a problem with the reordering of characters in text componets. Reordering means some characters needs to be displayed not in the exact order in which they are stored.I was wondering how this can happen as the application works fine on windows.Also other applications like text editor displays devanagari script correctly on macintosh.
    I tried with several fonts like Arial Unicode MS,Devanagari MT etc/.java

    Very odd. Post your Reordering code.

  • Problem deleting Workflow Definition Components

    I am trying to delete a lookup value which is referenced by a process which posts notification from a message referencing an item attribute of document type. No matter how I tried to delete them in various sequences, I can not escape and error in 'VERIFY'.
    Could you please advise as to how to clean up this mess?
    Thanks in advance.

    Never mind. Got it figured out. I changed the transition label to default and was able to get rid of unwanted definition components.

  • Problem to update Swing components from RMI object at server side

    Greetings, I have a RMI client/server application, both client and server have a Swing GUI. But at the server side, it appears to me that I can't pass object or make function call to my server GUI class. Because I can't have GUI instance or reference in my Remote object. (java.rmi.MarshalExceptio, java.io.NotSerializableException, blar blar ...)
    My problem is, if a client does something, I want to reflect the changes on the server side GUI. How can I do this except using a spin query?
    Any help would be greatly appreciated.
    Thanks.
    John
    Edited by: zgliang on Sep 13, 2007 3:30 AM

    I'd like to suggest you read the topic "Questions RMI & Swing & SwingWorker", which is similar to yours.

  • Problem with importing software components into Integration Builder:Design

    Hai everyone
    I m trying to import software component versions,through SLD in PI 7.0
    It says unable to read software component versions from SLD        "nw2004sxi:50100"
    where nw2004sxi is my computername and 50100 is my j2ee http port.
    Your help would be highly appreciated.
    Regards

    Hai there
    I have been finding difficult to find the solution to my problem.I would really appreciate if someone can see my error log clearly.
    Error during communication with System Landscape Directory: HTTP response code: 403 (Forbidden)
    Stack trace for the above error message is:
    com.sap.aii.rwb.exceptions.BuildLandscapeException: Error during communication with System Landscape Directory: HTTP response code: 403 (Forbidden)
         at com.sap.aii.rwb.agent.server.SLDAgentBean.convertException(SLDAgentBean.java:1472)
         at com.sap.aii.rwb.agent.server.SLDAgentBean.buildSLD(SLDAgentBean.java:773)
         at com.sap.aii.rwb.agent.server.SLDAgentBean.provideSld(SLDAgentBean.java:269)
         at com.sap.aii.rwb.agent.server.SLDAgentBean.getXIDomain(SLDAgentBean.java:711)
         at com.sap.aii.rwb.agent.api.SLDAgentObjectImpl0.getXIDomain(SLDAgentObjectImpl0.java:375)
         at com.sap.aii.rwb.agent.api.SLDAgent_Stub.getXIDomain(SLDAgent_Stub.java:436)
         at com.sap.aii.rwb.agent.client.EJBAgent.getXIDomain(EJBAgent.java:255)
         at com.sap.aii.rwb.util.web.model.AppMainModel.getSelectedDomain(AppMainModel.java:137)
         at com.sap.aii.rwb.util.web.model.DomainRep.build(DomainRep.java:100)
         at com.sap.aii.mdt.util.MmMainModel.getMsgCompList(MmMainModel.java:262)
         at com.sap.aii.mdt.util.MmMainModel.getListModel(MmMainModel.java:244)
         at com.sap.aii.mdt.util.SelectModel.getListModel(SelectModel.java:135)
         at jsp_monitor_new1288070144218._jspService(jsp_monitor_new1288070144218.java:188)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:541)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:186)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:312)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:368)
         at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:68)
         at com.sapportals.htmlb.page.PageProcessorServlet.doGet(PageProcessorServlet.java:29)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:312)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:418)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:349)
         at com.sap.aii.rwb.web.messagemonitoring.viewcontroller.MmDynPage.doProcessBeforeOutput(MmDynPage.java:69)
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:123)
         at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:62)
         at com.sapportals.htmlb.page.PageProcessorServlet.doGet(PageProcessorServlet.java:29)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:312)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:368)
         at jsp_FC_Secure1288070041500._jspService(jsp_FC_Secure1288070041500.java:26)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:541)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:186)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    5 Message(s) :  SLD agent unable to specify domain - Error class com.sap.aii.rwb.exceptions.BuildLandscapeException: Error during communication with System Landscape Directory: HTTP response code: 403 (Forbidden) - Attempt to create JCo connection object failed for domain domain.01.nw2004sxi - Integration Server unable to specify a JCo client - No component names available from Integration Server -
    Hope i can get the solution for my problem.I m sure u wil get rewarded with points
    Regards

  • Repaint problem. Paint two components at different times.

    I have two labels on a panel. I want to paint them one by one after some action. However, I found that even I call the repaint method of the first label and after some time call the repaint method of the second label, stilll they change at the same time. The first label will wait until the second label repaints.
    Below is my code:
    import java.awt.event.*;
    import javax.swing.*;
    public class PaintTest extends JPanel {
         JButton paintButton = new JButton("paint");
         JLabel labelOne = new JLabel("Paint first");
         JLabel labelTwo = new JLabel("Paint second");
         public PaintTest() {
              add (paintButton);
              add (labelOne);
              add (labelTwo);
              paintButton.addActionListener(new ActionListener() {
                   public void actionPerformed (ActionEvent evt) {
                        paintButton_actionPerformed (evt);               
         void paintButton_actionPerformed(ActionEvent evt) {
              labelOne.setText("first");
              labelOne.repaint();
              labelOne.revalidate();
              this.repaint();
              this.revalidate();          
              // wait for some time.
              for (long i = 0; i < 99999999; i++) {
              labelTwo.setText("second");
              labelTwo.repaint();
         public static void main(String[] args) {
              JFrame f = new JFrame();
              f.setContentPane(new PaintTest());
              f.pack();
              f.show();
    }

    The reason its not being updated is because ur not realeasing ur current thread, ur making it work - the time it waits is actually working, so ur not allowing the painting thread to cut in and do the painting. Try this instead:
    Implement runnable with:
    public void run() {
    for (long i = 0; i < 99999999; i++) {}
         labelTwo.setText("second");
         labelTwo.repaint();
         repaint();
         revalidate();
    }and in ur actionPerformed:
    labelOne.setText("first");
    labelOne.repaint();
    labelOne.revalidate();
    repaint();
    revalidate();
    SwingUtilities.invokeLater(this);This will give the paiting thread time to repaint before u do u waiting-work....
    Stig.

Maybe you are looking for

  • GarageBand 10.0.3 will not load any of my 64-bit plugins

    Hello all, I recently upgraded to Mac OS X Yosemite and updated GarageBand to 10.0.3.  However, when I try to load any of my 64-bit plugins, I get the following error messages: The Audio Unit "Dimension P" could not be loaded for your project, and ma

  • CDJ-110: Error in javac ShirtTest.java

    Hello, everytime, when I will compile ShirtTest.java CODE: public class ShirtTest { public static void main (String args[]) { Shirt myShirt;      myShirt = new Shirt();      myShirt.displayShirtInformation(); I got the following error: ShirtTest.java

  • SUD-Dialog Variablen-​Rückgabe

    Hallo NI'ler, ich erstelle gerade meinen ersten SUD-Dialog mit 5 CheckBoxen. Je nach dem, welche Box nun aktiviert wurde, soll eine Variable einen anderen Wert zugewiesen bekommen. Mein bisheriger Ansatz war Sub CheckBox1_EventChange() Dim This : Set

  • Binding - the best practices

    Hi All, I have 2 files: 1. application.mxml where I want to display some variables (properties) from the second file. I will display those variables mainly as debugging infos. I will mainly use <mx:Label> tags. 2. file.as is a class and the propertie

  • #2 screen or monitor won't come into focus!

    #2 screen or monitor won't come into focus! Have gone from 1:3, 1:2, 1:1....none will come into focus. Lightroom 5 on Mac Pro. 24 gigs of ram. Use it as I have on LR#2,3,and 4 to view faces up close (on same monitor) while viewing full image in main