Define read-only authorization for specific field(s) on a form for 11.5.9

Dear all,
Can you pls let me know how is it possible to define read-only authorization access for specific field(s) per responsibility / user on a form in 11.5.9?
For example I want to protect the item master file by assigning for example to users with responsibility buyer authorization to modify the buyer information but to have read-only only authorization on other sensitive fields such as make/buy flag, expense accounts, etc
Through UI Modeller I have only managed to make specific fields on specific forms invisible, or whole tabs invisible, to specific responsibilities but this does not cover my needs as I want them to be able to view the data of the fields but to not be able to update them

Arun,
Almost but not quite.. The example you've given has the person VO at the top level which includes all the id's (City, State etc). My use case is slightly different.
query 1
     select org_id, OrgName from x;
query 2
     select emp_id, emp_name from y where org_id = x.org_id
query 3
     multi-table join (approx 9 tables) to retrieve depts associated to employee
     where org_id = x.org_id
     and emp_id = y.emp_id
Rather than using LOV's would it be better to create VO's and pass in the bind parameters at run time?

Similar Messages

  • Query regarding the fields details in particular form for all the users in

    Dear All,
                  I have one query regarding the fields details in particular form for all the users in company.
    Let take an exapmle if i had created Purchase Order having fields in content tab as 1.Item No. 2.Quantity 3.Unit Proce   4.Total   5. Location.
    While Login in User manager i set these fields only for Purchase order , but when i login from other user and open the similar purchase order the defaults fields are also seen including  above 4 fieds .
    Now my question is how to set the User choice fiels for the particular form that are common to all users.
    Means whenever i login in any user and opens the same document the same fields should be seen....Thanksssss.........

    You have to login with each and every user and do the Form Settings of every forms, so that all the forms look same for all the users.
    This is a manual job and you have do do it with every user login.
    Alternately, you can try out this link that explains
    [How to Copy One Screen Layout to Another User|http://www.sbonotes.com/2008/03/how-to-copy-one-screen-layout-to.html]

  • Is there a way to make default keyboard languages for specific contacts... Like for my mum in Spanish and for my buddies in English?

    Is there a way to make default keyboard languages for specific contacts... Like for my mum whom I send messages in Spanish to and for my buddies who speak English.

    I think you cannot set default value with something that is not on the list.
    try to do it differently, leave the 3 option and set the default value to New.
    then, edit the "newform.aspx" and hide the field, with jQuery
    jQuery(document).ready(function($) {
    $("select[title='fieldName']").closest("tr").hide();
    then, edit the "editform.aspx" and remove the "New" option from the drop down with javascript
    jQuery(document).ready(function($) {
    $("select[title='fieldName'] option[value='New']").remove();
    hmmm welcome to SharePoint :)

  • Problem with matchcode in alv for specific field

    Hi,
    I have created a customer specific data element ZE_CONFTYPE, with a customer specific domain, and in this domain I have defined a value range with 3 possible single values (partial, final, automatic).
    Later, I have defined a field: CTYPE type ZE_CONFTYPE, and I'm showing this field in an ALV.
        it_fieldcatalog-fieldname = 'CTYPE'.
        it_fieldcatalog-seltext_m = 'Confirmation Type'.
        it_fieldcatalog-col_pos   = 4.
        it_fieldcatalog-edit = 'X'.
        APPEND it_fieldcatalog.
        CLEAR it_fieldcatalog.
    Now I was hoping that a matchcode was going to show up in the ALV with the 3 possible values for this field, but apparently I was wrong. What should I do for this matchcode to show up?
    THX!

    Then you may need to use
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program       = repid
                i_callback_user_command  = 'CALLBACK_FOR_DETAIL'
                is_layout                = is_layout
                it_fieldcat              = ct_fieldcat
           tables
                t_outtab                 = g_itab.
    You need to write code in "callback_for_detail" with fm F4IF_INT_TABLE_VALUE_REQUEST
    or
    Create a structure with the field you mentioned and give structure name as ref_table and field name as ref_fieldname

  • Read-Only Access to Specific SAP tables

    Is it possible to grant a user read-only access to a specific table or tables?
    For example, say I wanted to give someone SE16N capability for just EKKO/EKPO/EKBE and NO OTHER tables.  Is this possible?  How?
    Thanks.

    Hi,
    as it was mentioned the transaction SE16N checks for authorization object S_TABU_DIS. The problem in your case is that the tables EKKO, EKPO and EKBE are already assigned to the authorization group MA - MM Appl. table. But there are many more tables assigned to this group. Changing assignment of standard tables is not a good idea.
    Cheers

  • "The selected cells are read-only" error on Custom Field when trying to insert in Datasheet mode

    I have a custom field that works completely fine. Yesterday our QA team found out that when trying to insert in Datasheet format, the error "The selected cells are read-only" was thrown. Any ideas? I tried passing the following property to my fldtypes_field.xml file:
        <Field Name="ReadOnly">FALSE</Field>
    No luck.Victor Palma

    Unfortunately it did not work. I also developed the code and access the field and checked its property called "ReadOnlyField"  which is already set to false.
    Below is the xml that i am using. Can you please share the xml that you had used?
    <?xml version="1.0" encoding="utf-8"?>
    <FieldTypes>
      <FieldType>
        <Field Name="TypeName">MyCustomField</Field>
        <Field Name="ParentType">Text</Field>
        <Field Name="TypeDisplayName"> My Custom Field</Field>
        <Field Name="TypeShortDescription"> My Custom Field</Field>
        <Field Name="AllowBaseTypeRendering">True</Field>
        <Field Name="ReadOnlyField">False</Field>
        <Field Name="UserCreatable">TRUE</Field>
        <Field Name="ShowInListCreate">TRUE</Field>
        <Field Name="ShowInSurveyCreate">TRUE</Field>
        <Field Name="ShowInDocumentLibraryCreate">TRUE</Field>
        <Field Name="ShowInColumnTemplateCreate">TRUE</Field>
        <Field Name="FieldTypeClass">My Assembly Information goes here</Field>
      </FieldType>
    </FieldTypes>

  • How to keep the field value in the forms for one week

    I have an application that when the user logs on to it , it shows all the documents that are in the current dept.
    the form has the following fields:
    document no
    sent date
    assigned to
    dep_LOV
    and a check box
    if a user clicks the check box and assignes the document to another dept by cliking the LOv then the assigned to field should be populated with the new value and the sent date should be today's date(sysdate). the requirment is that once the user assignes the documnet to certain depts (for example sales dept) the assigned to field and the sent date should show up in the form for one week and the user should be able to see that data in the form the next time she /he logs onto the application. the one week time is to make sure the documcnt has reached the assigned dept. after one week from today's date the updated assigned_to field and the document no should not display on the form. During the one week if the user logs on to the form again that particular document and the assigned to and sent to fields shoould be grayed out and shhould not be updatable. I will greatly appreciate any suggetion as of what to do to solve this problem. it is urgent. Pleade help

    -> so you are saying that I should have a block level post_query trigger and put the where clause in it?
    No. Post-query trigger runs AFTER the query has been executed, and it runs once for each row fetched. It is for other purposes, NOT for setting a where clause.
    -> Plus i want to be able to gray out the field once populated with the sales dept.I have come up with the following code:
    Your Set_item_instance_property is almost correct. And THAT line would go into the Post-Query trigger. This is what you might use:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy"> Set_item_instance_property ('docs.assigned_to',:system.trigger_record, Enabled,Property_False);</font></pre>
    Please watch your use of underscore, dashes, commas and parentheses: _ - , ( )
    The way to set your default where clause would be the following, and you should do it in the key-exeqry trigger, or someplace similar:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy"> set_block_property('DOCS', default_where,
    'NVL(sent_date,sysdate) >= sysdate-7' );
    Go_block('DOCS');
    Execute_Query;</font></pre>
    I used the NVL function so your select will show rows where sent_date is null OR sent_date has a value that is within 7 days prior to the current date.
    What is the field :docs.assigned_to used for? If you want to include ONLY rows that are assigned to a particular person, then your where clause might be:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy"> 'assigned_to = :ctrl.assigned_to and NVL(sent_date,sysdate) >= sysdate-7' </font></pre>
    and you should have a control block with the assigned_to field in it, where the user can enter a value before querying the DOCS block.

  • Can't select CMYK text colour for text fields in Acrobat Pro forms?

    I have designed a business card template in Indesign, and now want to use Acrobat Pro to add in text fields so that a client can edit the contact details on the cards in future.
    I need to select a specific text colour for the fields, so that it matches the rest of the design. The cards will obviously need to be printed and the document has been set up in CMYK, but when I enter the CMYK colour breakdown in the Properties > Text Colour panel, it won't apply the colour to that field. The text either stays at the default black, or reverts to RGB - which isn't suitable for printing and doesn't match the colour I need.
    Can anybody PLEASE shed some light on this? Other similar posts have either not been answered or people have suggested JavaScript..? I have no idea what I'm supposed to do with a JS code..? Surely there's an easier explanation?
    Thanks in advance.

    This is for a text field that you create in Acrobat, whether the form is used offline or online. The script is a custom Format script, which you can place by bringing up the Properties dialog for the field, select the Format tab, set a format category of Custom, and you should see where you can enter the script. Change the string "Instructional text goes here" to the text you want to display when the field is blank.

  • Gaps appear in IE 6 browser window for hidden fields in Create User form

    Hi,
    I need an urgent input on this one.
    I hid an OIM default attribute for users in the 'Create User' form by modifying clear_all_fields.js
    The field is hidden from the 'Create User' page fine!
    But if I open the page from Internet Explorer 6 it shows a gap in the place of the hidden field.
    For Mozilla 3.0.5 the gaps are not appearing.
    I tried removing these gaps by deleting the tags and the field in the clear_all_fields.js
    or, by reducing the dimension of the spacer.gif in GenerateCreateUserForm.jsp.
    But it reflected no change in the form look n feel.
    The requirement is to hide the fields and not remove them.
    Any suggestion as to what may be the way out?

    Thanks for the update Leonard. This would be an extremely useful plugin. I've been looking for it on http://labs.adobe.com/technologies/ under the plug-ins tab but have been unable to find it. It wasn't even there in the Pre-Release Programs. Is it located somewhere else or with a different name? Please let me know.
    Meanwhile, I've been trying to write my own VB script to get the button clicked. Here's what I've come up till now-
    FindText
    HiliteList.Add->CreateWordHilite->SetTextSelect->GetBoundingRect->PointToDevice
    The last function seems to be deprecated. Also there's nothing to connect the text highlighted by findtext with HiLiteList.Add. I guess
    I may have to use the JSO word search method.
    Any advice, as always, would be much appreciated.

  • Monitoring a mailbox for specific fields

    Is it possible with PowerShell to monitor a mailbox in Outlook 2010 and if an email comes in with specific content (i.e. subject, sender, body), take those fields as variables and do something with them? The maibox would have to be monitored in real-time
    so they're picked up as and when the emails come in and not periodically. I was planning on creating a SQL query with the variables but that's something I'm only just getting into and this'll be a long term project for me, not a quick script.
    Thanks in advance.

    Hi AJ Mellor,
    If you want filter emails in outlook with powershell, please refer to the script below:
    $olFolderInbox = 6
    $outlook = new-object -com outlook.application
    $ns = $outlook.GetNameSpace("MAPI")
    $inbox = $ns.GetDefaultFolder($olFolderInbox)
    $targetfolder = $inbox.Folders | where-object { $_.name -eq "subfolder name"}
    $email = $targetfolder.items |Where {($_.SenderName -eq "sender name") -and ($_.subject -eq "all subject")}
    if($email){
    #do SQL query
    To monitor in real-time, you can schedule the script above in task scheduler:
    Weekend
    Scripter: Use the Windows Task Scheduler to Run a Windows PowerShell Script
    I hope this helps.

  • Plant specific fields in the material master for product move

    Hi, SAP gurus,
    My scenario is we are moving a existing product in US plant to Brazil plant. What are the fields in the material master that are specific to a plant that will change. For ex MRP controller will change from plant to plant. Like that can anybody please provide me a list of fields that i need to be looking at?
    Thank you
    Anusha

    Hi Anusha,
    First of all, list down all your materials those you want to extend to new plant.
    a) Secondly, pay attention to those fields you will find "filled" in those materials at plant level.
    b) MARC comes handy for you to analyse which fields are at plant level.
    Intersection of fields with values between a and b are the ones you need to work out.
    Good luck,
    Regards

  • If I install my ebook (created with ibooks author) into an ipad, it can be distribut to other iPads or it will available to read only at this specific iPad?

    I wrote my ebook (using ibooks author) and now I intending to install it into an ipad and turn it readable only at that machine.
    So, what can I do to restrict distribution and avoid it can be readable into other ipads?
    Thanks for helping...

    A user with your ibook (not from the store) can share that book via email, as an example, thumb drive, server, etc., without restriction.
    The only way to prohibit restribution in that example is to not put it out there.

  • Reset button for specific field

    I am using LCD 8.0
    I have create a form with an image field object so when a user clicks to be available to insert a photo.
    How I can create a button with a script, so a user can reset ONLY the image field if by mistake have insert the wrong photo!
    Thanks

    please tell me if you find this answer, im having the same problem.
    i will do the same if I find out.
    thanks
    [email protected]
    Alex.

  • PCI 6036E/SC 2075, can read only from ch 2,what are the ports used for ch 1 and ch 2

    in VB, using measurement studio. I am using CWAI. how to specify which channel to read from. right now, it is reading from ch 2 without me specifying it. thanks

    Benje001,
    Right-click on the CWAI control on your form. Choose Properties. The first tab is the Channels tab. After you choose your device from the drop down box on the right, you can type in the Channels box which channel you want to use.
    If you want to see a CWAI control that is already configured, all of the shipping examples will have this already done.
    Also, if you have questions about any item on the CWAI (or any other NI ActiveX control) you can click the ? icon in the right corner of the properties page and then click on the item in the dialog that you need help with. This "What's this" help will describe that particular control on the dialog.
    Hope that helps!
    Regards,
    Shannon R.
    Applications Engineer
    National Instruments

  • Blanket Fill in for same field on multiple page form?

    I have a form that is many pages long and it has certain fields that appear on each page... (ie Name, address etc)
    Anyone know of a way for the user to fill in the field on page 1 and the other fields will automatically populate on the other pages in the form?

    In version 5 (which is what I use and currently don't intend to upgrade) you have to write a script that locates the duplicated fields and then sets their value.
    Essentially, you obtain the number of times it is repeated from the underlying form object and use that to do a loop, using the loop index to reference each occurance. You can also go through the complete collection of objects and when one with the same name is found, you would set its value. The first method is more efficient. In version 5, at least, you do have to recognize when the loop is referencing the source field and not update it or weird things would happen.

Maybe you are looking for

  • ERROR: Running OA page using Jdeveloper.

    Hi, We have extened one ABCVO.xml object related one page. Now i want to run the page from jdeveloper i am getting an error saying XXABCVO.xml of type defination is not found . Is there any extra setup i have to do reflect the extended changes to be

  • Dunning error in case of customer creation

    Hi, While Creating of a new customer under this sales org - We got the error about Dunning not being set up . What could be the missing setting in this case?

  • G3 Modem and ATA Controller Card

    I am upgrading a B&W G3 350 MHz Yosemite running Tiger for some friends. They use dial-up (pooh) and the B&W did not ship with an internal modem. I found an Apple OEM on welovemacs.com for $60 ($10 more than the Apple USB). I am not sure which route

  • FCE crashes when export using Quick Time

    Hi All, When I select "Export - Using Quick Time Conversion", FCE crashes. I tried to repair permissions and rebooted but it did not help. Export using QT was working fine last week. I did some maintenance checks with Onyx over the weekend. Could it

  • Cs3 windows install

    When I go to install the premier pro disc it says to insert the disc in the "C" drive??? Help.