Duplication check through form personalization

Hi
i was wondering what to write on when validate record or when new item instance for any duplicate checking.what are the reserve words to check the entered value if present in databse table then error.
Regards

Hi
thanks for help.Can i also used this type of personalization for format mask checking in any field.like if i applied format mask on any field it will give error at bootom of window that field must be of type 9999.Can i through a meaning ful alert in case of error as we are displaying error in form of alert in duplication case.
Regards

Similar Messages

  • Addition of one column in LOV through Form Personalization

    Hi
    While approving a purchase order when we click on Forward check box the forward to field becomes enabled and it has the LOV containing employee names and employee numbers. I want to add another column in this LOV for employee positions through form personalization.
    Can any one guide me how to do this.
    Regards

    Hello,
    To set another LOV, you should change the property of your combobox, named LOV_NAME with Forms perso, but you need some PL SQL code to create a new LOV.
    See this example : [http://oracle.ittoolbox.com/groups/technical-functional/oracle-apps-l/custom-lov-using-custompll-883870]
    One pre-requisite is that your new LOV should have the same number of rows and the same datatype, so I'm afraid you won't be able to do this just using Forms perso
    Kind regards,
    Xavier

  • How to restrict LOV to a particular project type through form personalize.

    Hi,
    I got a requirement to restrict LOV to a particular Project type through form personalization in project accounting module. form name: PAXPREPR
    i tried the below code in Builtin, but it didn't work
    SELECT distinct PROJ.SEGMENT1, PROJ.NAME,
    PROJ.DESCRIPTION, PROJ.PROJECT_ID
    FROM PA_PROJECTS_ALL PROJ,
    PA_PROJECT_TYPES_ALL TYPES,
    pa_proj_elements ppe,
    pa_proj_structure_types ppst,
    pa_structure_types pst
    WHERE PROJ.TEMPLATE_FLAG <> 'Y'
    AND PROJ.PROJECT_TYPE = TYPES.PROJECT_TYPE
    AND TYPES.CC_PRVDR_FLAG <> 'Y'
    AND proj.project_id = ppe.project_id
    and ppe.object_type = 'PA_STRUCTURES'
    and ppe.proj_element_id = ppst.proj_element_id
    and ppst.structure_type_id = pst.structure_type_id
    and pst.structure_type = 'FINANCIAL'
    and proj.project_type = 'GRANT'
    order by PROJ.SEGMENT1
    please suggest me where i went wrong.
    Edited by: 925049 on Apr 3, 2012 2:49 PM

    In the Control Data of FS00 there is field 'Authorization Group'
    Please Create an Authorization Group for those user ID who can post TDS entries.
    then Maintain this group for TDS related GL.
    Then others will not able to post to this GL.
    Regards,
    Alok

  • How to Chage the data format through Forms Personalization

    Hi Experts,
    I would like to do like,
    for example in the oracle form has two fields called
    start data(DD-MON-YY)
    end date(DD-MON-YY)
    but actullay i would like to have like
    start date(DD-MON-YY HH24:MI:SS)
    end date(DD-MON-YY HH24:MI:SS)
    It can be done through forms personalization?
    we are using Apps 11.5.8.
    Please help me to do it.
    Regards
    R.Sundaravel

    Try using FORMAT_MASK property in Forms personalization
    Property name - FORMAT_MASK
    Value - DD-MON-YYYY HH24:MI:SS

  • Is it pssible to shift tab pages through forms personalization?

    In oracle apps ,there is a certain form with many tab pages.I want to reorder those tab pages .Last one to come 2 nd in the order etc.Is it possible through forms personalization?
    Thanks

    In oracle apps ,there is a certain form with many tab pages.I want to reorder those tab pages .Last one to come 2 nd in the order etc.Is it possible through forms personalization?
    Thanks

  • Suppress FRM-41050 through Forms Personalization

    I have a view only form wherein the user can view information but cant update. This form gives warning messages FRM-41050 (You cannot update this record) for each record fetched. I am looking to suppress / hide these messages through forms personalization...Can anybody help me or through some ideas on this...thanks in advance

    Hello-
    I am just wondering if you were able to resolve this issue? I am running into the same problem.
    Thanks,
    Amy Bauman

  • How to displlay multiple Invoice Numbers through Form Personalization?

    Dear All,
    In Ap invoice form if I query one Invoice and click new menu which is created by me, then it shows Invoice Number as a popup. It's done through Form Personalization. But If we Query 5 Invoices and select all by press and hold the control button and select each and every Invoice and then click our menu, that time I need All 5 Invoice Numbers in Popup. So how Can I do this?
    Currently It is showing only one Invoice which currently cursor is there.
    So I need all Invoice Numbers in Popup. So plz give suggestions....

    Pl see if the steps in MOS Doc 856139.1 ((Pics) How To Create Personalized Views For All Users In Professional Buyer Work Center) can help.
    HTH
    Srini

  • How to call a particular Customer through form Personalization

    Hi,
    Environment :- R12
    I have a requirement, to search a Customer info based on Sales Order form.
    Requirement:
    1. Open the Sales Order form, Query any order
    Now the user wants to pull the XBC Cusotmer information which was in the Customer Field.
    Naturally we can do by form personalization but here the Customer window is web based one. Can anybody have a hands-on on this. Please let me know.
    Thanks,
    ABR

    Pl see if the steps in MOS Doc 856139.1 ((Pics) How To Create Personalized Views For All Users In Professional Buyer Work Center) can help.
    HTH
    Srini

  • Validate certain fields through Form Personalizations on hitting Save

    Hi,
    Everytime the user clicks on Save I need to validate if certain fields have been populated based on the value of another field.
    For instance, if Category is changed to Active or is currently Active and the user hits save, then before the record is saved, I need to make sure that certain other fields on the form are not null.
    How can I do this ?
    The trigger event am assuming will be when validate record, but that the trigger block can be anything in the form or sub forms as the save button is only in one place on the main menu. Also for the actions, if I define the Execute function, how do i ensure that based on the function result the record is not saved and an error message is generated ?
    Thanks for your help
    Preeti

    Thanks Gerald.
    I tried this -
    In the Form Personalization screen, I set the trigger_event to Key_commit,
    entered a conditon and on the Action tab, i chose builtin with the builtin_type being raise form_trigger_failure. It saves the personalization but on Apply Now I get the error message : FND_CUSTM_REQUIRED.
    Have you seen this before ?
    Thanks
    Preeti

  • Inhibit certain characters through forms personalization

    Hi,
    I'm trying to find out how to inhibit certain characters from being input into the invoice number field on the invoice workbench. The only acceptable characters are the following:
    0–9
    A-Z
    space
    Can anyone give me any ideas how to do this please?

    Write a function called isValid that accepts a varchar2 parameter and returns TRUE or FALSE.
    Then write a when-validate-record personalization
    Make the condition as isValid (:invoice_number) = FALSE
    And in action, display an error message.
    Hope this answers your question
    Sandeep Gandhi
    Omkar Technologies Inc.
    Independent Techno-functional Consultant
    513-325-9026

  • How To Pass Parameter To a Procedure in Form Personalization

    Hi ,
    I Have to pass some parameters to a procedure which will submit a concurrent request .
    But the parameter should pass through a Form , like lov or some check Boxs.
    when i am doing it through Form Personalization, i am unable to get the value from LOV . (11i)
    BEGIN
    XXCASTLE_CNTL_BRD_PRINT('Manufacturing','Released Allocated Tasks',${item.find_tasks.SUBINVENTORY.value}',fnd_profile.value('MFG_ORGANIZATION_ID'));
    END;
    Please Help.
    Thanks & Regards
    Rishi Gupta
    +91-9738174849

    Hello Rishi,
    The parameters are passed something like below in the forms personalization.
    item.LINE.SHIP_FROM_ORG_ID.value
    SHIP_FROM_ORG_ID being the item name
    LINE is the block name
    For calling the procedure in personalization,
    TYPE = Builtin
    Builtin Type = Execute a Procedure
    Argument = Call your code by including declare, begin etc...

  • Form Personalization - Validation for an existing field value can be done?

    Dear All,
    I have a requirement to have a validation on a form value based on its current value.
    The field should be editable as well it should check its current value with the newly eneterd value, which should not be less than the originally displayed value.
    Can I do this through Form Personalization..?
    If Yes how can I do that..? Please update...
    Many thanks.....

    Hi,
    Please see if the examples under the "Validation" section in (Note: 744065.1 - Sample CUSTOM Library Code To Customize Applications) helps.
    Not sure if this can be implemented using personalization, but you may review the documents and see if it helps.
    Note: 279034.1 - Information About the Oracle Applications Form Personalization Feature in 11i
    Note: 468657.1 - How To Do Forms Personalization
    Note: 395117.1 - Form Personalizations in Oracle E-Business Suite (Release 12)
    Thanks,
    Hussein

  • Form personalization for a read only responsibility for a custom form

    Hi,
    I have a read only responsibility. My requirement is to make a custom form updatable through this responsibility but wth a condition that only the specific custom form should be updatable and rest all other form accessed through read only responsibility be read only. How can i achieve this using form personalization?
    Pls give me detailed steps if possible.
    Thanks

    I tried override Query Only values through Forms Personalization but it did not work for me. With a bit of determination I might have been able to work around it but no luck on that front.
    You can do it this way, although it's a bit cumbersome:
    1. Clone every function and menu in the Responsibility
    2. In all but your custom function set the Function parameter QUERY_ONLY=YES

  • How to pass the FORM Fields value by Form Personalization

    Hi ALL,
    I want to pass form filds values in to procedure. I am calling this procedure through form personalization of that form..... But it's not accepting any form field's value there... when i am passing hardcoded vales procedure is executing fine...
    can any one suggest what to do???
    i tried with these syntax
    TEST_EMP_FP(:ADDR.ADDRESS_ID,'ABC')
    TEST_EMP_FP(${item.ADDR.ADDRESS_ID.value},'ABC')
    Regards
    Ravi

    Hi,
    Iam calling an SRS from forms personlization. Can any body tell me how to pass the Form field values as parameters to the Reports. (Example when they call this Concurrent request from Transact5ions screen, The invoice number should be defaulted in the report parameter).
    Regards,,
    Anil.

  • Forms personalizations in oracle ebs

    Hi all,
    I want to execute a procedure suppose "ABC" when approve button pressed to approve the requisition, I want to do this through forms
    personalization. Kindly tell me which item and which trigger to choose for this purpose.

    forms personalization is a feature of the ebusiness-suite. This is the forms-standalone forum. Ask your question in an ebs-related forum.

Maybe you are looking for