Default User Parameters in SAP SOLUTION MANAGER 7.1

Hi,
I want some default parameters automatically be assigned to new users when they are created instead of manually adding every time in su01 transaction code. Do you know how to configure this?
SAP SOLUTION MANAGER 7.1
SAP_BASIS
702
0012
SAPKB70212
SAP Basis Component
I try settings in SSM_CUST for user-exit Z_USERS_TRANSFER and SAP_USERS_TRANSFER, but it's don't work.
Thank you.

Code function module runs in SAP EHP 1 for SAP Solution Manager 7.0 SAP_BASIS 701.
In SAP SOLUTION MANAGER 7.1 SAP_BASIS 702 function module is ignored. it can be seen if you set a breakpoint in the function module.
FUNCTION CREATE_USER_HR_INFO.
*"*"Локальный интерфейс:
DATA: su01_mode(5) type c.
field-symbols: <BNAME> like USR02-BNAME.
field-symbols: <ACCNT> like BAPILOGOND-ACCNT.
field-symbols: <CLASS> like USLOGOND-CLASS.
field-symbols: <FUNCTION> like ADDR3_DATA-FUNCTION.
field-symbols: <DEPARTMENT> like ADDR3_DATA-DEPARTMENT.
field-symbols: <su01_mode> like su01_mode.
DATA hr_rfc TYPE STANDARD TABLE OF ZSTR_HR_PERSON_INFO WITH HEADER LINE. " инф-ция о польз-лях, получаемая из HR по RFC
DATA : sys_msg(80) TYPE c,
         indx TYPE i.
DATA ADDRESS LIKE TABLE OF BAPIADDR3 WITH HEADER LINE.
DATA ADDRESSX LIKE TABLE OF BAPIADDR3X WITH HEADER LINE.
DATA DEFAULTS LIKE TABLE OF BAPIDEFAUL WITH HEADER LINE.
DATA DEFAULTSX LIKE TABLE OF BAPIDEFAX WITH HEADER LINE.
DATA LOGONDATA LIKE STANDARD TABLE OF BAPILOGOND WITH HEADER LINE.
DATA LOGONDATAX LIKE STANDARD TABLE OF BAPILOGONX WITH HEADER LINE.
DATA RETURN LIKE STANDARD TABLE OF BAPIRET2.
DATA res_lines TYPE i VALUE 0.
assign ('(SAPLSUU5)g_ok_start') to <su01_mode>.
if sy-subrc = 4.
   exit.
ENDIF.
*<su01_mode> will have the following values: create = "CREA", change = "CHAN", and delete = "DELE"
*  DATA mes TYPE string.
*  mes = sy-subrc.
*  CONCATENATE 'sy-subrc' mes into mes separated by SPACE .
*  MESSAGE mes TYPE 'I'.
if <su01_mode> = 'CREA'.
   assign ('(SAPLSUU5)USLOGOND-ACCNT') to <ACCNT>.
   assign ('(SAPLSUU5)USR02-BNAME') to <BNAME>.
   assign ('(SAPLSUU5)USLOGOND-CLASS') to <CLASS>.
   assign ('(SAPLSUU5)ADDR3_DATA-FUNCTION') to <FUNCTION>.
   assign ('(SAPLSUU5)ADDR3_DATA-DEPARTMENT') to <DEPARTMENT>.
   hr_rfc-PERNR = <ACCNT>.
   APPEND hr_rfc.
   CALL FUNCTION 'GET_HR_PERSON_INFO' DESTINATION 'PHRCLNT200_HR'
     TABLES
       PERSON_INFO       =  hr_rfc
     EXCEPTIONS
       SYSTEM_FAILURE = 1 MESSAGE sys_msg
       COMMUNICATION_FAILURE = 2 MESSAGE sys_msg
DESCRIBE TABLE hr_rfc LINES res_lines.
*если по табельному номеру нашлись данные - заполняю ими структуры
if res_lines > 0.
   LOOP at hr_rfc.
     DEFAULTS-KOSTL = hr_rfc-PLANS.
     DEFAULTSX-KOSTL = 'X'.
     if hr_rfc-GESCH = '1'.
       ADDRESS-TITLE_P = 'Господин'.
     else.
       ADDRESS-TITLE_P = 'Госпожа'.
     ENDIF.
     SPLIT hr_rfc-ENAME AT space
                         INTO ADDRESS-LASTNAME
                              ADDRESS-FIRSTNAME
                              ADDRESS-MIDDLENAME.
     if <FUNCTION> = ''.
       ADDRESS-FUNCTION = hr_rfc-FUNCTION.
       ELSE.
         ADDRESS-FUNCTION = <FUNCTION>.
     ENDIF.
     if <DEPARTMENT> = ''.
       ADDRESS-DEPARTMENT = hr_rfc-STEXT.
       ELSE.
         ADDRESS-DEPARTMENT = <DEPARTMENT>.
     ENDIF.
     ADDRESSX-TITLE_P = 'X'.
     ADDRESSX-LASTNAME = 'X'.
     ADDRESSX-FIRSTNAME = 'X'.
     ADDRESSX-MIDDLENAME = 'X'.
     ADDRESSX-FUNCTION = 'X'.
     ADDRESSX-DEPARTMENT = 'X'.
   ENDLOOP.
endif.
   DEFAULTS-LANGU = 8.
   DEFAULTS-DCPFM = 'Y'.
   DEFAULTS-SPLD = 'LOCL'.
   DEFAULTS-SPDB = 'G'.
   DEFAULTS-SPDA = 'D'.
   APPEND DEFAULTS to DEFAULTS.
   DEFAULTSX-LANGU = 'X'.
   DEFAULTSX-DCPFM = 'X'.
   DEFAULTSX-SPLD = 'X'.
   DEFAULTSX-SPDB = 'X'.
   DEFAULTSX-SPDA = 'X'.
   APPEND DEFAULTSX.
   ADDRESS-NAMEFORMAT = '03'.
   ADDRESS-NAMCOUNTRY = 'UA'.
   APPEND ADDRESS to ADDRESS.
   ADDRESSX-NAMEFORMAT = 'X'.
   ADDRESSX-NAMCOUNTRY = 'X'.
   APPEND ADDRESSX.
   LOGONDATA-GLTGV = sy-datum.
   LOGONDATA-GLTGB = '99991231'.
   LOGONDATA-TZONE = 'EET'.
   if <CLASS> = ''.
     LOGONDATA-CLASS = 'END_USER'.
     ELSE.
       LOGONDATA-CLASS = <CLASS>.
   ENDIF.
   APPEND LOGONDATA.
   LOGONDATAX-GLTGV = 'X'.
   LOGONDATAX-GLTGB = 'X'.
   LOGONDATAX-CLASS = 'X'.
   LOGONDATAX-TZONE = 'X'.
   APPEND LOGONDATAX.
   CALL FUNCTION 'BAPI_USER_CHANGE'
     EXPORTING
       USERNAME = <BNAME>
       ADDRESS       =  ADDRESS
       ADDRESSX       =  ADDRESSX
       DEFAULTS     =  DEFAULTS
       DEFAULTSX     =  DEFAULTSX
       LOGONDATA   = LOGONDATA
       LOGONDATAX   = LOGONDATAX
     TABLES
       RETURN        = RETURN
*  DATA mes TYPE string.
*  mes = sy-subrc.
*  CONCATENATE 'sy-subrc' mes into mes separated by SPACE .
*  MESSAGE mes TYPE 'I'.
ENDIF.
*ENDIF.
ENDFUNCTION.

Similar Messages

  • Mail configuration in SAP SOLUTION MANAGER 7.1

    Hi All,
    I am working on SMTP (Mail)Configuration in SAP Solution Manager 7.1. And our mail host is GOOGLE APPS.
    Does any one had configured mail in SAP for hosted on GOOGLE APPS? 
    Does SAP will support this as it is external (mail) server?
    I read note 455140, related notes and configured accordingly.
    Steps I followed:
    1. parameters maintained:
    icm/server_port_2 = PROT=SMTP,PORT=25000,TIMEOUT=180
    is/SMTP/virt_host_0 = *:25000;
    2. User maintained: Dialog user with S_A.SCON profile with user address as username@<companyname>.com
    3.Client Assignment: (SICF): a. Host Data:Profile Parameter Number: is/SMTP/virt_host_0
    b. Service data: Client 100, user: username, password: ***, language: EN.
    c. Handler List: CL_SMTP_EXT_SAPCONNECT in the first position
    Saved Changes n Activated.
    4.SAPconnect administration (SCOT):
    a. Default domain: <companyname>.com
    b. Nodes: SMTP Under node:
    Mail Host: smtp.gmail.com
    Mail Port: 25 and also tried 587
    In Internet Address Area: *
    5.Scheduled periodic Job with SAP&CONNECTALL variant
    6. telnet <HOSTNAME> 25000 is successful
    In both cases I am getting error as:
    No delivery to ishan.sangai@<companyname>.com, authentication required
    Message no. XS853
    Diagnosis
    The message was processed successfully in the SAP system. The mail server that is supposed to receive the message for further processing requires authentication. The SAP system does not support this procedure. As a result, the message was not delivered to recipient ishan.sangai@<companyname>.com.
    Information from External System
    _530 5.7.0 Must issue a STARTTLS command first. p1admin@<companyname>.com
    Procedure
    The administration settings must be changed. The specified mail server must not request authentication.
    7. I tried to telnet smtp.gmail.com 25 and 587 also
    I am getting following output:
    220 mx.google.com ESMTP ds5sm2193379ibb.5
    HELO <HOSTNAME>
    250 mx.google.com at your service
    HELO <companyname>.com
    250 mx.google.com at your service
    MAIL FROM solman_admin@<companyname>.com ENVID=12345
    530 5.7.0 Must issue a STARTTLS command first. ds5sm2193379ibb.5
    Does we need to talk with Google Apps provider for any modifications to be made for this.
    if yes, which changes should I request them?
    Please help me to solve this problem.
    Please provide links,guides.notes etc. for this scenario
    Thanks & Regards,
    Ishan

    Hi we are configuring Google SMTP getting below error..
    No delivery to xxx.com, authentication required
    Message no. XS856
    Diagnosis
    The message was processed successfully in the SAP system. The mail server that is to receive the message for further processing requires authentication. Probably there is no logon data specified in the SAPconnect configuration.
    Information from external system (if available)
    smtp.gmail.com:587
    530 5.7.0 Must issue a STARTTLS command first. i91sm11178241qgd.25 - gsmtp
    Procedure
    Enter the logon data in the SAPconnect node.
    Using Gmail SMTP server using "smtp.gmail.com" with port 587
    Please advise.
    Regards,
    Sudarshan

  • How to Unlock the Object in SAP Solution Manager

    Hi all,
    Iam trying to Upload the TS into Solution manager, but the Project Documentation TAB is locked by another User.So i am unable to get ADD button enable
    I dont have access to SM12 or SE03. How to Unlock this
    Regards

    This is not the right forum to ask your doubt. Post this in Solution Manager forum
    SAP Solution Manager
    Regards,
    Prateek

  • R3load -testconnect failed while installing SAP Solution manager

    Hi
    I'm trying to install sap solution manager, it gets to "abap import" and then gives an error. I think there is a problem with database connection.
    Here is what I get in the log
    INFO 2007-03-22 17:03:01
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/DB6/CENTRAL/AS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/DB6/CENTRAL/AS/inifile.2.xml'.
    INFO 2007-03-22 17:03:01
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/DB6/CENTRAL/AS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/DB6/CENTRAL/AS/inifile.3.xml'.
    INFO 2007-03-22 17:03:06
    Execute step Component  W2K_ServicePack_Check|ind|ind|ind|indPreprocess  of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0.
    INFO 2007-03-22 17:03:18
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/DB6/CENTRAL/AS/keydb.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/SYSTEM/DB6/CENTRAL/AS/keydb.2.xml'.
    INFO 2007-03-22 17:03:18
    Execute step testDatabaseConnection of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0.
    INFO 2007-03-22 17:03:32
    Switched to user: lvtadm.
    INFO 2007-03-22 17:03:32
    Creating file C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\DB6\CENTRAL\AS\R3load.exe.log.
    INFO 2007-03-22 17:03:32
    Switched to user: lvtadm.
    INFO 2007-03-22 17:03:32
    Working directory changed to C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\DB6\CENTRAL\AS.
    INFO 2007-03-22 17:03:32
    Output of C:\usr\sap\LVT\SYS\exe\uc\NTI386\R3load.exe -testconnect is written to the logfile R3load.exe.log.
    WARNING 2007-03-22 17:03:33
    Execution of the command "C:\usr\sap\LVT\SYS\exe\uc\NTI386\R3load.exe -testconnect" finished with return code 2. Output: sapparam: sapargv( argc, argv) has not been called.sapparam(1c): No Profile used.sapparam: SAPSYSTEMNAME neither in Profile nor in CommandlineC:\usr\sap\LVT\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20070322170332
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: DbSlConnect to 'SM1' as 'saplvt' failed
    (DB) ERROR: DbSlErrorMsg rc = 29
    ERROR 2007-03-22 17:03:33
    CJS-30023  Process call 'C:\usr\sap\LVT\SYS\exe\uc\NTI386\R3load.exe -testconnect' exits with error code 2. For details see log file(s) R3load.exe.log.
    ERROR 2007-03-22 17:03:33
    FCO-00011  The step testDatabaseConnection with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0|testDatabaseConnection was executed with status ERROR .
    Any assistance will be rewarded.
    Thanks in advance

    Hi Louis
    >>>snip<<<
    For details see log file(s) R3load.exe.log.
    >>>unsnip<<<
    Or logon as <sid>adm and issue
    R3trans -x
    Then take a look at trans.log
    Hth+Best regards
    dirk

  • Sap Solution Manager 7.1 SP11 Basic Configuration

    Hi Experts,
    I am in fresh installation for Sap Solution Manager 7.1 SP11. At Basis Configuartion Phase in step " Configure CA Introscope".
    I have successfully installed, but it shows the following message: " Offline - The EM Connection cannot be established (caused by :com.sap.smd.introscope.em.IntroscopeException: java.lang.reflect.InvocationTargetException_) "
    Need suggestions how to proceed from here.
    thanks

    Raja,
    I assume you're using Linux/UNIX.
    Here's the solution. It worked for me.
    In /usr/sap/ccms/apmintroscope/config/users.xml, update the Guest password with this MD5 hash: c4582df82299e0581a9fc6bb34c53
    In user management screen of "Configure CA Introscope", choose "Guest" as connection user with password "guest12" (without quotation marks)
    If it's still not working, then delete the EM and re-install the introscope.
    Go to expert mode -> Delete references -> Remove the line
    Delete folder /usr/sap/ccms/apmintroscope
    Install introscope and management modules againdon't forget to re-set the permission for diagnostic agent user
    Go back to solman_setup "Configure CA Introscope" and do import CA again
    Save, you'll have a green status
    Regards,

  • Configuration for Central Monitoring System in SAP Solution Manager.

    Hi Folks,
    I am trying to setup Central System Monitoring in SAP Solution Manager, I am following the document which mention the step by step instructions.
    There are couple of items on which  I am really confused.
    In the documentation it says to activate Background Dispatching & Central System dispatching in 000 client of Solution Manager,
    it also mentioned about creating CSMREG user, but it did not say in which client this activity needs to be performed, and there are lot many steps in which there is no mention about the client of solution manager in which we have to perform the configuration.
    Can you guys please help me to configure properly?
    One set document which I saw talks about the configuration using RZ21 and other document discuss about Configuration using System Monitoring Work Center, which one do we need to follow, are both methods are 2 different options doing the same thing, can you please clarify?
    Also, is there any document which clearly explains the setup of  Central System Monitoring in SAP Solution manager using both approaches and also to test the monitoring?
    I have SAP Solution Manager 7.0 EHP1.
    Thanks.
    Jennifer

    Hi,
    >
    > it also mentioned about creating CSMREG user, but it did not say in which client this activity needs to be performed, and there are lot many steps in which there is no mention about the client of solution manager in which we have to perform the configuration.
    >
    You should created this user in working client.
    > Can you guys please help me to configure properly?
    >
    > One set document which I saw talks about the configuration using RZ21 and other document discuss about Configuration using System Monitoring Work Center, which one do we need to follow, are both methods are 2 different options doing the same thing, can you please clarify?
    >
    You can use RZ21 or System monitoring through work center. From Solution manager 7.1, you need to use work center only. So, I would suggest you to use work center only.
    Thanks
    Sunny

  • Adding existing RWD uPerform documents using SAP Solution Manager Adapter?

    Note# 1468552
    Cannot add existing RWD uPerform documents using the SAP Solution Manager Adapter.
    Currently, a user can only create a new document with the Solution Manager Adapter; there is no
    ability to add existing uPerform documents that have already been created.
    RWD has submitted an enhancement to SAP requesting this functionality.
    Hi All,
    Has there has been any update on the functionality to add existing RWD uPerform documents to Solution Manager? I have found a note from 2010 stating that this functionality has been submitted as a enhancement. My question is, has this feature been implemented yet? If not, does anyone have any suggested work-arounds for this issue?
    Thanks in advance!
    Stephanie

    Hi Stephanie,
    I can't find much information on this topic.
    You could create a message in component SV-SMG-SPA.
    Regards,
    Matthew

  • Error accessing transaction SOLMAN_WORKCENTER in SAP Solution Manager

    I get the error below when I try to access workcenters in SAP solution Manager ehp1 via transaction SOLMAN_WORKCENTER
    Error while processing your query
    What has happened?
    The URL call http://sol.test.com:8000/sap/bc/webdynpro/sap/ags_workcenter was terminated because of an error.
    Note
    The followin error text was processed in smc the systm: Syntax error in program CL_POWL_UTIL==================CP .
    The error occurred on the application server sol_smc_00 and in the work process. 0
    The termination type was: RABAX_STATE
    The ABAP call hierarchy was:
    Method: GET_QUERIES of program CL_POWL_QUERY_API=============CP
    Method: GET_WORKLISTS of program CL_CONTROL_CENTER_API_FOR_POWLCP
    Method: IF_AGS_CONTROL_CENTER_API~GET_WORKLISTS of program CL_AGS_POWL_BASIC=============CP
    Method: GET_WORK_LIST of program /1BCWDY/0ALGK7P51EY0JCPIHVQ5==CP
    Method: IF_COMPONENTCONTROLLER~GET_WORK_LIST of program /1BCWDY/0ALGK7P51EY0JCPIHVQ5==CP
    Method: HANDLEDEFAULT of program /1BCWDY/0ALGK7P51EY0JCPIHVQ5==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/0ALGK7P51EY0JCPIHVQ5==CP
    Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP
    Method: NAVIGATE of program CL_WDR_CLIENT_APPLICATION=====CP
    Method: DO_NAVIGATION of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    What can you do?
    With the termination type RABAX_STATE you will find in the system smc in transaction ST22 more information on the cause of the termination.
    With termination type ABORT_MESSAGE_STATE you will findon the application server sol_smc_00 in transaction SM21 more information on the cause of the termination.
    With termination type ERROR_MESSAGE_STATE you can scan for further information in the trace file for the work process 0 in transaction ST11 on the application server. sol_smc_00 It is possible that an analysis of the trace files for the other work processes is necessary.
    If you do not yet have a user ID, contact your system adminmistrator.
    Error Code: ICF-IE-http -c: 001 -u: lolli -l: E -s: smc -i: sol_smc_00 -w: 0 -d: 20110415 -t: 165748 -v: RABAX_STATE -e: SYNTAX_ERROR -X: 00235AB4EF731EE099F78539B74CB1A5_00235AB4EF731EE099F78537687251A5_1 -x: 29BC67E0BACDF16BB1A500235AB4EF73
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    How do I resolve this error?

    Hi Mateus,
    Thanks for your keen interest in assisting.
    This is an excerpt from ST22....even though i am not an ABAP person.
    Error in the ABAP Application Program
    The current ABAP program "CL_POWL_QUERY_API===========CP" had to be terminated becuase it has come accross a statement that
    unfortunately cannot be executed.
    The following syntax error occured in program
    "CL_POWL_UTIL===========CP" in include
    "CL_POWL_UTIL===========CM007" IN
    line 48:
    "Incorrect logical expression: ")" without preceding "("."
    The include has been created and last changed by:
    Created by "SAP"
    Last changed by: "BODE"
    Error in the ABAP Application Program
    The currect ABAP Program "CL_POWL_QUERY_API=============CP" had to be terminated becuase it has come accross
    a statement that unfortunately cannot be executed.
    What can you do?
    Please eliminate the error by performing a syntax check
    (or an extended program check) on the program "CL_POWL_UTIL===========CP".
    You can also perform the syntax check from the ABAP Editor.
    If the problem persists, proceed as follows:
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look at and manag termination messages.
    and you can also keep them for a long time.
    When i clicked on the ABAP Editor in ST22, I have the code below
    method GET_QUERIES.
      data: ls_authorities type powl_authorities_sty,
            lt_vistypes type powl_type_tty,
            lt_visqueries type powl_query_tty,
            ls_api_query type powl_query_asty.
      field-symbols: <fs_query> type powl_query_sty.
      cl_powl_util=>do_authority_checks_for_user(
        exporting
         i_applid = i_applid
         i_user   = i_user
        changing
         c_authorities = ls_authorities
      lt_vistypes = cl_powl_type_accessor=>get_visible_types(
          i_applid = i_applid
          i_langu = sy-langu
          i_username = i_user
      lt_visqueries =  cl_powl_query_accessor=>get_visible_queries(
         i_applid = i_applid
         i_authorities = ls_authorities
         i_langu = sy-langu
         i_username = i_user
         i_vistypes = lt_vistypes
      loop at lt_visqueries assigning <fs_query>.
        move-corresponding <fs_query> to ls_api_query.
        insert ls_api_query into table result.
      endloop.
    endmethod.
    The cursor is on this line containing the statement below
    "cl_powl_util=>do_authority_checks_for_user("

  • Problem installing SAP solution Manager

    Hello,
    I want to install SAP Solution Manager on a LINUX system.
    My system information is:
    >uname -a
    Linux sapsolm1 2.6.9-67.0.1.ELsmp #1 SMP Fri Nov 30 11:57:43 EST 2007 x86_64 x86_64 x86_64 GNU/Linux
    If I follow the installation manual and start sapinst nothing happens as you could see in the log below. If I start "./startInstGui.sh" I get an error message. Does any body have an idea what is wrong on my system why the installation GUI is not starting up?
    I'll start the installation form the path: /backup/51032955/IM_LINUX_X86_64
    The CD number I use is 51032955.
    Many thanks.
    Richard Meijn
    Screen log
    [root@sapsolm1 IM_LINUX_X86_64]$ ./sapinst
    [==============================] - extracting...  done!
    Starting GuiServer using:
    /usr/bin/java -cp /backup/sapinst_instdir/sapinst_exe.20122.1202218058/JAR/instgui.jar:/backup/sapinst_instdir/sapinst_exe.20122.1202218058/JAR/inqmyxml.jar -Djava.security.egd=file:/dev/urandom SDTServer config=jar:sdtserver.xml guiport=21212 sapinsthost=localhost sapinstport=21200 guistart=true
    init: retrieving account information for group sapinst...
    init: retrieving account information done.
    load resource pool /backup/51032955/IM_LINUX_X86_64/resourcepool.xml
    guiengine: no GUI server connected; waiting for a connection on host sapsolm1, port 21200 to continue with the installation
    [root@sapsolm1 IM_LINUX_X86_64]$ ./startInstGui.sh
      Java Runtime found in PATH environment variable
      Path: java
    Start mode: gui (GUI only)
    Connection parameters:
      GUIServer host: localhost
      GUIServer port: 21212
    Starting...
    Warning: -Xmx256M not understood. Ignoring.
    Exception in thread "GtkMain" java.lang.UnsatisfiedLinkError: gtkInit
       at JvLookupJNIMethod (/usr/lib64/libgcj.so.5.0.0)
       at JvJNIMethod.call(ffi_cif, void, ffi_raw, void) (/usr/lib64/libgcj.so.5.0.0)
       at gnu.java.awt.peer.gtk.GtkMainThread.run() (Unknown Source)
       at java.lang.Thread.run() (/usr/lib64/libgcj.so.5.0.0)
       at JvThreadRun(java.lang.Thread) (/usr/lib64/libgcj.so.5.0.0)
       at GC_start_routine (/usr/lib64/libgcj.so.5.0.0)
       at __clone (/lib64/tls/libc-2.3.4.so)

    I suggest (to be clean) - start from the beginning.
    Check the installation guide (http://service.sap.com/instguides) - it has a detailed section about what to remove in which directory.
    Also check note 171356 - SAP software on Linux: Essential information for other things you need to install/configure (saplocales etc.)
    Additionally check your distribution specifc configuration settings in note 722273 - Red Hat Enterprise Linux 3 and 4: Installation and upgrade (Redhat 4.x assumed).
    Finally check note 861215 - Recommended Settings for the Linux on AMD64/EM64T JVM for the Java settings after you´ve done your installation.
    Markus

  • BPC (Outlooksoft) and SAP Solution Manager

    Has anyone seen the SAP Solution Manager used to rollout and/or upgrade Outlooksoft (now called BPC - Business Planning and Consolidation)?
    I am trying to assess the usefulness of this tool in an implementation where the only SAP module the company has is Outlooksoft (BPC), so all thoughts are appreciated.
    Best regards,
    Greg

    Question was never answered but I'm closing it due to SDN's number of open question per user limitation.

  • ALL SAP Solution Manager Transaction Code

    Dear experts,
    is there any document or transaction code listing all existing transactions code related to Solution Manager?
    Especially for aministrator profil.
    Thank you very much.
    Best regards,
    Pascal.

    Hi,
    I have searched for documents but couldnt find it.
    I can though provide you with a gud no of t-codes:
    RMMAIN - Roadmap
    SOLAR_PROJECT_ADMIN - Project Administration
    SOLAR01 - Business Blueprint
    SOLAR02 - Configuration
    STWB_2 - Test Plan Management
    STWB_WORK - Testing
    SOLAR_EVAL - Reporting
    SMSY - System Landscape
    SOLUTION_MANAGER - Solution Manager Operations
    DNOTIFWL - Basic Notifications Worklist
    CRM_DNO_MONITOR - Transaction Monitor
    CRMD_ORDER - Transaction Processing
    SBWP - SAP Business Workplace
    SOLAR01C - SAP Solution Manager: Configuration
    STWB_INFO - Test Workbench Information System
    STWB_WORK - Testing
    SCDT_SETUP - Customizing Distribution
    SCOUT - Customizing Scout
    SDCCN- configuring earlywatch alerts
    SMSY_SETUP
    SOLMAN_DIRECTORY-solution directory config.
    DSWP- Solution Overview
    BUSP- generate business partners
    SOLMAN_ISSUE_MGMT - Issue Management
    SLDCHECK - Connection test SLD
    SLDAPIUSER - Customizing SLD API
    AISUSER - SAP Support Portal User Maintenance
    You can also take the list of T-Codes by executing SE16 and checking the contents of Table TSTCT?
    Let me know if this helps
    Rohit

  • HP QTP 11 with intergration to SAP Solution Manager version 7.1

    Hi All
    I am using HP QTP 11 with intergration to SAP Solution Manager version 7.1 and been stumped on this for about two days and unable to find refrence to this anywhere.
    When I record a test Script and set the parameters the Test/action Parameter option does not display. the only option I have is adding the parameter to the data table.
     Test/Action Parameters Selection not displayed
     me. 

    Hi,
    re-check if the 7.4 system is correctly registered in the solman SLD system.
    Re-check LMDB definition for your 7.4 as JAVA system. you have to manually created the Product system. Ensure all the Component and definitions are correct.
    Also do a verrification run within the LMDB. This will confirm whether all the information is correctly defined.
    Please note - SLD -> LMDB -> SMSY.
    So, if the first 2 don't have the correct information, you wont have much joy with smsy.
    Rgds
    Deepak

  • JSM : Job Management in SAP Solution Manager - Questions ?

    01. I want to use the job request process in SAP Solution Manager. Which
    technical prerequisites need to be fulfilled to use this functionality ?
    02. I am  using a service desk other than the SAP Solution Manager service
    desk. How can the job request information be forwarded to this service desk?
    03. I  want to create a job request via a link in your companyu2019s intranet. What
    authorizations does my user need to create the job request?.
    04. What is the consequence if i assign the job in your job documentation to a
    logical component instead of a business process?
    05 How can i configure the monitoring for a job scheduled with job
    documentation?
    Rgds

    Hello,
    you should have a look into SAP note 1054005 - "FAQ: Job Scheduling Management with SAP Solution Manager" for technical requirements. If the job doc is not assigned to a business process then BPMon cannot be used for the respective job.
    All other questions should have been answered at [http://wiki.sdn.sap.com/wiki/display/SM/FAQJobSchedulingManagement|http://wiki.sdn.sap.com/wiki/display/SM/FAQJobSchedulingManagement]
    Best Regards
    Volker

  • Maintenance Optimizer in SAP Solution Manager

    what is Maintenance Optimizer in SAP Solution Manager and what are its benefits

    Hi
    even this may be useful
    Ensure your Solution manager system is at the most recent Support Package Level, specifically ST 400 Patch 11, to reduce note application time
    Download from oss most recent step-by-step setup guide
    Oss note 1024932
    Oss Note 1008717 ( N/A )
    Relevant up to SP11 for Basis 700
    OSS Note 950975 support for IE7 ( N/A we are using GUI)
    Oss note 975510 – corrections for snote ( Via OSS not snote )
    Oss note 1004691 – corrections for snote *** Corrections for 975510 ( UP TO SAP_BASIS 11 ) N/A
    Common problem notes, but not critical for Maint Opt
    0998987: Maintenance Optimizer: Empty error messages
    1022072: Maintenance Optimizer: "No Data Available" message o See note 1025381 before applying 1022072.
    1020789: Maintenance Optimizer: Allow all systems to be selected
    1020802: Maintenance Optimizer List displays incomplete data
    1024105: Maintenance Optimizer: two "Cancel" buttons
    1025381: Maintenance Optimizer: Link to additional download files
    1029453: Maintenance Optimizer - Wrong status displayed
    1030405: Maintenance Optimizer: Browser opens in background
    1030498: Maintenance Optimizer - IBase is not active
    1032463: Maintenance Optimizer: Internet Explorer Script Error
    1042704: Maintenance Optimizer: Display only employee partners
    Partner Scenario SOLMAN4.0 Only
    Os note 1021275 ( RFC Destinations ) N/A ST 400 11
    Oss Note: 997780 ( N/A we are at 11 use note 939897 for ST400 SP11 Application )
    Relevant for ST400 SP09 ( N/A ST 400 11 )
    User:
    To setup you must have SAP_ALL
    General Users: ( Oss note 1032322 )
    Must be assigned to role SAP_MAINT_OPT_ADMIN
    Auth Object: D_SOL_VSBL ( visibility of solutions)
    Auth Object: CRM_ORD_PR ( for CRM stuff )
    /spro
    As of Support Package level ST 400 SP10:
    Call Transaction SPRO -> SAP Reference IMG ->SAP Solution Manager -> Advanced Configuration -> Basic Settings -> SAP Solution Manager System -> Change Management -> Set Up Maintenance Optimizer
    This IMG activity refers to the SAP Note 990534: Solution Manager Maintenance Optimizer: BC Set. Follow the instructions in this SAP Note
    N/A as of ST400 SP11
    Define a Solution:
    Solution_Manager – Select Solution Overview – New.
    Enter Descriptive Name ( Ex. GTS Landscape )
    Hit Continue
    Select Solution Landscape Maintenance
    Select System Groups & Logical Components on the Left hand Side
    Select Solution Landscapes and pick the one you created
    Define the solutions for that landscape
    Highlight each item and click Logical Component (You must have a valid license to set this up)
    Assign S-User
    Transaction: AISUSER
    Enter you user id and your SUSER ID for downloading
    Create another SAPOSS Connection called SAP-OSS with S-User assigned
    Call SOLUTION_MANAGER
    Select Solution Overview
    Select the solution you want to work with
    Select – Change Management – Support Package Stacks
    Click Maintenance Optimizer around middle of screen
    Select the solution you want to get Sp’s for
    Go to OSS and add the files to download basket
    When done return to screen and hit continue
    Select - Confirm files in Download Basket
    Error message comes if your sap user and your oss user are not setup in AISUSER screen
    Now go to SAP Download Manager ( On your local pc ) and download the files you just confirmed – of course using the same S-User id you just added them to the basket with
    Apply support packages via spam per normal process
    Return to the SOLUTION_MANAGER window select the landscape you are working on
    Hit Maintenance Optimizer List
    Choose the maintenance transaction you are working on
    You will see a list of the confirmed and downloaded sp’s you selected
    Once you apply these to the system using SPAM you will change the status of implementation to Completed and Hit Save
    This completes this activity
    If you wish to do more work you will have to create a new transaction.
    [Edit section] Add A New Instance to Maintenance Optimizer
    Sign into Solution Manager
    Ensure new instance has valid license installed and logical clients assigned
    Select Landscape Components
    Right Click Systems
         Select Create new system with assistant
    Enter
    SID / Description / Product Type / Installation Number ( Get this from SLICENSE in system you are setting up )
    Next enter Sys # & MEssgae Server and hit continue
    Next select Generate RFC Destinations & Assign Logical Components & Enter Client #
    I always get a problem saving since SLD is not setup – ignore and continue
    Highlight the system you just added under Systems – SAP Global Trade Services –
    Select Assignment to Logical Components
    Now add additional software such as Net weaver ABAP & JAVA if your primary setup was of another type ( ex. GTS )
    Highlight the system you wish to update under Systems and hit change
         Select Header Data
         Click Installed Product Versions
         In the product box add whatever you require for this system
         Select the version from the 2nd box and hit copy
    Ex. 
    If you cannot setup the trusted system here is a workaround:
    Create User in Target for Trusted System RFC from SM1
         User:      <Username>
         Pass:   <Pass>
         Type: Communication
    Use this when setting up the trusted connection, remove the trust and use this CPIC user info for the RFC.
    Generate RFC’s and ensure SMSY setup is done for SID in Solution manager
    Now Create a New Solution For your instance:
    Go to SOLUTION_MANAGER transaction
         Select NEW
         Give Descriptive name: ex. GTS Landscape
    Under Solution Landscape
         Select Solution Landscape Maintenance
         Select System Groups and Logical Components Tab
              Open Solution Landscapes
                   Select the one you just defined (GTS Landscape)
    SOLTION_MANAGER
    Select Change Management – Support Package Stacks
    Select Maintenance Optimizer
    Select the Product Version
         GTS 7.1
    Select the System Type – SID
    From here you will be prompted to go to service marketplace and add the items you wish to install. You can do this beforehand as well, be sure to use the same Suser you setup in AISUSER with your sap login
    It will ask you to confirm the basket, once you do that you install them normally.
    Download with sap download manager, ftp and apply

  • License check error in sap solution manager

    Hi  All
    I m planing to configure sap solution manager.bt when i ltried to login to sap solution mager with user other than sap* it gives license check error.and whrn i checked in solution with tcode slicense its showing red  and validity date is upto 2007.and in command prompt when i checked with command saplicense - show it shows license expired.plzz suggest me what to do now.
    Edited by: pranav kumar on Sep 7, 2009 2:19 PM

    >>The license is expired.should i reinstall the license or update the license.plz do the needful
    This is a forum. We can only suggest you but this doesnot sounds good "plz do the needful"
    You need to install a new license. Go to Service marketplace and apply a new license for your system and when you will receive a new license as a text file, then install the license via SLICENSE
    Regards,
    Subhash

Maybe you are looking for

  • Please help me formulate this in PL/SQL - Thanks.

    Hi ALL, Please help me formulate this in PL/SQL. I really appreciate your help in advance. Below is the Specification. Read Previous records Check if this is a New Customer. If New Than check for New site If New Site than Insert Site End If Insert Pr

  • IOS 5 calendar bug: Floating Appointments

    This is a bug with iOS 5's calendar that you can reproduce yourself. This bug was not in iOS 4: 1. Enter an appointment into iCal on your Mac running Mac OS X 10.6.8. 2. Make the appointment a FLOATING appointment, which means that its time will ALWA

  • Can iWeb publish with JPEGS rather than PNG?

    Is there any way to make iWeb use only jpegs rather than PNG files when publishing? Also, I think a picture quality slider would be helpfull for compression and site size management... thanks

  • Why can't I open read/write rules file?

    I have followed the Cookbook XML tutorial exactly as prescribed, even down to using all the examples from the 'Completed' folder, but when I try to perform any procedure such as generating a EDD or reading an XML instance (the ColorDoc.xml example) I

  • Partner function defaulted value as "internal"

    we created one more account group, which is cutomized as "customer". in our REAL sales customer creation, we will assine some addtional partner function (as the defined "cusotomer"). these addtional partner functions will show number "internal" initi