Create Roles with acess control in SAP MDM

Hi Experts,
I am new to SAP MDM.I want to know how to create roles with access control for various users in SAP MDM.
Thanks,
Manoj

hi,
in the console; you can create roles with access control and you can assign these roles to users.
follow this path:
Console --> repository --> Admin node --> roles,
here you can create new role. for role here you can maintain
1. role detail
2. Functions --here you can restrict the particular role ,  none / Execute the functions.
3. Tables/fields  -- here you can give access to the role Read only / Read and write, and you can apply constraints also.
and follow the links:
http://help.sap.com/saphelp_mdm550/helpdata/en/8e/9f9c427055c66ae10000000a155106/frameset.htm
http://help.sap.com/saphelp_mdm550/helpdata/en/8e/9f9c427055c66ae10000000a155106/frameset.htm
http://help.sap.com/saphelp_mdm550/helpdata/en/8e/9f9c427055c66ae10000000a155106/frameset.htm
http://help.sap.com/saphelp_mdm550/helpdata/en/8e/9f9c427055c66ae10000000a155106/frameset.htm
http://help.sap.com/saphelp_mdm550/helpdata/en/8e/9f9c427055c66ae10000000a155106/frameset.htm
hope this may help you,
Regards,
Srinivas

Similar Messages

  • How to create bdc with table control

    hi all.
    please some body tell me how to create bdc with table control
    or suggest any www with screen shots
    thanks in advance ,
    aparna

    Hi AParna,
    Its very Simple.
    ALl you have to do is set up a counter based on the number of lines in the tabke. when the counter reaches the number of lines in the table hit the next page button which is at the top of every screen in SAP.
    Please refer to the following BDC program I had developed using Table control,
    this is for ME01 transaction.
      LOOP AT T_EORD_HED.
        SELECT SINGLE * FROM MARA WHERE MATNR = T_EORD_HED-MATNR.
        IF SY-SUBRC = 0.
          PERFORM BDC_DYNPRO      USING 'SAPLMEOR' '0200'.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'EORD-MATNR'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM BDC_FIELD       USING 'EORD-MATNR'
                                        T_EORD_HED-MATNR.       "'58335'.
          PERFORM BDC_FIELD       USING 'EORD-WERKS'
                                        T_EORD_HED-WERKS.       "'0253'.
          L_COUNT = 1.
          LOOP AT T_EORD WHERE MATNR = T_EORD_HED-MATNR
                           AND WERKS = T_EORD_HED-WERKS.
            SELECT SINGLE * FROM LFA1 WHERE LIFNR = T_EORD-LIFNR.
            IF SY-SUBRC = 0.
    * Look into the if condition below
              IF L_COUNT = 010.
                L_COUNT = 1.
                PERFORM BDC_DYNPRO      USING 'SAPLMEOR' '0205'.
                PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                      'EORD-MATNR'.
                PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                       '=NS'.
                L_COUNT = L_COUNT + 1.
              ENDIF.
              PERFORM BDC_DYNPRO      USING 'SAPLMEOR' '0205'.
              PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                            'EORD-AUTET(01)'.
              PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                            '/00'.
              CONCATENATE 'EORD-VDATU' '(' L_COUNT ')' INTO OPR_FIELD.
              WRITE SY-DATUM TO T_EORD-VDATU.
              PERFORM BDC_FIELD       USING OPR_FIELD
                                            T_EORD-VDATU.
              CONCATENATE 'EORD-BDATU' '(' L_COUNT ')' INTO OPR_FIELD.
              WRITE T_EORD-BDATU TO V_BDATU.
              PERFORM BDC_FIELD       USING OPR_FIELD
                                            V_BDATU.
              CONCATENATE 'EORD-LIFNR' '(' L_COUNT ')' INTO OPR_FIELD.
              PERFORM BDC_FIELD       USING OPR_FIELD
                                            T_EORD-LIFNR.
              CONCATENATE 'EORD-EKORG' '(' L_COUNT ')' INTO OPR_FIELD.
              PERFORM BDC_FIELD       USING OPR_FIELD
                                            '0001'.
              CONCATENATE 'EORD-RESWK' '(' L_COUNT ')' INTO OPR_FIELD.
              PERFORM BDC_FIELD       USING OPR_FIELD
                                            T_EORD-RESWK.
              WRITE T_EORD-MEINS TO V_MEINS.
              CONCATENATE 'EORD-MEINS' '(' L_COUNT ')' INTO OPR_FIELD.
              PERFORM BDC_FIELD       USING OPR_FIELD
                                            V_MEINS.
    *          CONCATENATE 'EORD-EBELN' '(' L_COUNT ')' INTO OPR_FIELD.
    *          PERFORM BDC_FIELD       USING 'OPR_FIELD'
    *                                        T_EORD-EBELN.
              CONCATENATE 'EORD-EBELP' '(' L_COUNT ')' INTO OPR_FIELD.
              PERFORM BDC_FIELD       USING OPR_FIELD
                                            T_EORD-EBELP.
              IF T_EORD-FLIFN NE SPACE OR T_EORD-FRESW NE SPACE OR
                 T_EORD-FEBEL NE SPACE.
                CONCATENATE 'RM06W-FESKZ' '(' L_COUNT ')' INTO OPR1_FIELD.
                PERFORM BDC_FIELD       USING OPR1_FIELD
                                              'X'.
              ENDIF.
              IF T_EORD-NOTKZ <> ''.
                CONCATENATE 'EORD-NOTKZ' '(' L_COUNT ')' INTO OPR_FIELD.
                PERFORM BDC_FIELD       USING OPR_FIELD
                                              'X'.
              ENDIF.
              CONCATENATE 'EORD-AUTET' '(' L_COUNT ')' INTO OPR_FIELD.
              PERFORM BDC_FIELD       USING OPR_FIELD
                                            T_EORD-AUTET.
              L_COUNT = L_COUNT + 1.
            ENDIF.
          ENDLOOP.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        'EORD-MATNR'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=BU'.
          CALL TRANSACTION 'ME01' USING I_BDCDATA
                        MODE UP_MODE
    *                     optIONS  FROM l_opt
                        MESSAGES INTO I_BDCMSGCOLL.
          PERFORM FORMAT_OUTPUT.
        ENDIF.
      ENDLOOP.

  • ABAP HR How to create infotype with table control in it like Infotype 0008

    Hi Experts.
    I need help from u guys. My client requirement is to create custom infotype just like 0008 infotype which contain table control to save amount and wage types. I try to create infotype with table control using PM01, but that table control is in display mode only, i almost search every where to create custom infotype with table control but what ever threads in forum all are they unanswered and most of the threads for creating infotype. But i already done with infotype , but my main problem is table control.
    If any one have some suggestion for this please share with me.
    <removed by moderator> i am looking for positive reply.
    Edited by: Thomas Zloch on Aug 30, 2011 12:54 PM

    Hi
    I've created several infotypes with a Table Control and it is always the same story. You have to create a custom Z table to store the Table Control data (if you can have unlimited records), so in the PSXXXX structure you need to add a TABNR field to link the PAXXXX table and the Z one, just like the type table OM infotypes.
    Then in your code you have to control every possible operation, INS, MOD, DEL... and update the Z table accordingly (the standard code won't do that)
    If your TC fields appear in display mode, take a look at the Groups 1 and 3 in your fields, the must be set with the usual values for a PA infotype.
    If you have more questions, just ask,
    Regards

  • How to deal with Print Controls in SAP SCRIPT

    Hello All...
    I have two requirement in SAP SCRIPT for which I will need to use PRINT CONTROLS.
    1) To print a window with 90 degree rotation
    2) In the same window I wanted to have black background and white text printed on it.
    For rotating the text,
    Primary basis I created two Z print controls using SPAD.
    One to rotate with 90 and another to rotate with 0.
    In SPAD I assigned \e&a90P and \e&a0P respectivaly in device type.
    Now in sap script window I specified below commands...
    /:  PRINT-CONTROL Z90
    =  TEST
    /:  PRINT-CONTROL Z00
    but in the SP01 the text is still printing Horizontally...
    Also Is there any standard print controls which set backgroud to black for specific window.
    and how to use that?
    Please help me to resolve this issue.
    Thanks in advance,
    Shweta

    Hi,
    Occassionally, when you make frequent changes to your SAPScript, the system can get out of sync.
    When you view the form, the old data get display without your changes. 
    This can be fixed by deleting the SAPScript LOAD with program RSTXDELL. 
    Hope it helps.
    Reward if helpful.
    Regards,
    Sipra

  • Fail to create roles with users in LDAP

    I installed and configured two Directory Services one for AM and one for identity. I created an LDAP Data Store for the root realm and can see the LDAP users in the Subjects->User tab in AM. I can create Subjects->Groups and add LDAP users successfully, but I cannot create Subjects->Roles with LDAP users. I get the following error:
    Plug-in com.sun.identity.idm.plugins.files.FilesRepo: Unable to find entry: C:\SFU\app\ironscale\amserver\idRepo\user\awhite
    Any ideas? I also found it odd that my new Group was created in the FileRepo under idRepo/group. I thought it would have been written to the AM DS.
    I deleted the flat file Data Store and the Group/Roles tabs disappeared. Must I import additional LDIFS to my LDAP Identity DS to store roles and groups it that DS?

    Update.
    I deleted LDAPv3 Plug-in Supported Types and Operations values group, user, and role, based on Sun's Access Manager training class examples. I re-added them and deleted the File Data Store and groups now get created in the LDAP Identity repo. However when I create a role and add users the operation sucessfully completes. But I cannot find the roles using an LDAP browser. I can grep the role name from the LDAP database and the roles remain after restarting the db and AM. It appears AM is adding roles in a way other tools cannot see them.

  • Using Roles with Access Control Pages

    Hi,
    I was curious if someone might be able to shed some light for me on an issue. I have a matrix of users
    who can read or write on different pages. So there are various roles created
    Admin can write all pages
    Reader can read all pages
    Medium Users can read some pages and write some pages
    Power User can Write most pages and read some pages
    I am thinking of using access control pages but I dont want to have to enter every single user for each page.
    I am wondering if I can create some sort of Roles that I can apply to access control lists. And set the role
    at login time and based on that decide what data they can edit or just view?
    Thanks in advance!

    Hi,
    Have you check or try use Authorization Schemes ?
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/sec.htm#sthref1943
    Br, Jari

  • Help creating DB with multiple Control/Log files

    I just installed 10.0.2.0 and tried to create a database and ran into the following issue. In my 9.2 install I have the following directory setup:
    E:\oracle\oradata\(instance name)
    F:\oracle\oradata\(instance name)
    G:\oracle\oradata\(instance name)
    I have three control files and three log files (1 in each directory). When I use the Database Creation Assistant and specify locations in the Multiplex Redo Log and Controlfiles dialog and then finish the assistant I get an error stating Oracle could not create the folder. I am using the following lines in the dialog.
    {ORACLE_BASE}\oradata\{DB_UNIQUE_NAME}\
    E:\oracle\product\10.2.0\oradata\{DB_UNIQUE_NAME}\
    F:\oracle\product\10.2.0\oradata\{DB_UNIQUE_NAME}\
    When I explore to F:\oracle\product\10.2.0\oradata\ there is a directory called {DB_UNIQUE_NAME} and not the database name I want (for example if I want an instance called RICK the control file would be in E:\oracle\product\10.2.0\oradata\RICK.
    In Oracle 9.2 I specify the locations as follows: E:\oracle\oradata\{DB_NAME}\ and it works just fine. Can someone help me through the exact steps I need to take to set up my new database with control/log files in different drives.
    Thanks
    Richard Anderson

    Hi Richard,
    normally I don't use DBCA to create DBs so I cannot tell how to solve it in DBCA.
    A workaround can be:
    At the end of configuration process in DBCA, instead to have the tool to generate Your DB, configure it to generate only the scripts (if I remeber they are created in $ORACLE_HOME/assistants/dbca dir) and generate them.
    Using a text editor, check the generated scripts and change the wrong strings.
    Hope this helps
    Max

  • Can I create a PDF with form controls using JAVA?

    I have a web site running on linux (Ubuntu). I'm programming in Java. Presently I use open office to create PDFs with form controls (checkboxes, lists and text fields). I'd like to be able to create in my program (Java) with form controls. JasperReports is not good because I don't see a way to create form controls. Help!!!

    I am not sure what this has to do with the Acrobat SDK, as we don't have a version of SDK for Linux (or Java).

  • SAP MDM features

    Hi
    Could someone tell me if SAP MDM has these features?
    u2022     Security
    u2022     Ability to maintain and assign security at Site level
    u2022     Ability to maintain and assign security at Area ( Logical Grouping like SNOP) level
    u2022     Ability to maintain and assign security at Role ( Logical grouping like SCDH, GMP) level
    u2022     Ability to maintain and assign security at Object ( Can be a page or a subset on a page) level
    u2022     Ability to maintain and assign actions-object combination to a role
    u2022     Ability to maintain and assign security at Row Level
    u2022     Ability to maintain and assign security at Column Level
    u2022     Ability to inherit role characteristics to another role
    u2022     Ability for one role characteristics to override the characteristics chosen for another role, while inherting ( Denial to update an Object for a role, should remain the same even if the role gets inherited
    u2022     Ability to audit any changes to Security on any Role/Object/Action (Will be tracked against BR5.1)
    u2022     
    u2022     Ability to handle Master Detail relationship
    u2022     Ability to handle MultiLevel data Hierarchy
    u2022     Ability to handle Dependency List
    u2022     Ability to maintain detail data in tabs on the same page
    u2022     Ability to mandate the need to enter Detail data for a new Master record, or tie a new Detail record to an existing Master record
    u2022     
    u2022     Ability to handle import and export of predefined formats
    u2022     Ability to import and parse CSV, XLS and TXT files
    u2022     Ability to import and parse XML files
    u2022     Ability to export data in PDF format
    u2022     
    u2022     Ability to handle Approval Process for data entered
    u2022     Ability to configure Approvers with Approval Levels at the time of object configuration
    u2022     Ability to prevent an Approver with lower Approval Level to approve data, before the higher level Approvals are obtained
    u2022     Ability to send an email to the required approvers, with the link to the page/object needing approval
    u2022     Ability to authenticate the NT login of the approver, accessing a page/object via a link on an email
    u2022     Ability to approve through email, by linking to a webservice
    u2022     Ability for the user to nominate a proxy for a given time duration
    u2022     Ability to control deletion of an approver through Admin access
    u2022     Ability to identify data that has not been approved and prevent database access to it.
    u2022     Ability to provide read-only access to data that has not been approved
    u2022     Ability to message out changes/addition on Master data to all Subscribers.
    u2022     Ability to message out potential changes on Master data to all Subscribers
    u2022     Ability to add an approver/subscriber to any step of the entire approval process
    u2022     Ability to prevent any further actions like export/import to data that has not been approved
    u2022     
    u2022     Ability to provide Historical Reports to identify how tool is used and highlight areas with most frequent changes
    u2022     Ability to capture and view all historical changes to user access
    u2022     Ability to capture and view all historical changes to data
    u2022     Ability to capture data range for all Master data, to indicate the validity of a data element.
    u2022     
    u2022     Ability to provide a Dashboard to display data entered
    u2022     Ability to provide read-only access to any data maintained throught the MDM
    u2022     Ability to capture each page/object added to the MDM, and provide it as a drop-down list for the user to choose from
    u2022     Ability to choose filter and view data for each page/object chosen
    u2022     
    u2022     Ability to access Help Documentation / List of Contacts for each screen
    u2022     Ability to maintain a Help document for each page/object
    u2022     Ability to maintain Tool Tips for each column in a Page
    u2022     Ability to provide a List of Contacts for each page/object
    u2022     
    u2022     Ability to access data via a Web Service
    u2022     Ability to access all data through Composite webservice
    u2022     
    u2022     Ability to provide Maintenance features
    u2022     Ability to provide Grid Feature which allows Search, Sort, Grouping and Pagenation capabilities for all maintenance screens
    u2022     Ability to provide Lookups for Standard Input fields like Date time. Lookup would be dependant on the client location
    u2022     Ability to provide timeout on inactivity, on the site
    u2022     
    u2022     Ability to add Favorites
    u2022     Ability to add Recently Accessed Pages as Favourites, at a Site Level
    u2022     Ability to choose views of a page and make it a Favourite, so that every consequent login, gives the same look for the same Object
    u2022     
    u2022     Ability to Support MultiLanguage
    u2022     Ability to provide Labels/Legends in Multilanguage
    u2022     
    u2022     Business Rules to Validate Data

    Hello mkhairi
    For more of your question answer -YES
    SAP MDM support trusted connection technology and LDAP
    SAP MDM has own user role functionality where you can set permissions for user security
    SAP MDM has JAVA,ABAP, COM, .NET(ver.7.1) API and you can use it for custom development
    SAP MDM has own web service for work with data in repository
    SAP MDM has own packages for development SAP NetWeaver Portal content
    SAP MDM has own workflow integrated with SAP NetWeaver Portal trough UWL
    SAP MDM has application for web publishing
    and many many other functionality from your list
    more about SAP MDM you can read here:
    http://help.sap.com/saphelp_nwmdm71/helpdata/en/index.htm
    Regards
    Kanstantsin Chernichenka

  • IDOC Creation with message control

    I have created an IDoc using standard FM ' MASTER_IDOC_DISTRIBUTE' (without message control) for my own table. Now, I want to create IDoc with message control to send data from SAP to SAP. Can anyone please tell me the steps to create IDoc for my own database table and program to be created.
    Thanks in advance.

    Pankaj,
    You can access the following link to understand Custom IDOC creation flow.
    http://wiki.scn.sap.com/wiki/display/HOME/Step+by+Step+procedure+for+creation+of+IDOC
    In The Process code FM, you can call Z-API to update your own database table & create a program to trigger & process the IDOCs.
    Further, a report program can be created to trigger/monitor IDOCs.
    Ravi

  • Strange issue with table control in dialog programming! Please help!

    Hello everyone:
                I have a table control on screen painter and I have atleast 10 rows on display when user calls the screen. If I have 15 columns then ofcourse user has to scroll down to see extra rows. I have line selection set to "single" for table control so that user can select only one row at a time. This works fine when user does not have to scroll to see extra rows. It is tough for me to explain i.e., if the table control displays 10 rows when the screen opens up then they can only select single row at a time (rows 1 -10). For example user selected row 7 and now they scroll down to see extra rows (for example 13) then it lets them select row 13 also even though I set line selection to "single" in the properties for table control! They should be able to select only one row at a time. Is this some limitation with table control in SAP? Please give me any information you have.
    Thanks.
    Mithun

    Hi,
    As you suspected, this is a limitation in the table control.  You need to take care of the single-selection functionality yourself except for the rows that are actually being displayed.  See [Note 588284|https://service.sap.com/sap/support/notes/588284] for the official SAP explanation.
    Regards,
    Jamie

  • Brief discussion on SAP XI and its' Integration with SAP MDM.

    Hi,
    I have never worked on SAP XI.
    I am discussing it on brief, please give your valuable replies.
    SAP XI consists of System Landascape Directory(SLD).
    SLD Consists of Business System and Techinical System.
    Technical System contains all information about the software
    component. The Business System consists of Inbound and Outbound Business
    System which are used as logical names for data transfer.
    There is communication Channel for Receiver and Sender Business System and n agreement
    is signed between Sender and Receiver.
    Outbound Interface defined for Business System Outbound and Techical System associated
    with the Business System,
    Inbound Interface defined for Business System Inbound and Techical System associated
    with the Business System.
    In SAP NetWeaver XI Integration Directory, we have defined the Integration Scenarios,
    Actions, Interface Objects, Mapping Objects, Adapters Objects.
    Mapping Object defines the Structure and Value Mapping.
    Adapter Objects defines the Adapter program which implements RFC Adapter, FTP Adapter logic.
    FTP Adapter is used for XI-MDM Communication.
    RFC Adapter is used for XI-ECC Communication.
    Integration Repository: Both Outbound and Inbound Interfaces are Mapped with Value mapping and
    Structure Mapping inside Integration Repository.
    The File Adapter takes the File from the Outbound port of MDM System
    and sends it as IDOC to Receiver Business System.
    Value Mapping must be done between Sender and Receiver interfaces.
    Value Mapping is done by XSLT or Java based program.
    SAP NetWeaver XI Integration Server at runtime:
    Message Split, Interface Determination, Receiver Identifaction, Mapping, Techincal Routing
    and Call Adapter Proccess are done.
    In SAP XI 3.0 and MDM 5.5:
    Step 1: Create busines system as service.
    Step 2: Create communication channel for each business service. If the system can communicate
    through different channels, then create all possible channel types if necessary.
    Step 3: Create receiver agreement between the systems.
    Step 4: Interface determination:
    - Here you see for the first time the software component mentioned;
    there are some special requirements regarding this software component in relation to the customizing ID mapping.
    - To modify this software component, the customer needs to copy the SAP standard delivered software component
    into its own namespace. The customer is able to modify to create archives
    for the customized ID mapping.
    Receiver determination.
    Configure an FTP Server on the MDS.
    Create a send folder for outbound messages using outbound port(s) for
    remote systems(s).
    Create receive folder inbound messages using inbound port(s) for remote systems.
    This ia all about concept of SAP XI Infractsture and its' Integration with SAP MDM 5.5.
    Regards
    Kaushik Banerjee

    Hi Kaushik,
    You must be aware of File types that MDM Import Manager can Import i.e. we have XML, Excel etc. Now there are two transactions to extract data from R3
    1. MDMGX -
             - For lookup table extraction
             - Output in XML format which MDM can import without using XI.
              - FTP can be configured to put the file in the desired folder which will be then picked by Import Server.
    2. MDM_CLNT_EXTR -
              - For Main table records.
              - Output is in Idoc format which MDM doesn't understand hence we need XI in between which converts Idoc file received from R3 into XML which can then be imported using Import Manager or Import Server. For this we need to implement XI Scenario that consists of Source System, Receiver System, Type of Data etc.
    Just a basic understanding...
    Regards,
    Jitesh Talreja

  • Need to integrate SAP MDM 5.5 with BW

    Hi,
    I am working on SAP MDM for last 4 months.
    I don't have any knowledge of BW.
    I need to integrate SAP MDM 5.5 with BW.
    I have checked with SAP R/3 SAINT transaction
    that MDM_TECH 555_700 is installed.
    Now, I have created logical connection with MDMAPI transaction.
    I have created an file named allow.ip and saved this in
    C:\Configuration.
    In allow.ip, I wrote the ip address of R/3 System.
    I didn't create any deny.ip.
    In MDS.ini , I have given location.
    TrustFiles Dir=C:\configuration
    Now, I have to find the OHD from BW.
    I need to see how?
    First of all that logical connection is not working.
    There is a Connect Function module mdm_accessor_connect .
    Here we have to give RFC target system.
    Now I created a RFC target system.
    I created a type 3 ABAP based RFC target system.
    Would it be TCP/IP based system?
    Here is the step where my Logical System creation failing.
    How to get the OHD Connection object from BW System?
    Regards
    Kaushik Banerjee
    Edited by: Kaushik Banerjee on Sep 22, 2008 11:33 AM

    Hi ,
    It is possible to transfer data directly from BI to MDM without using XI.I have worked on the same scenario.
    Below is the link which will help u .
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e01d1085-5a51-2a10-2292-b52eb7500180
    But u need to take BI"s help to do so.
    MDM BI Integration using ABAP API
    Hope this is helpful

  • Create a role with everything except parameterization option

    Hello,
    We need to create a new role with all object except parameterization
    option.
    How we can create it?
    Best regards,
    Julene González

    I had no idea that we had discussed SPRO that often...
    As you can see from the thread Alex pointed out ( [this one|https://forums.sdn.sap.com/click.jspa?searchID=19779873&messageID=6581648] ) it is also usefull to know which system in the landscape this role is destined for.
    Assuming this is for the QAS system, why don't you identify all the business roles for the production system (those which do not permit customizing in production either, nor user admin and other "basis" tasks, nor development work...etc...) and assign them all to the users (I assume these are support users).
    They should be in QAS already, and if your client settings are correct (T), you will experience the same or a very similar result.
    Of course they won't have "SAP_ALL minus SPRO", but they will have what you are actually using for the "real users"... in production (except it will be in QAS).
    That way they have also have a more realistic testing experience with the correct roles (only).
    Just a thought,
    Julius

  • Error with SAP MDM Server

    Hi All,
    We are working on discovery server version 3.
    After I mount the server and when i start the repository i cannot start it and get the following error
    u201CError Starting hp-discovery server (MDM Server) :
    Could not open the service control manager on serveru2019 server nameu2019 / Verify that the current windows user has the correct permissions, and that the target system is a windows based operating system u201D
    The problem sis resolved when i start the discovery server. and again occurs after few minutes.
    Its a tedious job to start server everytime and i would like to know what could be the possible reasons for getting this error so that i can avaoid this problem
    Thanks,
    MS.

    Hi,
    i have some problem too,
    the server was installed with option in MDS sap existing option.
    the config for MDS Listening port as below:
    MDS_LISTENING_PORT = 52250
    But when i mount the server in MDM console the value in column port is 59950.
    i have shared sapmnt folder with the other MDM server which is using port 59950 for MDS listening port.
    is there anyone know how to resolve this
    Regards,
    Husin

Maybe you are looking for