Solman With XI Implementation

Hi all,
Anyone is working with Solution manager  3.1 with XI?
If so, Could you please expalin me, the XI implementation scenario?
Thanks in Advance.
Regards
Bhavani

Hi Bhavani,
   Do you mean XI as your satellite system ?
   in t-code SMSY in SM, you have to select your system under  Exchange Infrastructure and then under sub-tab clients you have to generate RFC for your satellite system.
   After doing all this, you can select all the XI related Business Scenarios in SM under t-code SOLAR01
Hope this will clarrifies your question
Regards
Ravi Seshachalam

Similar Messages

  • SOLMAN with India Baseline Best Practice solution

    Hello,
    With India Baseline best practice solutin route, you need to go-thru the activation process which creates the configuration objects for the selected scenarios. How can i integrate this process with SOLMAN in place as I understand in SOLMAN base project implementation we need to create a project & do the configuration via SOLMAN for individual nodes.
    Regards,
    Manish.

    Hi,
    Our current solution is to have to NICs and have both connect to the server. They then have 2 different IPs and we have the DHCP give out the IP as the gateway. The only problem with that is that we cannot control the automated change of gateway IP if the
    main connection fails. 
    We are also willing to look into other hardware solutions that could control this.
    Regards,
    Rudi

  • SolMan ticket link implementation in Portal

    Hello,
    we are using SolMan (ChaRM) as a ticketing system.
    Planed is to send ticket owners, users a automatic generated mail with the solman link + ticket number, as soon as the ticket status is changing. Reason for this mail is, that the ticket owner, user has to do something on ticket level. Another status change for further transports or "Question to customer" etc.
    As soon as the user is using this link, SolMan is starting via SapGui and asking for userID and password. Users don't have a user ID on SolMan. They all have to go via Portal with SSO.
    How can I implement this, that the SolMan link is going via the portal with SSO, starting SolMan with the related ticket ID?
    Ticket ID is a varaible, link via the portal, starting solman I would think is fix.
    Thanks a lot
    Bernd

    The way how we are working is:
    Portal (with SSO, LDAP) --> IViews --> ABAP Backend Applications
    The way how we are using SolMan + Ticketing system:
    Portal Login (SSO, LDAP) --> user open the IView for SolMan --> starting the transaction for ticketing
    Planed is:
    Whenever a ticket status is changing under a Charm ticket (workflow ticket), the user is getting an automatic generated SolMan mail with the following information:
    HTTP://<servername>:8000/SAP/BC/BSP/SAP/DSWP_BSP/DSMOP.HTMLISBSP=X&CMD=NOMI&NCMD=CRMVW&ID=D11FD44B83657E2AE1000000136A420A
    This link is starting the SolMan, but require a login to the SolMan without SSO, LDAP use. This means for us, the users would need access direct to SolMan as well, instead to use the SSO, LDAP from the portal.
    My question now:
    How can we modify the link that it is going via the portal SolMan IView with a parameter for the ticket ID.

  • Java ftp server which can use LDAP, how to integrate with WLS' implementation of LDAP?

    Howdy.
    I'm setting up a java ftp server
    (http://www.mycgiserver.com/~ranab/ftp/index.html) which is capable of using
    LDAP for it's user security. I would like to integrate this ftp server with
    wls' implementation of LDAP so I only have to admin one user list.
    Does wls put it's user list in the LDAP or in it's own proprietary setup? I
    tried playing around with it, but the users don't seem to appear in the JNDI
    tree. Is this where the LDAP stuff is located? I thought it was in there?
    If it's in it's own setup, is there a way to propagate the users to LDAP?
    If these look like newbie Q&A, I guess they kind of are, I'm new to LDAP.
    Thanks for any input you might have.

    Peter,
    If you are talking about using the embedded LDAP server in WLS 7.0 for this purpose
    I think you are going done the wrong path.
    Look at the following URL on how to use an external LDAP server for your custom
    application
    http://e-docs.bea.com/wls/docs70/secmanage/realm.html#1172008
    Chuck Nelson
    DRE
    BEA Technical Support

  • Service Desk: Message from Sat.- to SolMan with different users

    Hello,
    I have a problem creating tickets in my satellite systems. The user in the sat. system is not the same than the user in the solman. Our systems run for educational purposes and the users in the satellite systems can be created by the lectures. So it is not possible, that the users in the satellite system are the same users than in the SolMan.
    What I did was that I copied the Back-RFC connection and changed it, so that you have to logon to the SolMan with your username and password. The problem here is that the ticket is not created with the user that I used to log on to the SolMan but the user in the satellite system.
    Does anyone know a solution to the problem?
    Thank you for your help!!
    Michael

    Hi Laxman,
    what user do you mean? The user in the satellite system or the user in the SolMan? The user in the SolMan has the right priviliges to create support messages, he is allowed to do so when using the work center. In the satellite system there are no roles for creating support messages.
    Actually I don't want this use to create support messages, I only want the SolMan User, the key user to create messages.
    Kind regards,
    Michael

  • Runtime Error in JTable with JTableModel Implementation

    Hi,
    I tried to do a JTable (named "table) in my program, with an implementation of JTableModel, called DataContent (obj named "dc"). Now if I try to change dc's data and refresh the table in the window by doing a "table.setModel(dc);", my programm gives me just runtime errors.
    class MyFrame extends JFrame implements ActionListener{
    // This is the class of the JFrame which contains the table
    // globally defined vars:
    private DataContent dc;
    private final JTable table;
    // in someMethod(){
    public MyFrame(){
    // creates, inits and draws the table into the window - this works !
         JPanel jpPreview = new JPanel(new GridLayout(1,0));
         dc = new DataContent();
            table = new JTable(dc.getTableData(), dc.getCol());
            table.setPreferredScrollableViewportSize(new Dimension(500, 40));
            table.setBorder(borderPanel);
            jpPreview.add(table);
         jpSeparator.add(jpPreview);
    public void actionPerformed(ActionEvent ae) {
    // in the same class
              if(ae.getSource() == butLoadPath){
                   // choose a path by clicking on a button "butLoadPath"
                   szPath = sg.readPath();
                   labelLoadPath.setText(szPath);
                   dc.setPath(szPath);
                   dc.setContent(szToken);
              }else if(ae.getSource() == butSeparator){
                   // choose a different separator token by JRadioButtons
                   // when someone clicks on the button butSeparator,
                   // the table should be refreshed, with this function:
                   setPreview();
              }else...
    private void setPreview(){
              // reads out which option was chosen by the radiobuttons - this works
              // refreshes the Object[][] oData in dc - this works, too
              dc.setContent(szToken);
              // this should refresh the table obj in the JFrame,
              // this gives me some Null.pointer.exception - why ?
              table.setModel(dc);// ??? P R O B L E M ???
         }I have implemented the Interface DataContent like this:
    public class DataContent implements TableModel{
         // vars
         private int iRow,iCol;
         private String szInputData = "";
         char cToken, cLineLimiter;
         private Object[][] oData;
         // ctor
         public DataContent(){
              reset(); // set Elements...
         public void setPath( String szPath){          
              // read line from file obj...
         private void reset(){
              // set up an epmty set of data in the table...
         public void setContent( String szToken){          
              // separate content of szInputData by szToken and set oData...
         public Object[][] getTableData(){
              // return oData...
         public String[] getCol(){
              // gives some name for each column...
    ////////////////////////////////// automatic generated for the implementation of the interface JTableModel /////////////////
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#getRowCount()
         public int getRowCount() {
              // TODO Auto-generated method stub
              return iRow;
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#getColumnCount()
         public int getColumnCount() {
              // TODO Auto-generated method stub
              return iCol;
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#getColumnName(int)
         public String getColumnName(int columnIndex) {
              // TODO Auto-generated method stub
              String[] szColumnName = getCol();
              return szColumnName[columnIndex];
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#getColumnClass(int)
         public Class getColumnClass(int columnIndex) {
              // TODO Auto-generated method stub
              return null;
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#isCellEditable(int, int)
         public boolean isCellEditable(int rowIndex, int columnIndex) {
              // TODO Auto-generated method stub
              return false;
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#getValueAt(int, int)
         public Object getValueAt(int rowIndex, int columnIndex) {
              // TODO Auto-generated method stub
              return oData[rowIndex][columnIndex];
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#setValueAt(java.lang.Object, int, int)
         public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
              // TODO Auto-generated method stub
              // NO editing !
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#addTableModelListener(javax.swing.event.TableModelListener)
         public void addTableModelListener(TableModelListener l) {
              // TODO Auto-generated method stub
         /* (non-Javadoc)
          * @see javax.swing.table.TableModel#removeTableModelListener(javax.swing.event.TableModelListener)
         public void removeTableModelListener(TableModelListener l) {
              // TODO Auto-generated method stub
    }I tried to implement some of the automatic generated methods, without success, still the same problem. What can I do, that...
    table.setModel(dc);
    ...works without probs ???
    Is there a better way to do this - the table should not even be editable, just to be shown in the window, to give an impression ??
    THX

    Why are you creating you own TableModel. Use the DefaultTableModel its easier. If you don't want you cells to be editable then you just do this:
    JTable table = new JTable(...)
         public boolean isCellEditable(int row, int column)
              return false;
    };

  • How to create a project in Solman with PSCD content

    Hi All,
    I am looking for any potential article on creating a u2018projectu2019 in Solman, we are looking into creating an project in solman with the PCSD and Grantor content but we donu2019t know where we can find this info.
    Can some one please tell me where I can find this info?
    Regards
    k
    Edited by: kourosh Ghouchkhani on May 11, 2010 8:46 PM

    hi
    Try with following settings if you have not done:
    1) In define project type, for for accounting integration , select scenario as: Accounting integration in my SAPERP and type of transfer as : Always Automatic when saving
    2) For Define object link for object type , define proxy class for WBS element and Project definition(PS)
    Also define RFC for Single object Controlling on WBS element in Object types for object links.
    3) For Accounting integration in Make general settings, for your project type select frame09 for your object type single object controlling on Internal order
    4) Define CO scenario CPR2 with Strategy sequence as SAP040 in period end closing, costing sheet as standard and Costing variant as PC02(Internal Order)
    5) In CO scanrio maintenance view, for your project type select contolling method as Internal Order( Project Definition, Automatic)
    With these settings I am able to create a PS project from cProject when I save a cProject.
    Regards,
    Niraj

  • Light Weight JCE Provider with RSA implementation

    Hi all,
    I'm working on an applet that requires RSA encryption, but I have size constraints so I canno tuse the BouncyCastle provider (891 KBs)
    Does anyone know where to find a light weight JCE provider with an implementation of RSA, I've been searching for a while but without any luck!
    Thank you in advance

    You can use the lw-apis from BC and drop the JCE part. The JCE for BC is just a facade to the lw-apis anyway. And if you use the lw-apis you don't have to worry about any signing issues with the applet.
    Cheers,
    --- jon

  • JSF Portlet with RichFaces implementation

    I am trying to build a JSF 1.1 portlet with RichFaces implementation.
    Although, the portlet gets displayed with out any errors. I do not see the RichFaces capabilities getting executed such as "A4J:support" tag is not doing an Ajax based form validation.
    Any help on this? Are there any completed PoCs on RF compatibility with JSF portlets.
    Thanks
    Rajesh

    Hello,
    Have you resolved your issue ? I am also trying to run a RichFaces-based webapp on an Oracle portal (WCI) and I have some troubles.
    If you have time to look at my problem, I created a post here Oracle JSF Bridge with JBoss Richfaces .
    Thanks
    K.L.

  • Need to speak with an implemented location, EP with BW3.5

    We would like to talk to someone with an implemented, customized user front end leveraging EP with BW 3.5 on the back end.  Already working through the marketing channels, but would like to also chase down the non-standard path and find a company with a demonstratable example of what they were able to accomplish.  We have some significant adoption hurdles to overcome, but something, not from the owners of the software, that shows what the customer site can accomplish, will go along way towards proving or disproving EP/BW3.5 from playing in this space.
    Size of data or number of users is not of concern, more interested in look and feel, customized interface, optimized user experience, etc...
    Thanks,
    M.Marty, Mckesson

    Hey Mark, tell Steve and Patrick that Keith said hi.
    Were implementing CRM 4.0, with EP 6.0 and BW 3.5. Were  in the process of completing the upgrade BW 3.5 from 3.1 and have deployed numerous reports. Since I'm responsible for all the BW Web based reporting and EP 6.0 development I can certainly share my experiences regarding look and feel, customized interface, optimized user experience, etc...

  • Integrate SolMan with eCATT

    Hi Experts,
    Any idea on how to integrate SolMan with eCATT?
    Also, would like to know if we can use eCATT in conjunction with SRM,EBP?
    Thanks

    Hi Preema,
    => eCATT is inbuild integrated with Solution Manager.
    You will have to do some settings to get it working. Find the following weblog written by me for step by step setting details -
    /people/sapna.modi/blog/2006/04/10/ecatt--an-introduction-part-i
    => eCATT doesn't server the web based transactions like SRM EBP etc. You will have to use Mercury QTP for testing web based environment. Solman can integrate with Mercury.
    Hope this helps.
    PS If the answer solves your query, plz close the thread by marking it solved and rewarding each reply.
    Regards

  • Cisco WCCP (multicast method ) with Bluecoat Implementation

    hi
    Cisco WCCP with Bluecoat Implementation  . during implemetation multicast packet not flow to other vlan interface.
    few observation .
    Cisco wccp with bluecoat proxy ( Multicast method )  - Multicast IP # 224.1.1.103 , Group 11, dense-mode
    Same Vlan  its working ( user and Proxy SG )
    Different Vlan not working ( user Vlan 10 and server Vlan 20 )
    sample configuration :
    ip multicast-routing
    ip wccp 11 group-address 224.1.1.103 redirect-list 103
    sh ip access-lists 103
    Extended IP access list 103
        40 permit tcp 10.10.10.0 0.0.0.31 any eq 443
        50 permit tcp 10.10.10.0 0.0.0.31 any eq www
        60 permit tcp 10.10.10.0 0.0.0.31 any eq ftp
        70 deny ip any any
    interface Vlan10 description "AP_User_Range"
     ip address 10.10.10.0 255.255.255.0
     ip helper-address 10.10.20.100
     ip wccp 11 redirect in
     ip wccp 11 group-listen
     ip pim dense-mode

    Dear Jon,
    After changes the WCCP Command  ,still  WCCP not working
    but  both client and Proxy Same VLAN its working fine with Multicast mode
    interface Vlan10
     description "AP_User_Range"
     ip address 10.10.10.10 255.255.255.0
     ip helper-address 10.10.10.100
     ip wccp 11 redirect in
    interface Vlan20
     description PROXY_WAN_VLAN
     ip address 10.10.20.10 255.255.255.0
     ip helper-address 10.10.10.100
     no ip redirects
     no ip unreachables
     no ip proxy-arp
     ip wccp 11 group-listen
    ip wccp 11 group-address 224.1.1.103 redirect-list 103
    sh ip access-lists 103
    Extended IP access list 103
        40 permit tcp 10.10.10.0 0.0.0.255 any eq 443
        50 permit tcp 10.10.10.0 0.0.0.255 any eq www
        60 permit tcp 10.10.10.0 0.0.0.255 any eq ftp
        70 deny ip any any
    sh ip wccp
    Global WCCP information:
        Router information:
            Router Identifier:                   -not yet determined-
            Protocol Version:                    2.0
        Service Identifier: 11
            Number of Service Group Clients:     0
            Number of Service Group Routers:     0
            Total Packets s/w Redirected:        0
              Process:                           0
              CEF:                               0
            Service mode:                        Open
            Service Access-list:                 -none-
            Total Packets Dropped Closed:        0
            Redirect access-list:                103
            Total Packets Denied Redirect:       0
            Total Packets Unassigned:            0
            Group access-list:                   -none-
            Total Messages Denied to Group:      0
            Total Authentication failures:       0
            Total GRE Bypassed Packets Received: 0

  • CTS Mgmt in SolMan for an Implementation Project?

    Hi,
    In an Implementation Project, if we need to use Solution Manager for CTS, is there any pre-requisites?
    To be more clear, the project is still in the development stage and has not gone-live. The SolMan project type will be "Implementation" project(not a maintenance project). In this scenario, how the development/customization request will be moved across the landscape?
    What are the steps to be followed?
    Any inputs in this regard will be greatly appreciated.
    Thanks a lot in advance.
    best regds,
    Alagammai.

    Hi Avinash,
    Again thanks a lot for your timely help.
    So, all transports relating to an implementation project can be moved using the CHARM feature of SolMan. Nice )
    (ii) Whenever I create Implementation or Maintenace project in my SolMan system, I am not finding this "Change Request" tab under "System Landscape" tab. What could be the problem? Is that becos CHARM is not configured in my system?
    (iii) As you told while we create the transport route in the satellite systems, do we do it in the regular way? Or is there any modifications need to be done as we have to use it with CHARM? (sorry, might seem to be a silly question... but, as I am not aware of it...)
    (iv) Also, you have listed a number of steps to be done. Are these steps to be done in the SolMan system?
    (v) Is there any link or document describing this process? Do you have any document of your own? If so, can you pls send the same to my email id [email protected]?
    Thanks & Best regds,
    Alagammai.

  • Linking solution manager projects with CHARM implementation project

    Hi Guys,
    Currently i am working in CHARM implementation project, i have created one CHARM implementation project with urgent correction and i am able to create the Transport request and release the transport request succesfully and i am able to move it to quality system successfully. But my customer is asking to link the solution manager project to CHARM implementation project.
    Earlier before implementing CHARM they have implemented project managent in solution manager, during that project they have created so many projects which are currently running, now they want those projects to be linked CHARM implementation project.
    When ever they create a transport request through CHARM they want the TP to be saved under a respective project which they are using currently. but according to my knowledge the TP can be saved under CHARM implementation project only.
    Now i want to know whether the projects created in SOLAR_PROJECT_ADMIN can be linked to CHARM implementation project. Pls give ur valuable inputs as it is very urgent.
    Thanks&Regards
    Raju

    Hello,
    We have implemented this with two systems landscape where in we have in place a Solution Manager Dev system and Solution manager Production system both are SOLMAN 4.0 with SP12. So the path for us to move the changes is from Development Systems to Production system.
    We have ChaRM between the Dev and production. We reapplied the satellite system concept. For us the Solution manager Prod is a satellite systems all the changes that we move from Development system to Production systems is tracked with necessary documentation in the ChaRM process.
    Yes, I agree with you that this is not any big magic. Working with two SOLMAN implementation, I strongly feel that SAP needs to have well rounded ChaRm processes. We have robust Change Management Process, but when we moved to ChaRM we were limited functionality of the ChaRM processes.
    I had approached and did some research on how other companies are implementing the same process. Most of them have almost the same process for tracking SOLMAN changes. I am still look out for improved process to manage SOLMA changes.
    Hope this helps!!! Thanks
    Vish

  • Solman E2E RCA implementation

    Gurus,
    We are heading to implement RCA in our landscape.. WE have Solman EHP1 at SPS22
    I have done homework and formulated below steps  to implement RCA
    1. Install SMD agents in all managed systems
    2. Install SAP HOST AGENT in managed systems (if it is not present, SAPHOSTAGENT is needed for SMD agent 7.11..... Is SAPHOSTAGENT needed in solman also???/)
    3. Install Wily Introscope EM in Solman
    4. Run SOLMAN_SETUP
                    i. This will install Wily Introscope agents in managed systems automatically
    IS the above sequence is correct for RCA? or did I miss anything here?
    I am bit confused about installing Wily introscope agents... how Solman will install them in managed system automatically during solman_setup? Will it download the agent sca file from smp and install in the managed system?
    BR
    Vardha

    ==================================================================================================
    2. Install SAP HOST AGENT in managed systems (if it is not present, SAPHOSTAGENT is needed for SMD agent 7.11..... Is SAPHOSTAGENT needed in solman also???/)
    It's necessary install SapHostagent if you're running diagnostics agent 7.11 or a lower version. With 7.20, saphostagent will come installed automatically.
    ==================================================================================================
    You must deploy the ISagent in Solution Manager System and when the agents of managed systems connect in Solution Manager, ISAgent will be deployed and updated automatically in all systems that are connecting in Solution Manager system.
    Example:
    When you'll execute an update of your solution manager and you updated components LM-SERVICE and ISAGENT. To execute this procedure you must enable "Maintenance Mode", in this case, all agent will be disconnected.
    When you finish the upgrade of these components in your solution manager and you disable the Maintenance Mode, all agents will connect in solution manager system and will check that there's a newer version of ISAGENT and LM-SERVICE and all diagnostics agents and ISagents will be updated automatically.
    If you check the log files of Diagnostics you'll see this deployment being executed automatically.
    For more details check http://service.sap.com/diagnostics

Maybe you are looking for