How to enable record history for custom forms

Hi All,
I have developed a custom form but i am unable to view the record history when queried and it throws an error saying 'Record history not available here'.
can some one help me in sorting out the problem.
Thank you

Hi,
The following table lists the standard columns used for Record History (WHO), the column attributes and descriptions, and the sources for the values of those columns. Set the CREATED_BY and CREATION_DATE columns only when you insert a row (using FND_STANDARD.SET_WHO for a form).
CREATION_DATE
CREATED_BY
LAST_UPDATE_DATE
LAST_UPDATED_BY
LAST_UPDATE_LOGIN
For more details, please refer to "Oracle Applications Developer's Guide", Page 3-2 Tracking Data Changes with Record History (WHO)
Oracle Applications Developer's Guide
http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/115devg.pdf
Regards,
Hussein

Similar Messages

  • How to set record history for a customized form?

    i have created a customized form and register it onto apps. everything is working fine expect for the Record History part. while going to Help -> Record History for my customized form it showing error message -
    Recird History is not availbale here.
    Please suggest if i have to write a specific trigger for setting the record history. also please provide the sample code for the same.
    Thanks,
    Sam

    Sam,
    Please see if these threads help.
    How to enable record history for custom forms
    How to enable record history for custom forms
    RECORD HISTORY (or) WHO COLUMNS in R12???
    RECORD HISTORY (or) WHO COLUMNS in R12???
    Regards,
    Hussein

  • Enabling system menus for custom form

    Hi All,
    can I enable system menus First Row (CtrlH) and Last Record(CtrlE)  for custom forms? They are not getting visible for custom forms. So I am getting the error as 'Menu not found' when try to enable that.
    Jisha

    Hello,
    These menus (from GOTO menu) are not exist in the User Defined Forms either type is UDO or not UDO.
    You can implement these menus, with the same menu IDs (First Row = "5901") by Adding menu items to form
    Dim oMenuItem As SAPbouiCOM.MenuItem = oForm.Menu.Add("5901", "First Row" + vbTab + "CTRL+E", BoMenuType.mt_STRING, -1)
    But you should implement all the features you needed.
    Regards,
    J.

  • How to enable attachment option in custom form

    Hi All,
    I am using oracle apps r12.1.3 version and my form version is 10g and db is 10g.
    I was trying to make the enable the attachment option in my custom form but i got this Msg when i press attache button in menu.
    Do you want to commit this data before...
    I was followed this steps as mentioned in this like
    http://knol.google.com/k/adding-attachment-functionality-to-forms#, but when i click the attach button the attach option is not opening, can any one pls guide me how to do.
    Thanks & regards
    Srikkanth

    Hi Helios,
    Thanks for your reply, i have followed the same steps as u mentioned but i getting the a pop up msg when i am trying to click the attach option
    "Record must be committed before adding attachment. Do you want to commit?.
    After when i click yes the data get inserted to the table but attach option is still not enabled. when i tried to click again the attach option again it shows the same msg.
    Can you pls guide me where i went worng.
    Regards
    Srikkanth

  • Modify User (OIM 11gR2 PS1): How to enable "submit" button for custom udf fields?

    I made some new attributes following oracle documentation for create user, modify user, and view user details forms. create user and view user details are working fine, but I'm not being able to copy/paste the following code in custom modify user attributes to enable the submit button for modify user form change: #{pageFlowScope.cartDetailStateBean.attributeValueChangedListener} . Any ideas? Thanks.

    Export the sandbox and edit userModifyForm.jsff to set value change listener property for the new attribute as below
    valueChangeListener="#{pageFlowScope.cartDetailStateBean.attributeValueChangedListener}"
    http://docs.oracle.com/cd/E27559_01/admin.1112/e27149/customattr.htm#autoId4

  • Authorization for custom form

    Hi,
    How we can give Authorization for custom form as well as custom menu

    Hi,
    Try this out
    Go to Administration module
    > system initialization
    > Authorizations
    >Additional Authorization Creator
    Add same level and just mention your
    Authorization id=Custom
    Name=Custom
    Option=Full/Read/None
    Forms id=*(Your Form ID) *
    Ok
    Now Go to Administration module
    > system initialization
    > Authorizations
    >General authorizations
    Now select user and set user authorization-------> Custom -
    > No Atuorization
    Reply me
    Remember if Problem Resolved then mark as answered

  • Report  for "record payment history"  for customer ?

    Report  for "record payment history"  for customer ?
    Please send it.

    Dear Goutam
    Through <b>FBL5N</b>, you have to select "<b>Cleared items</b>" with "from to date" and execute.
    You will get a list which can then be downloaded as excel by selecting "List" on top left followed by "export" and "spreadsheet".
    Thanks
    G. Lakshmipathi

  • How to enable remote debugging for a session other than the current one

    Hi all,
    I am trying to figure out how to enable remote debugging for a session other than the one I am currently using.
    More specifically, we have an application that is making database calls to Oracle 11gR2. Something is causing an exception during this invocation. My system is currently not set up to recompile said application, so I can't just add the debug call to the code and recompile. Therefore I would like to be able to log into the database (as sys, if necessary) and invoke dbms_debug_jdwp.connect_tcp on the desired session.
    The docs indicate that I should be able to do so:
    dbms_debug_jdwp.connect_tcp(
    host IN VARCHAR2,
    port IN VARCHAR2,
    session_id IN PLS_INTEGER := NULL,
    session_serial IN PLS_INTEGER := NULL,
    debug_role IN VARCHAR2 := NULL,
    debug_role_pwd IN VARCHAR2 := NULL,
    option_flags IN PLS_INTEGER := 0,
    extensions_cmd_set IN PLS_INTEGER := 128);
    But when I try (even as sys), I get the following:
    exec dbms_debug_jdwp.connect_tcp('1.2.3.4',5678,<session id>,<session serial>);ORA-00022: invalid session ID; access denied
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    00022. 00000 - "invalid session ID; access denied"
    *Cause:    Either the session specified does not exist or the caller
    does not have the privilege to access it.
    *Action:   Specify a valid session ID that you have privilege to access,
    that is either you own it or you have the CHANGE_USER privilege.
    I've tried granting the 'BECOME USER' privilege for the relevant users, but that didn't help. I read something about having to set some kind of ACL as of 11gR1, but the reference documentation was very confusing.
    Would someone be able to point me in the right direction? Is this even possible, or did I misread the documentation?

    Interesting deduction, that would be very useful indeed. I hate recompiling just to add the debug call, and it can't be done in our production environment. But it seems unlikely to me it would be implemented this way.
    I would cross-post this in the SQL AND PL/SQL forum though, as this is really a database issue, not with the SQL Developer tool. Do add the links to the other posts in each.
    Regards,
    K.

  • How to enable push mail for gmail in iphone 6 plus

    how to enable push mail for gmail in iphone 6 plus

    Tommacgr wrote:
    You can setup gmail account in iphone as exchange so the trick is simple and easy and push notification work after instantly . Just follow this steps http://email.about.com/od/iphonemailtips/ss/Set_Up_Push_Gmail_in_iPhone_Mail_Ste p_by_Step_Screenshots.htm
    You can only set up a Gmail account as an Exchange account if you have a paid account. Google dropped Exchange support for free accounts two years ago. That link is just a bit outdated.

  • How to enable cascade view for sites(iStore) in 11i?

    How to enable cascade view for sites in 11i?

    Hi,
    For this issue, I'm trying to involve someone familiar with this topic to further look at it.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback
    for TechNet Subscriber Support, contact [email protected]
    Wendy Li
    TechNet Community Support

  • How to see profile history for role?

    Hi..
    I transported role from DEV to QAS...there in QAS profile not generated. throwed error RC=8..could you anybody tell me how to see profile history for that role in QAS

    Hi,
    Please check the link below:
    [click here|Current version not generated!
    Edited by: Subramaniam Iyer on Jan 19, 2009 7:52 AM
    Edited by: Subramaniam Iyer on Jan 19, 2009 7:59 AM
    Edited by: Subramaniam Iyer on Jan 19, 2009 8:12 AM

  • How to define new colors for the form?(Finish)

    Hello! Everyone!
    I want to define new colors for the new form.
    But I don't find where I can define it.
    How to define new color for the form?
    Thanks in advance!

    You have to set the Canvas color or as I said earlier you need to use one of the available color schemas on the OAS or Builder runtime.
    If you want to use user defined colors in the builder, then you need to create a new color palette and use it.
    I personally haven't tried it, but there is a section in the online help that describes how to do this.
    Tony

  • Need some more fields displayed in record history of oracle forms

    Hi ,
    I am using oracle forms 6.0.8.8.0 . My requirement is to display PROGRAM_ID , PROGRAM_APPLICATION_ID , PROGRAM_UPDATE_DATE , REQUEST_ID in the record history of the forms along with CREATION DATE , CREATED BY , LAST UPDATE DATE , LAST UPDATE LOGIN , TABLE which are already being displayed .
    Please help .

    Actually when the record history is to be brought , we need to make it database fields or write code to post query . So I think I can get a solution in this forum as we need to make changes in form only in order to show in record history .

  • Help Needed: Enable local currency for Customer Invoicing

    We are needing to enable local currency for customer invoicing on a project coming very soon.  Does anyone have any information on the best way to get this done and/or documentation to look over?  Any help would be greatly appreciated!!
    Thank You in Advance!
    Jay Esparza
    SAP Functional Consultant

    Hi
    Local currency automatically gets activated as you set your company code currency.
    No need to enable separately for customer invoicing
    Plz assign points if it is helpful.
    Regards
    Tapan

  • How do you record addresses for a group in contacts?

    How do you record addresses for a group in contacts?

    You can't create groups in the contacts app and even if you create a group in icloud.com, the group is useless for email purposes on the iPad. At least I have never been able to get the groups that I create in icloud.com to appears as options for emailing.
    There are third party apps that will let you do this.
    MailShot
    http://solubleapps.com/mailshot/
    Group Email with Attachments
    http://www.redbits.com/iphone/groupemail/
    There is also a workaround where you type all of the email addresses that you want to create a group for in the Notes app separated by a comma,between each address. Copy and paste that one long "email address" in the contacts app and name it whatever you like. Select that as your group when you want to send the group email.
    I Haven't done the workaround in ages, so experiment with it first. You may need to leave a space after the comma before you start trying the next email address.

Maybe you are looking for

  • How to open .exe files with Ibook G4 ??

    Hello, I have an ibook G4 since 2004 that I used only for photos & Music. Now I need to use it for work and cannot install anything since it refuses to run .exe files. Did someone had same issue ? How did you solve it ?? The fact is I'm trying to ins

  • Minimize and maximize the panel

    I have an interface which content many panels. So i want to maximize and minimize the panels. let say the real size of panel is 400 x 400 pixel, then i want to minimize to 400 x 20 pixel. But the panel is dynamic, i can maximize and minimize again an

  • Acrobat XL Pro Upgrade

    I had XL standard on my laptop. i just purchased XL Pro to upgrade and im getting this message at startup "Serial Number you provided is valid, but a qualifying product could not be found on this computer.

  • Java3D for visual age

    Hi, I've been using visual age for java for some elementary java coding. Now, I need java3D, but I don't know where VisualAge installed java, so I can't tell Java3D where to install itself... Hope this makes sense to SOMEONE!! Thanks for any help you

  • HT5313 why i cant update it ... always saying NO PERMISSION please help me dont know what to do wifi connect also is down and slow

    please help me since i update my os snow leopard to os lion its seem to be nice and operation is very well ... after a month its gives trouble i cant update it and cant watch video from youtube , cant attach any files wifi is up and down with my airp