Form Personalisation on Enter and maintain form

We have a new requirement from client can anyone help to fix this requirement
In oracle HRMS on enter and maintain form we have to add two new fields on others or applicant tab how can we do this by using form personalization.
RDBMS : 11.1.0.7.0
Oracle Applications : 12.1.1
Thanks

Hi Amatu,
I have changed the keyboard navigable to "No" in those buttons, and you quote to change the block property on navigate style to "change record" has perfectly work when the cursor reach the end of the column it will not jump to the button and jump to the next row of records instead.
Thanks. I have my problem solved.
Regards,
Lim

Similar Messages

  • Unable to query enter and maintain form

    Hi Everyone,
    I have an issue wherein i am not able to query few employees in the Enter and Maintain screen in HRMS. The form shows below error:
    FRM-40212: Invalid value for field FULL_NAME
    Can you please suggest if there is any profile setup which affects this form?
    Thanks!

    Hi,
    If you were able to query the same employee before then please check following.
    1. Your Effective Date is correct.
    2. Full name format might be changed. Try Searching with only %Last_Name% if you are able to see that employee.
    3. Security Profiles have been changed and not able to see these employee, If you are using Custom Responsibility try using seeded HRMS Manager responsibility.
    Regards,
    Saurabh

  • How to restrict the functions in People Enter and Maintain - Others LOV

    I want to restrict the functions appearing when i click on People Enter and Maintain -> Others screen.
    Can this be done through form personalization ?
    If not how can this be achived.
    I want to restrict the list in Assignmnet -> Others list also.
    Thanks in advance
    -Debojyoty

    Change the underlying taskflow.
    In the form function parameters, you can find the taskflow name for the WORKFLOW parameter.
    Make a copy of the seeded taskflow and add/remove nodes as you wich.
    4 nodes in a taskflow can be checked to appear as a button, if you have more nodes linked to the form, they will appear under the other button.
    This is configuration, no customization or personalization!

  • How to include AME Approvals on HRMS Enter and Maintain

    Hi,
    We're on 12.1.3 and have received a request to include approvals in the "Enter and Maintain" form of HRMS Manager responsibility. I've checked on the User Function "Combined Person & Assignment Form WF="GLB HRMS TSKFLW" and I can see the workflow name "WORKFLOW_NAME="GLOBAL HRMS PERSON TASKFLOW"
    I've suggested to a consultant to create a copy of this workflow and customize it to include approvals. His response is that it's a taskflow, not a workflow, and therefore can't be customized. Is there a where to include approvals in Enter and Maintain form so that any changes to the employee details get approved?
    dula

    Hi Dula,
    Do you want this approval to happen from PUI form. I dont think this this would be possible, at max you can send trigger alert(or any other notification) when there is any change on the personal record.However, if you self-service, whenever employee does any change on his record, you can configure AME, to send for approval.
    Thanks,
    Avinash

  • People Enter and Maintain Template

    Hi
    We are using form Configurator to build a new custom template by taking the form the seeded template, we were able to add the SIT and EIT.
    We like to know is it possible for us to add the Element entry field in the template,
    Please advice
    Thanks for the time
    Regards
    Ramesh Kumar S

    HI Thierry
    Yes..Last we upgraded our people management to the most recent release but even now we are not having the element entries.
    thanks for the suggesting for using User hook..I've not done user hooks before..if you could just provide some hint or refer me some metalink note for user hooks it would be great..I'll also explore something quick on this and keep this forum posted
    Thanks for time Thierry
    Regards
    Ramesh Kumar S

  • APP-PAY-07546: Before continuing, enter and save new information...........

    I logged into oracle applications (enter and maintain > query person > other > qualifications) and entered a new qualification. Then i saved the newly captured qualification and exit oracle applications. When i log back into oracle applications again to see the qualification i just captured, then i get this following error message: 'APP-PAY-07546: Before continuing, enter and save new information, or save the information already entered.'
    What causes this error message to display? I did save the record first time I entered it. The error message will not go away until i save the record again. Then only can i continue.

    Hi,
    Please go through (Note: 295314.1 - How to Troubleshoot APP-PAY-07546 Errors) and see if it helps.
    Regards,
    Hussein

  • How to import pdf with hyperlink and and maintain its hyperlink while exporting it as HTML?

    We can import pdf in indesign either using plaacemultiplefile script or using place submenu  under file menu but both of them import pdf as graphic object and lost its all hyperlink. no doubt when i again export its as pdf than hyperlink are there as it is but when i export it as HTML,IDML or other format than than all hyperlink are lost so is there any way to maintain this if no than is there any way to write some new script utilities which will do the same .one solution i think is first convert pdf into docx and than import it as docx indesign import  it as text frame and maintain all hyperlink but in this process pdf file lost its some formating while converting it into docx .

    I probably should've remembered "rtfm" before writing all that.  It seems to me now that I need to create a Master Page for each of the different layouts, then dynamically select the one I want to use at run-time, maybe with a script event ?  The Master Page creation is a bit messy ... the only way I seem to be able to get multiple Master Pages is to open each Word doc, let Livecycle import it, then copy all the content into a new Master Page in my main document.  That is, there doesn't seem to be a way to import a series of Word docs directly into separate Master pages of a single Livecycle form.  I'll continue with the "read" part of "rtfm" ...

  • SelectionChange for enter and backspace keys

    Hello all,
    Our VSTO addin needs to know the current selection so we can sync our taskpane with current selection. We are using the SelectionChanged event to register our taskpane synch routine. The problem is that this event doesn't fire on Enter or backspace key.
    We are specifically interested in the scenarios where the Enter/backspace results in a paragraph change(para add on enter and paragraph remove on backspace of the last character in a para). It seems like a bug to me that SelectionChange wont
    fire on backspace when the delete key does fires it.
    Is there any other workaround to detect this paragraph change state?

    Hi,
    >> I am not interested in a cursor change but rather a paragraph change which would indicate a change from one para to next.
    The current object model does not have an event to be triggered when changing the content.
    If you want to detect the paragraph changing, we could also use a global Timer to detect the paragraph changing of the active document.
    >> Multiple documents - i would have to suspend/reactivate my timer on Activate/Deactivate events
    >> Multiple windows of the same document - If i have the same document open in multiple windows, split window, new window etc, how would this timer work?
    Here is the sample code for your reference:
    using System.Collections.Generic;
    using Word = Microsoft.Office.Interop.Word;
    using System.Timers;
    using System.Runtime.InteropServices;
    namespace WordSelectionChangeIssue
    public partial class ThisAddIn
    private Timer addInTimer { get; set; }
    private Dictionary<string, int> ParagraphCountDict { get; set; }
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    addInTimer = new System.Timers.Timer();
    ParagraphCountDict = new Dictionary<string, int>();
    addInTimer.Interval = 1000;
    addInTimer.Elapsed += TimerElapsedHandler;
    addInTimer.Start();
    private void BindToChange(Word.Document document)
    ParagraphCountDict.Add(document.Name, document.Paragraphs.Count);
    private void TimerElapsedHandler(object sender, ElapsedEventArgs e)
    if(Application.Documents.Count == 0)
    return;
    try
    var activeDocument = Application.ActiveDocument;
    if (!ParagraphCountDict.ContainsKey(activeDocument.Name))
    BindToChange(activeDocument);
    var previousParagraphsCount = ParagraphCountDict[activeDocument.Name];
    var count = activeDocument.Paragraphs.Count;
    if (previousParagraphsCount != count)
    ParagraphCountDict[activeDocument.Name] = count;
    // trigger event
    ParagraphChangeHanlder(activeDocument);
    }catch(COMException comEx)
    private void ParagraphChangeHanlder(Word.Document document)
    System.Windows.Forms.MessageBox.Show("Paragraph Changed!");
    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    addInTimer.Stop();
    #region VSTO generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InternalStartup()
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    #endregion
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Entering and Displaying English and chinese

    We are running Oracle 8i on a w2k server and have w2k clients
    configured to enter and view English, Simplified and Traditonal
    Chinese. Oracle is setup with UTF8. We atn to be able to enter
    and display both english and chinese characters simultaneous in
    the forms as we enter data as well as in reports. Everything is
    done in Oracle forms/reports 6. I have tried various nls
    settings but nothing seems to work to provide both entry and
    viewing of the characters as well as providing properly
    formatted reports.
    Jim Liddil

    I also have a customer that is having a similar problem. The
    general issue is that the customer wants to use Win2000 in
    English but within a Forms 6.0 application fill in certain fields
    with Simplified Chinese characters. I think they had difficulty
    getting it to work even if the default is all Chinese, that is
    both the Windows locale default and the NLS settings. We're
    mostly beyond that but the real goal is to allow the user to run
    in English (but with language supplement support available for
    Chinese) then when the user hits the appropriate fields in the
    application he toggles to a Chinese characters to input. So we
    can't seem to find the right combination of NLS settings,
    patches, etc. that would support this.
    At one point we apparently were able to have the application
    accepting the Chinese characters but to do so meant that many of
    the Oracle Forms default menu items, dialogue buttons and
    message bar were displayed in Chinese.
    The simplest explanation: allow to run Forms 6 app in English.
    Allow storing of Chinese characters into fields at the will
    of the user. Database stores characters correctly. Application
    (Forms) echoes characters correctly , not ???? or boxes .
    We need to have a definite answer to the customer within 2 weeks
    meaning we either have a fix now for their current ISO 9000
    certified application based on Forms 6.0 or we know through
    testing that it absolutely will work when we rev. the application
    to Forms 6i. The latter revision of their application is not due
    to ship until mid-2002.
    Any suggestions or referrals are appreciated.

  • Difference between ENTER and VALIDATE built ins

    Hi,
    Can anyone of you tell me what is the difference between ENTER and VALIDATE? Also in ENTER if any program unit is called and on that program unit I've specified FORM_TRIGGER_FAILURE it is not stopping. Can anyone give some information?
    Thanks in advance.
    --Sourav                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thanks Gerd. I've used both ENTER and VALIDATE in KEY-COMMIT trigger, problem is whenever any validation unit raise FORM_TRIGGER_FAILURE, it doesn't stop execution flow of key-commit. Here I'm giving some sample codes
    IN KEY-COMMIT
    message(' Key Commit -1');
    message(' Key Commit -2');
    message(' Key Commit -3');
    message(' Key Commit -4');
    ENTER;
    message(' Key Commit -5');
    message(' Key Commit -6');
    Evenif the item has a When-Validate-Item trigger and in trigger we raise FORM-TRIGGER_FAILURE, still message 5 and 6 is showing.
    I've to use FORM_SUCESS after ENTER or VALIDATE to get the exception.
    Any idea?
    Regards.
    --Sourav                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Publish option that creates only 1 file and maintains the interactivity? CP 5

    When I publish my project in Flash, it creates a folder with the .sfw file, the standard (JS file) and all my .f4v (videos).
    I tried to publish my projet in the f4v format, but like you probably know, I loose all the interactivity (roll-overs, buttons, etc..).
    Is there a better way to publish my stuff without having many files and maintains the interactivity?
    Thank You!

    exe?
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Can two people share the same Apple ID on two different iPhones and maintain different passwords?  Yes, there is more to the story.

    I have an iMac, and iPhone.  I've had my Apple ID for a few years. 
    My wife got an iPhone 4S a few months back and the salesperson at Verizon set her Apple ID the same as mine, but gave her a different password.  I don't know if this was ok, but that is what happened.
    So, yesterday, we both upgraded to IOS6 and I had no problem logging in to my iPhone with my Apple ID.  When my wife went to log in, she was told that she was entering the wrong password. We entered the password over and over again and still was wrong.
    The question is... can two people share the same Apple ID on two different iPhones and maintain different passwords?  (I have the feeling her iPhone is thinking that since it's my Apple ID, it wants my password.)
    If not, can I still set up a new Apple ID for her even through she's had the iPhone for a few months?
    Thanks.

    Hi
    You shold follow your feelings, its probably right most of the time.
    You can have 5 different devices hucked upp to one Apple ID. What I have done is that my wife and I have one Apple ID, when I bye a new app on my phone, She gets it to. Thats nice.
    You can allways set upp a new Apple ID for your wife.

  • InDesign CS5 - Enter and Return keys give unexpected results

    I've been using CS5 for just a few days (Mac Pro, Mac OS X 10.6.3). I've noticed that the Enter and Return keys aren't always behaving as expected. Enter doesn't give me a column break, shift-Return doesn't give me a line break but a new paragraph, and more often than not I can't select the default option in a dialog with either Return or Enter. I've just read cpsid_84345, which says this is an issue in German and Swedish language versions, but I'm using English. The 7.01 update doesn't seem to be available. Any advice?

    That the KBSC files are XML doesn't guarantee faultless migration from one version to the next, probably because Adobe just forgot to cope with importing KBSCs from previous versions. It's great that InDesign offers you such flexibility with the KBSCs, but it's terrible that the implementation has been so sloppy in at least the three last versions (maybe earlier versions, too, but I try to repress the memories).
    Some people have been asking Adobe to make KBSCs scriptable. This would enably you to maintain a small database with KBSCs which a script could read and feed into a new version of InDesign, or redo a KBSC file after it has become corrupt, or whatever minor or major mishap.
    The more people ask for this the better: go to http://www.adobe.com/support/feature.html and request script access to the KBSCs.
    Peter

  • View/table Ztable can only be displayed and maintained with restrictio

    Team,
    I am getting this error when I enter my table in SM30 and click on either -No Restrictions; -Enter conditions. (I already created Table Maint. for it.)
    Error:
    "View/table ZTABLE can only be displayed and maintained with restrictions"
    I deleted and recreated but the error is still there. What could be the reason for the above error.
    Thanks

    Hi,
    Try this..
    Goto SE11 give the table name goto change mode
    then click on DELIVERY MAINTANCE TAB
    then select option data browser/table maintance allowed as 'DISPLAY?MAINTAINCE ALLOWED.
    this will work
    Thanks,
    Naren

  • Mail does not retain correct external server path for Exchange Server '07 even when "automatically detect and maintain account settings" is unchecked. Advice?

    Mail keeps resetting the external server path for an Exchange server '07 account when the program is closed and reopened. This happens even though "automatically detect and maintain account settings" is unchecked. To reset to the correct setting I need to disable the account, make the change and save with the account disabled, close Mail, reopen Mail, and enable the account. Then the settings are maintained and Mail works great... until Mail is closed and reopened again. At that point the server path reverts to an incorrect setting. Anyone else experiencing this? Advice? I don't think this is a problem with the Exchange server because this problem did not happen with OS X Mavericks.

    This this to fix repeated password requests....
    Open Keychain Access in Applications/Utilities
    Search for your Dreamhost accounts. There should be two entries (incoming, outgoing) for each account.
    It's not uncommon to find old entries. You might want to delete all and start clean.The Keychain isn't smart and will keep all old entries when you add/change a password.
    While you are in the Keychain run Keychain First Aid, Under Keychain Access in the Menu bar.
    Open Mail
    Open Connection Doctor.
    If you see red for the account, enter the password again.
    If you continue to have problems, delete the account then add it back.

Maybe you are looking for

  • I have album covers showing up on the wrong album in iTunes.   iTumes will not let me delete them.  I have a new laptop with Windows 8.

    I have album covers showing up on the wrong album.  iTunes will not allow me to delete them.  It acts as though it did, but does not, with no error message.

  • Help regarding RRI

    Hi, We need to use the RRI interface for reorting, can anyone please help in letting me know about the steps required to perform the RRI requirement. how to go about implementing the same. many thanks Srinivas Please search the forum Edited by: Prave

  • How to show photo folder in iTunes ?

    Hello everyone .. I want to know how i can see my photos from the iTunes on PC ?, i clicked on Photos but it showed me only some folder not all of them .. also i want to see my photos in iTunes so i can easily delete or edit any photo i want.

  • HTTP Error 404 - Help

    When trying to run interMedias clipboard I receive the following error "HTTP Error 404" "The Web server cannot find the file or script asked for" I have checked the installation and it seems that the dll will not load. Any help on this will be greatl

  • Can I add attachments to the responses screen

    Hello, We have recently created an application form for people to fill out and upload their own documents into the relevant sections. Part of this application requires a letter of recommendation, which is emailed separately by the recommender. We wou