Is it possible to restrict the user from creating a sibling and allow him to ONLY create child nodes in DRM?

When in a hierarchy, a user right clicks on a node to crate a new node, he has two options
-Child
-Sibling
Is it possible to restrict the user from creating a sibling and allow him to ONLY create child nodes?
Business cases:
1. different level nodes need to have different prefixes.
- Thus, the default prefix property definition uses the level number to assign a prefix
- Also, a validation, to ensure the correct prefix, uses the level number
But if the user can create a child and a sibling then the default prefix will only be right for a single case and not both.
Thanks

If the images are exactly the same size then make sure the layer with the mask
is the active layer and in the other documents go to Select>Load Selection and choose
your document with the layer mask under Source document and under channel choose the layer mask.
After the selection loads press the layer mask icon at the bottom of the layers panel.
MTSTUNER

Similar Messages

  • Is it possible to restrict the user from opening the WSDL page in a browser

    Hello All,
    The user should be able to send requests to the webservice, but not be able to view the wsdl file in the browser. How can we do this in Weblogic 10 ? is this configurable ?
    We need to do this because, the webservice is going to be exposed to the outside world and we don't want everyone to be able to see the WSDL.
    Thanks
    Chandra

    I don't know how to do that, but I would advise against relying on an architecture where you have to hide the WSDL to provide security. That's an illusion. If you fully expose the WSDL and then implement proper security mechanisms, even BASIC Auth under HTTPS, your service will be more secure than with a hidden WSDL.

  • Is it possible to restrict certain users from printing from Adobe Reader?

    Is it possible to restrict certain users from printing from Adobe Reader?

    First of all, with Reader you can't change any security settings.
    If you have Acrobat, then you could place a password on changing the document (which includes printing), and then give it to only some users.

  • How to restrict the user from making any changes in Sales order- item level

    Hi to all
    How to restrict the users from making any changes in sales order at item level if the same sales order is released by senior user through status profile.
    Regards
    Anish Parikh
    Edited by: anish parikh on Jan 24, 2008 5:16 AM

    Hi Anish,
    This can be achieved through the roles and authorization.
    This can be done through the basis team. they can create user profiles and roles.
    For the roles they assign some transaction codes so that they can view the only assigned tr. codes.
    Like that ur requirement can be done.
    Also u can prevent the user to change any fields in the sales order screen (VA02). for that please modify the authorisations.
    Hope i answers.
    Reward points if useful.
    Edited by: kaleeswaran bhoopathy on Jan 24, 2008 9:57 AM

  • Restricting the user from deleting a personel number

    Hi All,
    Can anyone help me in restricting the user from deleting a personel number.
    Thanks & regards,
    Venkat

    Hi Venkat,
    The utility menu will ultimately calls to PU00 so it doesnt matter , system wont allow him to delet.
    You can try it out in quality if you want.
    Award points if useful
    Regards,
    Bhupesh Wankar

  • How to restrict the user from accessing other screens before submittingdata

    Hi All,
      I have some screens developed in Webdynpro ABAP and all these have been linked to Portal as pages. In Portal If i click on the link in detailed navigation i can see the corresponding screen on the right side. Now in one screen i have to input some data and submit the data, Now my problem is if i enter some data and before submitting the data if i click on any other link in the detailed navigation, that corresponding screen is opening and all the data of the previous screen is lost.
    Can any one suggest me, how can i restrict the user from accessing other screens before submitting the data of that screen from portal perspective.

    Hi Prasanna,
    The pages can be restricted from the user access by using the ACL permission or you can restrict the page by making invisible in navigation area which you do not want to show to the user . Open the page properties and select navigation category in the drop down and select the Invisible in navigation area property to yes.By default this property is No.Change the property for all pcd pages which want to hide from user access.
    Hope this helps you...
    Regards,
    Rudradev Devulapalli
    Reward the points if helpful....

  • Is it possible to prevent a user from creating and approving a JV

    Hi,
    Is it possible to prevent a user from creating and approving a JV.  We have a rule that one user cannot do both.  What happens is user#1 creates the JV, then some other user#9 approves the JV.  Both user#1 and user#9 need to be able to create a JV and approve someone else's JV.
    The transactions in question are...
    F-02  General Posting - enter Journal Voucher (create & post)
    F-65  Enter General Document - Parking (create)
    FBV0  Post or Delete a Parked Document (approval)
    Please let me know the details.
    Thanks in advance,
    regrads,
    Chaks

    Hi,
    Requisition is submitted.....it means Requisition is saved or it means Requisition is Released..?
    Regards,
    manish

  • How to Restrict the users from changing the Default variant of report.

    Hello everybody,
    The requirement is to restrict the users to save and overwrite  the default layout variant (Layout for higher managenet)set for the report, but at the same time they should be able to change and save the other layouts for which they are having access.
    I have written the logic in the program which is working fine for all the scenario when we execute the report. But the logic doesnt work if the user is selecting the layout on the output screen of the report.
    for e.g if the user runs the report using the layout varaint for which he is having the authorization then he gets the all 4 options so he then he can select the layout for which he is not authorized and he can overwrite.
    i have debugged and check as i have found that after the report output is shown all the layout paramater is controllled by the statndard SAP objects.
    Can anyone help me out in this issue.
    Thankyou in advance.
    *to get the default layout variant.
      w_save = 'A'.
      if p_vari is initial.
        clear disvariant.
        disvariant-report = sy-repid.
        w_variant = disvariant.
        call function 'REUSE_ALV_VARIANT_DEFAULT_GET'
          exporting
            i_save     = w_save
          changing
            cs_variant = w_variant
          exceptions
            not_found  = 2.
        if sy-subrc = 0.
          p_vari = w_variant-variant.
        endif.
      endif.
    *logic to check user authorization to change the layout setting.
      if p_vari = c_layout.
        if not sy-uname is initial.
          select single * from agr_users
                  where agr_name = c_role
                  and   uname    = sy-uname.
          if sy-subrc = 0.
            w_save = 'A'.
          else.
            w_save = ' '.
          endif.
        endif.
      endif.
    Regards,
    Satish.

    Hi Maine,
    Thanks for your reply.
    As you mentioned for your own program, you can control the parameter "I_SAVE", when calling "REUSE_ALV_GRID_DISPLAY".
    so already i have use the same logic and control the parameter through I_SAVE and here i am calling method ALV_GRID->SET_TABLE_FOR_FIRST_DISPLAY instead of "REUSE_ALV_GRID_DISPLAY".
    and it works fine when we execute the report but the logic doesnt work when the user tries to change and save the layout variant on the output screen of the report.
    Regards,
    Satish

  • Restrict the Users from doing Transactions from transactional Iview.

    Dear all,
    We are having  some transactional iviews in EP7.0 and ECC 6.0. We want to restrict the enduser from doing transactions by entering the transaction codes.
    1.Can we remove the command line
    2.Can we restrict the user
    We are using transactional iviews using connectors.
    Reply asap
    Thanks
    Ravi.S

    1) There is an its parameter you add in transaction SICF in the webgui service.  It is something like ~noheaderokcode.
    See here:
    http://help.sap.com/saphelp_webas620/helpdata/en/96/c09788c65b11d480c100c04f99fbf0/content.htm
    2) Backend authorisations define which transaction codes you have access to.
    Paul

  • Restrict the user from seeing public objects

    HI
    How to avoid the user from see the other schema public objects
    if i use odbc drive for crystal report and i am able to see other schema owner
    objects
    like ctxsys,dmsys,mdsys
    even though it is coming from Public schema i try
    revoke select on all_users from public;
    it did not help
    pls give me some solution how to avoid this

    I'm not following you. What I suggested was (let's say it uses all_tables):
    - create a local view called all_tables
    - filter in that view anything you don't want to see
    ops$oskar@test9i$ grant create session to u1 identified by u1;
    Grant succeeded.
    ops$oskar@test9i$ grant create view to u1;
    Grant succeeded.
    ops$oskar@test9i$ conn u1/u1
    Connected.
    u1@test9i$ select distinct owner from all_tables;
    OWNER
    CTXSYS
    MDSYS
    OPS$OSKAR
    SYS
    SYSTEM
    WKSYS
    WMSYS
    7 rows selected.
    u1@test9i$ create or replace view all_tables as select * from sys.all_tables where owner not like '%SYS%';
    View created.
    u1@test9i$ select distinct owner from all_tables;
    OWNER
    OPS$OSKAR

  • Restrict the user to create two bank details (infotype 009 subtype 001)

    I have a user exit that can restrict the user to only create 2 infotype 9 with a subtype of  1.  But the ESS application does not us the same screen user exit as the back end.  Is there a way to limit the user to only be able to create 2 bank details using the enhancement framework or a badi.  I am getting java errors when trying to cancel or exit after or before the create method in the if_hrpa_pernr_infty_xss interface.  I have been looking at the hrxss_per_new_p0009_xx functions.   I would like to accomplish this without changing the java code, if possible.

    Are you sure this belongs to PI?
    Regards,
    Prateek

  • How to restrict the user from Closing the PO when it is not matched yet

    Hi,
    Actually PO is finally closed in lines level without matching. Now the problem is how to restrict this in future so that the user can not finally close it when it is not matched.
    Thanks
    Kavya

    Kavya,
    Check the setup of Line Type . Check for Receipt Tolerance on the Line Type . It should not be 100%
    Please let me know if you have any questions
    Thanks
    Navin

  • How to restrict the user for creating CR memo if the billing qty exceeds

    Hi sd gurus
    I am facing a problame. th issue is when ever I am going to raise a cr memo req more then the billing qty the system simply gives an error msg stating that the billing qty is exceeds and still I am able to create the document. I want to restrict it. means if the cr req qty exceeds the billing qty system has to throw an error and document should not saved. Plz suggest me
    thankx in advance

    Go to VTAF, select the item category for the combination of credit memo request and billing type and maintain "+" for the field "Pos./neg. quantity"
    Also go to OVAH and change message class V4 no 229 to E will work
    G. Lakshmipathi

  • I got a first generation IPOD TOUCH for my husband and want to take some songs From my Computer that is hooked up to MY newer IPOD (not Touch, just IPOD)  Is it possible to take the music from my ITUNES account and add the his IPOD Touch without changing

    I am trying to take songs from my PC AND My Itunes account and send them to my husband's IPOD TOUCH First Generation BUT I don't want to change my whole ITUNES account that is already on my computer.  When I plug HIS Ipod Touch into the PC, my ITUNES account wants me to CHANGE the DEVICE Name on the account and I don't want to do that.  I only want to share SOME of my songs on my Itunes account and send them to h is IPOD TOUCH?  Is this possible and HOW!  Thanks a ton!!!  I "checked" off the songs that I want to send but that's as far as I get before it asks me to change the Device Name?

    Is his iPod usually synced to a different iTunes library/computer?  If so, that would explain the message iTunes is giving you.  An iPod is designed to sync with only one computer/iTunes library at a time.  If you try to sync it with a new library, the iPod's contents will be erased and replaced with what is in the newer/different iTunes library.
    So if there is content you would like to add to his iPod, simply transfer it from your iTunes library to his.
    B-rock

  • To restrict the user to create only Standard quotation in PCUI

    Dear All,
    Please help me in this issue.
    We have requirement like below:
    In SAP GUI user is authorized to create 3 kinds of quotation:
    1. Standard quotation
    2. Estimate Quotation
    3. Quotation OCM.
    It is maintained properly in authorization profile for his role.
    Now requirement is that user should able to create only Standard Quotation in PCUI and others should not be visible.
    Regards
    Pankaj Vispute

    Hi,
              check this MBCF0005.
    EXIT_SAPM07DR_001.
    BADI being <b>MB_MIGO_BADI.</b>
    <b>Reward points</b>
    Regads

Maybe you are looking for