Make UDF Read-only for all users

Hi
Can i use any script to make a UDF read-only for all users?
i am looking at CPRF and CUFD Tables
thanks

Hi,
You should never try updating system table directly.  That will against supporting policy by SAP.
Thanks,
Gordon

Similar Messages

  • How to make warehouse field inactive for all users in all documents autom.

    Hi All,
    Can anyone pls tell me "**how to make warehouse field inactive for all users in all documents without having to do it through form setting** "for each and every user. It should be visible but inactive
    Thanks & Regards,
    Mukesh Agrawal

    Hi,
    As a work around create a warehouse SelectWH and map the mandatory acoounts as a On hold account(in chart of accounts).So there will not be any posting on this account.
    And set this warehouse as default warehouse for all users.
    So without selecting the appropriate warehouse the user can not add the document.
    I think this might resolve you issue.

  • How do you make Motion templates availabe for all users for FCPX?

    How do you make Motion templates availabe for all users for FCPX?

    Copy your Motion Templates folder that is in your Movies folder to the movies folder of your other users.

  • How to make saved IR available for all users

    Hi,
    I've created IR and saved it to several tabs based on search conditions.
    But they're only visible for developers.
    How to make these tabs available for all end-users ?
    Does version 4.0 support this option ?
    Thank you!

    Hi
    At present this feature is not included, although I believe it may be in 4.0. Many people have provided workarounds for this. None of which I have tried. I cannot find the original thread but here is a solution from a chap called Ruud
    >
    One way to share your saved reports with others is to 'Publish' your report settings to a few intermediate tables in your application and have other users 'Import' your settings from there. The reason for using intermediate tables is so that not all your saved reports need to be 'visible' to other users (only those that you've chosen to publish).
    Basically you have available the following views and package calls that any APEX user can access:-
    - flows_030100.apex_application_pages (all application pages)
    - flows_030100.apex_application_page_ir_rpt (all saved reports - inclusing defaults and all user saved reports)
    - flows_030100.apex_application_page_ir_cond (the associated conditions/filters for above saved reports)
    - wwv_flow_api.create_worksheet_rpt (package procedure that creates a new saved report)
    - wwv_flow_api.create_worksheet_condition (package procedure that creates a condition/filter for above saved report)
    The way I've done it is that I've created 2 tables in my application schema that are straightforward clones of the 2 above views.
    CREATE TABLE user_report_settings AS SELECT * FROM flows_030100.apex_application_page_ir_rpt;
    CREATE TABLE user_report_conditions AS SELECT * FROM flows_030100.apex_application_page_ir_cond;
    ( NB. I deleted any contents that may have come across to make sure we start with a clean slate. )
    These two tables will act as my 'repository'.
    To simplify matters I've also created 2 views that look at the same APEX views.
    CREATE OR REPLACE VIEW v_report_settings AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_rpt r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND r.session_id IS NULL
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    CREATE OR REPLACE VIEW v_report_conditions AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_cond r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    I then built 2 screens:-
    1) Publish Report Settings
    This shows 2 report regions:-
    - Region 1 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT apex_item.checkbox ( 1, report_id ) " ",
    page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY page_name,
    report_name
    Each row has a checkbox to select the required settings to publish.
    The region has a button called PUBLISH (with associated process) that when pressed will copy the settings from
    V_REPORT_SETTINGS (and V_REPORT_CONDITIONS) into USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    - Region 2 - Shows a list of already published reports in table USER_REPORT_SETTINGS (again filtered for your user)
    SELECT apex_item.checkbox ( 10, s.report_id ) " ",
    m.label,
    s.report_name
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user = :APP_USER
    AND ( s.page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY m.label,
    s.report_name
    Each row has a checkbox to select a setting that you would like to delete from the repository.
    The region has a button called DELETE (with associated process) that when pressed will remove the selected
    rows from USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    NB: P27_REPORT is a "Select List With Submit" to filter the required report page first.
    Table MENU is my application menu table where I store my menu/pages info.
    2) Import Report Settings
    This again shows 2 report regions:-
    - Region 1 - Shows a list of all published reports in table USER_REPORT_SETTINGS (filtered to show only other users saved reports)
    SELECT apex_item.checkbox ( 1, s.report_id ) " ",
    m.label,
    s.report_name,
    s.application_user
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user :APP_USER
    AND ( s.page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY m.label,
    s.report_name,
    s.application_user
    Each row has a checkbox to select the setting(s) that you would like to import from the repository.
    The region has one button called IMPORT that when pressed will import the selected settings.
    It does this by using the 2 above mentioned package procedure to create a new saved report for you
    with the information form the repository. Be careful to match the right column with the right procedure
    parameter and to 'reverse' any DECODEs that the view has.
    - Region 2 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY page_name,
    report_name
    This is only needed to give you some feedback as to whether the import succeeded.
    A few proviso's:-
    a) I'm sure there's a better way to do all this but this works for me :-)
    b) This does not work for Computations! I have not found an API call to create computations.
    They will simply not come across into the repository.
    c) If you import the same settings twice I've made it so that the name is suffixed with (2), (3) etc.
    I did not find a way to update existing report settings. You can only create new ones.
    d) Make sure you refer to your saved reports by name, not ID, when matching APEX stored reports and the
    reports in your repository as the ID numbers may change if you re-import an application or if you
    auto-generate your screens/reports (as I do).
    Ruud
    >
    To me this is a bit too much of a hack and I personally wouldn't implement it - it's just an example to show it can be done.
    Also if you look here in the help in APEX Home > Adding Application Components > Creating Reports > Editing Interactive Reports
    ...and go to the last paragraph, you can embed predicates in the URL.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)
    Edited by: Munky on Jul 30, 2009 8:03 AM

  • How to make fields Read only on all tabs in one go with the help of feeder classes in SAP EHS?

    I have a requirement where once we press SAVE button i have to make all the fields read only in tabs highlighted below.Which is the best method to do it.?
    There are number of fields in all these tabs and we want to make them read only on particular Action event.How to do it?
    Thanks,
    Vimal

    Hi Vimal,
    As I understood you reformulate this question at this page. I will try to help you there.
    Kind regards, Aliaksandr.

  • Make a metro tile for all users

    I have a single WIndows Server 2012 running RDS with Desktop Experience Enabled.
    what I'm trying to figure out is how to create a Modern UI set of tiles that all users get on this box. presently, we log in as each user and add all the tiles manually.
    Is there a way to create a tile group and ensure that each user gets that set of tiles?
    For example: A tiles group called "Partner Websites" with individual tiles that are shortcuts to different websites?
    I don't have a lot of users in my company, but it's still a pain to have to reset up all tiles the same way for each user manually.
    In Xp/Vista/Win7 it used to be you could drop desktop or start menu shortcuts for "all users". Looking for the equivalent in Windows Server 2012 with Metro.
    Bob

    Hi,
    Thanks for posting here.
    Regarding your request, maybe we could deploy the metro tile via GPP. For details, please refer to the following article.
    Deploy Windows 8 Start Tiles Using Group Policy Preferences
    http://skatterbrainz.blogspot.in/2012/11/deploy-windows-8-start-tiles-using.html
    Hope it helps.
    Best Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • Shared folder read-only for other users

    We setup a new iMac with three accounts for members of the family. Two have admin rights. We installed Quicken Essentials 2010 for Mac, and put the Quicken data file in the Users/Shared/Quicken folder. Everything worked great for user #1 who copied the file to the shared Quicken folder.
    User #2 (also an admin) was not able to open Quicken, as an error stating the file was read-only. I checked permissions, and set user1 and user2 with read/write and everyone with read/write. Basically, all permissions on that data file are read/write for everyone.
    That still did not work. Then, I set user2 as the owner. Now, user2 can use Quicken and the file, but user1 cannot. Same error.
    How do we get it so that files in the Shared folder are really shared and accessible to everyone?

    The solution that I discovered to work: Place your quicken data file(s) on an external drive (or create a partition if you only have access to a single hard drive) and have permissions on that drive (o volume) set to "ignore ownership on this volume" It works for me. Both accounts can now access my single quicken data file. To set the permissions on a drive/volume, select the drive or volume, choose "get info" from the file menu and at the bottom of the get info window mark the box "Ignore ownership on this volume".
    It might be worth your while to spend ten bucks on an ebook titled Take Control of Sharing Files in Snow Leopard. Take Control of Sharing Files in Snow Leopard discusses
    sharing digital media files.
    http://www.takecontrolbooks.com/snow-leopard-sharing?pt=INTERNAL

  • Make firefox default browser for all users without firefox checking for default browser

    Hi,
    we have 2 citrix servers in the same farm . We want to make firefox the default browser for all of our users.We also want to ignore the settings that they decide themselves influencing the default browser.<br />
    Now the citrix forum suggested that i made a gpo that edits the folowing register keys:
    HKCR\http\shell\open\command Change the value in the default key to firefox.exe location.<br />
    HKCR\http\shell\open\ddeexec Change the value in the default key to Firefox HKCR\https\shell\open\command Change the value in the default key to firefox.exe location.<br />
    HKCR\https\shell\open\ddeexec Change the value in the default key to Firefox
    so i did that , and all our links now open through firefox.<br />
    However we still get the question to make firefox our default browser while it already is defined as default browser since it opens links using firefox.
    the 2nd strange thing we encountered is when we open pdf's using firefox , firefox opens but the pdf's won't open untill we make firefox default browser using the provided popup window when we start firefox<br />
    i have googled this for days now without a proper answer . i even tried to run the "firefox.exe -silent -setDefaultBrowser" command to fix it on my personal profile without any luck.that's why i am relying on your answer

    Just in case, check this article for the missing information
    [[Setting Firefox as the default browser does not work - What to do]]

  • How to make Steam library available for all users

    Hello!
    Can someone tell me - how to make my Steam library available to ALL users of my iMac without sharing a password?
    Or any other program of my account?

    Hard drive level Users/Sharing - Do a Get Info on the folder (command - I) and set permissions to everyone read/write, then click the gear at the bottom - Apply to Enclosed Items.

  • How to set a shared calendar 'read only' for SOME users in ML server

    I am setting up Mountain Lion Server and wish to set up a series of calendars to be used by a studio of approx 20 people - two calendars will show the kind of thing I'm trying to achieve.
    Calendar A shows appointments and meetings - it can be viewd and edited by all
    Calendar B shows who is taking leave and when - it can be viewed by all, but edited by only a small group of people
    What is the best way to set this up? On The earlier version of the server we had set up calendars on the server and delegated - this is not possible on Mountain Lion Server.

    I don't think you can do this strictly by personalization since you need to use SPEL, unless the attribute you will be using for the display to control readonly is already present in the VO. Basically you need to check a value, say Supplier, and have another attribute say readOnly, tthat is set to TRUE if the supplier equals your desired supplier and FALSE for all other suppliers.
    Regards,
    LC

  • Conditionally (programmatically) make MessageCheckBox  Read Only for specific rows in a table

    Hi,
    I have a table (on a custom page) that includes MessageStyledText columns and a MessageCheckBox column, I would like to set the MessageCheckBox to Read Only if the value of the MessageStyledText column on the row is ‘XYZ’, could someone give me some pointers on how this can be achieved?
    Oracle EBS: 12.1.3
    JDEV: 10.1.3.3.0.3
    Kind Regards
    Carl

    Sorted it using SPEL (as per https://forums.oracle.com/message/1815932#1815932).

  • Read Only for all but creator of original file

    I need to accomplish the following:
     The goal is for us all to have access to read all the files associated with the audit. Only person posting the file should be able to modify it.
    Would this be:
    Everyone: Read/Write/Create
    Owner: Modify/Delete
    As right now they all can read/write/delete any document they would like.

    Ah, I see. I'll clarify: you're supposed to set these permissions on the topmost folder
    where your users are supposed to create files:
    This folder and subfolders:
    Everyone - Read and Execute, Create files
    Files only:
    Everyone - Read and Execute
    CREATOR OWNER - Modify
    The end result is that users can create files in that folder and all its subfolders - they cannot create folders, but they can read everything. Now, when a user creates a
    file in this folder structure, that user and that user only will automatically get Modify on that particular file (the CREATOR OWNER permission is translated to that user account in the ACL).
    An example:
    Let's say your topmost folder is D:\Data\Users. You apply the above permissions to
    this folder. Then, a user with the account name YOURDOMAIN\User1 comes along and creates the file "MyTasks.txt" in this folder. That file will then have the following permissions:
    Everyone - Read & Execute
    YOURDOMAIN\User1 - Modify
    As you can see, there is no need for any special groups. Try it out!

  • Read-Only cell for all users

    Hi,
    We're running an 11.1.1.2 Planning application.  A member in the Account dimension is read-only for all users including the Admin account.
    The member is read only when accessed through a Data Form or through Smart View.
    We addressing the Account dimension at level 0 on the data form.
    The member is not Dynamic.
    The member is only locked for EUR and GBP currencies.
    The member has previously been moved to a new location in the Account dimension however we have run multiple database refreshes since the move.
    Let me know if you need any more info.  Any help which can be provided would be greatly appreciated.
    Thanks
    Jim

    Hyperion Planning and More...: Why My Data Form is Still Read Only...!!!
    See if any of the points mentioned here is any help.
    Cheers..
    Rahul S.

  • Make field read only untill value within pciklist is choosen

    Hello,
    I am trying to establish if it is possible to make a field read-only until a value within a pick list is chosen. Basically we have a pick list called structure and if the field value called "Aligned" is selected then I want the text field called Aligned Name to be available for import all other times this field should not be available.
    Has anyone done anything similar? I'm guessing that this could only be achieved through WF but I haven't been able to find any code to make fields read only.

    For those of you unable to download the document from MetaLink3 here it is:
    As an example to illustrate this requirement, let’s say that once there is a checkbox field called "My_Check_Box". When this field is checked, the "Account Type" field need to become a required for entry by the user. To do this follow these steps:
    1. In the Admin> Application Customization, select the appropriate Object and go into the Object Field Setup.
    2. Edit the field called "My_Check_Box" and enter a Field Validation expression so it uses the following expression:
    =[<bMy_Check_Box_ITAG>] AND NOT([<AccountType>] IS NULL AND [<bMy_Check_Box_ITAG >]='Y')
    3. Enter an explicit error message.
    This expression means that when the checkbox field is checked, the Account Type becomes required. Your custom error message will be raised when checking the checkbox, leaving the account type unpopulated and trying to save the account record.
    4. Edit the Account Type field and enter the following expression as Field Validation:
    =[<AccountType>] AND NOT([<AccountType>] IS NULL AND [<bMy_Check_Box_ITAG >]='Y')
    5. Enter an explicit error message.
    That validation handles the user case where a user changes the Account Type value from a NOT NULL value to a NULL value. Your custom error message will be raised when emptying out the account type from a populated value to nothing while the checkbox is checked and trying to save the account record.
    Note that the expression in both fields validations begins with the field variable on which the statement is being written.**

  • Turn Off Touch Mode for all users

    Hello-
    I have a terminal services environment and i need to turn off touch mode in Acrobat Reader XI for all users. How can I accomplish this?
    TIA

    Thanks!
    For anyone else looking for this solution:
    Install Acrobat on your computer. Open the preferences, general tab and set touch wizard to your desired setting (for me it was never).
    Install the Adobe customization wizard(Free download. Just make sur eyou use the same version as the reader you are using).
    Launch the adobe customization wizard. FIle open package. Navigate to the install folder and select the .msi file
    Once you have the install open go to the registry section and from the local computer copy the HKCU>Software>Adobe>Acrobat Reader>11.0>Touch  key into the target computer's registry HKCU>Software>Adobe>Acrobat Reader>11.0 key with the Adobe customization wizard.
    Make any other customizations you want.
    Save the package.
    Now anytime you install from that package all users will get the touch wizard default setting that you set.

Maybe you are looking for

  • FCP 7 Crashing on start up after Mavericks update.

    FCP 7 Crashing on start up after Mavericks update.   I've seemingly tried everything (trashing prefs, trashing plug-ins, OS updates, FCP re-install)  Any advise on next steps? Many thanks, sean schiavolin Running Mac Pro 12 core Intel Xeon

  • Flash CS5.5 failed install on Mac OSX 10.7.3

    Trying to install CS5.5 master suite on Mac lion 10.7.3, all other programmes have installed perfectly; apart from Flash: I am getting errors: Exit Code: 6 -------------------------------------- Summary -------------------------------------- - 0 fata

  • LR2 64-bit slower than 32-bit (Mac)

    I ran a test a while back with Lightroom 1.3.1, generating 1:1 previews on a test directory of images: http://www.rassoc.com/gregr/weblog/2008/02/24/mac-pro-performance/ On a Mac pro 2.8 GHz 8-core machine with 12GB of RAM, I found I could generate 2

  • OS 9 Classic won't start

    I'm trying to use Hypercard on OS 10.3.9 slot loading iMacs but Classic OS 9 won't start. All indications are that Classic is starting but the progress bar stalls near the end. There are 7 machines in my lab of 27 having this problem. All of the mach

  • I can not install adobe

    I can not install adobe on my new windows 7 computer, it says updated version already there, but it is not, I can't play games, it says install adobe.