Anyway to restrict users to see only the Materials belonging to that partic

Hi All,
Is there anyway to restrict the users to see only the Materials belonging to that particular plant.
Generally, User can see all the Materials(Materilas extended to all the Plants).
We had a requirement that the User should not see Materials extended to all the Plants.
He should be able to see only the Materials extended to that particular plant user belongs to.
Our system is EBP 3.O
Thanks
Sunil.

Hi Sunil,
You may have to modify the search help to restrict the O/P list for services product category.
At one of our early implementations,for the product search in the link "Internal Goods/Services,we modified the search help "BBPH_PRODUCT".We attached a custom function module exit to this search help in which the logic was written for retrieving the products based on plant .May be you can think of something similar.
HTH.
BR,
Deepti.

Similar Messages

  • Restrict user to see the contents of a transparent table

    Hi fnds,
    i want to restrict users in seeing the contents of a database table..
    ithat is, when they go to se16 and hit enter.. and try to execute F8 button.. it should not show any records and no access should be available to that user...
    Can this be possible with auth object - whoever is authorizeed they only shoud see the contents..
    how to do this.. this table doenst not have table maintanence -- no SM30 data maintancne..
    help me,
    thanks
    Niraja

    This is part of the table definition in the data dictionary (not sure with what release that was introduced, but if you're not on an old system you should probably have it). I.e. in the data dictionary (SE11) on the Delivery and Maintenance tab for the table you have a field Data Browser/Table View Main., which you should set to N Display/Maintenance not allowed. If you check the F1 help on the field you'll get a nice long explanation.
    If you don't have this option (on an old release) check out OSS note [26909 - SE16 - Security|https://service.sap.com/sap/support/notes/26909], which explains your other option via authorization object S_TABU_DIS (access control might be a bit too coarse). See also OSS note [546797 - FAQ Data Browser (SE16)|https://service.sap.com/sap/support/notes/546797].
    Cheers, harald

  • Restrict people to see only spool requests from one group of users

    I would like to restrict people to see only spool requests from one group of users defined somewhere inside role.
    I am playing with S_SPO_ACT authorisation object but with no positive result,
    Please help

    There is a note  Note 119147 - Spool: Authorizations (https://service.sap.com/sap/support/notes/119147)
    Object for "Selection authorization for spool requests" is S_ADMI_FC where "Operation authorization" use S_SPO_ACT
    Regards

  • Get every user to see ONLY its own created variants

    Our system is being accessed by different users.
    When executing reports, users save their own variants into the system. However, we would like to restrict the access from all users to all saved variants. The goal is to get every user to see ONLY its own created variants.
    I believe there is an user-exit that combined with some access controls can provide us with this functionality. Do you know if it is possible? and if the user-exit really exists?. Do you know the user-exit name?.
    Thank you in advance.

    Oscar
    If there is a user exit, you would have to apply this to all of the reports and programs.
    This is probably a bigger task than getting the users to change their variants to a single entry.

  • In multiple web cam publisher environment for a room how to restrict subscriber to see only admin

    I am creating a video chat application, where admin can publish his video and all the subscribers to this admin room can see admin video feed. In this application Member list sections will display list of all user s including admin connected to this room. This member list panel is displaying images of respective user against each user’s name.
    Till now this application is working fine but I am trying to add following functionality in this application
    In member list section, in place of connected user‘s image I want to display each user‘s video feed. To achieve this functionality I am giving start video functionally [via a button click] for each subscriber which in return calling a web cam publisher component to publish the subscriber video feed. This is also working fine, but now problem is all the subscriber can see others subscriber video feed along with admin video feed. I want to restrict subscriber to see only admin video feed..
    Please provide me some suggestion / solution to resolve this issue.
    Note : I have created two video chat applications one for admin another for subscribers both are connecting to same room[admin room]
    Thanks ,
    Ritesh

    Hi Ritesh,
    Use two different WebcamSubscribers. One Subscriber would just subscribe to the Admin's Video feed, while the other subscriber would subscribe to all the user's: video feeds.
    Try exploring the publisherIDs API in WebcamSubscriber.
    Thanks
    Arun

  • In ios 6 I could choose an artist on the music app and see all his albums in a list. Now, with ios 7, it shows all the songs from every album, making it EXTREMELY hard to see all the albums. Is there a way to minimize this view and see only the albums?

    Hello!
    I need some help with the music app in ios 7...
    In ios 6, I could choose an artist from the "srtists" view and it would show me all his albums as a list. Now, in ios 7, when I choose an artist, it shows me every song underneath every album, making it impossible to see al the albums at once! Is there anyway to minimize this view so I could see only the albums' titles as a list?
    It is VERY annoying. I would very much appreciate any help on this! 
    Thank you

    Exactly!
    This is all about the experience and accessibility. I don't even mind if the new desing is beautiful or not, but if I find myself, like you, avoiding looking for my music, my experience becomes frustrating. I have about 35 albums of a single artist and I used to love going over them and choose the right thing for me, especially being on the road a lot, and now I have to think twice about even entering his name.
    I really hope Apple will take those kind of things into consideration when they issue updates for ios 7, and maybe also give us back the goole search which was embeded into the spotlight search (which is really not that big of a request).
    And for your 4s - get the new iphone, it's MUCH better

  • TS3899 I can preview email when it arrives (I chose 5 lines) but when I then go to open up the full email, I see only the header info (To, Subject & Date); nothing in the body...it is blank.  This only started recently as before, it worked as expected. He

    I can preview email when it arrives (I chose 5 lines) but when I then go to open up the full email, I see only the header info (To, Subject & Date); nothing in the body...it is blank.  This only started recently as before, it worked as expected. Help?

    I have two yahoo accounts and I know as they 'improved' their servers I had periodic outages. It'd work fine on my webmail on  my computer, webmail on the iPad, but not via the mail app. And it was stuff on their end. It may be a case of wait and see and you may need to eventually remove/readd the account on your iPhone.
    When the issue is on their end, unfortunately there's not much for users to do beyond wait it out or find work arounds.

  • Restricting User to Enter Only Date Value

    Dear Expertsl,
    Can we restrict users to insert only date value (in RRMMDD format ) in a column whose data type is number,
    Note that i cannot modify the column because there are already values entered in the column and cannot delete it.
    Regards

    Try to convert it to a date in the WHEN-VALIDATE-ITEM-trigger, if it works, its a date, like
    DECLARE
      dt DATE;
    BEGIN
      dt:=TO_DATE(:THEITEM, 'MMYYYY');
    EXCEPTION
      WHEN OTHERS THEN
        -- Show error message
        -- then raise error
        RAISE FORM_TRIGGER_FAILURE;
    END;

  • How to prevent certain users to see only certain resource objects

    Hello OIM Experts,
    How to prevent certain users to see only resource objects request-able based on their user profile
    Employees :
    Employee A: Finance staff
    Employee B: IT staff
    Resource Objects :
    Resource Object 1 : Oracle E business suite
    Resource Object 2 : Payment Gateway
    Resource Object 3 : Server X
    Resource Object 4 - 10 : Customer Service Applications.
    Expected :
    Employee A only see and able to request Resource Object 1 & Resource Object 2, while employee B only see and able to request Resource Object 3.
    And they are not able to see and request Resource Object 4 - 10.
    Can that be done, if so please suggest some ways, appreciate the help.
    Regards,

    Hey, you can do this through Organizations. Follow the following steps:
    1) Create an Organization say 'Finance Staff' and put all the users for this category in this organization.
    2) In the similar fashion create another Organization say 'IT staff' and put all the users for this category in this organization.
    3) Now open Organization details for above two and select the 'Permitted Resources' drop down frm additional details.
    4) Assign the resources as per your requirements for these two oragnizations.
         Finance Staff -> 'Permitted Resources' -> 'Oracle E business suite' and 'Payment Gateway'
         IT Staff -> 'Permitted Resources' -> 'Server X' and '10 : Customer Service Applications'
    5) Also remember to de-select the 'Allow All' check box in the respective resources above to discourage everyone from requesting and making a decision for allowing the user to create requests through organizations.
    You are done.
    regards
    Sunny
    Edited by: rajsunny on Oct 13, 2009 11:27 PM

  • My i phone 5s is open and close . i see only the of apple

    My i phone 5s is open and close . i see only the logo of apple

    Hi Imad101,
    Thanks for using Apple Support Communities.  If you're unable to get past the Apple logo on your iPhone 5s, this article may help:
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    Cheers,
    - Ari

  • How can I  see only the music that is downloaded onto my ipad instead of entire Homesharing library?

    How can I  see only the music that is downloaded onto my ipad instead of entire Homesharing library?

    Turning off Home Sharing would seem the most logical step.

  • In my old OS I could press F11 and clear all the open windows from view to see only the desktop. How can I do that now in Mavricks?

    In my old OS I could press F11 and clear all the open windows from view to see only the desktop. How can I do that now in Mavricks?

    system preference > Keyborad >  click the box thast says  use all f1,f2,f2 keys as standard functiong Key and then the f11 key should casue all window fo fly to the side and you can see your desktop

  • The websites are being stretched sideways to twice their normal width so I can see only the left half of a site unless I go into "Fullscreen" mode; ideas?

    Whenever I use Firefox the page opens so that I can see only the left half of whatever site; i.e. half of the useful page info (the rest is cut off) displays on the right half of my screen while the left half of my screen shows just background of the site. Using the maximise/restore button does nothing. If I swap to the fullscreen view I can see everything fine but obviously I lose my tool bars. I installed the latest version of Firefox with no joy. I've looked for a page setup function to no avail. I thought that time would fix this as it is something that has happened before but was temporary. Other browsers work fine. I thought about uninstalling then re-installing but I'm not keen to lose my bookmarks etc. unless I have to. Thanks for your help in advance; I hope this ramble makes some sense.
    Cheers.

    This issue can be caused by the Babylon Toolbar 1.1.8 extension
    See:
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I used to be able to see a preview of my scan which i can no longer see only the adobe acrobat symbol I am using Adobe pro 9 can this be changed??

    I used to be able to see a preview of my scan which i can no longer see only the adobe acrobat symbol I am using Adobe pro 9 can this be changed??

    Yes, that appears how Mavericks works right now. However, you can open the Address Panel, select all your contacts, then click the To (or CC, or Bcc) buttons to move the selection to the address field.
    If it is not already in the Toolbar, right-click on the Toolbar and select Customize Toolbar…
    Then, drag the address panel up to wherever you want it.
    You may also want to add it to the New Message window in the same way.

  • When I open a pdf in Adobe Acrobat xi pro it is not displaying correctly. If a file is all black with orange writing, I will see only the orange writing. Its not until i print it or open crop pages dialog box that i see the background. i am on a Windows 7

    When I open a pdf in Adobe Acrobat xi pro it is not displaying correctly. If a file is all black with orange writing, I will see only the orange writing. Its not until i print it or open crop pages dialog box that i see the background.
    i am on a Windows 7 professional PC, 64-bit.

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

Maybe you are looking for

  • Clicking on the View More in Outlook....hyperlink does nothing!!

    Does this work for anyone using Lync 2013 FE, Lync 2013 client on Windows 7. Exchange version is 2010 SP3. Everything in the client works just fine but when I click on the Conversations tab, I see conversations going back about 6 months. I have conve

  • Dispatching an event from an itemRenderer

    Hello everybody, I can't find what is the best way to do that with spark. I have a SkinnableComponent that implements IDataRenderer (it owns a button called "addBtn"). I am using it as the itemRenderer of a dataGroup. The skin is a copy of ComboBox s

  • How to create users for iFS9R2???

    On iFS9R1 and earlier it was possible to create users from the web GUI using an administrative user's account. On iFS9R2 it wasn't possible, I only could create groups or folders, there wasn't even a menu entry under "new". Or did I miss or faulty co

  • Critical variance on your orders 500   Internal Server Error

    Hi, I am getting the error when accessing the reports from MyBudget tab in the portal for Critical Variance on your orders.. java.lang.NullPointerException     at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModel.createModelObject(DynamicRFCM

  • Combo Prompt Design (with Drop down and Multi-select prompts)

    Hi folks, I have the following prompt design requirement in OBIEE dashboard: PromptA: should be a drop-down prompt PromptB: should be a multi-select prompt PromptB should list the values contained in either of two dimensions (lets say: Product Names