Form Personalization at user level

Hi,
I'm new to form prsonnalization and dont have much knoweldge on this.
Can any one help me in personalization of a form where a single field in a form needs be edited or changed by single user only and for the rest it should be in read only mode.
And i got to do this without using "custom.pll"
Thanks in advance.
B/R,
Venkat.

You also try with following setting with same condition .
Event : WHEN-VALIDATE-RECORD
Object :  PO_LINES

Similar Messages

  • Make all the forms at a user level or responsibility level to be read only

    Hi,
    Please suggest me to make all the forms at a user level or responsibility level to be read only. So that when a particular user logs in, he gets all the form in read only mode or at a particular responsibility all the forms are read only so that we can attach this responsibility to the user for the same purpose.
    Any ideas will be highly appreciated.

    check this blog,
    http://www.oracleappshub.com/11i/oracleapps-responsibility-vs-sap-functions/
    Re: How to change OM responsibility as read-only in oracle applications 11i
    read only responsibility-user

  • How can we do personalization at User Level

    Hi ,
    I have extended a controller .
    and I have to replace the seeded controller to extended controller using personalization at User Level.
    Can any one suggest how can we do personalization at user level.
    Regards,
    Krishna.

    Hi,
    If you have extended controller then why don't you use profile option for restricting at user level.
    In controller use as following :
    processRequest(...)
    super.processRequest(...);
    String userProfile = pageContect.getProfile("Profile option name");
    if(null!= userProfile && !"".equalsIgnoreCase(userProfile.trim()) && "userRestriction".equals(userProfile.trim()))
    //do your changes
    follow same in processFormRequest as well.
    Once it is done...replace you controller at site level. It will only work for the users for whom the profile option is set.
    Regards,
    Mukesh Uchaniya

  • Can we do personalization at user level under iprocurement

    Hi,
    Using the personalization i have enabled the exchang rate and exchange date for Non-catalog request items in iProcurement since, we are facing exchang rate issue.
    i have enabled the personalization at responsibility level so all users are viewing the personalize fields. Now i want to restrict the personalize fields at the user levle. Is there any way i can do the personalization at the user levles?
    Note: we are using the 11.5.10.2 version.
    Please let me know..
    Regards,
    Kevin.

    Hi,
    There's another way apart from personalizations.
    Hi Suppose you have two fields say A and B and two users David and Henry.
    You want David should see both the fields and Henry shoudn't...
    Then in that case in the controller of the page in process request you cvan capture the Username from profile option
    String user = (String)pageContext.getUserName();
    if("David".equals(user))
    field A .setRendered(true);
    field B .setRendered(true);
    else if("Henry".equals(user))
    field A .setRendered(false);
    field B .setRendered(false);
    You can proceed this way....
    Thanks,
    Gaurav

  • Remove Personalization at User Level - Saved Searches

    All,
    There is a problem in the Saved Searches. We are on 11.5.10. The page immeditely throws error when a custom view is created using "Save Search" button.
    It says,
    ## Detail 0 ##
    java.lang.NullPointerException
    at oracle.apps.fnd.framework.webui.OADataBoundValueCustomization.getValue (OADataBoundValueCustomization.java:191)
    I am not able to revert this view created through save search. I tried by setting the Disable Self-Service Personal to Yes at that user level where i created the view and bounced apache. But the error still exists.
    Is there any means like by "Functional Administrator" responsibility where these views can be removed?
    Thanks,
    Padmaja

    Pl see if a similar issue reported in MOS Doc 859190.1 (Personal Worklist Returns NullPointerException When 'Disable Self - Service Personal' Is Set To Yes) can help
    HTH
    Srini

  • How can we disable Block Level Trigge using Form Personalization

    Hi,
    I want to disable block level trigger(WHEN-NEW-RECORD-INSTANCE) using forms personalization at responsibility level.
    Can any one please give me the answer.
    it's urgent
    Thanks and Regards,
    Dhana

    No, Firefox is user choice rules over the "wants" of individual websites as far as disabling contextual menus and the keyboard commands.
    Placing a transparent image over the image will keep the less technical user from saving the main image. If they do try to save it all they'll get is the transparent image overlay.

  • Form Personalization on PO Header

    Hi,
    Could you let me know how to implement below functionality using form personalization.
    User Logs in PO Responsibility => Query PO (If this PO has value in Attribute10)
    => In this case, I have to make sure the User can't update the PO.
    User Logs in PO Responsibility => Query PO (If this PO has no value in Attribute10)
    => In this case, I have to make sure the User can update the PO.
    Thanks

    Have you reviewed the following docs?
    Information About the Oracle Applications Form Personalization Feature in 11i (Doc ID 279034.1)
    Form Personalizations in Oracle E-Business Suite (Release 12) (Doc ID 395117.1)
    How To Do Forms Personalization (Doc ID 468657.1)
    Thanks,
    Hussein

  • Avoid forms personalization/trigger during record update

    Hi all,
    I am trying to use forms personalization restrict users not to duplicate invoice numbers for a given supplier in Oracle Payables(Oracle Apps
    R 12.1.3).
    Here are my details,
    Trigger Event: WHEN-VALIDATE-RECORD
    Trigger Object: INV_SUM_FOLDER
    Condition: 0<(SELECT count(*) FROM ap_invoices_all WHERE invoice_num =:INV_SUM_FOLDER.INVOICE_NUM AND vendor_id = :INV_SUM_FOLDER.VENDOR_ID) AND :SYSTEM.RECORD_STATUS='INSERT'
    Processing Mode: Not in Enter-Query Mode
    Actions:
    Type: Message
    Message Type: Error
    Message Text: Duplicate Invoice Number
    This trigger shoud only for new record inserts so, I have used the condition, *:system.record_status = 'INSERT'* but this trigger is still firing during update of existing invoices, say when i wanna change terms for the AP invoice.
    I couldnt figure out where the error is, if anyone has any idea, please help.
    Thanks.
    Edited by: Kwin on Oct 10, 2012 9:12 AM
    Edited by: Kwin on Oct 10, 2012 9:21 AM

    You can have one more condition like
    0<(SELECT count(*) FROM ap_invoices_all WHERE invoice_num =:INV_SUM_FOLDER.INVOICE_NUM AND vendor_id = :INV_SUM_FOLDER.VENDOR_ID) AND :SYSTEM.RECORD_STATUS='INSERT'
    AND
    :INV_SUM_FOLDER.INVOICE_ID is null
    because Invoice Id will be not not null for existing Invocies and for new invoices , it will be null.
    Thanks
    Pradeep

  • PO form personalization at level to prompt user to pass the project

    Hi guys,
    I have a requirement to personalize the purchase order form 
    Form Personalization at the “Form” level.
    Trigger Event as “WHEN-VALIDATE-RECORD”
    Set Trigger Object as “PO_DISTRIBUTIONS”
    Set Condition as
    :PO_DISTRIBUTIONS.PROJECT is null and xxgdc_project_validation_pkg.is_expense_type_account(:PO_DISTRIBUTIONS.CODE_COMBINATION_ID) = 'Y' and xxgdc_project_validation_pkg.is_cost_center_project_reqd (:PO_DISTRIBUTIONS.CODE_COMBINATION_ID) = 'Y'
    Set Action as Message of Type “Error”
    Set Message as
    = SELECT fnd_message.get_string('XXGDC','XXGDC_PROJECT_REQUIRED') FROM dual.
    The above personalization is working at distribution level.
    But when moved the same logic to line level its is not working. Could any of the guys help me

    You also try with following setting with same condition .
    Event : WHEN-VALIDATE-RECORD
    Object :  PO_LINES

  • How can we provide 2 URLs in the HR personalization form, so that users can

    We are not able to open the PDF report from the external node which is placed under the OA_HTML. Nvaigation is Employee Self Service for US -> Update or Add Direct Deposit Account
    Internal urll ----"http://tech.com:8000/OA_HTML/TTEC_Benefits_Docs/Branded/DebitCrdholderBrochureSignature.pdf"
    However, the external users from internet need to access the pdf document and this fails for them because they have no access to above URL from public internet. They need to get to above pdf document for e.g. as:
    "https://publicerptech.com:443/OA_HTML/TTEC_Benefits_Docs/Branded/DebitCrdholderBrochureSignature.pdf"
    How can we provide 2 URLs in the HR personalization form, so that users can access the pdf document?

    Hello David,
    Sorry for not getting back to you sooner. You can provide feedback on Transport agents by using this site:
    http://officespdev.uservoice.com/.
    With regards,
    Michael | Microsoft Exchange Developer Content
    The
    Exchange Development Forum Guide has useful information for using the Exchange Development Forum.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to hide the columns at the end user level thru personalization

    Hi all
    how I can hide the columns that are displayed on the portal. Any personalize option for the end user? Any righ click or some thing?
    I am looking at hiding columns not while developing the iViews / Pages, But in the browsers as the end user.
    i can hide the columns what ever i want while creating the iViews for MDM data. but we cant provide the content administrator role to the end user for hiding the columns what ever they want. they want to hide the columns thru pesonalization option at the end user level.
    Can you please let me know whether we can able to hide the columns at the end user level thru personalization ?? is it posible with standard iViews??
    Regards
    Sunil

    Hi Sunil,
    I understood your requirement properly and seems valid and I tried this at my end but i didnt get the solution. Field list is not visible in Personalize option. I dont think it is possible with MDM standard iViews.
    I was thinking an alternative is if some how we manage to give the permissions to end user only on Result Set iView but if it would be possible it will not be a good design.
    Lets wait for some inputs from others.
    Regards,
    Jitesh Talreja

  • Converting user level personalizations to site level personalizations

    Hi All,
    My Requirement is as follows:
    In one search page i have created one view to save my search by providing view name.
    Now if i login from different user i am not able to see that view name in the drop down which i have created from different login.
    i intend to see that view for all users even if create from single login.
    i know that save search is user level personalization, but i want to get the same at site level.
    but while creating there is option like site level or responsibility level.
    Any help would be greatly appreciated.
    Thanks in Advance.
    Regards,
    Naren.

    Hi Reetesh,
    find the below steps.
    let me know if you need any clarity.
    Create, Duplicate, Update or Delete an "admin-seeded user-level" personalization :-
    ==================================================
    Select the Personalize pen icon to launch a focused version of the Page Hierarchy Personalization page for a selected boxed region.
    Use the Hierarchy Page HGrid to identify the query region for which you wish to create an "admin-seeded user-level" personalization. (You can create seeded user-level personalizations only for a table or a HGrid in a query region.)
    Select the Seeded User Views icon to launch the Personalize Views page where you can create, update, duplicate or delete "Admin-seeded user level" personalizations.
    When you create, duplicate or update a seeded view, you navigate to the respective Create/Duplicate/Update Views page. Select Apply to save your changes when you are done.
    Regards,
    Naren.

  • User level personalization not available

    Hi All,
    I went to one of our OA pages and clicked Personalize page. I m trying to personalize an item at user level. I see only Site, Function, Organization and Responsibility and can't see user level .
    Please let me know what needs to be done to enable the user level personalization for that page/item.

    User Personalization specifies whether the user can personalize a item. This property is relevant only in the case of user-defined views. Items that have the User Personalization property set to true only can be personalized by the user in the Create/Update Views page.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Restriction of values in a field to user using form personalization

    Hi,
    i need to the restrict the query results on a form based on specific user using personalization feature only.
    at present on querying , form displays 10 records. for this particular user, i need to restrict him to view only
    the one record on form.
    please provide me a possible approach , how it can be acheived thru form personalization.
    thanks
    enthu

    Hi,
    Not sure if this can be achieved. However, you may review the forms personalization documents and see if it helps.
    Forms Personalization Document
    Re: Forms Personalization Document
    Regards,
    Hussein

  • Single registeration form to capture different user levels

    Hi there,
    I am currently working on a business catalyst website project and I have a trouble defining different user levels on single registeration form. Here is the detail of what I am looking for.
    I have a registeration form on the site and we have two types of users, one is student and the other is professor. My client wants to just keep one form with tick boxes at bottom of the form i.e Create my account as a Student & Create my account as a Professor. So clicking on any one will process the registeration for the selected user level. (If I select Create my account as a Student, the form should register me as a Student or wise versa)
    I am not sure if business catalyst offers this feature or any possiblity to achieve it. Could anyone pls give me some help on this?
    Thank you in Advance,
    Anand

    Yes , the T-Codes give same results in diff. users when they were being executed seperately.
    When I am executing all those using my program the following things happen
    1-  Those tcode working fine and producing same result as if they were being run independeltly in my user-id.
    2-  The productiong order is getting locked in CO02 and variance are also getting calculated in my user-id.
    3- When  I am running same program in other user-id, I am always getting formatting erros for T-code KGI2 for the fileds
      CODIA-AUFNR and RAKUF-FROM.
    4- I have used  ALFA routine  to convert AUFNR as its being used in that KGI2 screen in similar way.
    5- I have used NUMC format for FROM and condense its value before passing in to KGI2 screen.
    6- While executing BDC  I am passing following options.
      wa_opt-dismode = 'N'.
      wa_opt-updmode = 'A'.
      wa_opt-cattmode = ' '.
      wa_opt-defsize =  ' '.
      wa_opt-racommit = ' '.
    I have tried several combinations for these options, but didnt work.
    SOS.

Maybe you are looking for

  • @@SPID global variable

    I want to simulate the functionality of some MSS global variable in PL/SQL. I know that @@SPID may based on the v$session. I can just list all current users id and don't know how to get the id of my current user. How can @@SPID, @@SERVERNAME and @@ID

  • Nokia 8600 luna text-to-speech

    Hi all i am new to this forum, what i would like to know does the 8600 support the text to speech, and can i use the e-mail feature on pay as you go with o2

  • How to Key in Exact Number on FADER in the mixer??

    Hi, I'm wondering that how to key in the exact number on the Fader in the mixer??for example i can key in the number when i double click on the PAN,but it's not work when i double click on the Fader to key in the number... Thanks Ray

  • Huge speed drop and connection problem when answer...

    About 2 days ago my internet speed dropped hugely and it's almost now unuseable.  I've run a speed test and the results are below. Any idea on what to do to get this resolved? Also, every time I answer a call or disconnect a call the broadband connec

  • How to get unread message count

    I m working in mail application where i need to get the unread message count.Can anyone help me out in solving this issue ,is there any specific method available in javamail to get this count. Thanx in Advance