[Oracle Forms 6i] : conflict properties between datablock and list item

hi
i have a datablock which contains a list item. my list item is filled programmatically.
the user needs to be able to change the values in that list item.
well the problem is that the user can't change the value in my list item when the property INSERT_ALLOWED of the data block is set to false.
i need this property to be set to false, cause it disable the green button up on my form
aparently when this property is set to false, i can't change the value of my list item
help please !
thx
Dan

I couldn't understand this portion
'i need this property to be set to false, cause it disable the green button up on my form'
Can you explain what exactly you mean by disabling the green button?

Similar Messages

  • Oracle form: how to map other vales in list item

    Hi
    i am trying to retrieve data from database to listitem.
    I am having error when trying to set "mapping of other values".
    Can anyone suggest me a way.
    thanks.
    eiei

    I don't know what type of list item you are using but on a
    poplist there is a property mapping_of_other_values which can be
    used.

  • Oracle Forms Designer has encountered a problem and needs to close

    Dear All,
    I got the following error when I compile the form,
    Oracle Forms Designer has encountered a problem and needs to close
    I am using Oracle 10g Developer suite(Forms 32 Bit Version 10.1.2.0.2)
    and Oracle Database 10g Enterprise Edition Release 10.2.0.3.0
    and Window Xp Professional 32 Bit Operating system
    Now I can't do any changes in the form.
    I searched lot of oracle forums .but i can't solve it.
    Please give me one solution
    I am strugling this issue.
    Please help me........
    a lot of thanks in advance.
    Thanks and Regards,
    Fazil

    Hi,
    I am doing the bug fixing in the existing form.Its size is 4.07 MB.when i will get the mentioned error.then i will take previos fmb.then again doing the changes after some time agin will come the mention error.I added some if else condtion code.Its a small code.I think its not a reason for the mentioned error.I think something is happended.I don't know what happened?
    Please help me..
    Thanks and Regards,
    Fazil

  • Difference between iteratior and List Iterator

    Difference between iteratior and List Iterator

    Ravikumar:
    You have already posted something quite similar to this posting here: http://forum.java.sun.com/thread.jspa?threadID=735377
    While I cannot speak for everyone else here, I personally find your approach rather rude and inconsiderate. The manner in which you are posting these questions implies that you not only do not recognize that there is work involved in answering them but that you do not sufficiently understand them in such a manner as to be able to phrase them coherently.
    I expect that you are attempting to do your homework by exploiting the helpful people on this forum rather than by learning the material in question. If I am mistaken as to your intentions, please inform me and I will apologize to you. However, I find it difficult to believe that anyone would have such poor forum etiquette as not to realize that posting a "question" in the form of a topic statement is impolite.
    There are many fine people here who will assist you in learning and applying Java; I have relied upon their assistance on multiple occasions and found it indispensible. But you are far more likely to receive a helpful response (at least from me) if you take the time to express your questions more fully and (especially) to learn the material.
    Cheers and happy learning.

  • Diff between TAN and TAS item category

    hi
    wht is the diffrence between TAN and TAS item category and how to configure during implementation stage.
    Thnaks

    Hello,
    Main difference between TAN and TAS is, TAN is relevent for delivey and TAS is not relevent for delivery.
    TAN is used in normal business process and TAS is used in third party process.
    In the item category determination it will be like
    OR -- NORM--> TAN --> TAS
    OR --> BANS --> TAS.
    Prase

  • Oracle forms 11g , mailmerge errors WUO-712 and WUO-707

    error
    client_ole2.set_property(mm_obj, 'Destination', 0);
    WUO-712 Unable to set Property: {0}; Exception: {1}.Type: UserDescription: WebUtil was unable to set the specified Property tothe specified value
    client_ole2.invoke(mm_obj, 'Execute');
    WUO-707 Unable to invoke Method: {0}; Exception: {1}.Type: UserDescription: WebUtil was unable to invoke the specifiedMethod
    I migrated oracle forms 10g application to Oracle forms 11g.
    One form uses mailmerge is failing. This options was working in previous 10g version using WinWord 2003.
    Failing in current version Oracle 11g and Winword 2007
    Three documents are invovled in the process
    mailmerge_data.docx --- datasource document -- have address attributes
    FOBSENT.docx -- template document
    output.docx -- using mail merge options address are populated from mailmeger_data.docx into FOBSENT.dox and created a new output word document which we send it to customer.
    ------------------------------------------------------- WUO-712 and WUO-707
    client_ole2.set_property(mm_obj, 'Destination', 0); -- 0 is value of constant wdSendToNewDocument
    client_ole2.invoke(mm_obj, 'Execute');
    Any help to resove this is apprciated.
    Thanks in Advance
    Raghav

    Sorry I was away,
    We migrated 10G forms to 11g also Winword 2003 to Winword 2007
    It's erroring at this point
    mm_obj := client_ole2.get_obj_property(template_doc, 'MailMerge');
    Failing ---> client_ole2.set_property(mm_obj, 'Destination', 0); -- 0 is value of constant wdSendToNewDocument
    Failing --->client_ole2.invoke(mm_obj, 'Execute');
    Not able to read or open document use to work in previous version.
    Raghav

  • Oracle jdbc driver: sort order between letters and numbers

    Hello,
    I am facing a very strange problem with sortering of data between letters and numbers.
    I'am executing the following SQL request:
    SELECT nummsg FROM CWD01 where nummsg = '00000001' or nummsg = 'AAAA0001' order by nummsg
    When this request is executed with sqlplus or SQuirreL, I receive the expected result:
    NUMMSG
    00000001
    AAAA0001
    When I execute the following java code:
    try {     String className = "oracle.jdbc.driver.OracleDriver";     Class driverObject = Class.forName(className);     Connection con = DriverManager.getConnection("myurl", "user", "pass");     Statement stmt = con.createStatement();     ResultSet rs = stmt.executeQuery(           "SELECT nummsg FROM CWD01 where nummsg = '00000001' or nummsg = 'AAAA0001' order by nummsg");     while (rs.next()) {           String x = rs.getString("nummsg");           System.out.println("nummsg " +x);     } } catch (Exception e) {     System.out.println("Failed: Driver Error: "+ e.getMessage()); }
    I receive the unexpected result:
    nummsg AAAA0001
    nummsg 00000001
    We are using the following version of Oracle:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    and the following jdbc driver:
    Oracle Database 10g Release 2 (10.2.0.1.0) JDBC Drivers (ojdbc14.jar (1,536,979 bytes) - classes for use with JDK 1.4 and 1.5)
    Any suggestion?

    I checked, I'am sure of the problem:
    package test;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.Statement;
    public class Test {
         public static void main(String[] args) {
              try {
                   String className = "oracle.jdbc.driver.OracleDriver";
                   Class driverObject = Class.forName(className);
                   Connection con = DriverManager.getConnection("jdbc:oracle:thin:@<server>[:<1521>]:<database_name>", "user", "password");
                   Statement stmt = con.createStatement();
                   ResultSet rs = stmt.executeQuery(
                      "SELECT nummsg  FROM CWD01 where nummsg = '00000001' or nummsg = 'AAAA0001' order by nummsg");
                   while (rs.next()) {
                        String x = rs.getString("nummsg");
                        System.out.println("nummsg " + x);
              } catch (Exception e) {
                   System.out.println("Failed: Driver Error: " + e.getMessage());
    }The table CWD01 defines the column NUMMSG as VARCHAR2(8).
    The output gives:
    nummsg AAAA0001
    nummsg 00000001

  • Synchronization between datagrid and chart Item

    Hi
    In my application, I have a datagrid and corresponding bar
    chart. there is a toggle button through which I can switch between
    chart and data grid.
    Now I want to synchronize both.
    for example If I select any 3 rows in data grid then it
    should selects 3 bars on the chart also.
    can any body help me in that?
    Thanks
    smonika15

    Hi,
    U need to have a combo box renderer something like:
    In the object that u are populating the data provider of the
    data grid, add 2 fields:
    listOfFields & selectedField.
    <mx:HBox horizontalScrollPolicy="off"
    verticalScrollPolicy="off"
    xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx:Script>
    <![CDATA[
    public var itemSelected: Object;
    ]]>
    </mx:Script>
    <mx:ComboBox id="combo"
    dataProvider="{data.listOfFields}"
    selectedItem="{data.selectedField}"
    change="itemSelected=combo.selectedItem;"
    updateComplete="itemSelected=combo.selectedItem;">
    </mx:ComboBox>
    </mx:HBox>
    Now, loop through the list of objects that u get from
    back-end and keep setting the 2 new properties (listOfFields &
    selectedField). For setting the value of selectedField, u need to
    loop through listOfFields to match the fieldId.
    Hope that helps,
    Cheree

  • What is the difference between Alternate and Substitute item?

    Hi guys
    Can any one help me in understanding the difference between a Alternate Item and Substitute Item.
    Please refer any link / document for further study, if available.
    Thanks in advance
    Sreee

    Does Oracle have the concept of a substitute component, irrespective of the BOM in which it could exists?
    For example, Component A can always be replaced by Component B. This would be applicable to Product X or Product Y, both of them use Component A.
    Oracle seems to have the concept of a substitute component on a specific BOM (BOM_SUBSTITUTE_COMPONENTS).
    http://download-west.oracle.com/docs/cd/A60725_05/html/comnls/us/bom/bomtas05.htm
    Using this functionality, I would have to specify B as a substitute in two different BOMs - one for Product X, one for Product Y.
    I am wondering if there is a global "Subsititute Item/Component".

  • Different figure display between Balance and Line items

    How can I find out the difference between line item and Balance in FS10n?
    Actually when I Executing the FS10N the balance of DR. balance is greater then that account Dr. Balance line item.
    Can any one tell me why?
    Thanks & Regards,
    Anandakumar

    Its a sundry debtors gl account. All the line item and open item transaction balance are displaying.
    but the amount is not displaying (difference amount).
    Any one has solution pls tell me.
    Thanks in Advance,
    Anandkumar

  • Inconsistencies between Balance and Line items

    Hello masters!
    I found some inconsistencies betwen balance and line items. I tried to solve the problem using  FAGLF03 and RFINDEX (when executing SAP retrieved: "New GL is active. GLT0 can not be adjusted") but both did not work.
    We have never gone trough an archiving process.
    Thanx
    Edited by: Naej on Jun 15, 2010 11:00 PM
    Edited by: Naej on Jun 15, 2010 11:01 PM

    Hi,
    This will happen only if you activate line item management after started posting that GL account
    Please execute program RFSEPA01 to set right this.
    Best Regards,
    Madhu

  • PowerShell script to find a string of characters in office documents in Doc Libraries and List Item attachments?

    Hi there,
    For SharePoint 2010 site - Does someone have the PowerShell script to find a string of characters in Office/Word/Excel/PDF documents in document libraries or the ones attached to List Items?
    Thanks so much in advance.

    Hi,
    According to your description, my understanding is that you want to find some specific string character in list items using PowerShell Command.
    $w = Get-SPWeb "http://devmy131"
    $l = $w.GetList("http://devmy131/lists/fieldslist");
    $i = $l.Items[0]["Title"].ToString();
    if ($i -like '*document*')
    Write-Host "Title contains document character" $i;
    More information:
    PowerShell -contains -like
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Lost emtpy table cells and list items on reset using HTMLEditorKit

    I am using the HTMLEditorKit and creating tables and lists with empty cells, i.e., <TABLE><TR><TD></TD></TR></TABLE> or <UL><LI></LI><UL>. When I toggle from the text pane to the source pane and back the last empty table or list item cell is deleted. This happens again and again until the whole element is deleted. If I place some text in the last cell or list item they are not deleted. When switching to the source pane I use JSourcePane.setText(JTextpane.getText) which works OK. The problem is switching from the source back to the text via JTextPane.setText(JSourcePane.getText). Using the read method results in the same problem. Any suggestions?
    Thanks,
    Steve

    A link to the your live test page would be much more productive here. 
    It's much easier for us to diagnose problems when we can see your page & images in our browsers.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Conflict resolution between Outlook and iPhone

    Once again, when trying to resolve conflicts between my Outlook and my iPhone, I am told that the system can't access the server and conflicts can't be resolved.  This error message commenced with IOS 5 and one could expect it to be resolved by now. 
    This is today's issue but, perhaps someone can explain that even when hitting iCloud refresh, appointments don't always transpose to my iPhone and almost never to my iPad2.   This has been ongoing for some months and, mostly, I ignore it but, every now and again, I feel bound to process.
    My iPhone has settings for three calendars, including birthdays.  I wonder why the iPad 2 doesn't have the same options?
    Do I feel better for saying all this?  Not really.
    Cheers
    Ron

    You choose which one you want to keep. You can not merge the two entries.
    Your Palm pilot would not allow you to do this either in a note. It's one or the other. If you had created items in a to do list (reminders for example), each line item is a separate record. In notes, each note is a single piece of data. If you change both, you end up with a conflict, which is what happened.

  • Oracle form is slow when first login and normal after that

    My Query is that one screen when queried is very slow on first login and normal with same query afterwards.What can be the cause.Forms 10g on Linux,Database 10g

    I had raised this issue to Oracle. It is now considered as bug:
    BUG 13005659 - PSR:PERF:BIP:POOR PERF ACCESSING CATALOG FOLDER IN BIP 11G WITH SECURITY ENABLED
    The notes:
    1373204.1: BI Publisher: Navigation in catalog folders is slow after enabling catalog file system security
    And the fix is now included in one-off patch for October 2011:
    Patch 13042018

Maybe you are looking for

  • CT withholding code - to be passed to ADP from SAP

    Hi, We have master data in SAP and we pass Master Data to ADP for payroll. As of Aug. 1st 2011, CT requires employees to provide a withholding code (A, B, C, D, E or F) only and no longer requires employees to provide marital status. But, SAP's IT 21

  • Read From Spreadsheet File.vi in windows 7

    Hi, I use Read From Spreadsheet File.vi in windows 7 to read a table, but when it executes, i get a dialogue box asking for the filename, (The box is properly wired to the path). However, when i execute exactly the same programme in windows Xp it wor

  • CAF check-in to NWDI error

    Hi, When i was trying to check-in the creation of CAF DC to the NWDI in CE 7.1 EHP1, i got the following error message: FAILED: No prefix found for development component "xx/cas/xx/es/dictionary". Appropriate development component prefix should be co

  • UC 520 Software

    Good Day, Hope someone can assist me? I have a UC 520 running software release: uc500-advipservicesk9-mz.151-2.T2, I would like to register a Cisco 3905 IP phone to the UC520 but I understand I need CME 8.8 for this to work. I have searched the whole

  • How to access the drop down menu on mobile Firefox

    I need to able to print from my browser