View creation authority for a user

How can I assign MIP views or another view creation for a user ?

Hi
Yes you are right you can control the status based on the authorisation Object
M_MATE_STA.
Award points if useful
Thanks & Regards
Kishore

Similar Messages

  • View chat history for all users and prevent them f...

    "I need to be able to view chat history for all users in the organization and prevent them from deleting their chat history.  This needs to be done form a centralized admin portal and not on each workstation. I don’t see that as possible with Skype for Business.  If it is please let me know. That is a must-have. The rest I can work around. "
    Can anyone please provide documents that confirm if its possible or not.
    Thank you

    You can reset a VIs rev history using VI Server to load the vi and a method to reset. See attached (LV 8.6)
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness
    Attachments:
    Reset VI History.vi ‏9 KB

  • How to set an adapted project dashboard view as initial for all users?

    Hi all.
    We have the cProjects project dashboard active and have defined (via settings, save as) a custom view with the columns relevant in this particular installation. 
    I can however only save this view with assignment "user" meaning that it only applies to the user logged on when creating it. 
    We are however looking to have a common global customized view that all users should begin with. 
    Compare the R/3 functionality with layout management in reports where you can define whether the layout should be
    user specific or not
    default
    My question is therefore if it should be possible to save global views in the above example and if not how to achieve what we are looking for.
    I assume one option could be to see if one can use BADI DPR_EVE_DASHBOARD but it seems this should be possible to handle within the application given that the field "Assignment" is there when you save the view.  At the moment only with the value "user" available though ...
    Regards / Anders

    Hej Anders
    You can save a default view for all users under administration mode:
    http:<server>:<port>/sap/bc/webdynpro/sap/cprojects?sap-config-mode=X
    BR
    Matthias

  • Same viewer - different interface for different users

    Post Author: darrell
    CA Forum: General
    I have written an application that uses the viewer.
    (And yes I am 100% sure we are all using the same application, run file and viewer)
    When some users run my program they get a GUI interface that asks for parameters.
    Other users get a web-like interface.
    What dll, ocx, or other item controls this?
    I would like to get all my users on the same interface.

    Please re-post if this is still an issue to the Legacy Application Development SDKs Forum or purchase a case and have a dedicated support engineer work with you directly

  • Make tables, views etc, aviable for public users, how could sql look like?

    Hey specialists,
    I produced under my username several tables, views and sequenzes. How could sql or Psql look like to create for all items a public synonym.
    where could I read more information about giving privilegs for tables etc to other users, for instance in dba-studio
    regards
    robert

    Hi!
    Create a sql script for sql*plus like:
    set head off echo off feedback off pagesize 999 line 120 trimsp on
    spool crepsn.sql
    select 'create public synonym ' || object_name || ' for '|| object_name || ';' || chr(10)
    from  user_objects
    where object_type in ( 'TABLE', 'VIEW', 'SEQUENCE', 'PACKAGE', 'PROCEDURE', 'FUNCTION' )
    and   object_name not like 'BIN$%'
    and   object_name not in ( select synonym_name
                               from   sys.dba_synonyms
                               where  owner = 'PUBLIC'
                               and    synonym_name = object_name
                               and    table_owner =  user )
    order by object_type, object_name
    spool off
    prompt creating Public Synonyms
    set termout on feedback on
    @crepsn
    set echo offThis creates public synonyms for the given object types of objects the current user is the owner of.
    If you get an error that a public synonym is already defined, the obectname
    is already in use by another user in the database.
    After this you have to give other users / public access to your objects via grants.
    Regards

  • [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)

  • How to enable detail view interactive report as default for public user?

    Hello all,
    I'm currently developing a search results page.
    I'm trying to do a nice view instead of a default table like view from the interactive reports. So in this case i enabled the detail view so i could make fancy designs.
    all worked well and looked neat but however when i pass value from my search page using IR_ROWFILTER and clear the results page using page_no,RIR, it brings me to the interactive reports result page with the default table like view.
    i have to press the detail view to get it. i tried saving it as default but it wont work. this issue is for public user.
    if i make the page requires authentication, and save the detail view as default i would not have any problem. i could search and it will straightly bring to the detail view of the search page.
    of course the other reason i found is because im using the IR_ROWFILTER and clearing page using page_no,RIR..without it,it works well but i need it coz im doing a a search result. i need to send search text from another page and put it in the filter in the search page. i would need to use RIR to clear it for searching again.
    is this a limitation for public user? it doesnt happened for authenticated user though..
    how can i make this view as default for public user?

    T101_cyberdyne wrote:
    how can i make this view as default for public user?
    Flip the report into Detail view on page load using an Page Load dynamic action with the following Execute JavaScript Code true action:
    gReport.data.view('DETAIL');
    I'm trying to do a nice view instead of a default table like view from the interactive reports. So in this case i enabled the detail view so i could make fancy designs.
    Do you really need this to be an IR? Other than the detail layout, do you require any of the interactive features? If not, try using a standard report with a custom report template.

  • Setting Application Context Attributes for Enterprise Users Based on Roles

    Hello,
    We have an Oracle 11g database with a table containing data from multiple sites (a SiteID field identifies the site for a record). Since application users can have access to different subsets of sites, we would like to use Oracle's Virtual Private Database feature to enforce row-level security on the table.
    I did a successful proof-of-concept with database users. I created a role for each site (example: USER_SITE_A, USER_SITE_B, ...), and then assigned the appropriate site roles to each database user. I then created a package (run via a logon trigger) which set application context attributes for each site. If the current database user has been assigned a role for a given site, then the corresponding attribute named "SITE_PRIVILEGE_SiteID" is set to 'Y'... otherwise, it is set to 'N'. Here is the code which worked to set application context attributes for database users:
    -- For each record in my RoleSitePrivileges table, set
    --   an attribute named 'SITE_PRIVILEGE_<SiteID>'.
    --   If the current user has been assigned a role matching
    --   the value in the 'RoleName' field, set the corresponding
    --   attribute to 'Y'... otherwise, set it to 'N'.
    FOR iPrivRec IN (SELECT RoleName, SiteID
                       FROM RoleSitePrivileges
                       ORDER BY SiteID)
       LOOP
          SELECT COUNT(*)
            INTO roleExists
            FROM dba_role_privs
            WHERE granted_role = UPPER(iPrivRec.RoleName)
              AND grantee = USER;
          IF roleExists > 0 THEN
             DBMS_SESSION.set_context(
                         namespace   => 'my_ctx',
                         attribute   => 'SITE_PRIVILEGE_' || iPrivRec.SiteID,
                         value       => 'Y');
          ELSE
             DBMS_SESSION.set_context(
                         namespace   => 'my_ctx',
                         attribute   => 'SITE_PRIVILEGE_' || iPrivRec.SiteID,
                         value       => 'N');
          END IF;
       END LOOP;To finish things off, I created a security policy function for the table which returns the following:
    RETURN 'SiteID IN (SELECT TO_NUMBER(SUBSTR(attribute, 15))
                         FROM session_context
                         WHERE attribute LIKE ''SITE_PRIVILEGE_%''
                            AND value = ''Y'')';This setup worked great for database users. I am now working to do a comparable proof-of-concept for enterprise users created in Oracle Internet Directory (OiD). I have Enterprise User Security (EUS) up and running with OiD, global roles created in the database, enterprise roles defined in EUS with global role assignments, and enterprise roles assigned to OiD users. The enterprise users are able to successfully login to the database, and I can see the appropriate global role assignments when I query the session_roles view.
    I tried using the same application context package, logon trigger, and security policy function with the enterprise users that I had used with the database users. Unfortunately, I found that the application context attributes are not being set correctly. As you can see from the code above, the applicaiton context package was referencing the dba_role_privs view. Apparently, although this view is populated for database users, it is not populated for enterprise users.
    I tried changing the application context package to use invoker's rights and to query the session_roles view instead of the dba_role_privs view. Although this package sets the attributes correctly when called manually, it does not work when called from the logon trigger. That was an oops on my part, as I didn't realize initially that a PL/SQL procedure cannot be called with invoker's rights from a trigger.
    So, I am now wondering, is there another view that I could use in code called from a logon trigger to access the roles assigned to the enterprise user ? If not, is there a better way for me to approach this problem? From a maintenance standpoint, I like the idea of controlling site access from the LDAP directory service via role assignments. But, I am open to other ideas as well.
    Thank you!

    Hello,
    We have an Oracle 11g database with a table containing data from multiple sites (a SiteID field identifies the site for a record). Since application users can have access to different subsets of sites, we would like to use Oracle's Virtual Private Database feature to enforce row-level security on the table.
    I did a successful proof-of-concept with database users. I created a role for each site (example: USER_SITE_A, USER_SITE_B, ...), and then assigned the appropriate site roles to each database user. I then created a package (run via a logon trigger) which set application context attributes for each site. If the current database user has been assigned a role for a given site, then the corresponding attribute named "SITE_PRIVILEGE_SiteID" is set to 'Y'... otherwise, it is set to 'N'. Here is the code which worked to set application context attributes for database users:
    -- For each record in my RoleSitePrivileges table, set
    --   an attribute named 'SITE_PRIVILEGE_<SiteID>'.
    --   If the current user has been assigned a role matching
    --   the value in the 'RoleName' field, set the corresponding
    --   attribute to 'Y'... otherwise, set it to 'N'.
    FOR iPrivRec IN (SELECT RoleName, SiteID
                       FROM RoleSitePrivileges
                       ORDER BY SiteID)
       LOOP
          SELECT COUNT(*)
            INTO roleExists
            FROM dba_role_privs
            WHERE granted_role = UPPER(iPrivRec.RoleName)
              AND grantee = USER;
          IF roleExists > 0 THEN
             DBMS_SESSION.set_context(
                         namespace   => 'my_ctx',
                         attribute   => 'SITE_PRIVILEGE_' || iPrivRec.SiteID,
                         value       => 'Y');
          ELSE
             DBMS_SESSION.set_context(
                         namespace   => 'my_ctx',
                         attribute   => 'SITE_PRIVILEGE_' || iPrivRec.SiteID,
                         value       => 'N');
          END IF;
       END LOOP;To finish things off, I created a security policy function for the table which returns the following:
    RETURN 'SiteID IN (SELECT TO_NUMBER(SUBSTR(attribute, 15))
                         FROM session_context
                         WHERE attribute LIKE ''SITE_PRIVILEGE_%''
                            AND value = ''Y'')';This setup worked great for database users. I am now working to do a comparable proof-of-concept for enterprise users created in Oracle Internet Directory (OiD). I have Enterprise User Security (EUS) up and running with OiD, global roles created in the database, enterprise roles defined in EUS with global role assignments, and enterprise roles assigned to OiD users. The enterprise users are able to successfully login to the database, and I can see the appropriate global role assignments when I query the session_roles view.
    I tried using the same application context package, logon trigger, and security policy function with the enterprise users that I had used with the database users. Unfortunately, I found that the application context attributes are not being set correctly. As you can see from the code above, the applicaiton context package was referencing the dba_role_privs view. Apparently, although this view is populated for database users, it is not populated for enterprise users.
    I tried changing the application context package to use invoker's rights and to query the session_roles view instead of the dba_role_privs view. Although this package sets the attributes correctly when called manually, it does not work when called from the logon trigger. That was an oops on my part, as I didn't realize initially that a PL/SQL procedure cannot be called with invoker's rights from a trigger.
    So, I am now wondering, is there another view that I could use in code called from a logon trigger to access the roles assigned to the enterprise user ? If not, is there a better way for me to approach this problem? From a maintenance standpoint, I like the idea of controlling site access from the LDAP directory service via role assignments. But, I am open to other ideas as well.
    Thank you!

  • Lock a tcode for particular user

    Hi Experts
    i need to lock few transaction for particular users only. we have n number of roles and the transactions have been assigned to some tcodes to be reasticted  for a list of users. is there any method or program to built to restrict the users for few tcodes.is there any more query pl trigger me
    regards
    bala

    hi
    sagar:
    as you said if i start creating roles to restrict some users then there atleast 25 tcodes are there to restrict and 120 roles are to be analyzed and the job becomes hefty by creating roles and there will too many number of roles and it becomes confusion in future forecast. there fore i nedd any suggestion like that the userscan be restricted when they are trying to access that particular code or lock the screen or inform them to not access these tcodes thro some message or writing a program to restrict the users while the user exits. i have an idea but i dont know how it will work - ( I am not a ABAPER) there should be tcode or program which should list tcodes authorized for particular users and where they can be locked like SM01 ( but it will lock for all) but locking for particular users
    Am i more advanced??
    regards
    bala

  • Loading swf files for anonymous user login

    Hi,
    We are having swf file retrieving from oracle database in home page. I can able to view swf file for normal users, but anonymous user login, not able to see swf file in the page. Other image format like jpg/gif files anonymous user login images are loading properly. Pls. kindly advise, where issue occurs.
    kumar. G

    Hi Ram
    Thanks for your response. Let me know, how to connect to oracle database for anonymous user login. Based on that i will work around that approach for fixing this issue.
    By
    kumar. g

  • Roles autorized for this users

    Hi,
    I could not logon from R3 to XI in SM59 though I have given the right parameters in technical settings and right user ID, password,client etc......
    Is this anyway related to roles authorized for the users(SAPUSER for SAP R3 and XISUPER for XI) ?
    How do I check the roles autorized for this users ?
    Thanks
    dhusanth

    Hi,
    >>user: XISUPER
    I checked the Roles Tab
    In Profile Compar.Status
    SAP_BC_AI_LANDSCAPE_DB_RFC
    SAP_SLD_ADMINISTRATOR
    The mentioned roles are not sufficient.... The following roles are needed
    ROLES
    SAP_ALM_ADMINISTRATOR
    SAP_ALM_CUSTOMIZER
    SAP_BC_AI_LANDSCAPE_DB_RFC
    SAP_SLD_ADMINISTRATOR
    SAP_SLD_CONFIGURATOR
    SAP_SLD_DEVELOPER
    SAP_SLD_GUEST
    SAP_SLD_ORGANIZER
    SAP_XI_ADMINISTRATOR
    SAP_XI_ADMINISTRATOR_ABAP
    SAP_XI_ADMINISTRATOR_J2EE
    SAP_XI_BPE_ADMINISTRATOR_ABAP
    SAP_XI_BPE_CONFIGURATOR_ABAP
    SAP_XI_BPE_MONITOR_ABAP
    SAP_XI_CONFIGURATOR
    SAP_XI_CONFIGURATOR_ABAP
    SAP_XI_CONFIGURATOR_J2EE
    SAP_XI_CONTENT_ORGANIZER
    SAP_XI_CONTENT_ORGANIZER_ABAP
    SAP_XI_CONTENT_ORGANIZER_J2EE
    SAP_XI_DEMOAPP
    SAP_XI_DEVELOPER
    SAP_XI_DEVELOPER_ABAP
    SAP_XI_DEVELOPER_J2EE
    SAP_XI_MONITOR
    SAP_XI_MONITOR_ABAP
    SAP_XI_MONITOR_J2EE
    Regards
    Agasthuri Doss

  • Not able to view the previlages of the user in XIR3.1

    Hi,
    We have migrated from XI R2 to BOE xi 3.1 with SP3 in Unix.I am not able to view the previlages for the user in XI 3.1which it is there in XIR2.
    Please provide the solution.
    Thanks,
    ReksRon

    Hi,
    1. I have installed BOE XI 3.1 with SP3 in solaris and BOE XI 3.1 with SP3 having customized installation with Xcelsius server  in      Linux enironment.
    2. Added the xcelsius server in solaris which is the distributed environment.
    3.I have migrated users,groups,folders,reports,universe,profiles from XIR2 to BOXI 3.1. which is in Solaris environment by using Import wizard.
    4. When I logged into the infoview in BOE XI 3.1 as a user.I am not able to see the folders.But which I could able to view those public folders in XIR2.
    Please let me help out.
    Thanks,
    ReksRon

  • Permissions required for an user to create a View in Oracle 10.2.0.1.0

    Hi,
    I am facing one serious issue with Oacle 10.2.0.1.0.
    I have an user (Atlas) created with below permissions.
    grant connect to atlas;
    grant resource to atlas;
    grant create public synonym to atlas;
    grant select any dictionary to atlas;
    grant query rewrite to atlas;
    I will create my database schema on this user Atlas. All my scripts are executing properly with Oracle 9i and 10g version 10.1.0.2.0. But when it comes to Oracle 10g version 10.2.0.1.0 the views creation is throwing an error saying that Insufficient Priviliges.
    I didn't get why this error is coming.
    What previliges does an user should require for creating a view in Oracle 10.2.0.1.0 version?
    I have installed Enterprise version of Oracle 10.2.0.1.0. Please suggest me with this.
    Thanks
    Rao

    CREATE VIEW was taken away from connect or resouce in 10.2.x. It has to be explicity granted... Not sure what this has to do with XML per-se :)

  • Is an iBooks Author tutorial available for new users?

    Is an iBooks Author tutorial available for new users?

    You can also try this site for video training on iBA.  It's around $25/month for unlimted viewing and may be easier for some people than reading a manual:
    http://www.lynda.com/iBooks-tutorials/iBooks-Author-Essential-Training/101460-2. html

  • Problem with "Group By" in Views - Not Displaying the Same for All Users

    We have an Announcements List with its only View being set up to group by a metadata category field. We've done this many times on other kinds of lists and never had a problem. But with this list, about half the users can see only the ungrouped
    set of announcements, whereas others actually see the items within their groups.
    Those with "View" rights only can't see the grouped items - but that appears to be a coincidence as I promoted them to the same rights as others who can see them correctly, and that did NOT solve the problem. Everyone is using the exact same browser.
    Note: the users who do NOT see the groupings see only a single category entry that displays only the name of the category list (but not the names of the actual categories within the category list). All the announcements are grouped under that one
    entry for those users. This display looks exactly like it would if the categories had been left blank when the original announcements were created. But the categories are NOT blank, and the rest of the users can see them just fine, and the announcements display
    within their appropriate groups.
    I can't find anything in the View, the List Settings, or the User Permissions to explain this. What could be causing it, and how can I fix it?

    Browser settings are controlled by central IT and are all identical. 
    The only difference I can detect is the second set of users (that don't see the category options) have only Read rights, whereas those with Contribute (or above) rights can see the categories. It doesn't make
    sense that permissions would affect this, but I can't come up with any other differences.
    Microsoft will not allow me to upload images. it says I can't upload images until they have verified my account, but there is no clue as to how, if or when that might happen. If you can tell me how to fix that, I can provide samples.

Maybe you are looking for

  • HP LaserJet CP1525nw drivers

    I'm trying to install the 64 and 32 bit driver for the HP laserjet 1525 printer on a server. I can get to the page where the download is found, I extract the files and put them on the desktop of the server. When I go through the wizard in windows ser

  • Need help with Dynamic Excel File Name please.

    I am try to output an excel file with dynamic date.  Here what I done. I am using SQL 2012. Create Execute SQL Task Connect Type: Excel Create Data Flow Task set to DelayValidation: True Create OLE DB Sourc Create Data Converstion Excel Destination E

  • Acrobat 7.1 update over 7.0.9 with GPO and Active Directory

    Hello all. Our environment is Windows 2000 sp4 for clients and Windows Server 2003 We have been using two AIPs for Acrobat 7.0.9 (Pro and Standard) deployment, customized with Install Shield Tuner for Acrobat 7. When we patched them to v7.1.0 using t

  • Upgrading the DVD drive in a Quicksilver 733 MHz?

    If I purchase a Sonnet PCI SATA controller, can I upgrade my built-in DVD R-W to a SATA DVD R-W? If so, which DVD brand/model has most people had success with? Thanks!

  • Can PI 7.0 be installed with ECC6.0 on one server?

    Hi, Is it possible to install PI 7.0 on the same server with ECC 6.0. I know that there are some nuances for XI 3.0 and ECC 5.0. What about PI? What is the procedure? Thank you!