XI Authorisation only for  display

Hi All,
I want to give only display right to some users. What XI roles should i assign to them. They should be able to see IR , ID , RWB object but not SLD and should not be be able to  change or create anything.
Ranjeet Singh.

For IR and ID, Yes. That is enuf.
From help.sap
If you want to specify the display permission for an RWB user, the easiest way is to either assign the corresponding ABAP role SAP_XI_MONITOR_USER_J2EE (for all monitoring permissions) or SAP_XI_DISPLAY_USER_J2EE (for header monitoring only) to this user in ABAP user management, or define a new ABAP role that contains no J2EE monitoring role.
SAP_XI_DISPLAY_USER_ABAP is related to view of sxmb_moni
Regards,
Prateek

Similar Messages

  • Basic authorisation objects for display/execute

    Hi  Team,
       For a  start .....I need  to  create  a  basic  user  role for BEX (7.0)with  Display and execution of the queries .
    Down the  lane  another  role  with  restricted access  to  only certain  cubes
    What  is  the  authorisation  objects  needed  to be  given in that  role?
    Is  there  a std  role  which  solves  my  purpose.?
    I  was  playing  with  auth  objects like S_RS_COMP, S_RS_COMP1,S_RFC....but  coudn't get much  farther.
    Thanks  for  your time.
    /Andy

    Hi Nicco,
    we evaluated ACE for two projects now and always found that customers are not very excited about administration of a)EP-roles b) CRM-roles and additonally c)ACE user groups which is furthermore a very new topic for all of us and therefore it seems there is little know-how existing. We are also not sure about the future of ACE if there are new development with BP-roles in 6.40? But for my personal opinion in the field of CRM and sensible data there is no way around ACE or something similar ...
    Regarding performance we always had the felling that response time of PCUI-apps decreases when we activated ACE - maybe because there is some overhead with collecting ACE-data in different tables additionally to the other process of controllers and subcontrollers ... but this was only a personal experience, we never did any measurements which confirmed this "feeling".
    Regards
    Michael

  • Condition Values only for display

    Dear Sirs
    I have the following requirement
    ZTSP   (Total Selling Price)   No G/L update      needs to be displayed in Invoice printout
    ZTRP ( Transport price )      G/L update           do not display in invoice printout
    ZMSP  ( ZTSP  -  ZTRP  )    G/L  Update           do not display in invoice printout
    ZSUR  (Surcharges)         G/L  Update              need to be displayed in invoice printout
    Could please help me to configure above pricing condition types.
    Best Regards
    Achanta

    Hi,
       If you choose 'only plant related conditions allowed' option in OMF0, then the info records can be created with plant only, you cant create central contracts etc.
       Since the issue is for only one condition type, I would suggest you to go for access sequence with plant for the condition type. Create a new access sequence for the condition type with condition table containing plant (and any other characteristic as required) and assign the same to the condition type. Maintain the condition type with "Not possible to process manually". Maintain the condition record accordingly in MEK1 with relevant plant.
       Now the condition type will be available automatically, based on the plant, in PO. The user wont be able to insert it manually.
       If the condition is a manual condition as of now, then you can create a new condition table with plant only as characteristic. Maintain the condition record with blank value. Now the condition will be always visible in PO with blank value for the particular plant.
       You may check the option and revert back.
    Regards,
    AKPT

  • The possibility to hide for displaying a user status in work order

    Hello gurus,
    I have following issue:
    It is possible to hide only for displaying a user status in a work order when it's active?
    br,
    Laurentiu

    See my [recent post|https://forums.sdn.sap.com/click.jspa?searchID=25309331&messageID=7376021] which references user-exit STATTEXT.
    PeteA

  • HT4060 Cannot get iPad 2 charged beyond 1%.  All charging ports tried: AC adapter(s), USB 2 port on MacBook Pro. ITunes shows iPad only for a few seconds. iPad displays alternately: Apple logo, battery w/slim red band, then battery w/1% charged informatio

    Cannot get iPad 2 charged beyond 1%.  All charging ports tried: AC adapter(s), USB 2 port on MacBook Pro. ITunes shows iPad only for a few seconds. iPad displays alternately: Apple logo, battery w/slim red band, then battery w/1% charged information. How can I get it to charge beyond 1% so I can proceed to troubleshoot?

    I have had your exact problem with my old 3GS, now I cannot even get it to turn on, I still see that it is supposed to be charging though, but it never charges any so it seems.
    I replaced the Lower Dock Connector Assembly back when it still charged while hooked to my PC, and it found it made no real difference.
    http://www.amazon.com/gp/product/B003Y5YXLK/ref=oh_details_o05_s00_i00?ie=UTF8&p sc=1 
    At this point I am not sure if I should replace the battery and hope for the best, or just junk the phone, I cannot really sell it if I cannot reset it...

  • Industry sector field for display only.

    Dear All,
    Does anybody know the setting to make Industry sector for display only, so that the enduser cannot change industry sector while creating material.
    I know to hide industry sector from DEFAULTS menu, but i need to freeze that field for display only.
    Regards
    Rang

    Hello Ranganath,
    You can use transaction exit. for more information check this thread.
    Industry sector (MBRSH) field in display mode.
    Hope this helps.
    Regards
    Arif Mansuri

  • Table cntrol field to be display/Change only For each record

    Hi all,
    How to set a particular Field in table control either as display only or
    change only for <b>each row</b> based on certain condition.I need to set this property for each record in table control not for the entire coloumn?.I know the procedure for setting up an entire coloumn in table control either as diplay or change only using <b>Loop at screen</b> statement.
    Conditions:
    If Material is batch managed:
    itab-batch field has to be <b>Display only</b> mode.
    if material is not batch managed:
    itab-batch field has to be <b>change mode</b>.
    <b>O/p of Table Control :</b>
    Material     Batch
    1000         Display only
    2000        Change only
    8000        Change only
    3500        Display only
    3600        Display only

    Hi Ravi,
              Thanks for your reply.I have put the code as u said. It is modifying the whole coloumn insted of  modifying Current row of the coloumn.
    I have tried to modify the screen property using  Table control attributes (TC-COLS).The following commented code is that logic.Even that also doing the same thing.Can yoy please tell me how to do it.
    MODULE tc_get_lines OUTPUT.
    LOOP AT SCREEN.
        IF screen-name = 'X_ZPINV-CHARG'.
          IF fg_batch = ' '.
            screen-input = 0.
          ELSE.
            screen-input = 1.
          ENDIF.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    LOOP AT tc-cols INTO tc_wa
      WHERE screen-name = 'X_ZPINV-CHARG'.
       IF x_zpinv-matnr IS NOT INITIAL.
         CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
           EXPORTING
             input  = x_zpinv-matnr
           IMPORTING
             output = v_matnr.
         SELECT SINGLE * FROM marc WHERE matnr = v_matnr
         AND werks = w_plant.
         IF marc-xchar IS INITIAL.
           tc_wa-screen-input = 0.
         ELSE.
           tc_wa-screen-input = 1.
         ENDIF.
         MODIFY tc-cols FROM tc_wa INDEX sy-tabix."    transporting screen-input
       ENDIF.
    ENDLOOP.
    ENDMODULE.                    "TC_GET_LINES OUTPUT

  • VA01 Item category display only for specific order type

    Hi,
    I have a requirement to deactivate(display only) item category field in VA01 table item for certain order type . I tried the user exit  MV45AFZZ(USEREXIT_FIELD_MODIFICATION). This is working only if the table item has a value. i.e I could able to enter an item category first and then enter the material and quantity.
    So please suggest any alternative how to make the item category field(VBAP-PSTYV) column display only for centrain order type.
    Regards
    Aromal R

    Hi,
    Create a Custom Authorization Object so that you can control it for certain users.  2. Write implicit enhancement spot in the include TCS MV45AF0T_TCTRL_U_ERF_AUFTRAG_I,
    FORM TCTRL_U_ERF_AUFTRAG_INIT
    AUTHORITY-CHECK OBJECT 'ZITMCAT'
              ID 'ACTVT' FIELD '02'.
    IF SY-SUBRC NE 0.
    *    DATA: WA_COLS LIKE LINE OF TCTRL_U_ERF_AUFTRAG-COLS.
    LOOP AT   TCTRL_U_ERF_AUFTRAG-COLS INTO WA_COLS.
       IF WA_COLS-SCREEN-NAME = 'VBAP-PSTYV'.
       WA_COLS-SCREEN-INPUT = 0.
       WA_COLS-SCREEN-OUTPUT = 1.
      MODIFY TCTRL_U_ERF_AUFTRAG-COLS FROM WA_COLS.
       ENDIF.
    ENDLOOP.
    ENDIF.
    Regards
    Aromal R

  • My iPod is showing a white screen. I could not see anything. But I can listen to songs by blindly pressing the play button twice. The battery comes only for an hour.? How do I get the display and longer battery?

    Hello Friends,
    I've two iPod Nanos (4th gen - 8GB). I'm facing a severe problem with both of them. For both iPods, I tried to do this method Simultaneously press the top button + home (central) button. But of no use.
    1. My first iPod is showing a white screen. I could not see anything. But I can listen to songs by blindly pressing the play button twice. The battery comes only for an hour.? How do I get the display and longer battery?
    2. My second iPod is facing more severe problem. None of the buttons are working. When I connect it my PC it showing "CONNECTED- eject before disconnecting". But it is not ejecting with all the usual methods. When I manually and physically disconnect it from the PC the same "CONNECTED- eject before disconnecting" is still showing till the battery goes off. After that if i press any button it is showing low battery signal. And when i re-connect it to the PC the same process is repeating. When I tied to restore it to the factory settings I'm getting "Error" report.
    (I'm using windows 7)
    Friends, Please help me with the above problems. It will be a great help.
    Thank You.
    R.SAMALA

    Sounds like some hardware issues, meaning you'll want to take or send the iPods in for service or repairs. You can choose to have Apple do an out of warranty exchange for the prices indicated in the link below or find another third party service perhaps even local to your area.
    http://www.apple.com/support/ipod/service/prices/
    B-rock

  • Using the IMac 27 only as display for MacBook Pro

    Hello,
    i like to use my iMac 27 only as display for my MacBook Pro.
    I have the connecting cable.
    I must start the iMac, he is booting and then i can plug in the cable to my MacBook. Now i have the second display for using with my MacBook.
    Now my question: Is it possible to use the display without booting the iMac-system?
    Thank you for help!
    Best wishes
    Lutz

    LutzTrabert wrote:
    Now my question: Is it possible to use the display without booting the iMac-system?
    no.
    [_*Using a 27-inch iMac as an external display*_|http://support.apple.com/kb/HT3924]
    JGG

  • How do i create a multirecord Form for Display only.

    Hi,
    I am trying to create a multirecord form for display only.
    The form is based on one table only so when i try to create
    it using based on a Table or view i get the option of Tabular or
    custom.
    So if someone has faced or worked on a similar problem of creating
    multirecord form pls do reply.
    Thanks,
    Amit.

    Hi
    You can check this one. The previous link in turn points to this.
    Re: .NET application works OK on infrastructure, but has problems on midtie
    Thanks,
    Sharmila

  • GET_P Method for Link in table - only in display mode

    Hello,
    i created an assignmentblock to display a ztable (Simple Object).
    One column in the table is homepage.
    For this attribute i added some coding to the GET_P_Method to have a link.
    The link works fine - but i have this link now not only in display mode but also in edit mode for the table.
    As a sideeffect this column is now longer editable.
    How should i change my GET_P coding so that the link is only there in display mode. In edit mode the field should be editable (no link).
    Thank you
    Best regards
    Manfred

    Hello Manfred,
    I do not know about your system... but the usual GET_P-methods do have an importing parameter IV_DISPLAY_MODE. This tells you if you are in display or edit mode.
    Check method CL_BT115QH__DETAILS_CN00->GET_P_ORDER_REASON.
    Or even more general: GETP_XYZ in your context node class.
    The part with the IF statement should be trivial.
    cheers Carsten

  • I want to use my Apple watch to time my patients' vital signs. The face only stays displayed for about 7 seconds. Can I change that?

    I want to use my Apple watch to time my patients' vital signs. The watch face only stays displayed for about 7 seconds, which won't work. Can I change that?

    Linda
    I am glad that bbqdevil's *workaround* will "do the trick"
    Did you give the Timer idea a try yet? It seems to me that you are really needing to know when a certain amount of time has elapsed rather than *time how long you have being taking a reading*. Will you always have your hand free to tap the Watch? If so, why would you need the StopWatch going? - just look again at the sweep second hand on the clock.
    It still remains that one should be able to set the time elapsed before sleep on a Chronograph w/ sweep second WatchFace though. I have searched and searched, to no avail.
    I would suggest Siri, but it seems like many issues with Siri are ongoing and might just add another problem to the mix.
    If I were you, I would Call Apple Support. It is sometimes tricky to get that option in the "breadcrumb" process Apple has instituted, but I was able to test the process before suggesting this:
    Click/Tap > https://getsupport.apple.com/GetproductgroupList.action
    Choose Apple Watch
    Choose "Setup & Usage..."
    Choose "The topic is not listed"
    Enter "set sleep duration" > [Continue]
    (I know this in not exactly right, but the point is to be vague)
    Pick your poison - I would ONLY choose to talk with them on the phone
    Rehearse an "elevator pitch" statement* for the Specialist that you get AND when you get no satisfaction (likely) ASK FOR A SUPERVISOR
    I have NEVER gotten an answer from a Level 1 Specialist - they are reading from a Knowledge Base not unlike all the resources available to us online
    I have ALWAYS gotten satisfaction from a Senior Specialist (sometimes pretty high up the chain - but always)
    Here's a sample "elevator pitch" that I actually sent as Feedback on the Apple Watch User Guide page
    I need to change the duration 'before' the Watch goes to sleep while observing the Chronograph Watch Face.
    I am a healthcare provider. I need to use my Watch to assist me in taking vital signs. On a normal watch, I would start counting pulses or respirations at a 15 second interval on the Analog Chronograph sweep second hand > stop counting at the next 15 sec. interval > multiply X 4 to get rate/minute.
    The Watch goes to sleep after SEVEN (7) seconds !! Therefore I cannot see when 15 seconds has elapsed.  I use both hands regularly in the procedure, so touching the Watch is not an option - or 'raise the Watch' to my viewing position.
    I, and others in the ASC forum have searched for a Setting for the before sleep duration in vain.
    Let us know what you decide.
    ÇÇÇ

  • Sleep option for display only yosemite 5K iMac

    Hi
    I've used a macbook in the past on snow leopard and lion and these had independent sliders for display and computer sleep. My wife bought me a 5k retina iMac at the weekend (i was shocked) and notice it only has a slider for display sleep.
    Is this normal behaviour for yosemite on a new iMac? I see there is an option to prevent sleeping when the display is off, so does this mean effectively as soon as the display goes off the computer sleeps? Not good if you are using plea media library on your mac..
    Thanks for any advice.

    I noticed the same issue and cannot find any information as to when the iMac actually goes to sleep. It's unclear to me whether "Display off" = Sleep or not.
    Meanwhile, there is a nice tool called "Caffeine" on the Mac App Store that will work well for you and your Media Server issue: https://itunes.apple.com/de/app/caffeine/id411246225?l=en&mt=12

  • How to authorise users only for specific GL accounts

    Hi friends,
    My client does not want his endusers to see all the GL accounts' balances, they want to restrict them from looking at certain GL a/cs .From my security person I came to know that we cant restrict them only for certain GL accounts, it could eithre be all or none.
    I dont agree with that.
    Please guide if you know anyhitng about it.
    Thanks
    Shefford

    You can use the Authorization Group field in the G/L account master record (field SKB1-BEGRU, free text field) for this purpose. You can then use authorization object F_BKPF_BES to manage the different authorizations.
    Click <a href="http://sap.ittoolbox.com/groups/technical-functional/sap-acct/authorisation-based-on-gl-accounts-727160">here</a> for more information.
    Points are appreciated.
    Kind regards,
    Lodewijk

Maybe you are looking for