Local Repository User Rights for the Data Designer

Hello,
we are using the Data Services with 4 users and one local repository stored on the server.
Is it possible to hide in the Data Designer foreign objects and projects from other users in the local repository? What's the best practice for that, for every user a seperate repository or to restrict the repository rights with the cmc?
Our system:
Windows Server 2008
Data Services 4.0 SP1
IBM DB2 9.7 (Repository)
Thanks for some tips and hints!

Hi Alexander,
At any point in time, you should only have one user connected to one repository in Designer.
If two users are using the same repository at the same time, then there is a risk of corruption of repository objects.
Best practice is to have a repository for each (concurrent) developer and a central repository for version management.
Depending how testing is organised, you might also need to have repositories for unit test / QA (UAT) and finally a production repository.
For good measure, an additional central reposotiry for production can be valuable:
- if development for new project start before the 'previous' project has gone into live.
- You can prepare go-live by checking in all the objects required for live into central-production first.
- It's the final safety measure, if objects in production are corrupted and dev/test systems have modified versions.
So, a typical landscape would look like this:
DEVELOPMENT:
n number of development repositories, one for each developer
1 test repository (local)
1 dev central repository
TEST
1 UAT repository (local)
PROD
1 PROD repository (local)
1 central repository
Jan.

Similar Messages

  • Error while reading access data (URL, user,password) for the Adapter Engine

    Hi,
    Any idea on below message? I am doing file to file scenario and got the below tarce from sxmb_moni.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">AE_DETAILS_GET_ERROR</SAP:Code>
      <SAP:P1>af.pi1.piserver1</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>no_messaging_url_found: Unable to find URL for Adapter Engine af.pi1.piserver1</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while reading access data (URL, user, password) for the Adapter Engine af.pi1.piserver1</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Thanks
    Balaji

    It looks like the adapter engine is not able to register him self on SLD, you have to check in the SLD the "Exchange Infrastructure" domain, you have to verify restarting the J2EE the adapter engine update the entries in the SLD related to the specific XI Domain.
    Launch Visual Administrator >> Server >> Services >> SAP AF CPA Cache
    Enter the appropriate values for:
    SLD.selfregistration.hostname (Use fully qualified hostname)
    SLD.selfregistration.httpPort
    SLD.selfregistration.httpsPort
    Sandro

  • Error while reading access data (URL, user, password) for the Adapter Engin

    Hi all,
    I encountered a red flag in sxmb_moni and when I click on the flag, I get the following message:
    Error while reading access data (URL, user, password) for the Adapter Engine
    Is there any way I can resolve this? thanks all
    Regards,
    IX

    Possible reason is Adapter engine is not registered on SLD. Check in SLD.
    You can also try restarting J2EE adapter engine and update SLD entries specific to XI domain.
    Lauch Visual admin go to Server > services > SAP AF CPA Cache
    Enter the appropriate values for:
    SLD.selfregistration.hostname (Use fully qualified hostname)
    SLD.selfregistration.httpPort
    SLD.selfregistration.httpsPort
    Finally, if all the above seem to be correct check the userID / pwd for user ID : PI*.

  • [SOLVED]change default access creation rights for the users

    Hi!
    When a user creating folders or files it will allow full access to all users who are in the same group.
    How can I make the changes to be default instead of using chmod always?
    Last edited by Andy_Crowd (2014-06-11 14:47:29)

    Here is an example with some entries from my smb.conf
    security = share
    guest account = windowstools
    [WT]
    path = /home/Windows/Win-tools
    public = yes
    writeable = yes
    create mask = 0000
    guest ok = yes
    browseable = yes
    read only = no
    Windows XP is connected to my Linux share. I want be able to create folders and have access within Linux and Windows with rwx rights for the group. For now files created from Windows getting default rights 755 (rwx,xr,xr).
    windowstools:andy = is XP username/group
    andy:andy = Arch Linux username/group
    Windows XP is full updated (got problem once with connection to samba after update, got wait until next updates will come -.- , when new windows updates came XP could be connected to samba again, was a bug as I hoped).
    I am starting/restarting samba with script like
    #!/bin/bash
    systemctl stop smbd
    sleep 2
    systemctl status smbd | head -1
    systemctl status smbd | grep 'Active:' | awk -F')' '{print $1}' | sed 's/(//m'
    systemctl stop nmbd
    sleep 1
    systemctl status nmbd | head -1
    systemctl status nmbd | grep 'Active:' | awk -F')' '{print $1}' | sed 's/(//m'
    systemctl start smbd
    sleep 2
    systemctl status smbd | head -1
    systemctl status smbd | grep 'Active:' | awk -F')' '{print $1}' | sed 's/(//m'
    systemctl start nmbd
    sleep 1
    systemctl status nmbd | head -1
    systemctl status nmbd | grep 'Active:' | awk -F')' '{print $1}' | sed 's/(//m'
    and not automatically on boot.
    Windows XP is running in VMware Player on the same PC with Arch Linux.
    Last edited by Andy_Crowd (2014-06-11 12:42:52)

  • User exit for component data in ME21n/ME22n

    Hello,
    I have a requirement to issue an error message if a component quantity is not evenly divisible by the end item quantity.  The component data (BOM) is entered after clicking the components button on ME21n/ME22n at the item level detail.  I need to evaluate the data after a user clicks save, but I cannot find a user exit where the data is passed into, or where it is defined as global data where I can reference it in a user exit.  The data is stored on the screen in structure MDPM and stored in the database in table RESB.
    I appreciate any help,
    David

    Thanks for pointing me in the right direction.
    I was able to put my code in EXIT_SAPMM06E_012 and retrieve the component data through (SAPLEINK)XMDPM[]
    Below is the code I used to assign the data to be able to evaluate it.
    FIELD-SYMBOLS: <z_mdpm_x> TYPE ANY.
    DATA: i_mdpm_x TYPE STANDARD TABLE OF MDPM_X.
    Fetching Component data
      ASSIGN ('(SAPLEINK)XMDPM[]') to <z_mdpm_x>.
      CHECK sy-subrc = 0.
    Assigning data into an internal table
      i_mdpm_x[] = <z_mdpm_x>.
      CHECK i_mdpm_x[] IS NOT INITIAL.
    David
    Edited by: David Herrema on Oct 20, 2010 3:03 PM

  • How to disable the user settings for the transparent container

    Hi Experts,
           I have an form designed using VC - model, which as a input field and button. When i compile and deploy every thing works fine. I get the form as the output.I am able to call this form in the portal and I am able to get the page.
    Issue:  When i right click on the fields in the form I get "User settings for the input field AA" and gives me an option to Hide the field. Which the users doesnot want.
         I tried it on the VC runtime where i don't get the right click option.
    So kindly help me out in resolving this issue.
    Thanks
    Ketan

    Hi Ketan,
    If you have chosen the Rendering Client as WebDynpro HTML(by default it is set so) for the callable object, then you would invariably get the 'probelm' you're facing.
    Instead you could set for the Object Definition -> Rendering Client as WebDnpro Flex in the Callable object (in Guided Procedures). Now you would not get that hide option.
    But one simple question, why would the user want to right click on the field? Even if he hides the fields, he always has the option to make them visible again
    Let me know if it's helpful
    Regards,
    Vani

  • "Local Policies User Rights Assignment" not applying

    I bought Dell Vostro series computer with a Windows 7 Professional 64-bit OEM.
    The OS cannot apply the changed User Rights Assignment in Local Policies.
    Here is the step to re-produce the problem:
    1. Launch "cmd"
    2. Type "date 2014-06-20" in the command prompt. (i.e. try to change the date)
    3. A error shown "A required privilege is not held by the client."
    4. I go to "Control Panel > Administrative Tools > Local Security Policy".
    5. I open "Local Policies > User Rights Assignment", and add "Everyone" to "Change the system time" and "Change the time zone"
    6. Restart the computer
    7. Launch "cmd" and type "date 2014-06-20", the same error message shown. That is, the policy is not applied.
    Note: If I launch the cmd as administrator, no error will show.
    I am not familiar with Local Security Policy and related and I tried to search online but not thing found (maybe I didn't know how to apply).
    I would like to know how to resolve this problem from you. If you need more information like the log in Event Log, please tell me which one you need.
    Thanks so much!

    Hi,
    I tested this issue, after adding everyone to the group you mentioned above, I can successfully change the system time as a standard user. and the format is date 06-20-2014
    I suggest you logon as admin, and manually check the policy, see whether it has been updated.
    Yolanda Zhu
    TechNet Community Support

  • How can i exchange for the new design

    Last year my sister purchased a ipod shuffle 3rd gen, for my 10 yr old daughter. She bought it from Target and spent $145.00 at that time. Shortly there after i became aware apple had replace this 3rd gen shuffle with a new design. One that is more user friendly, especially for my 10 yr old. I have to say we have been very disappoint with her ipod for several reasons.
    1. there is no face so you cant see what your doing
    2. you must memorize the amount of clicks in order to operate it.
    3. we have only been able to upload new music to her ipod once since she got it a year ago. Even with online tech support,reading online forums,owner manuals, help from family and friends. To no avail.
    She has it still in the box neatly packed away. Its used as a show piece on her dresser to show that she has an (ipod). Neadless to say she does not use it,does not  like it mainly because there is no display panel which make it very difficult for her to function.
    So how can i exchange/replace the old design ipod shuffle generation 3  for the new design.

    Try disabling your firewall and try again.

  • User-Exit for the Me22n

    Hi,
       I am Mohan. I faced on Problem with the User Exit. I write the user exit for the ME21n for PO Creation. While Creation of the PO the Purchase Requition is mandatory. it is working for the ME21n. But PO creation is another two ways is there. Those are ME22N (Purchase order---> Create) and ME23N
    (Purchase order---> Create) for this case also my condition applicable but it is not working for this case. How to write the Code for this. by using Sy-ucomm  also. but it is not working.
    Please help me.
    Regards,
    Mohan

    Following the user exit's related to ME22N transaction.
    AMPL0001 User subscreen for additional data on AMPL
    LMEDR001 Enhancements to print program
    LMELA002 Adopt batch no. from shipping notification when posting a GR
    LMELA010 Inbound shipping notification: Transfer item data from IDOC
    LMEQR001 User exit for source determination
    LMEXF001 Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001 Customer-Specific Source Determination in Retail
    M06B0001 Role determination for purchase requisition release
    M06B0002 Changes to comm. structure for purchase requisition release
    M06B0003 Number range and document number
    M06B0004 Number range and document number
    M06B0005 Changes to comm. structure for overall release of requisn.
    M06E0004 Changes to communication structure for release purch. doc.
    M06E0005 Role determination for release of purchasing documents
    ME590001 Grouping of requsitions for PO split in ME59
    MEETA001 Define schedule line type (backlog, immed. req., preview)
    MEFLD004 Determine earliest delivery date f. check w. GR (only PO)
    MELAB001 Gen. forecast delivery schedules: Transfer schedule implem.
    MEQUERY1 Enhancement to Document Overview ME21N/ME51N
    MEVME001 WE default quantity calc. and over/ underdelivery tolerance
    MM06E001 User exits for EDI inbound and outbound purchasing documents
    MM06E003 Number range and document number
    MM06E004 Control import data screens in purchase order
    MM06E005 Customer fields in purchasing document
    MM06E007 Change document for requisitions upon conversion into PO
    MM06E008 Monitoring of contr. target value in case of release orders
    MM06E009 Relevant texts for "Texts exist" indicator
    MM06E010 Field selection for vendor address
    MMAL0001 ALE source list distribution: Outbound processing
    MMAL0002 ALE source list distribution: Inbound processing
    MMAL0003 ALE purcasing info record distribution: Outbound processing
    MMAL0004 ALE purchasing info record distribution: Inbound processing
    MMDA0001 Default delivery addresses
    MMFAB001 User exit for generation of release order
    MRFLB001 Control Items for Contract Release Order
    Regards.

  • How to make users to select the date from calendar control my making the date field read only in date time control in external list in sharepoint 2010

    How to make users to select the date from calendar control only, by my making the date text field read only (don't want to let users type the date) in date time control in external list in sharepoint 2010. I am looking for a solution which can
    be done through sharepoint desginer / out of the box.
    thanks.

    Congratulate you got the solution by yourself. I am new to a
    WinForms calendar component, I feel so helpless on many problems even I'd read many tutorials. This question on the
    calendar date selection did me a great favor. Cheers.

  • "Date picker" in report - - View source shows no label for the date picker

    Hi
    In one of my reports, I am using multiple types (textarea/text/date picker/select list)
    I wanted to use a javascript based on the label, but I do not see "<label>" for Date picker in the view source due to which my Javascript fails.
    Snippet of view Source:
    <td class="t3data" ><label for="f08_0001" class="hideMe508">CATEGORY</label><textarea name="f08" rows="4" cols="16" wrap="VIRTUAL" id="f08_0001">EMPLOYEE INDUCTION</textarea></td>
    <td class="t3data" ><span class="lov"><input type="text" name="f11" size="15" maxlength="2000" value="29-FEB-08" style="padding-right:5px;" id="f11_0001" /><script type="text/javascript">
    As you can see above, we have a "label for" for the text area but not for the date picker
    Is there a reason for the same?
    Thanks
    Nitin

    Hi,
    OK - the headers attribute should also help as these will identify the correct cells. You would need to know the html tags used within each cell for each datatype.
    Would using cloneNode help you? It's a method of creating a copy of an entire row in a single instruction
    Andy

  • Suggested user rights for FCP daily work

    friends,
    I am wondering what is the suggested user rights for a user doing daily work with final cut pro?
    Should this user be an admin or restricted?
    What is the suggested - best practice?
    I am wondering what the benefits - drawbacks are of iether means.
    What do you do?
    Thnaks

    If you're the only user, you need to have admin privileges...
    If you're not the only user, and you don't trust the other users, then just give one person admin privileges... That said, I know of several bays here in Denver which are used extensively by many users and they all share the same user account without a problem... just sort of depends on how much you trust all those different folks.
    FCP runs fine either way, but only admin's can install updates or other applications. In some cases you can even set up systems that won't allow users to even use utilities... I think this is likely taking things a bit far, but it's certainly not unknown to do this. (keeps them from reformatting drives for example).
    But in and of itself, FCS runs OK with or without admin privileges.
    Jerry

  • I wanna develop BIbeans for the data in oracle 8i

    I wanna develop BIbeans for the data in oracle 8i.
    i hav downloaded bibeans.zip and oracle9.2 database with olap.i am using oracle jdeveloper 9.0.3.
    im confused how to develop beans for oracle 8i data.should i import all the data to 9.2 data???
    if so, how to create olap cube/objects for that??
    im pretty much confused what should i do...and i want world map in my jsp pages as it has shown in the demos.
    plz help in this regard what should i do from the starting??
    u can mail me to [email protected]

    Hi,
    If you want full access to all the BI Beans capabilities then you will need to migrate your database to Oracle 9.2 database. If you are just planning to use the Graph bean then you can use Oracle 8.1.7 data via an XML data source for the graph bean.
    To create the OLAP objects use Oracle Warehouse Builder to create the dimension and cubes and generate all the required OLAP metadata. It is possible to use OEM also to do this but OEM is not designed to allow you to keep evolving your design. OEM is a management not database design tool, so consider using Warehosue Builder instead
    To provide mapping features I would recommend you visit the MapViewer section of OTN. This is a powerful toolkit provided as part of Oracle iAS that allows developers to incorporate maps within a JSP environment. There is an excellent sample you can download from the MapViewer OTN pages.
    BI Beans PM Team
    Oracle

  • User manual for the PXI-6723

    I've been trying to find a pdf of the user manual for the PXI-6723. I need to know the pinouts of the two connectors. The data sheet I have shows no pinout.
    Arthur Galan
    Senior Technician - Space Science and Engineering
    Southwest Research Institute
    Div 15 / Bldg 178
    6220 Culebra Road
    San Antonio, Texas  78228
    Tel: (210) 522-5713 
    Fax: (210) 520-9935

    Thanks Alan,
    But maybe I'm missing something. The 6723 has two connectors on it. The pinout on the spec sheet shows only one. That's why I thought I was missing the pinout of the 2nd connector. I'll go back and take a look at that again.
     Best Regards,
    Arthur Galan,  CID
    Senior Technician - Space Science and Engineering
    Southwest Research Institute
    Div 15 / Bldg 178
    6220 Culebra Road
    San Antonio, Texas  78228
    Tel: (210) 522-5713 
    Fax: (210) 520-9935

  • User interface for the CAF project

    hi
                 to make  user interface for the CAF  i  have  written  a simple 
      webservice application for storing the data in the database using JDBC operation
       i have  imported the webservice in the  EXTERNAL SERVICE  and  mapped
      in the required in the entity service  , every thing worked fine  but  when  i have
      imported the model  for developing the USER INTERFACE  for the  webservice
       there is no  EXECUTABLE NODE 
          can  anyone provide a clear idea  how i can proceed further .

    Couple of things - you can open the interface for any instrument or plug-in by double-clicking its insert slot on the channel strip. You can configure Logic to automatically open the interface for a plug-in when you first instantiate it in the preferences. Go to Logic Pro > Preferences > Display > Mixer, and check the box for "Open plug-in window on insertion".

Maybe you are looking for

  • Stock Quantity & Stock Value at vendor on a Particular Date

    HI, My client requirement is to get a report for Stock Quantity & Stock Value at vendor on a Particular Date . Please give suggestions to get the stock & value in tables or Any standard T.codes Note : I am getting Stock qty on paricular date In MB5B

  • 802.1x with ACS 4.2 (RADIUS) problem

    HI all! I am trying to configure AAA authentication and authorization with Cisco 3725 (IOS 12.4(17)) for 802.1x and ACS 4.2 with VLAN assignment to my Windows XP client. (trying to assign VLAN 100 in my scenario). When user connects to the Router, it

  • Partner function not determined if not made mandatory in customizing

    Hi! I have never come across this issue before so maybe it is standard system behaviour. My client is on a ECC 5.0 system and has the need to set upp an new partner function on the ship-to-party which should be derived on the delivery. I have set up

  • How do I dsable attack site warnings. I never got these before.

    Where do I find the Security Tab to uncheck "Block reported attack sites". I never got this message before and I have always visited Virginia Tech's website for sports (Hokiesports.com) and I know it is not an attack site. Is this a new feature? I wa

  • Restriction to Costing Tab in the Maintenance Order Change (IW32) and IW33?

    Hi Gurus -           I want to restrict the access to costing TAB for a specific Planner Group and Plant.           Can I restcit the access to costing tab using Authorisation Role?           Which Authorisation Objects and values I should use.