How to add HR component in Netweaver 2004

Hi
i was installed sap Netweaver 2004 successfully. It has BASIS, ABAP, BI components available by default.
i want to add HR component. How to do it???? What is the Link in SMP?
pls. provide solution
regards
raghu

Reyes!
Yes. i checked "Package level" from SPAM. It shows ONLY following components,
BASIS        640  
ABAP         640
PI_BASIS   2004_.....
BI               3.50 
Now how do u add HR component, logistics and others.............
Psl. provide solution.......... it's urgert..........
regards
raghu

Similar Messages

  • How to add one component when some action take place

    Hi,
    i created a GUI using Netbeans Ide, In that i want add a component when i click some button
    i showed it here see the diagram
    [click here to see|http://www.mediafire.com/imageview.php?quickkey=jtgzjrfenwm]
    my sample code
    public class ProcessFiles1 extends javax.swing.JFrame implements ActionListener,
                                                        PropertyChangeListener{
        private JProgressBar progressBar;
        / Creates new form ProcessFiles1 */*
    *    public ProcessFiles1() {*
    *        initComponents();*
    *    /** This method is called from within the constructor to
    *initialize the form.*
    WARNING: Do NOT modify this code. The content of this method is
    *always regenerated by the Form Editor.*
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {====================================>here i am not adding Progress bar
                                                                                                                             to GUI
            jToggleButton1 = new javax.swing.JToggleButton();
            jToggleButton2 = new javax.swing.JToggleButton();
            jComboBox1 = new javax.swing.JComboBox();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            jComboBox2 = new javax.swing.JComboBox();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Admin@localhost");
            setIconImage(Toolkit.getDefaultToolkit().getImage("c:\\Logo.PNG"));
            jToggleButton1.setText("Select File");
            jToggleButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    FileChooser(evt);
            jToggleButton2.setText("Run Files");
            jToggleButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    addComp(evt);
            jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            jComboBox1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jComboBox1ActionPerformed(evt);
            jLabel1.setText("Success");
            jLabel2.setText("Faild");
            progressBar = new JProgressBar(0, 100);
            progressBar.setValue(0);
            progressBar.setStringPainted(true);
            jComboBox2.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" }));
            jTextArea1.setColumns(20);
            jTextArea1.setEditable(false);
            jTextArea1.setRows(5);
            jScrollPane1.setViewportView(jTextArea1);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());=================>from here i am adding components
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addGap(26, 26, 26)
                            .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 965, javax.swing.GroupLayout.PREFERRED_SIZE))
                        .addGroup(layout.createSequentialGroup()
                            .addContainerGap()
                            .addComponent(jToggleButton1)
                            .addGap(18, 18, 18)
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jToggleButton2)
                                .addGroup(layout.createSequentialGroup()
                                    .addComponent(jLabel1)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                                    .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, 155, javax.swing.GroupLayout.PREFERRED_SIZE)
                                    .addGap(32, 32, 32)
                                    .addComponent(jLabel2)
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                                    .addComponent(jComboBox2, javax.swing.GroupLayout.PREFERRED_SIZE, 151, javax.swing.GroupLayout.PREFERRED_SIZE)))))
                    .addContainerGap(29, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jToggleButton1)
                        .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel1)
                        .addComponent(jLabel2)
                        .addComponent(jComboBox2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGap(26, 26, 26)
                    .addComponent(jToggleButton2)
                    .addGap(18, 18, 18)
                    .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 583, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(20, Short.MAX_VALUE))
            pack();
        }// </editor-fold>
    private void addComp(java.awt.event.ActionEvent evt)---------------------------------------->when 'runfile' button clicked i am
                                                                                      trying to add progressbar component it is not adding
           layout.addLayoutComponent("Progress", progressBar);
           pack();
         }how can i add progressbar when runfile button clicked
    please any one focus some light on this
    Thanks in advance,
    Nagaraju.
    Edited by: uppala on Dec 18, 2009 11:33 AM

    Well, normally the code would be:
    panel.add( someComponent );
    panel.revalidate();But since you are using the IDE to generate your code you need to learn and understand how to use the GroupLayout and all its constraints to add the component.
    My advice is to get rid of the IDE generate code and create the GUI yourself.

  • How to add used DCs in Netweaver 7.1 ??

    hi ,
                i want to add used Dc for EJB DC. I am having JAVA project which is having some java classes , which i want to use in EJB DC. How to add that JAVA DC as used DC for EJB DC in Netweaver 7.1????

    HI,
    Hope this may help u..
    Importing Development Configurations from the SLD
           1.      To obtain access to the development configurations in the SLD, set the Development Configuration Pool in the Developer Studio:
                                a.      From the menu path, choose Window  ® Preferences.
                                b.      Open Java Development Infrastructure ® Development Configuration Pool.
                                c.      Specify the URL of the server on which the SLD is installed in URL in the following format http:. Choose OK.
           2.      To import a development configuration, open the context menu in the Local DCs view and choose Import Configuration... 
           3.      Select the remote option.
    A dialog for logging on to the development infrastructureappears.
           4.      Enter USER1and the corresponding password.
    The Development Configuration Importdialog appears.
    In this dialog, you can set the storage location (the root folder) for the files created in this development configuration. To be able to change this setting, you must first remove all development configurations.
    A list of the development components available in the SLD appears.
           5.      Open the node TECHNO/1.0 and import the development configuration TECHNO_dev
    The extension dev stands for the development status of the SC. The APPLcons development configuration is also created. After development, you can maintain the consolidation state in this development configuration.
    The Development Configuration Import dialog appears.
           6.      Choose Next.
    The Build Variants dialog window appears.
           7.      Choose Finish.
    The system reads the development configuration settings and sets up your development environment. The views Active DCs, Inactive DCs, and Local DCs now contain a new entry with the name of the imported development configuration.
    Result
           1.      In the Development Configuration perspective, switch to the Inactive DCs view.
           2.      Open the folder TECHNO_dev.
    You can see only the software components which you will develop.
    DCs can be created only in the Inactive workspace and are activated in the CBS only by a successful build. This makes them available automatically in the Active workspace, where they can be used for the build of other DCs.
           3.      Switch to the Active DCs view.
           4.      Open the folder TECHNO_dev.
    Next to the software components you want to develop, you see three entries:
    ■       sap.com_SAP_BUILDT
    ■       sap.com_SAP_JTECHS
    ■       sap.com_SAP-JEE
    These SCs are provided and can be used but cannot be changed.

  • How To add One component to a TabbedPane

    Hi,
    I have a TabbedPane with four tabs in it
    the tabs are created dynamically it may be four or five
    i want to add only one component to it i.e JTable
    if i just add a component to the tabpan like below
    tabpane is an instance of JTabbedPane
    tableofvalues is an instance of JTable
    tabpane.add(tableofvalues); this code creates a
    default tab and add the component
    but i dont want the default tab i just want only the component
    can somebody please give me a solution for this
    give me the overiding function also

    i need to add one component which is common to all the tabs You can't. A component can only be added to a single container.
    However you might be able to share a model. For example:
    JTextField forTab1 = new JTextField("some data");
    JTextField forTab2 = new JTextField( forTab1.getDocument() );

  • How to remove previous instance of Netweaver 2004???

    Hi
    During Netweaver 2004 installation on AIX I got error as Wrong or unsupported SAP DB software installation
    DB startup failed
    To start installation again newly , I deleted /sapdb and /usr/sap./etc/opt/sapdb /usr/spool/sql also all the files in installation folder /local/installsap
    and started installation again in different folder.
    <b>
    INFO       2007-03-29 13:15:35
               CJSlibModule::writeInfo_impl()
    Looking for SAP system instances installed on this host...
    INFO       2007-03-29 13:15:51
               CJSlibModule::writeInfo_impl()
    Found these instances:
    sid: SUN, number: 01, name: SCS01, host: CTSAIX02
    sid: SUN, number: 00, name: JC00, host: CTSAIX02
    WARNING[E] 2007-03-29 13:15:52 [syxxcnamrs.cpp:128]
               PSyServicesEntry CSyIPNameResolverImpl::getServiceByName(const iastring& serviceName, const iastring& protocol) const
    Error converting from service name=sapmsJ2E/protocol=tcp to port number. SAPRETURN=12
    INFO       2007-03-29 13:15:52 [syuxcaccmg.cpp:243]
               bool CSyAccountMgtImpl::isExisting(ISyAccountMgt::eAccountType accountType, iastring sName)
    Account j2eadm does not exist.
    INFO       2007-03-29 13:18:29 [syxxcfile.cpp:523]
               CSyFileImpl::copy(const CSyPath & ., ISyNode::eCopyMode 3, ISyProgressObserver*) const 
    Copying file /local/sapbinaries/java_dvd/51030724_2/DVD_NW_04_SR1_SAP_Web_AS_JAVA/J2EE_OSINDEP/JDKVersion.xml to: ..
    INFO       2007-03-29 13:18:29 [syuxcpath.cpp:369]
               CSyPath::createFile()
    Creating file /local/NetWeaver2004/JDKVersion.xml.
    INFO       2007-03-29 13:18:29
               CJSlibModule::writeInfo_impl()
    Directory /usr/java14_64/bin is not a valid JDK directory: the java executable is missing.
    INFO       2007-03-29 13:18:29
               CJSlibModule::writeInfo_impl()
    Execution of the command "/usr/java14_64/bin/java -version" finished with return code 0. Output: java version "1.4.2"</b>
    In new installation it is detecting previous instance as well.
    Which files should I remove so as to remove the instance completely?

    Yes.
    Do all people visit all forums..?
    I'll not open it in more than one forums then.

  • How to add sprite component to application

    Hi,
    In my application i am using a custom component which
    extends Sprite class. I am adding this component to application as
    <local:mySprite width="500" height="300" /> but it is showing
    following error on application run;
    Type Coercion failed: cannot convert mySprite@129be5e1 to
    mx.core.IUIComponent.
    How should i overcome this problem, if any suggestion please
    reply.
    Thank you.

    Everything you add to the display list of the application
    must implement IUIComponent. Wrap the sprite in a UIComponent or
    UIMovieClip.

  • How to add new component to JFrame dynamically?

    Hello,I'm now study the GUI and here i meet a problem.I want to display a pic use JComponent.In paint() method i paint the pic.because i use a button to open a FileDialog to choose a pic file and send the path info to the constructor of JPicPane(i extends it from JComponent),so it will be add to the frame when it was visible and we know that there is a swing thread problem.so i use invokeLater(new Runnable(){....pack();});I want to know besides pack() can i use other method to change the layout sothat the new component could be displayed.becasue pack() will make the frame changeits size.(it displays the preferred size of components?) I don't want it make the frame change size and the component be displayed,is there any approch else?one method occur to me is chang the prefer size of contentPane sothat the pack won't make the frame small.is there any other method?and by the way,what's the different between invokeLater and invokeAndWait?
    thank you all! thank you!

    No idea why it is slow(er). The difference between invokeLater and InvokeAndWait are described here and in the tutorial that is linked there.

  • How to add calender component

    hi maxideon. i done upto the diagram which is shown to you. now i have small problem
    anybody please go through this link then you will get idea
    [http://www.mediafire.com/?sharekey=c2ec1a687d8279f091b20cc0d07ba4d2ddbbdb9f07ee802d]
    in the paint diagram i wrote "i want a seperator like that to the existing structure" after that i have a calender class,i want to add that calender below of that seperator(i am showing with green box).how can i add it.please help me
    thanks in advance
    nagaraju.

    i done as you told but i got some problem. when i doing like below my tree struture frame totally disappeard the freshely added calender appeard.
    public class HorizantalDemo extends JPanel
      private JSplitPane splitPane;
      private JTable jtable;
    JPanel p=new JPanel();
      JSeparator  js=new JSeparator();
    splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
                                       jsp, jsp1);-------------------------------------------------->*split pane created with tree strucute(left side) table structure(right side)*
            splitPane.setOneTouchExpandable(true);
            splitPane.setDividerLocation(150);
              p.setLayout(new BoxLayout(p,BoxLayout.Y_AXIS));--------------->*box layout*
            p.add(js);-------------------------------------------------------------------->*adding jseparator to Jpanel*
            p.add(new UseJCalendar());----------------------------------------->*adding calender class to Jpanel*
            splitPane.setLeftComponent(p);------------------------------------>*adding Jpanel left side of the splitPane(while doing this total tree structure and table structure in splitPane disappear and this calender only appear,actually this calender need to appear below the tree structure with seperator)*
    frame.getContentPane().add(splitPane);the above one is my problem please help me
    thanks in advance
    nagaraju.

  • How to add paging component

    Hi,
    In my repository, there may be a large amount of objects under one folder. Is there any paging component with which we can only retrieve limited amount of objects at one time, just like that in data base?
    Thanks,
    Ray

    Hi Sandip,
    I've seen someone mentioned paging component, in KM Flex UI.
    Yes, my purpose is to fetch only limited number of objects from backend at one time. Just like Anupama said, fetch and display only 20 objects in one page and a button below to see rest objects.
    For example, I have 100 files under directory /myrep/folder1; when a user clicks on folder1,
    findResources()
    in
    IMutableNamespaceManager
    will be called, which will in turn call
    getChildren()
    , which, without paging, will fetch all 100 files from backend, but I just want it to fetch the first 20 records, for one page.
    So, to limit the number of objects fetched from backend, what can I do with the query, or paging component, or the layout...
    Thanks,
    Ray

  • How to Integrating Flex in SAP NetWeaver 2004s ?

    Hello Experts,
    Is there any way I can integrate Flex based UI elements into Webdynpro ABAP/Java?
    I have searched the forums and found that Flash Island does the job but my MIME repository does not have Flash Islands...
    Please let me know if there is any other way to do the same?
    Thanks in advance..

    Hello SAP GURUs,
    We have requirement to do the SAP integration with CyberSource server for card payments.
    I have to look into SAP integration settings with CyberSource server.
    Can any body provide some help?

  • How to add a text Component ( text annotation) to the Tiff Image

    Hi.............
    This is the first time I am using Sun Developers Forum.......................
    My problem is.............I want to add a component ( Text or Label ) to the Tiff Image which is displayed on the JIMICanavs [ from JIMI API ].
    Even , if anybody knows about How to add a component to the JIMICanavs , Please help me..................................

    I'm curious: is JIMI still popular? What advantange does it have over the current Java 2D support in the J2SE, or over JAI?

  • Upgarde SAP Netweaver 2004

    Hi all,
              Can i Upgrade SAP Netweaver 2004 components to SAP Netweaver 2004s.If not how do i order the SAP Netweaver 2004s package.How do i install CAF in SAP Netweaver 2004.
    Plz answer my above Questions ASAP.
    Thanks and Regards
    Balakrishna s

    Yes. Its possible to upgrade to 2004s.
    you need to atleast upgrade to corresponding service pack level of 2004s
    2004                         2004s
    SPS12 and below -
         SPS04
    SPS13+14----
                 SPS05
    SPS15----
                    SPS06
    SPS16----
                     SPS07
    SPS17----
                    SPS08
    SPS18----
                    SPS09
    CAF patches are available as add on to your 2004 which u need to install on to WAS.
    Hope this answers your questions
    regards,
    Sujesh
    Message was edited by: sujesh kc

  • How do I use the option "table view" in NetWeaver 2004s Query Designer?

    Dear,
    We have used NetWeaver 2004s Query Designer, We found a strange problem. The option to select table view is not available. It is greyed out. How can you select table view (tabular) in 2004s Query Designer?
    I have read the help doc about tabular view of NetWeaver 2004s Query Designer, I check my query, it has only one structure . but the option is still greyed out. I rebuild the query with 3.x Query Designer in tabular view, and reopen it with 2004s Query Designer, So there is a tab named "tabular view" display, but the option to select table view is still not available, and when users view the query result in web , it is still not in tabular view display. So I am confused, is there a bug with NetWeaver 2004s Query Designer?
    Please help me. Thanks!

    Note 1002271. Seach this note to use key word "table view"

  • How to add a new url link in a view of an existing webdynpro component?

    How to add a new url link in a view of an existing webdynpro component?

    hi ,
    refer SAP online hep :
    Implementing Enhancements in a View
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/46/233f2189f74f08e10000000a114a6b/frameset.htm
    To enhance the layout of the view, you can create new UI elements. This procedure is no different u2013 from a technical viewpoint u2013 from creating UI elements in components themselves. All UI elements created within the enhancement implementation can then be processed as usual.
    Enhancements  means inserting user developments into SAP development objects at predefined positions.
    The Enhancement Framework enables you to add functionality to standard SAP software without actually changing the original repository objects, and to organize these enhancements as effectively as possible.
    refernce :
    have a look at this article
    How to Create Enhancement Implementation in Web Dynpro ABAP
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/700317da-bd79-2c10-368e-8f18bf5d8b81&overridelayout=true
    as pointed correctly by Saurav in earlier thread
    regards,
    amit

  • How to install BI content on a new Netweaver 2004s SR1 installation

    HI Friends,
    I have installed new NetWeaver 2004s SR1 on Windows 2003 server :oracle 10g as a central system.The installation was succesfull.
    How to install the BI content addon  in the system?(not installing business content objects). Please let me know if you have any guidance  for installing the BI content.
    Thanks
    mv_d

    im also facing the same problem. you got it solved? please do help me [email protected]

Maybe you are looking for

  • T60 KERNEL_DATA_INPAGE_ERROR

    Hello, I've got an 8'ish year old T60 with all original components except the fan. I've been getting a KERNEL_DATA_INPAGE_ERROR for about two years now. I understand it's typically due to a failure of the HDD or the hard drive connecting cables. In m

  • Can I export from Final Cut Pro X to iDVD?

    Switched to FCP X because iMovie was breaking down. Question: can I export my finished project to iDVD?

  • One iPod, Two Computers, Two Countries.

    So, I'm sure this has been hashed to death elsewhere, and this will either turn into a rant, or there will be a solution. So, here we go. I'm an exchange student in Finland, and about 2 months after I got here, my iPod was hooked up my laptop, which

  • Help! Where'd my default fonts go?

    We use FontReserve at work (which I loathe). And a few weeks ago I opened a Quark file and BAM! ...all my resident Mac programs went wacky: Mail, AddressBook, iCal, Safari... And they stayed that way even after I closed the file, closed Quark, and ev

  • Is there an easy conversion process from iMac to power mac?

    I'm thinking of moving off my old iMac and onto a PowerMac - is there an easy conversion utility?  I'm pretty new in the space here...