Central User Administration

Hello,
i want to realize a central user administration between two different SAP Systems.
In an testing environment i realized it between two logical systems with different mandants in one SAP system.
Now it should work between two hosts. For example SAP1 192.168.150.1 and SAP2 192.168.150.2. What are the differences i have to consider?

Lets take two systems with SIDs: “SA1” and “SA2”.
1. Cerate logical system name SA1MNDT100 on SA1 identifying mandant 100 on SA1
2. Assign it to mandant 100 in system SA1
3. Then on SA2 you have to tell that there is system named SA1MNDT100 ready for communication, so you must create logical system name SA1MNDT100 in SA2 but you don’t assign it to any mandant (because from SA2 point of view it is a remote system)
4. Then on SA2 create the RFC Destination with exactly the same name as your logical system defined in step 1 SA1MNDT100 pointing to hostname or ip of SA1/mandant 100 (this links remote logical system name with remote SAP system SA1)
5. Then on SA2 create different system name SA2MNDT500 indentifying mandant 500 on SA2
6. Assign it to mandant 500 in system SA2
7. Then on SA1 you have to tell that there is system named SA2MNDT500 ready for communication, so you must create logical system name SA2MNDT500 in SA1 but you don’t assign it to any mandant (because from SA1 point of view it is a remote system)
8. On SA1 cereate the RFC Destination named SA2MNDT500 pointing to SA2/manadt 500.
Hope this clarifies your doubt.
-- Grzegorz

Similar Messages

  • Central User Administration Idoc's for a XI system

    Hello,
    We are setting up a Central User Administration (CUA) in Solution Manager. One of the systems that needs to be a child of this CUA is a SAP XI 2.0 system.
    The distribution of the Users is done by IDocs.
    Everything is working fine from the CUA to a SAP R/3 system.
    But when we make the XI 2.0 a child all the IDoc's are caught by the XI IDoc adapter in stead of going directly to the IDoc inbound handler of the XI system.
    Has anyone been able to send an IDoc to an XI 2.0 and bypassing the IDoc adapter and sending them directly to the XI IDoc Inbound handler?
    Any kind of info will be greatly appriciated.
    With kind regards,
    Leon Boeijen

    Hi Leon,
    to bypass the IDoc Adapter for specific IDocs you can specify these IDocs using the report IDX_SELECT_IDOCTYPE_WITHOUT_IS.
    Kind regards,
    Andreas

  • Central User Administrator in SAP 4.7

    Which the steps for configuration of the CUA (Central User Administrator) in version SAP R3 4.7... Nobody know....

    Try this:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/08/ed591f9ff00343952f11a7b707f28a/frameset.htm
    Hope it helps.

  • Central User Administration using EP

    Hi,
    Can any body tell me how we can do central user Administration using EP. My landscape has multiple SAP systems, BW system and EP system. How should we go about it?
    Any help?
    regards,
    Sujesh

    HI Sujesh,
    EP is not able to serve as a hub for central user administration in my opinion.
    You can connect EP to several user stores like LDAP servers (including Microsoft ActiveDirectory) and SAP Systems.
    So
    a) you store all your users in an LDAP and connect all your SAP systems to that LDAP
    b) you declare one of your SAP systems as central user administration (CUA) "master", connect all other as "slaves" and connect the EP UME to the master
    But in any way - there is no GUI inside the EP where you can administer all user related things like roles from all systems, etc. This can only be done in an ABAP system.
    Hth,
    Michael

  • Problem setting up Central User Administration

    I'm having an issue setting up CUA successfully. I have all of the systems setup in SALE, all of the RFC's are working properly, all green lights setting up and saving the child system in SCUA. When I create a new user in the Central system, I have the new, "Systems" tab. I choose the child system, then go into Roles but everytime I try to add a role, I get the error, "Role Z_* does not exist in system QASCLNT300 (child). I've executed the, "Text comparison from child sys" several times. I choose QASCLNT310 (Central) for the Receiving system, execute and get a green light for, "Central System QASCLNT310:OK". I am still unable to add any roles to the child client and the roles definately exist in the child client.

    Hello Bob,
    If this issue is frequent you can schedule jobs to syncorinise role information from chid to central system:
    1.You execute the report SUSR_ZBV_GET_RECEIVER_PROFILES in the central system using transaction SA38, or schedule it regularly as a background job to collect the changed roles and profiles from the child system. You can specify the receiving system using the input help
    2. You execute the report SUSR_ZBV_GET_RECEIVER_PROFILES in the child system using transaction SA38, or schedule it regularly as a background job to send the changed roles and profiles to the central system. You can leave the input fields empty, as the data of the child system is always sent to the central system, regardless of the entries.
    Hope this will help you but advisable is to re-confiure CUA again because it should not prompt for text comparion unless frequent role creation is occuring.
    Cheers,
    Rupali Bajpai

  • Central User Administration (CUA): Remote Change of User

    Dear experts,
    I have following CUA scenario within my company:
    We have a CUA which provides a couple of R/3 daughter systems/clients. Further we have a HR system stand-alone-system which is also integrated in our CUA.
    I tried to create a ABAP on the HR system which is changing the user masta data (especially the roles of a user) on the CUA system via RFC BAPI´s on a regular basis. Unfortunately it´s doesn´t works, because I don´t know the correct BAPI´s to change die CUA data. BAPI_USER_ACTGROUPS_ASSIGN changes only the locale R/3 user roles...
    In my opinion the CUA specific user roles are in table USLA04 - which will be doesn´t changed.
    Maybe somebody had the same requirements in the past and can help me? Thank you in advance!
    My coding so far:
    REPORT  zzh_t_role_change_zbv.
    PARAMETER: i_pernr TYPE pernr-pernr DEFAULT '90000007',
               i_usrid TYPE sy-uname DEFAULT 'SCHEFFLM',
               i_date  TYPE sy-datum DEFAULT sy-datum.
    DATA: lt_bapi_return    TYPE STANDARD TABLE OF bapiret2,
          lt_profiles       TYPE STANDARD TABLE OF bapiprof,
          lt_activitygroups TYPE STANDARD TABLE OF bapiagr.
    DATA: ls_bapi_return    TYPE bapiret2,
          ls_profiles       TYPE bapiprof,
          ls_activitygroups TYPE bapiagr.
    DATA: lv_zbv_sysid     TYPE sy-sysid,
          lv_zbv_clnt      TYPE sy-mandt,
          lv_zbv_logsys    TYPE uszbvlndsc-sendsystem,
          lv_zbv_rfc_dest  TYPE rfcdes-rfcdest,
          lv_usrid_zbv_get(10).
    lv_usrid_zbv_get = i_usrid.
    *--- Zentrale Benutzerverwaltung: Zentralsystem des Users ermitteln ---*
    CALL FUNCTION 'SUSR_ZBV_CENTRALSYSTEM_GET'
      EXPORTING
        delivery_model           = lv_usrid_zbv_get
      IMPORTING
        central_system_sysid     = lv_zbv_sysid
        central_system_clnt      = lv_zbv_clnt
        central_system_logsys    = lv_zbv_logsys
        central_system_rfc_dest  = lv_zbv_rfc_dest
      EXCEPTIONS
        duplicate_central_system = 1
        new_system               = 2
        OTHERS                   = 3.
    *** Errorhandling
    IF sy-subrc NE 0.
    ENDIF.
    *--- Existenz des Benutzers prüfen ---*
    CLEAR: ls_bapi_return.
    CALL FUNCTION 'BAPI_USER_EXISTENCE_CHECK' DESTINATION lv_zbv_logsys
      EXPORTING
        username = i_usrid
      IMPORTING
        return   = ls_bapi_return.
    *** Errorhandling
    IF ls_bapi_return-id EQ '088'. "Benutzer existiert nicht
    *** close RFC connection
      CALL FUNCTION 'RFC_CONNECTION_CLOSE'
        EXPORTING
          destination = lv_zbv_logsys.
      EXIT.
    ENDIF.
    *--- Rollenzuordnungem zum Benutzer lesen ---*
    CLEAR: lt_bapi_return.
    ***************SUSR_ZBV_ROLES_RESOLVE
    CALL FUNCTION 'BAPI_USER_GET_DETAIL' DESTINATION lv_zbv_logsys
      EXPORTING
        username            = i_usrid
    * IMPORTING
    *   ADDRESS              =
    *   LASTMODIFIED         =
    *   ISLOCKED             =
      TABLES
       profiles             = lt_profiles
       activitygroups       = lt_activitygroups
       return               = lt_bapi_return.
    *** Errorhandling
    LOOP AT lt_bapi_return INTO ls_bapi_return.
    ENDLOOP.
    IF ( ls_bapi_return-type EQ 'A' ) OR
       ( ls_bapi_return-type EQ 'E' ).
    *** close RFC connection
      CALL FUNCTION 'RFC_CONNECTION_CLOSE'
        EXPORTING
          destination = lv_zbv_logsys.
      EXIT.
    ENDIF.
    *** Gültigkeitszeitraum von Rollenzuordnung setzen
    CLEAR: ls_activitygroups.
    LOOP AT lt_activitygroups INTO ls_activitygroups.
      ls_activitygroups-to_dat = i_date.
      MODIFY lt_activitygroups FROM ls_activitygroups.
      CLEAR: ls_activitygroups.
    ENDLOOP.
    *--- gesamte Aktivitätsgruppenzuordnung ändern (zeitlich abgrenzen) ---*
    CLEAR: lt_bapi_return.
    *SUSR_USER_LOCAGR_ACTGROUPS_ADD
    *SUSR_USER_CHANG
    *CALL FUNCTION 'BAPI_USER_ACTGROUPS_ASSIGN' DESTINATION lv_zbv_logsys
    *  EXPORTING
    *    username       = i_usrid
    *  TABLES
    *    activitygroups = lt_activitygroups
    *    return         = lt_bapi_return.
    *--->SUSR_USER_LOCAGR_ACTGROUPS_PUT
    *--->SUSR_USER_PROFS_BUFFER_SAVECHK
    *--->SUSR_ZBV_USER_SYSTEM_SAVE
    *--->SUSR_USER_BUFFERS_TO_DB 
    *--->SUSR_USER_GROUP_BUFFERS_TO_DB ????
    *--->SUSR_USER_PROFS_BUFFER_TO_DB ????
    *--->SUSR_USER_LOCPRO_BUFFER_TO_DB ????
    *--->SUSR_UM_USR_AGR_BUFFERS_TO_DB ????
    *--->SUSR_UM_USR_SYS_BUFFERS_TO_DB ????
    *--->SUSR_USER_AGR_BUFFER_TO_DB ????
    *--->SUSR_USER_LOCAGR_BUFFER_TO_DB ????
    *Anmerkung: Profile werden nicht berücksichtigt, da diese eigentlich nicht
    *mehr in Verwendung sein sollten (nur noch Rollen)
    *--- Rückverteilung der geänderten Userdaten an Tochtersysteme ---*
    *SUSR_ZBV_USER_SINGLE_SEND
    *SUSR_ZBV_USER_SEND_BACK
    *SUSR_USER_DISTRIBUTE
    *** close RFC connection
    CALL FUNCTION 'RFC_CONNECTION_CLOSE'
      EXPORTING
        destination = lv_zbv_logsys.

    Try BAPI_USER_LOCACTGROUPS_ASSIGN

  • NWA 7.1 - User Administration with regards to Roles/Groups

    Hello,
    Environment = NWA 7.1 , Java Stack Only , No Central User Administration
    Situation      = One group of individuals responsible for developing and maintaining Java Roles & Groups
                          (Permissions). Another group of individuals responsible for maintaining Users and
                          allocating the above Roles & Groups to the Users.
    In accordance with various documentation (ie. http://help.sap.com/saphelp_nwpi711/helpdata/en/4a/e06f429c789041e10000000a1550b0/frameset.htm) I have set up a Role which includes the actions: UME.Manage_Roles, UME.Manage_Groups, UME.Manage_Users, UME.Manage_All_User_Passwords & UME.Read_All. This Role is intended for the second group of individual mentioned above.
    The problem is however that with the mentioned actions they can not only allocate an user to a Role or Group but also delete the Role/Group from the system. Without the above actions in the Role it is not possible to assign Users to a Role/Group.
    This leads me to the question if it is possible to split these two various areas of responibility or does NWA 7.1 view both activities as residing in only group (documentation to this effect would be helpful). If not, which actions will ensure that only Users can be administered but the rights to the system (Roles/Groups) can not be tampered with.
    Many thanks in advance,
    Jay

    Hi Jay,
    UME.Manage_All Provides permissions required by an overall user administrator.
    These include:
    u2022 Administration of users belonging to any company and
    possibility of assigning users to companies
    (In a multitenant portal, even if a tenant user is assigned this
    action, he or she will still only have access to users, groups,
    and roles in his or her tenant.)
    u2022 Group management
    u2022 Role assignment
    u2022 User mapping
    u2022 Import and export of user data
    u2022 Manual replication of user data
    To set up delegated user administration, overall user administrators
    must belong to a role to which the UME.Manage_All action is
    assigned.
    In portal installations, any role that includes the UME.Manage_All
    action automatically has Role Assigner permissions on all portal roles in the portal installation.
    Try this.
    Regards,
    Gowrinadh

  • Auto email Transmission for Central system administration

    Hi Experts,
    I want to setup an auto email transmission for "Central system administration" report in solution manager.
    If anyone aware of the process, please guide.
    Thanks,
    Basis Consultant

    Hello,
    To setup CSA you will need to perform three important pre-requisites if you already have not done so.
    > Create a Solution Landscape
    > Setup the RFC connections between Solution Manager and the Satellite systems in your Solution Landscape
    > Assign the Solution Monitoring Roles to the users.
    In terms of the Automatic Email Notification it is currently not available as a standard functionality. 
    Thanks,
    Mark

  • Central System Administration in Workcenter - Remote Logon Issue

    Hi,
    We have a problem in our Solution Manager and we would like to know if is possible to fix it.
    We have configured Central System Administration correctly for our satellite systems. We have configured some tasks and we are able to do remote logon to run some transactions in the stallete systems.
    The problem comes in the Workcenter via web. In the workcenter we access to the Central System Administration and when we try to do remote logon to the satellite system nothing happens.
    Anyone knows if it is possible to do remote logon to the satellite systems using workcenters?
    Thanks,
    Roberto

    From the transaction SOLMAN_WORKCENTER, navigate to the System Administration tab.
    From the menu on the left select the task "Administration Tools".
    Select your system from the table on the right
    At the bottom of the screen you will see "Details for system <SID>"
    Select the client and the RFC from the drop down menu. 
    You should see a list of Tools for Application Server with corresponding TCODES.  If your selected RFC is functioning properly and the user ID specified in the RFC has the correct authorizations you should be able to log on remotely by clicking on the link provided.

  • Central system administration (CSA) in solution monitoring

    Hello,
    I want to configure my solution manager for central system administration (CSA) which is a service provided under solution monitoring of transaction dswp.
    I couldnt find any documents for this configuration.
    Could you please help me out..
    Regards,
    Gurudath Pai

    Hi Gurudath,
    If you have an s-user id, step-by-step tutor files with screenshots are available at
    https://service.sap.com/rkt-solman > Solution Manager > Solution Manager 7 > Technology Consultant & System Administrator > System Monitoring, Administration
    Before configuring CSA, you have to:
    1. Perform basic settings for Solman (use wizard based approach)
    2. Setup the system landscape
    3. Create solution
    4. Now you can configure CSA
    Revert if you need clarifications
    Prasad

  • User administration in SRM when using SUS

    Hello,
    i've some understanding-problems concerning the user-administration within the SUS-EBP-Szenario with activated business function supplier collaboration (SRM_SUCO_1) and customizing switch for SUS-Registration (SRM_701_SUCO_SUP_REG).
    A new potential supplier carries out the self-registration within SUS. After answering the questionaire, I see the new supplier with corresponding contact person within the sus-user administration.
    1. Does the purchaser normally approve the suppliers within the SUS or the SRM-system ?
    2. In my current szenario the purchaser can log on to the SUS-system and accept or decline the suppliers within the preselection-screen. Is this correct ? I Would prefer to do this in the SRM-system.
    3. In the SRM-System a purchaser can
    (under stratetic purchasing-business partners-central functions-preselect suppliers) preslelect suppliers Which windows should open now: the preselect-scrreen form the SRM-System or directly from the SUS-System ?
    4. if I configure the system so that the preselection-screen from the SRM-System opens i can see the accepted suppliers within a OPI-bases supplier directory - but now it's not possible to mark and tranfer users to SRM-System! What could be my problem ?
    I hope someone can describe me the process in more details. I've already read the corresponding documentation but without getting the full understanding of the correct process and it configuration.
    Best regards

    Hello,
    sorry, for answering so late and thank you for you answer, but as I've not solved my problem I'll try to explain my current configuration and my problem.
    At the moment I've changed the role /SAPSRM/ST_PURCHASER_EHP1 in SRM, so that, if the purchaser goes on menupoint "Businesspartner-central functions-preselect supllier" the preselection screen form the SUS-System is shown in a separate window.
    In this screen "Preselect Suppliers" I can see the suppliers from SUS, but Ive no possibilitiy to mark them and to transfer them to my SRM. There ar no buttons make any other action than searching and no possibilitie to mark the shown entries !
    As I'm with this screen within the SUS-system why do I have to configure the supplier directory within the SRM-system ?
    Where should I see the supplier directory to transfer suppliers to the SRM.
    If there's a possibility to send you some screenshots for a better illustration, please let me know.
    Sorry for asking so many questions and thanks for your patience in advance.
    Bests regards
    Axel

  • User "Administrator" does not exist

    Hello everybody,
    i implemented SP Stack 13 in our Java Instance! Now we got some Problems in our Portal.
    1) Selfgenerated IViews cannot be accessed. We got the a Portal runtimeerror. In the Tracefile we found the following message:
    #1.5 #0011258C7044006100000253000003EC0004418B74EB8814#1197967124597#com.sap.portal.sapapplication#sap.com/irj#com.sap.portal.sapapplication#TESTUSER1#36624##srv053_BWT_18713950#Guest#95ba2ce0ad4411dcbf910011258c7044#SAPEngine_Application_Thread[impl:3]_38##0#0#Error#1#/System/Server#Java###Content pass of Application Integrator failed.
    Component Name:       'com.sap.portal.appintegrator.sap.BWReport',
    Context Name (iView): 'pcd:portal_content/every_user/general/ARB/ARB-FI/AR_FI_Role/ARB_QM_REP_0/AR_FI_SY_WEB_KONZUMS_RW_S',
    Top Layer:            'BWReport/TopLayer',
    Producer ID (FPN):    'null',
    System Alias:         'BWTCLNT001',
    [EXCEPTION]
    #1#com.sapportals.portal.appintegrator.ApplicationIntegratorException: Unable to parse template '<System.scheme>://<System.servername>:<System.serverport><BWLauncherComponent[PORTAL_URL]>;jsessionid=<Request.JSessionID>?sap-bw-iViewID=<FPN.PCDHomeLocation[url_ENCODE]>&sap-ext-sid=<ESID[url_ENCODE]>&sap-pp-producerid=<producerID>&sap-pp-consumerBaseURL=<Request.BaseURL[url_ENCODE]>&theme=<LAF.Theme[url_ENCODE]>&sap-lafversions=<LAF.AllVersions[url_ENCODE]>&<BusinessParameters>'; the problem occured at position 138. Cannot process expression <FPN.PCDHomeLocation>
         at com.sapportals.portal.appintegrator.layer.AbstractIntegrationLayer.processTemplate(AbstractIntegrationLayer.java:455)
         at com.sapportals.portal.appintegrator.layer.URLTemplateProcessLayer.processLayer(URLTemplateProcessLayer.java:33)
         at com.sapportals.portal.appintegrator.LayerProcessor.processActionPass(LayerProcessor.java:159)
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doActionPass(AbstractIntegratorComponent.java:68)
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doOnPOMReady(AbstractIntegratorComponent.java:54)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.handleEvent(AbstractPortalComponent.java:396)
         at com.sapportals.portal.prt.pom.ComponentNode.handleEvent(ComponentNode.java:252)
         at com.sapportals.portal.prt.pom.PortalNode.fireEventOnNode(PortalNode.java:368)
         at com.sapportals.portal.prt.pom.PortalNode.processEventQueue(PortalNode.java:799)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:652)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         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)
    Caused by: com.sapportals.portal.appintegrator.template_processor.TemplateParserException: Unable to parse template '<System.scheme>://<System.servername>:<System.serverport><BWLauncherComponent[PORTAL_URL]>;jsessionid=<Request.JSessionID>?sap-bw-iViewID=<FPN.PCDHomeLocation[url_ENCODE]>&sap-ext-sid=<ESID[url_ENCODE]>&sap-pp-producerid=<producerID>&sap-pp-consumerBaseURL=<Request.BaseURL[url_ENCODE]>&theme=<LAF.Theme[url_ENCODE]>&sap-lafversions=<LAF.AllVersions[url_ENCODE]>&<BusinessParameters>'; the problem occured at position 138. Cannot process expression <FPN.PCDHomeLocation>
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.processWholeTagExpression(TemplateProcessor.java:167)
         at com.sapportals.portal.appintegrator.template_processor.compiler.TemplateCompiler.processWholeTagExpression(TemplateCompiler.java:54)
         at com.sapportals.portal.appintegrator.template_processor.TemplateParser.parseSimpleExpression(TemplateParser.java:234)
         at com.sapportals.portal.appintegrator.template_processor.TemplateParser.parseComponenedExpression(TemplateParser.java:188)
         at com.sapportals.portal.appintegrator.template_processor.TemplateParser.parseComponenedExpressionEx(TemplateParser.java:210)
         at com.sapportals.portal.appintegrator.template_processor.TemplateParser.parseComponenedExpression(TemplateParser.java:193)
         at com.sapportals.portal.appintegrator.template_processor.TemplateParser.parseTagExpression(TemplateParser.java:170)
         at com.sapportals.portal.appintegrator.template_processor.TemplateParser.parseTemplateExpressionPart(TemplateParser.java:97)
         at com.sapportals.portal.appintegrator.template_processor.TemplateParser.parse(TemplateParser.java:89)
         at com.sapportals.portal.appintegrator.template_processor.TemplateParser.parse(TemplateParser.java:83)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.processImpl(TemplateProcessor.java:407)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.process(TemplateProcessor.java:374)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.process(TemplateProcessor.java:386)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessorService.processTemplate(TemplateProcessorService.java:54)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessorService.processTemplate(TemplateProcessorService.java:107)
         at com.sapportals.portal.appintegrator.layer.AbstractIntegrationLayer.processTemplate(AbstractIntegrationLayer.java:441)
         ... 30 more
    Caused by: java.lang.ClassCastException
         at com.sap.portal.fpn.runtime.services.AppIntegratorInformationService.getProducerByAlias(AppIntegratorInformationService.java:126)
         at com.sap.portal.fpn.runtime.services.AppIntegratorInformationService.buildFPNLocatorForShortcut(AppIntegratorInformationService.java:142)
         at com.sap.portal.fpn.runtime.services.AppIntegratorInformationService.transformURL(AppIntegratorInformationService.java:204)
         at com.sapportals.portal.appintegrator.template_processor.context.FPNWrapper.getTerminal(FPNWrapper.java:69)
         at com.sapportals.portal.appintegrator.template_processor.TemplateProcessor.processWholeTagExpression(TemplateProcessor.java:152)
         ... 45 more
    #1.5 #0011258C7044006100000255000003EC0004418B74EC9CB6#1197967124690#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#TESTUSER1#36624##srv053_BWT_18713950#Guest#95ba2ce0ad4411dcbf910011258c7044#SAPEngine_Application_Thread[impl:3]_38##0#0#Error#1#/System/Server#Java###Exception ID:09:38_18/12/07_0005_18713950
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/every_user/general/ARB/ARB-FI/AR_FI_Role/ARB_QM_REP_0/AR_FI_SY_WEB_KONZUMS_RW_S
    Component class : com.sapportals.portal.sapapplication.SAPApplicationIntegratorComponent
    User : TESTUSER1
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:973)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         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)
    Caused by: com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Unable to parse template &\#39;&lt;System.scheme&gt;://&lt;System.servername&gt;:&lt;System.serverport&gt;&lt;BWLauncherComponent[PORTAL_URL]&gt;;jsessionid=&lt;Request.JSessionID&gt;?sap-bw-iViewID=&lt;FPN.PCDHomeLocation[url_ENCODE]&gt;&amp;sap-ext-sid=&lt;ESID[url_ENCODE]&gt;&amp;sap-pp-producerid=&lt;producerID&gt;&amp;sap-pp-consumerBaseURL=&lt;Request.BaseURL[url_ENCODE]&gt;&amp;theme=&lt;LAF.Theme[url_ENCODE]&gt;&amp;sap-lafversions=&lt;LAF.AllVersions[url_ENCODE]&gt;&amp;&lt;BusinessParameters&gt;&\#39;; the problem occured at position 138. Cannot process expression &lt;FPN.PCDHomeLocation&gt;
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContentPass(AbstractIntegratorComponent.java:123)
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContent(AbstractIntegratorComponent.java:98)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         ... 29 more
    #1.5 #0011258C7044006100000257000003EC0004418B74EEE9EF#1197967124894#com.sap.portal.prt.runtime#sap.com/irj#com.sap.portal.prt.runtime#TESTUSER1#36624##srv053_BWT_18713950#Guest#95ba2ce0ad4411dcbf910011258c7044#SAPEngine_Application_Thread[impl:3]_38##0#0#Error##Java###09:38_18/12/07_0005_18713950
    [EXCEPTION]
    #1#com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Unable to parse template &\#39;&lt;System.scheme&gt;://&lt;System.servername&gt;:&lt;System.serverport&gt;&lt;BWLauncherComponent[PORTAL_URL]&gt;;jsessionid=&lt;Request.JSessionID&gt;?sap-bw-iViewID=&lt;FPN.PCDHomeLocation[url_ENCODE]&gt;&amp;sap-ext-sid=&lt;ESID[url_ENCODE]&gt;&amp;sap-pp-producerid=&lt;producerID&gt;&amp;sap-pp-consumerBaseURL=&lt;Request.BaseURL[url_ENCODE]&gt;&amp;theme=&lt;LAF.Theme[url_ENCODE]&gt;&amp;sap-lafversions=&lt;LAF.AllVersions[url_ENCODE]&gt;&amp;&lt;BusinessParameters&gt;&\#39;; the problem occured at position 138. Cannot process expression &lt;FPN.PCDHomeLocation&gt;
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContentPass(AbstractIntegratorComponent.java:123)
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContent(AbstractIntegratorComponent.java:98)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         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)
    2) In the Trace file all the Time occurs the following message:
    #1.5 #0011258C7044006F0000027A000003EC0004418B678FE974#1197966900571#com.sap.workflow#sap.com/irj#com.sap.workflow#J2EE_GUEST#0####8f2fa3e0aa4d11dcb0150011258c7044#Thread[ThreadPool.Worker4,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error#1#/Applications/Workflow/General#Plain###TaskSchedulerDeadline.run()#
    #1.5 #0011258C7044006F0000027B000003EC0004418B678FEBD8#1197966900571#com.sap.workflow#sap.com/irj#com.sap.workflow.#J2EE_GUEST#0####8f2fa3e0aa4d11dcb0150011258c7044#Thread[ThreadPool.Worker4,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###com.sap.security.api.NoSuchUserException: User "Administrator" does not exist.
         at com.sap.security.core.imp.UserFactory.getUserByUniqueName(UserFactory.java:1635)
         at com.sap.security.core.imp.UserFactory.getUserByUniqueName(UserFactory.java:1574)
         at com.sap.security.core.imp.UserFactory.getUserByUniqueName(UserFactory.java:1560)
         at com.sap.workflow.es.scheduler.TaskSchedulerDeadline.run(TaskSchedulerDeadline.java:90)
         at com.sapportals.wcm.service.scheduler.SchedulerEntry.run(SchedulerEntry.java:174)
         at com.sapportals.wcm.service.scheduler.crt.PoolWorker.run(PoolWorker.java:108)
         at java.lang.Thread.run(Thread.java:534)
    Can somebody tell me what is going on here?
    Thanks so long
    Edited by: Oliver Heinzelmann on Jan 11, 2008 2:17 PM
    Problem #1 resolved: Ask me for solution

    Hi Oliver,
    A contact at SAP has indicated that in the KM Task Scheduler Deadline (com.sap.workflow.es.scheduler.TaskScheduler.Deadline.run) that the user "Administrator"  is hard coded in the SPS13 release.
    Depending on what you are using the KM for you could reduce the frequency of the alert by changing the scheduling of this task which by default is every five minutes.
    Although the release notes of the following patches didn't formerly address the hard coding issue, I decided to apply them anyway as I thought that a later release may have fixed the issue.  However it is not fixed with these interim patches.
    KMCBC13P_1-10003491.SCA   Patch for KMC BASE COMPONENTS 7.00 SP13 
    KMCCM13P_1-10003492.SCA   Patch for KMC CONTENT MANAGEMENT 7.00 SP13
    I guess we will need to wait for a further patch to be released and ignore the error in the meantime.
    Regards
    Craig

  • How i can create multiple users at a time (User Administration) in EP

    Hi
    I need to create multiple users at a time. How can i do that through User Administration in EP.
    Please also tell me about import option in User Administration

    Hi,
    1.  First of all create a master user based on which you can create multiple users.
    2.  when you are done with it  export (by selecting the option at user creation) it.
    3.  you can see some text in a window copy it create  a txt file with it, and add as many users as you want
         by cpoy pasting the text multiple times and making necessary change as per the names etc...
    4. save the txt file.
    5. goto import option you were talking about and import the text file and update it.
    6. As it gets updated you are done with the creation of multiples users.
    If you  get stuck somewhere  feel free to  let me know.
    if  this answer satisfies your need, award points and close the thread.
    Edited by: ali alia on Feb 10, 2009 6:21 AM

  • Not able to find Central System Administration

    Hi,
    We are trying to configure the Central System Administration in our Soultion Manager version 4.0 for the Development server running on ECC 6.0.
    We have created systems, generated RFC's, defined logical system and and also created Solution Landscape for the Development Server in the Solution Manager System.
    But when we go to the transaction DSWP>Eneter the Development Solution Landscape>Solution Minitoring>System Monitoring/ Administration>Operation Setup, We rae unable to find the Central System Administration configure icon.
    Please suggest the possible reason for this and a way to view the Central System Administraion configure Icon.
    Thanks and Regards,
    Abdul Khyoom A.

    Hi Abdul,
    CSA Setup should be visible via this path:
    - dswp
    - open solution landscape
    - choose Operations Setup -> Solution Monitoring -> System Administration
    - here you should see for each system in the Landscape an entry for: Central System Administration
    What's the Support Package Level of you SolMan system?
    Best regards,
    Ruediger

  • Getting error while creating the user in user administration in portal

    Hi folks,
         i am unable to create the user in user administration in portal due to the following error,
    could you please help regarding this issue
    "Current user has user creation permissions in the UME, but cannot create users in the back-end system (data source). The original and possibly untranslated message was: "No active writeable datasource found for user creation, check your Persistence Configuration.".

    Hi All,
    I am closing this thread as this is not in the correct forum.  This should be opened in LDAP or UME.  Please open the thread under the correct heading.
    Beth Maben
    EP - Senior Support Consultant
    AGS Primary Support, Business Suite & Technology
    Please see the UWL Wiki @
    http://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

Maybe you are looking for