Help In Forms Personalization

Hi all,
I have a requirement to get the last four characters in a text field using forms personalization.
How to get it.
Note: Its a query only form.
I have tried using format mask option but it never worked.
For ex: if a value is 1111111 in need to show it has ###1111.
Thanks for the help.
Regards
Rajesh

First of all, I assume you explored CONCEAL_DATA and discarded it because it hides all characters - not just first few.
So can't think of an easy way to do it.
The problem is that the query is brining value 123456 and to change it, you must make it **3456. As soon as you change the database field, Oracle will think you are changing the record. But since it is a query only form, you may have a problem.
Here is a possible solution
1) A lot of Oracle's seeded forms have display fields that are mirror fields. The display fields itself is not a database field. So you might be able to change it. The display fields typically have a suffix of MIR.  See if you get lucky and change it without makign system.recordStatus = changed
If not , here is a different route
1) Typically Oracle's forms are based on a query from a view. Change the select clause of the view to bring **3456 instead of 123456. Make sure that the view is not used anywhere but in this form. Otherwise there will be trouble. Use this as your last option.
Another way would be to customize the form and modify the select clause or use a custom view.
Hope this helps
Sandeep Gandhi
Independent Consultant
513-325-9026

Similar Messages

  • Is it possible to customize dff's with the help of form personalization?

    Is it possible to customize dff's with the help of form personalization.
    I have added few dffs in a form which users want to be customized according tho their choices.
    Can any one help me in this.

    Pl see MOS Doc 420518.1 - section 10

  • Need Help on Forms Personalization

    Hi All,
    I am doing personalization on Sales Order Form.When i select Order Type as 'Mixed' i have to display salesperson as "No Sales Credit" in the form.But when i click on lov of salesperson field it is giving list of values. But i need only one item in the list i.e "No Sales Credit" when i select order type as 'MIXED'.For this i am trying to restrict lov of salesperson through Create Record Group from Query Built-in.But where can i put condition as Order Type as 'Mixed' in that personalization.
    Can anyone please help me out.
    Is there any posssible way to do this.
    Thanks in advance,
    Dhanasurya

    Hi DhanaSurya,
    First, you need to put 'Order Type' as Mixed in the Query Where clause of 'Create Record group from Query', and then you need to atatch a new Record group to the LOV with property:
    Object Type: LOV
    Target Object: <OLD LOV ON FORM>
    Property name: GROUP_NAME
    Value: 'customized Record Group Name'.
    Regards,
    Kiran

  • Very Urgent help in Forms Personalization/Custom.pll for Dff

    Hello everyone,
    I want to enable the existing DFF segment i.e. Attribute12 when schedule_ship_date get changed. Means if schedule_ship_date changes then I want to store it in DFF segment.
    Please can you tell me the steps how i can enable the DFF segment in Oracle forms or how i can do it mandatory if date changes. I am using 11.5.10.2 Oracle Apps version.
    Thanks

    I suggest you to create an event Alert instead of a database trigger; this is the best practice.
    For more details, lpease let me know.

  • Plz!!!! Its urgent regarding Form personalization

    Hi all ....
    How to modify the query in existing Lov using Form Personalization in Oracle R12.
    Plz Provide the steps to accomplish this task.
    Actually i want to add more column value in lov window. Plz

    Duplicate thread (please post only once).
    Help me Form Personalization in Oracle apps R12 - its urgent!!!!!!!
    Help me Form Personalization in Oracle apps R12 - its urgent!!!!!!!
    Please update your other thread instead of creating duplicate threads across the forums.
    Thanks!

  • 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

  • Purchase Order Form Personalization Help

    I am new to form personalizations and I am trying to create a personalization that will automatically display the "last price paid" in the Price field in a Purchase Order form for an Item once the Item No. is entered. Also once the data is pulled up, they need to be able to edit the 'Price' field to enter the current price.
    I am not sure how to setup my form personalization using the SQL view to I have that contains the "last price paid" data. I would really appreciate some help on how to do this in personalizations.
    Thanks
    KG

    Forms Personalization is a feature of the Oracle Enterprise Business Suite (EBS) not a feature of Oracle Forms. Please post your question in the General EBS Discussion forum. If you have a general Forms question, by all means, ask it here! ;-)
    Craig...

  • User level form personalization help needed

    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.

    Hello,
    This is the standalone Forms forum. Ask your personalization questions on, the E-Business Suite forum.
    Francois

  • Forms Personalization Issues / Urgent help

    Hello Oracle Gurus,
    I have an issue while customizing the Customer Standard Form in Oracle Applications using Forms Personalization.
    Issue descritption:
    1) In Customer Standard Form (ARXCUDCI), at Bill-to Site level i need to disable the buttons NEW and OPEN for a custom responsibility.
    I have written code in Trigger Event "WHEN-NEW-FORM-INSTANCE" and in actions i mentioned as
    1. Property - Object Type as Item
    Target Object as CTRL.ADDR_SU_NEW
    Property Name as Enabled
    Value as False
    2. Property - Object Type as Item
    Target Object as CTRL.ADDR_SU_OPEN
    Property Name as Enabled
    Value as False
    When i check, it is working for the NEW button (i.e. NEW button getting disabled) but the same is not working for OPEN button.
    Am i missing any thing else.........Any suggestions are highly appreciated.
    Thanks & Regards,
    Lakshmi Kalyan Vara Prasad.

    I would guess that the problem with the Open button is that there is existing standard code within the form that runs after the WHEN-NEW-FORMS-INSTANCE trigger that enables/disables the Open button based on some other condition.
    Apart from opening up the form in Forms Builder and working through the code to work out what standard code is doing this (which can be an extremely painful process), I would suggest that you try moving your personalisation to a later event, such as WHEN-NEW-BLOCK-INSTANCE.

  • Please I Need Forms Personalization Help Reg AP invoice entry

    Hi All,
    I am new to form personalization,
    my client wants do a form personalization for ap invoice entry form ,in that i need to check duplicate invoices and put those invoices into hold
    I got a API which puts invoices in hold : ap_holds_pkg.insert_single_hold
    and i have done a procedure with that API ,the procedure contains the conditions like checking the duplication and API
    which i defined above
    My doubts are what is the trigger event i have to take
    is there any apps initialization required in a procedure
    Thanks
    SABR

    This forum is for general Oracle Forms questions. Forms Personalization is a feature of the Oracle Enterprise Business Suite (EBS). Please post your question in the General EBS Discussion forum. If you have a general Forms question, by all means, ask it here! ;-)
    Craig...

  • Form Personalization is not working for copied Sales Orders

    Hi All,
    We have a requirement in Sales Order form, if the order type is "Standard" then Ship method field should be mandatory.
    We were able to do this using below form personalization, it is working for new order creation.
    When we did the below testing it is not working
    Inactivated the ship method and try to copy the order with Standard type the field remains mandatory and null but still it is allowing to book the Sales Order.
    Please help to sort out this issue, let me know if it is not clear
    Condition
    Trigger Event : WHEN-NEW-ITEM-INSTANCE
    Trigger Object: ORDER.SOLD_TO
    Condition:
    (:ORDER.ORDER_TYPE not like '%STANDARD%')
    Action
    Type : Property
    Object Type : Item
    Target Object : ORDER.SHIPPING_METHOD
    Property Name: REQUIRED
    Value: True
    Thanks,
    CSK

    Hi CSK,
    try it in well validate item trigger.
    If that order type is list then you may disable the field in WHEN LIST CHANGED  trigger itself.
    Hope it will work,
    Regards,
    Soofi

  • Assign a value to a global variable - form personalization

    Hi All,
    We have a requirement in which we want to display a message depending upon the out parameter of the procedure in form personalization.
    We are using 'Builtin' with the buitin type 'Execute a Procedure'.
    And the argument passed is :
    *='declare
    l_request_id Number;
    l_out_come VARCHAR2(10);
    begin
    apps.xx_sr_email_pkg1.xx_sr_email_p1
    ('''||${GLOBAL.XX_CUST_ACCOUNT_ID.VALUE}||''',
    '''||${GLOBAL.XX_INCIDENT_ID.VALUE}||''',
    '''||${GLOBAL.XX_EMAIL_TYPE.VALUE}||''',l_request_id);
    :GLOBAL.XX_REQUEST_ID := l_request_id;
    end'*
    But its not assigning the value of l_request_id to the gloabal variable XX_REQUEST_ID.
    Can you please help?
    Thanks

    I don't have a solution but a work around.
    What if you create a function that accepts the same in parameters and returns the message.
    And then you create an action of the type message and in the message you call the function such as
    = select xx_sr_email_pkg1.sr_email_f1 .... from dual
    Sandeep Gandhi

  • 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

  • Purchase Order Form Personalization

    Dears,
    I want to Personalize the Purchase Order form ,
    i want to disable all the field in the header and lines and including the buttons like
    - Currency ,Shipments.
    I want to Personalize this form for a certain responsiblity.
    Thanks in Advance!
    Rehan

    Rehan,
    Refer to the following documents, it should be helpful.
    Note: 279034.1 - Information About the Oracle Applications Form Personalization Feature in 11i
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=279034.1
    Note: 468657.1 - How To Do Forms Personalization
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=468657.1
    Regards,
    Hussein

  • Supplier form Personalization - One Time Flag

    form personalization on supplier window
    Forms Personalization to check one time flag
    I have performed below steps to default the one time flag on supplier window for a custom reponsibility
    1.Open the Suppliers and the Forms Personalization windows.
    2. Seq=1, Description: Activate One_Time flag
    3.Level = Function
    Condition:
    Trigger Event = WHEN-NEW-RECORD-INSTANCE
    Trigger Object = VNDR
    Condition = :SYSTEM.RECORD_STATUS = 'NEW'
    Actions
    Seq=1, Type = Property
    Description = One Time
    Object Type = Item
    Target Object = VNDR.ONE_TIME_FLAG_MIR
    Property Name = VALUE
    Value= Y
    4.In the Context area entered the custom responsibility to be affected by this personalization.
    5.Save your work and close all windows. Using the responsibility on 4, open the suppliers window again, go to the Classification tab and see if it is checked.
    Issue is
    when i open the supplier form it shows One Time Flag as checked
    and I entered the supplier details and save the record .
    from Find Supplier window when I query that particular supplier it shows One Time Flag as unchecked i.e ('N')
    can you help me reg this issue ?

    You can do one personalization at the form level without any scope
    And then in the condition clause you can say
    fnd_global.resp_id in (select responsibility_id from fnd_responsibilty_tl where RESPONSIBILITY_NAME in ('PAYABLE MANAGER','Payables', etc....))
    This will make the personalization kick in only for the responsibilities you enter in the where clause above.
    Hope this answers your question
    Sandeep Gandhi
    Independent Consultant
    513-325-9026

Maybe you are looking for