Authorization for display only in tx MIGO

Dear Guru's,
can we give an authorization for display (i.e.Display material document ) only in Tcode MIGO for particular user ,
if possible please let us know the authorization object for the same.
Thanks,
Ashish.

Hi,
Create a custom profile via tcode PFCG.
Add the required tcode 'MIGO' to the 'Menu' tab.
Then goto 'Authorizations' and open expert mode for authorization. Here you can control the field values for authorization object. Once done, generate the profile and assign user to role along with user master comparison run.
Regards,
Srikishan

Similar Messages

  • AUTHORIZATION FOR DISPLAY ONLY

    Hi Friends,
    As per your advices I have copied the SAP_ALL_DISPLAY and changed the ACTVT field to 03 for having the Display mode for all the transactions used..
    But still there are sone transaction where the user can change like FB 02 ,schedule background jobs etc..
    When I have checked the SU24 for the Auth objects...
    Some contain the ACTVT fileds as display but some objects does not have the ACTVT fields they have some other things containing the field values as * with full authorization..
    My question is can we change this to 3 - for display or any other procedure to track the transactions which are not in display mode and change it accordingly..
    Regds,
    Satyanarayana N.

    Hi Satyanarayana,
    Unfortunately your best shot will be checking the whole role manually using PFCG and ensure that the role doesn't contain any additional authorizations. Do this by reviewing all the authorization objects.
    Regards
    Juan

  • How to control the authorization as display only in ECC system?

    Hi all,
    I want to control the IT users' authorization as display only for each Authorization Object.
    As i know, there are 177 Item of field "ACTVT" in ECC system, But i'm not ture which the value can limited the authoirzation as display only.
    Im worry about IT users have not authorization for the work if just keep "03-display" in authorization object, I plan to remove below value of ACTVT:
    01-create, 02-change, 05-Lock,06-Delete,07-Activate, generate
    But i'm not sure whether should be removed for below values:
    52-Change application start
    60-Import
    61-Export
    62-Create automatic Ledger
    63-Activate
    64-Generate
    70-Administer
    75-Remove
    C3-Maintenance of manual auth.
    C4-Develope Payment Card
    FP-Change customer field selectn
    Could anyone can tell me, Which values of ACTVT can limited the authorization as display only. at the same time, it havent an effect on work of IT users.

    Yep, I agree with Jurjen. It is not only limited to ACTVT, but rather fields of other objects as well which are "action" or "activity" related.
    I would start the other way around - give them '03' only and investigate any transaction specific claims that it is not enough. There will be a few...
    Cheers,
    Julius

  • 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

  • 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

  • Displaying diff dates using PL/SQL expression for 'display only' item ?

    Hi ,
    I am having a display only item -- :P2_FROM_Date . If its Thu,Fri,Sat or Sun I want to set the date as the last Monday's date . If its Mon,Tue or Wed then it should be the present Monday's date .
    E.g: Today is Friday and the last Monday was on 18th .
    So for yesterday , today,tomorrow and Sunday , the date should be displayed as 18-JUN-2012.
    From the coming Monday to Wednesday , the date should of be the coming Monday i.e , 24-JUN-2012
    I tried it doing under 'Source ' of item using PL/SQL expression and PL/SQL function body. Not working
    Can someone help ?
    Thanks & Regards
    Umer

    Nice1 wrote:
    declare
    lv_date number;
    begin
    select to_char(sysdate,'D') into lv_date from dual;
    if lv_date=2 then
    :P2_FROM_DATE := to_char(sysdate-1);
    end if;
    end;I tried this under " PL/SQL function body " in "Source " tab of the item P2_FROM_DATE
    When I run this , nothing is displayed corresponding to the item P2_FROM_DATEExactly as expected. This code will only set a value for <tt>P2_FROM_DATE</tt> when run on Mondays in territories where the first day of the week is Sunday, and when run on Tuesdays where Monday is the first day of of the week:
    SQL> var P2_FROM_DATE varchar2(30)
    SQL> alter session set nls_date_format='Dy DD-MON-YYYY';
    Session altered.
    SQL> select sysdate from dual
    SYSDATE
    Mon 25-JUN-2012
    SQL> alter session set nls_territory='AMERICA';
    Session altered.
    SQL> declare
      2  lv_date number;
      3  begin
      4  select to_char(sysdate,'D') into lv_date from dual;
      5  if lv_date=2 then
      6  :P2_FROM_DATE := to_char(sysdate-1);
      7  end if;
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> print p2_from_date
    P2_FROM_DATE
    Sun 24-JUN-2012
    SQL> alter session set nls_territory='UNITED KINGDOM';
    Session altered.
    SQL> exec :p2_from_date := null
    SQL> declare
      2  lv_date number;
      3  begin
      4  select to_char(sysdate,'D') into lv_date from dual;
      5  if lv_date=2 then
      6  :P2_FROM_DATE := to_char(sysdate-1);
      7  end if;
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> print p2_from_date
    P2_FROM_DATE
    SQL>Hence the questions about language above.
    >
    I am having a display only item -- :P2_FROM_Date . If its Thu,Fri,Sat or Sun I want to set the date as the last Monday's date . If its Mon,Tue or Wed then it should be the present Monday's date .
    E.g: Today is Friday and the last Monday was on 18th .
    So for yesterday , today,tomorrow and Sunday , the date should be displayed as 18-JUN-2012.
    From the coming Monday to Wednesday , the date should of be the coming Monday i.e , 24-JUN-2012
    >
    The coming Monday is 25-JUN-2012.
    Aren't these rules equivalent to "Monday this week, where Monday is the first day of the week"? In which case the PL/SQL Expression you require is:
    trunc(sysdate, 'iw')For example:
    SQL> with t as (
      2    select date '2012-06-21' + level d from dual connect by level <= 17)
      3  select
      4            d
      5          , trunc(d, 'iw')  monday
      6  from
      7            t;
    D               MONDAY
    Fri 22-JUN-2012 Mon 18-JUN-2012
    Sat 23-JUN-2012 Mon 18-JUN-2012
    Sun 24-JUN-2012 Mon 18-JUN-2012
    Mon 25-JUN-2012 Mon 25-JUN-2012
    Tue 26-JUN-2012 Mon 25-JUN-2012
    Wed 27-JUN-2012 Mon 25-JUN-2012
    Thu 28-JUN-2012 Mon 25-JUN-2012
    Fri 29-JUN-2012 Mon 25-JUN-2012
    Sat 30-JUN-2012 Mon 25-JUN-2012
    Sun 01-JUL-2012 Mon 25-JUN-2012
    Mon 02-JUL-2012 Mon 02-JUL-2012
    Tue 03-JUL-2012 Mon 02-JUL-2012
    Wed 04-JUL-2012 Mon 02-JUL-2012
    Thu 05-JUL-2012 Mon 02-JUL-2012
    Fri 06-JUL-2012 Mon 02-JUL-2012
    Sat 07-JUL-2012 Mon 02-JUL-2012
    Sun 08-JUL-2012 Mon 02-JUL-2012
    17 rows selected.
    SQL> alter session set nls_territory='AMERICA';
    Session altered.
    SQL> alter session set nls_date_format='Dy DD-MON-YYYY';
    Session altered.
    SQL> with t as (
      2    select date '2012-06-21' + level d from dual connect by level &lt;= 17)
      3  select
      4            d
      5          , trunc(d, 'iw')  monday
      6  from
      7            t;
    D               MONDAY
    Fri 22-JUN-2012 Mon 18-JUN-2012
    Sat 23-JUN-2012 Mon 18-JUN-2012
    Sun 24-JUN-2012 Mon 18-JUN-2012
    Mon 25-JUN-2012 Mon 25-JUN-2012
    Tue 26-JUN-2012 Mon 25-JUN-2012
    Wed 27-JUN-2012 Mon 25-JUN-2012
    Thu 28-JUN-2012 Mon 25-JUN-2012
    Fri 29-JUN-2012 Mon 25-JUN-2012
    Sat 30-JUN-2012 Mon 25-JUN-2012
    Sun 01-JUL-2012 Mon 25-JUN-2012
    Mon 02-JUL-2012 Mon 02-JUL-2012
    Tue 03-JUL-2012 Mon 02-JUL-2012
    Wed 04-JUL-2012 Mon 02-JUL-2012
    Thu 05-JUL-2012 Mon 02-JUL-2012
    Fri 06-JUL-2012 Mon 02-JUL-2012
    Sat 07-JUL-2012 Mon 02-JUL-2012
    Sun 08-JUL-2012 Mon 02-JUL-2012
    17 rows selected.Also note that using the item source properties will only set the <tt>P2_FROM_DATE</tt> in the rendered page, not in session state.

  • 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

  • HR authorization for Display the documents  in SAP DMS

    HI experts,
    We want to control display authorization depending on the entry made in object link tab in DMS( DOcument Management System). We developed screen for HR master object link. When user executes cv03n and enters document No. system should check hr master number entered in object link. If the user has authorization for that hr master number in PA (personnel administration), then he should be allowed to display the document. Otherwise it should restrict him to display the DIR.
    Now my query is how to achieve it. Can anybody provide me some solutions
    I have one solution, whenever user enter document number in cv03n screen, system will first check hr master number entered in object link and it will check the Personnel Area, Employee group and employee subgroup aginst this hr master number. Say for ex: PA:1000, EG:1 and ESG:01 for HR number xyz.
    Now system should check in roles assigned agaist user id for these PA, EG and ESG values. If user has got authorization for PA:1000, EG:1 and ESG:01 in HR roles,then he should allowed to display the document.
    Now my query is how feasible this approach? is this tough task for abaper? or is there any easier approach than this.
    regards
    sham

    Hi,
    Try to use the User Exit: CNEX0002.
    Check with your ABAP er for the enhancement.
    Hope it helps..
    Thanks!!!

  • Using the iMac for display only?

    I bought an iMac in 2008. I use it for the majority of my computing needs, and for the most part is serves my purposes for everything. One thing I would like though is more gaming power.
    I have a PC tower that is not connected to anything at the moment and needs a little hardware work which I will do myself.
    Since the iMac is not user upgradable, and the video/graphics card is not upgradable at all, I was curious if I was able to connect the PC tower to the iMac's screen and use it as a display for a gaming computer and disconnect the tower for regular computing.
    While I'm asking, is there any external way to improve the graphics card for gaming that anyone is aware of?

    ...Its too bad the graphics card is not upgradeable. I'm also going to try and find out if there is some sort of external way to increase performance....
    This is the inherent issue with all "all-in-ones", both laptops and desktops, both PCs and Macs. For the most part, they are not upgradable. You can replace HD and RAM, but pretty much everything else "is what it is" and upgrades are "external only." Don't hold your breath that you'll find any way to increase performance (video or CPU.)
    In the long run, you may want to consider just selling the iMac and get a new Mac. A Mini or Mac Pro, both of which do not have built-in monitors so would require you to get a monitor anyway, then you could KVM it with the PC. (I have my Mini KVMed with a Dell Poweredge server, which is sitting under my desk.) Alternatively, the new 27" iMac does allow for video input so it could be used as a monitor for the PC.

  • Authorization for Create Only - No change

    Hi,
    I need to give certain users authorization to Create an Infotype. Change will not be given to these users.
    In Authorization Level, I think we can only specify R (other variations of R like M etc.) or W.
    Please let me know on how this can be achieved.
    PS: I have looked into using BAPI HRPAD00AUTH_CHECK, but I am not sure on how to implement this for just one infotype.
    Thanks for all your help in advance.
    Regards,
    Ani

    Thanks Pavani and Anil for your answers.
    Pavani, the basis folks have told that they can give either R/M which are for read authorization or W which is for write. They cannot restrict to just change.
    Anil,  what is the authorization level? Does specifying that to 'T', allow for Creating an infotype and "Disallow changes".
    Our Authorizations are mostly,
    Authorization level - R, M
    InfoTtype - 0001,0007
    PersonnelArea - *
    Employee Group - *

  • Adobe forms - No scroll bar for Display only fields

    I am using adobe forms for SAP Enterprise Portal. i am using these in Worklfows. In the form there is a text field with no size limit and Allows Multiple Lines. Any amount of text is allowed to be entered. when the form is viewed by the next person, the script in the form make the field as read only. This is as expected.
    Problem: If there are multiple lines the scroll bar does not appear for the field. Entire content is not visible. Printout of the form prints the entire text from the field. In edit mode the scroll bar is displayed!!
    Adobe Reader version - 7.0.9
    OS - XP SP2

    Hi Sumant,
    I am facing same issue. Any solution ?
    Thanks & Regards,
    Tushar Trivedi.

  • Best for display only one option

    Upgraded older mac mini to Mavericks. Previously running Lion with display at 1280x800. Now only get one setting 1024. I tried the free "Display Menu"app but same thing. Any reason for this not having more options?
    Thanks, Jim
    NVIDIA GeForce 9400:
      Chipset Model:          NVIDIA GeForce 9400
      Type:          GPU
      Bus:          PCI
      VRAM (Total):          256 MB
      Vendor:          NVIDIA (0x10de)
      Device ID:          0x0861
      Revision ID:          0x00b1
      ROM Revision:          3362
      Displays:
    S/M 150MP:
      Resolution:          1024 x 768 @ 85 Hz
      Pixel Depth:          32-Bit Color (ARGB8888)
      Display Serial Number:          H4NT105937 
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Rotation:          Supported

    Re: SQL Help

  • How to use a link bar or navigation bar for display only?

    My app has a link bar in an Application Control bar that is bound to the view stack of the steps in my application.
    I would like to use this as a mechanism to show the user which step he is on and how many are left, but NOT to click on it to navigate between steps.  I have provided wizard-like buttons to step navigation.
    How can I have the link bar not respond to clicks, or, if not, programmatically disable certain steps in it (e.g. "step 2" not available until I say so)?

    OK, I have decided it might be easier to use a repeater with buttons in it, such as:
    <mx:Repeater id="toolbar" dataProvider="{dataXML}" >
    <mx:Button label="{toolbar.currentIndex+1}. {toolbar.currentItem..stepTitle}" enabled="false" />
    </mx:Repeater>
    So now I'd like to progressively change the buttons in the repeater to "enabled" as I am ready.
    However, toolbar.getChildAt(0).enabled = true fails with:
    1119: Access of possibly undefined property enabled through a reference with static type flash.display:DisplayObject.

  • MDP connection to TB for display only use?

    i have a mac book air with mDP can this connect to the new TB displaY?

    OK, I have decided it might be easier to use a repeater with buttons in it, such as:
    <mx:Repeater id="toolbar" dataProvider="{dataXML}" >
    <mx:Button label="{toolbar.currentIndex+1}. {toolbar.currentItem..stepTitle}" enabled="false" />
    </mx:Repeater>
    So now I'd like to progressively change the buttons in the repeater to "enabled" as I am ready.
    However, toolbar.getChildAt(0).enabled = true fails with:
    1119: Access of possibly undefined property enabled through a reference with static type flash.display:DisplayObject.

  • Role for display Authorizations

    Hi All,
    We need to know if thre are any standard Roles available by which i can have all Display authorizations in Production system.
    Currently we have many Custom roles and this thisng is really messed up in our organization. So i have suggested to Standardized the role related issues and starting with MM, i would like to know if in production we can have access with all Disply rights for all relevant authorizations along with SPRO display. Can anyone suggest something on this?
    Also if we need to create some "Z" or "Y" role; please suggest how we can achieve it.
    thanks a lot in advance!
    Prashant

    Hi Prashanth,
    First identify all the transactions which you want to have to give display authorization.
    Go to PFCG--> Enter All transactions which everyou want to give authorization for display.
    Save.
    Go to Authorization tab check for objects vreated for relevant transactions and provide display as activity in those objects.
    With Regards,
    Vijaykumar P

Maybe you are looking for

  • Windows 8.1 and skype

    Dear friends, Im new to skype community , so im sorry if im mistakenly put this post in a wrong place,  Im using skype for very long time. And i bought a new laptop last year with windows 8 and i used windows desktop skype since then. Modern skype (t

  • Installation CourseBuilder Extension in Dreamweaver CS 5 fails

    Hello i become the error The Extesion .CourseBuilder for Adobe Dreamweaver CS5, contains not a valid signature, The extension is not installed! Can anyone help me!!! Thanks MRstooni - from Switzerland!

  • Database Adapter Polling problem

    Hi All, The polling option is processing all the rows in a table at a time instead of using polling frequency. I have used an option of update a field (logical delete) where I have initialized unread value='N' and read value='Y'. Now ,the problem is

  • Flex Tree Folder/File Leaf/Branch icons

    Hello Everyone ,   I have an object which implements ITreeDataDescriptor and I stuff the objects into a Tree.  The objects are being shown in the tree , however  , they are all shown with the folder icon.  Is there a way I can tell this tree that som

  • Create ASM Disk Groups cannot see Disk Path to select during installation

    Hello Guys, I am setting up 2 node RAC on 11gR2 and Linux. I have configured all the pre-installation steps that are required to run Grid Setup as per my understanding. I have configure SAN partitions using multipath. I can see my SAN volume when i q