Urgent: customized form in forms6i, it is working in 10g, but if v do any

Hi,
For Oracle Ebs R12, we have taken R11i forms(which is developed from 6i)
It is compiling and working
When we do changes in the colomn - query table name or anything.
it won't impact the changes in the form.
Awaiting for valuable information,
Thanks for reading and going to give ur valuable information.
Thanks
M.K.Thamaraiselvan

Hi,
Thanks for your information.
I am not asking about that...
In a form,
we are going to define another table colomn, which are used already in different name table colomn.
After we do the changes in the form - as new table colomn name instead of the old table colomn name.
we used to compile, after do compilation.
we able to get the the new table name and the colomn value
But still it is existing the old table colomn name in the lov list.
it did not change yet, so that i am asking in apps forms, have to do anything more.
so that i request one by one step flow.
Hope i have to convert it (form binary to text), then
have to convert it again from text to binary.
Then we do changes and compile it once, we able to get the changes.
I want to know that is it any version conflict or any other reason.
Awaiting
Cheers from..
Thanks..
M.K.Thamaraiselvan

Similar Messages

  • Oracle APPS custom form using KFF is not working as expected

    Hi,
    I have created a custom form and using KFF to accept code combination in line block. My custom form is based on AP_INVOICES_INTERFACE and AP_INVOICE_LINES_INTERFACE.
    When I query the records in form and update the code combination field using keyboard (typing or copy-paste) it works fine at first time but when I re-enter another code then it does not accepts the new code and reverts to previous code. Form accepts the same code when KFF screen is using by pressing LOV button. I concluded this problem as "when record status is QUERY then KFF works fine with keyboard but when record status changes to CHANGED then it does not accepts the new code when entered using keyboard".
    I have created all triggers and invoked relevant fnd_flex.event in triggers. I have created PRE-QUERY, POST-QUERY, PRE-INSERT, PRE-UPDATE, WHEN-VALIDATE-ITEM, WHEN-VALIDATE-RECORD, WHEN-NEW-ITEM-INSTANCE, KEY-EDIT, KEY-LISTVAL at form level and calling FND_FLEX.EVEND and APPS_STANDARD.EVENT (where required) in triggers.
    This same issue is in AP Invoice Workbench form. When updateing code combination in distribution block in invoice form is showing same behaviour.
    I am running this form in 12.1.2, same form is working in other instance which is on 12.1.3.
    Please help.
    Regards,

    Please check the below link just to make sure all steps are taken care.
    http://oraclemaniac.com/2012/08/15/how-to-add-a-descriptive-flexfield-dff-in-a-custom-oracle-apps-form/

  • Urgent: Custom Form Development in CRM Applicaiton

    I have built a custom form in 6i using the TEMPLATE.FMB file from 11i applications.
    The form is called from with in the Contact Customer Form Module through the zoom feature. The custom form is called from the zoom but I am getting a Developer Error, cannot find Menu Item. I believe the problem is that I need to reference a Menu file (mmx) in the custom form. However, I have tried FNDMENU but it still gives me the error. Are ther any suggestions or has someone encountered this problem before.
    Any assitance is greatly appreciated.

    The custom form first should be register in the appropriate menu. For that first a menu item has to be created by Oracle Apps DBA and then the form has to be linked to this menu item.

  • FRM-40010 when opening custom form in Forms6i

    Hello,
    I'm running an instance of the E-Business Suite 11.5.10.2, which uses Forms Developer 6i. I recently upgrated to patchset 19, and now, I go to my custom apps login URL, and get the following error:
    http://ppc-oradev.purchasingpwr.com:8000/dev60cgi/ifcgi60?config=ppc
    FRM-40010: Cannot read form d:\oracle\oradevappl\xxppc\forms\US\xxmenu.
    I have added the following to my appsweb.cfg and appsweb_oradev_ppc-oradev.cfg file:
    [ppc]
    lang=US
    fndname=
    userid=
    prodTop=d:/oracle/oradevappl/xxppc/
    formName=xxmenu
    pageTitle=Purchasing Power, LLC
    splashScreen=No
    width=700
    height=550
    archive=f60all.jar
    pageTitle=PPC
    lookAndFeel=oracle
    colorScheme=Blaf
    separateWindow=false
    java_appletname=PPC
    HTMLpageTitle=Purchasing Power Custom
    HTMLpostApplet=<P>Copyright &#169;1998, 1999, 2000, 2001, 2002 Oracle Corporation
    This was working fine before the Developer 6i Patchset 19 upgrade.
    Any help at all would be appreciated!
    Zach

    This seems to be a configuration problem specific to the eBusiness-suite. I would try to get an answer in this forum OA Framework

  • SQl loader is not working in 10g but working in 9i

    In My PC i have installed both 9i and 10g. could you please tell me why it is not working

    "SQL loader is not working" is rather like "my car won't start" http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html
    The 9i Oracle Client install includes sqlldr. The 10g Oracle Client install does NOT include sqlldr. You'd have to do a "Custom" Install and specifically select "Oracle Database Utilities" to install.
    See MetaLink Note#437377.1
    Edited by: Hemant K Chitale on Dec 31, 2008 3:58 PM
    Edited by: Hemant K Chitale on Dec 31, 2008 4:00 PM

  • A query which works in 10g but not in 11g.

    Hi there,
    We are in the process of upgrading our database from 10g to 11g. We have a test server with 11g, and imported all the 10g data in there. While testing the 11g server, for many queries, we get ORA-00918: column ambiguously defined error, however the same queries work just fine in 10g. Below is a sample query.
    SELECT household_name || ' - Begin Date: ' || TO_CHAR(vnsrp.effective_date,'dd-MON-yyyy') ||
    CASE WHEN vnsrp.second_return_period_type = 'NON_FURLOUGH' THEN
    ELSE NULL
    END household_name,
    second_return_period_id
    FROM vn_secondment_return_period vnsrp
    JOIN ve_household_membership vehm
    ON vehm.family_household_id = vnsrp.family_household_id
    JOIN vb_family_household vbfh
    ON vbfh.family_household_id = vehm.family_household_id
    ORDER BY household_name
    We know, in the above query, the household_name is from both views vn_secondment_return_period and vb_family_household, but to the wonder it works without any error in 10g and not in 11g.
    We have so many queries like this, so changing them to give qualified column name (viewname.columnname) would be a very tedious process for us.
    Is there any simple solution by changing DB parameter like that?
    Advance Thanks,
    Natarajan

    i mean just change the definition of one of these views: vn_secondment_return_period or vb_family_household. I think this is the simplest way.

  • Ipod shuffle will turn on. then it turns back off and will not work. it charges but will not play any music?

    My ipod shuffle will not work. it turns on briefly then turns off and i cannot hear anything. my earbuds work, it holds a charge, but no sound?

    I would start by working through the 5 R's of troubleshooting to rule out the possibility of corrupted software.
    http://www.apple.com/support/ipod/five_rs/
    What does the status light show you when this happens?
    B-rock

  • Our web based application allows links to external documents like word- these links work in IE but not in Firefox- any idea why?

    the protocal that works in IE is
    P:\My Documents\2010 Workshops\Nashville Brazeway\Nashville_Workshop_2010.docx
    This drive is shared and opens in IE but Firefox gives msg
    Firefox doesn't know how to open this address, because the protocol (p) isn't associated with any program.

    You need to use the file:// protocol, but you may still encounter problems if you fix that.
    See http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Airport express works w/itunes, but not when streaming any website

    My airport express works fine when using itunes. However, when I go to my favorite radio websites, my ibook g4 does not recognize that the AExpress exists. Is there a remedy?
    Thanks.
    mo

    Yes, check out Rogue Amoeba's AirFoil.

  • No standard message displayed in the new custom form

    Hi All,
    I developed a new custom form for FA module using Template.fmb. It is not showing any standard messages such as "Transaction complete: 1 records applied and saved". The records are getting saved. I even tried setting in when-new-form-instance ":SYSTEM.MESSAGE_LEVEL := 0" but that too didn't work out.
    Please help on how to display the standard message. Please let me know if I am not clear with my question
    Details
    Oracle Form version: 6i
    Application version: 11.5.10

    Can you see if something in the code is overriding your message level?
    Can you set the message level to 0 in the pre-commit trigger?

  • Always record number is showing as 0/1 in the custom form

    Hi All,
    I have created a custom form(multi record) and its working fine in Oracle 11.5.8 with data base oracle 8i.
    After that we have update database to Oracle 9i.
    After updation onwards all the records in the form are showing as 0/1. That is current record numbers are not changing and always displaying as 0/1.
    Can any one help me where is the problem.
    Thanks,
    Nav.

    Need more information. When you do a query using SQL Plus what data is returned? What data are you expecting? What do you mean by 0/1? Do you mean a record has a value of zero or one, or do you mean a string '0/1'? Have you done a test creating a new form to see what data is returned when querying those records?

  • Creating a Custom Form - SurveyESQUE form (PLEASE READ!)

    Hello,
    I'm looking for help building a custom form that is like a survey (compiles "votes) but it allows users to "vote" more than once. We would be using this to compile data to find trends at our company for certain aspects of our organization.
    So all I need is something like a survey that let's users "vote" (but not really a vote) as many times as they want. Does anyone know if there is a way I can do this with Vibe or would this be something I would have to custom make using a .JSP?
    Please anyone with any ideas chime in! I really appreciate the help

    rblehar,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • I installed Office for Mac 2011 and excel doesnt work - product opens but neither new files or existing .xlsx files will open - error in libobjc.A.dylib

    Other products in suite work - Word, Powerpoint but excel wont open any files. The error condition is:
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2012-05-16 21:53:44 +1000
    Application Name: Microsoft Excel
    Application Bundle ID: com.microsoft.Excel
    Application Signature: XCEL
    Application Version: 14.1.4.111121
    Crashed Module Name: libobjc.A.dylib
    Crashed Module Version: unknown
    Crashed Module Offset: 0x00005f8b
    Blame Module Name: MBURibbon
    Blame Module Version: 14.1.4.111121
    Blame Module Offset: 0x000192d1
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    Have tried re-installing office - the installer says its successful. Any helpful suggestions much appreciated.
    km22

    Thats good to hear..
    Not sure if you know about the apple support videos available at http://www.apple.com/findouthow/mac/ to help the change over from windows to mac go as smoothly as possible..

  • Java calendar works in IE but not in Firefox

    This Java code works in IE but not in Firefox - any ideas - tks
    <pre><nowiki><TABLE bgColor=#ffffff border=1 cellPadding=0 cellSpacing=3 id=calendar style="DISPLAY: none; POSITION: absolute; Z-INDEX: 4; left: 28px; top: 365px">
    <TBODY>
    <TR>
    <TD colSpan=7 vAlign=center> <!-- Month combo box -->
    <SELECT id=month onchange=newCalendar()>
    <SCRIPT language=JavaScript>
    // Output months into the document.
    // Select current month.
    for (var intLoop = 0; intLoop < months.length; intLoop++)
    document.write("<OPTION " + (today.month == intLoop ? "Selected" : "") + ">" + months[intLoop]);
    </SCRIPT>
    </SELECT>
    <!-- Year combo box -->
    <SELECT id=year onchange=newCalendar()>
    <SCRIPT language=JavaScript>
    // Output years into the document.
    // Select current year.
    for (var intLoop = 1900; intLoop < 2028; intLoop++)
    document.write("<OPTION " + (today.year == intLoop ? "Selected" : "") + ">" + intLoop);
    </SCRIPT>
    </SELECT>
    </TD>
    </TR>
    <TR class=days> <!-- Generate column for each day. -->
    <SCRIPT language=JavaScript>
    // Output days.
    for (var intLoop = 0; intLoop < days.length; intLoop++)
    document.write("<TD>" + days[intLoop] + "</TD>");
    </SCRIPT>
    </TR>
    <TBODY class=dates id=dayList onclick="getDate('')" vAlign=center> <!-- Generate grid for individual days. -->
    <SCRIPT language=JavaScript>
    for (var intWeeks = 0; intWeeks < 6; intWeeks++)
    document.write("<TR>");
    for (var intDays = 0; intDays < days.length; intDays++)
    document.write("<TD></TD>");
    document.write("</TR>");
    </SCRIPT>
    <!-- Generate today day. --></TBODY> <TBODY>
    <TR>
    <TD class=today colSpan=5 id=todayday onclick=getTodayDay()></TD>
    <TD align=right colSpan=2><A href="javascript:HideCalendar();"><SPAN style="COLOR: black; FONT-SIZE: 10px"><B>Hide</B></SPAN></A></TD>
    </TR>
    </TBODY>
    </TABLE></nowiki></pre>

    Document.all doesn't work in Firefox, you need to use document.getElementById().<br />
    See https://developer.mozilla.org/En/DOM/document.getElementById
    <pre><nowiki> var parseYear = parseInt(document.all.year [document.all.year.selectedIndex].text);
    var newCal = new Date(parseYear , document.all.month.selectedIndex, 1);
    </nowiki></pre>

  • Urgent: Customized 11i forms, work into R12 - Problem

    Hi,
    We are running 11i, R12 versions instance.
    In that for 11i forms, we are using in R12.
    In that one customized form colomn data defination area, has to define some other tables/ views.
    We would know the present form colomn 'data defination : query, to modify the particular colomn.
    Note: That column has record group as well lov, functions and procedure etc.
    Kindly give me the one by one steps,
    Advanced thanks who is reading and giving solutions.
    Advanced thanks...
    Regs
    Thamaraiselvan
    Message was edited by:
    user624969

    In that for 11i forms, we are using in R12.What do you mean by this? Could you please elaborate more?
    Did you compile the 11i forms before using it with R12?

Maybe you are looking for

  • No admin access to NSS4000 anymore

    I can no longer access my NSS4000 through any means.  CISCO tech support said this is end of live and does no longer support.  So this community is my only option. The NSS4000 worked fine until a few weeks ago it was or is setup as a RAID1. ALL Leds

  • Generate a sequence of number

    Hi i am using select rownum rn from user_objects where rownum <= 20; to generate a sequence of number.... is there any other better way...???

  • Regarding SLA Patch

    Hi All, I wanted to Know whether there is some specific patch related to SLA (Sub-ledger Accounting) that needs to be applied before upgrade. Is it something which is related to pre-upgrade activity. Also, can the SLA patch be applied after / in betw

  • How to close saved image?

    hi  I can't close the saving image after i created it. It becomes read only and  i get error  unless i exit from application when i want to create it again  i think it remains open. Would you help me how i can solve problem?  ofd.Filter = "Image File

  • Is Teststand able to install and implement on Linux system

    Hi, I was using Testsand on windows before, Just want to know that if NI Teststand able to install and implement on Linux/Unix system? Thanks, Solved! Go to Solution.