Losing Text Typed Into Properties/Data/value Field

If you type within the Properties/Data/value field of a Component Label then click on the "..." for that field, you'll lose the text you just typed. I don't know how pervasive this is throughout other fields.

I'm suggesting that this should be fixed so that data isn't lost when clicking the "...". Take a look at the Properties/Appearance/style field. If you edit that field and then click on the "...", the data is at least copied into the new dialog. This editing behavior should be consistent throughout the Properties panel, if not the entire application.

Similar Messages

  • Insert current date and time into Oracle date type field

    I have a JDBC current date and time insert into Oracle 9i that almost works. It submits the current date and a fixed time into the Oracle date type field. I am using Tomcat 6.0.20.
    For example if I insert the data at 7:24:04 PM on Feb 16, 2010 it will insert as: 16-Feb-2010 12:00:00 AM
    The date part works but the time always shows 12:00:00 AM no matter what date or time the data is inserted.
    Here is what I have for my JDBC inserts and I also tried something with DateFormat:
    PreparedStatement ps; Date mydate = new Date(new java.util.Date().getTime()); //insert statement here.... stmt.setDate(1,mydate);
    I also tried:
    PreparedStatement ps; java.sql.Timestamp mydate = new java.sql.Timestamp(new java.util.Date().getTime()); SimpleDateFormat fmt = new SimpleDateFormat(.... //insert statement here.... ps.setTimestamp(1,fmt.format(mydate));
    Both keep submitting the date into Oracle as 16-Feb-2010 12:00:00 AM
    Anyway to get the current date and time? For example if I insert the data at 7:24.04 pm today it should show as 16-Feb-2010 07:24.04 PM in Oracle.

    sportsMarkr wrote:
    Date mydate = new Date(new java.util.Date().getTime());Please see the javadocs for java.sql.Date and note the part that says "...to zero"
    [http://java.sun.com/javase/6/docs/api/java/sql/Date.html]
    If you want a date and time then use java.sql.Timestamp.

  • How to turn a string into a date value

    Hi All,
    What is the best way to approach a date sorting issue I have?
    A web service that I consume returns a date column in a string
    format. Thus when the user clicks the column to sort a data grid by
    that date value it sorts incorrectly.
    I realize I could put a sort() on the grid or convert the
    data somehow. I am hoping several people can give me what would be
    considered a "best practice" from a code readability and
    performance point of view.
    Thannks in advance for your thoughts on this issue.

    you dont have to convert anything just implement function and
    asign it to Sort object's "compareFunction" property
    The compare function must have the following signature:
    function [name](a:Object, b:Object, fields:Array=null):int
    This function must return the following
    * -1, if a should appear before b in the sorted sequence
    * 0, if a equals b
    * 1, if a should appear after b in the sorted sequence
    inside that function you might need a tmp conversion but
    overall that should be it
    for example (function can look like this :
    if a===b) return 0;
    if(myStringToDateConvertor(a) > myStringToDateConvertor(m)
    ) return 1;
    if(myStringToDateConvertor(a) < myStringToDateConvertor(m)
    ) return -1;
    return 0;
    (remember sortField also has has compareFunction property but
    you dont need that one).

  • Subtotal value in sales order not coming into the net value field.

    Dear Gurus,
    I am entering two manual conditions in sales order and the total of the two conditions is taking into subtotal step. I want to show that subtotal value into Net Value field(i.e. avilable in the conditions tab).
    I tried number of combinations.
    Please help.

    As taking two pricing conditions, system is deactivating one condition. That's why the net value is considering one pricing condition only.
    to make both active, one pricing condition and the other condition as surcharge with positive value.

  • How to prevent an automatic fill in of the current date into a Date/Time Field

    hi,
    maybe i checked out a strange behaviour of the adobe designer. when i put a "normal" data/time field (with no data pattern, display pattern, etc.) on a form and then change (on the pdf preview tab) to the newly designed date field,i have to stay about 2 minutes on this field not filling it out.
    after these minutes the current date is filled in automatically in the date/time field.
    what can i do preventing that? any hints?
    thanks in advance.
    markus

    I don't have any info on timelines, all I can say is check back in future versions of Acrobat :(
    Chris
    Adobe Enterprise Developer Support

  • How to Load Master data text  Description into the Data Target?

    Hi,
    I have a Master data which is an ID, and the description for that ID is added as text description along with the master data.
    The datasource is a flat file load, which has both the fields i.e. ID as well as the description along with many other fields.
    I need to load the flat file without changing it, into the ODS.
    Please suggest a way to load the description of the ID along with the ID into the ODS, and then further into the CUBE.
    This description field should be available, while checking the contents of the ODS as well as the CUBE.

    hi Srinivas,
    Thanks for the quick response.
    I actually have the flat file with the description within it.
    I cannot make any changes to the flat file.
    So, please suggest me accordingly.

  • On Mac, can't comment on pdf or save text typed into form

    My colleague (on a Mac) can't open the comment tools after downloading a PDF and opening in Reader. Also, responses in text fields cannot be saved, as per the screenshot below:

    Reader seems to be up-to-date...

  • How To Import Into A Table with Multi-Value Fields

    Hello:
    I have a table with a multi-value field that contains states in which a company does business.  It is multi-value because there can be more than one state.  I tried to import a text tab-delimited file in which the data was arranged as follows:
    Field1 Tab Field 2 Tab OR, WA, CA Tab
    The "State field contained the multiple entries separated by a comma (like they appear in a query of the multi-value field), but it won't accept it.  Does anyone know how to import into a multi-value field?
    Thanks,
    Rich Locus, Logicwurks, LLC

    Joana:
    Here's the code I used to populate a multi-value field from a parsed field.  The parsing routine could be greatly improved by using the Split function, but at that time, I had not used it yet.   FYI... the field name of the multi-value field in
    the table was "DBAInStatesMultiValue", which you can see in the example below how it is integrated into the code.
    Option Compare Database
    Option Explicit
    Option Base 1
    Dim strInputString As String
    Dim intNumberOfArrayEntries As Integer
    Dim strStateArray(6) As String
    ' Loop Through A Table With A Multi-Value Field
    ' And Insert Values Into the Multi-Value Field From A
    ' Parsed Regular Text Field
    Public Function InsertIntoMultiValueField()
    Dim db As DAO.Database
    ' Main Recordset Contains a Multi-Value Field
    Dim rsBusiness As DAO.Recordset2
    ' Now Define the Multi-Value Fields as a RecordSet
    Dim rsDBAInStatesMultiValue As DAO.Recordset2
    ' The Values of the Field Are Contained in a Field Object
    Dim fldDBAInStatesMultiValue As DAO.Field2
    Dim i As Integer
    ' Open the Parent File
    Set db = CurrentDb()
    Set rsBusiness = db.OpenRecordset("tblBusiness")
    ' Set The Multi-Value Field
    Set fldDBAInStatesMultiValue = rsBusiness("DBAInStatesMultiValue")
    ' Check to Make Sure it is Multi-Value
    If Not (fldDBAInStatesMultiValue.IsComplex) Then
    MsgBox ("Not A Multi-Value Field")
    rsBusiness.Close
    Set rsBusiness = Nothing
    Set fldDBAInStatesMultiValue = Nothing
    Exit Function
    End If
    On Error Resume Next
    ' Loop Through
    Do While Not rsBusiness.EOF
    ' Parse Regular Text Field into Array For Insertion into Multi-Value
    strInputString = rsBusiness!DBAInStatesText
    Call ParseInputString
    ' If Entries Are Present, Add Them To The Multi-Value Field
    If intNumberOfArrayEntries > 0 Then
    Set rsDBAInStatesMultiValue = fldDBAInStatesMultiValue.Value
    rsBusiness.Edit
    For i = 1 To intNumberOfArrayEntries
    rsDBAInStatesMultiValue.AddNew
    rsDBAInStatesMultiValue("Value") = strStateArray(i)
    rsDBAInStatesMultiValue.Update
    Next i
    rsDBAInStatesMultiValue.Close
    rsBusiness.Update
    End If
    rsBusiness.MoveNext
    Loop
    On Error GoTo 0
    rsBusiness.Close
    Set rsBusiness = Nothing
    Set rsDBAInStatesMultiValue = Nothing
    End Function
    Public Function ParseInputString()
    Dim intLength As Integer
    Dim intStartSearch As Integer
    Dim intNextComma As Integer
    Dim intStartOfItem As Integer
    Dim intLengthOfItem As Integer
    Dim strComma As String
    strComma = ","
    intNumberOfArrayEntries = 0
    strInputString = Trim(strInputString)
    intLength = Len(strInputString)
    ' Skip Zero Length Strings
    If intLength = 0 Then
    Exit Function
    End If
    ' Strip Any Leading Comma
    If Mid(strInputString, 1, 1) = "," Then
    Mid(strInputString, 1, 1) = " "
    strInputString = Trim(strInputString)
    intLength = Len(strInputString)
    If intLength = 0 Then
    Exit Function
    End If
    End If
    ' Strip Any Trailing Comma
    If Mid(strInputString, intLength, 1) = "," Then
    Mid(strInputString, intLength, 1) = " "
    strInputString = Trim(strInputString)
    intLength = Len(strInputString)
    If intLength = 0 Then
    Exit Function
    End If
    End If
    intStartSearch = 1
    ' Loop Through And Parse All the Items
    Do
    intNextComma = InStr(intStartSearch, strInputString, strComma)
    If intNextComma <> 0 Then
    intNumberOfArrayEntries = intNumberOfArrayEntries + 1
    intStartOfItem = intStartSearch
    intLengthOfItem = intNextComma - intStartOfItem
    strStateArray(intNumberOfArrayEntries) = Trim(Mid(strInputString, intStartOfItem, intLengthOfItem))
    intStartSearch = intNextComma + 1
    Else
    intNumberOfArrayEntries = intNumberOfArrayEntries + 1
    intStartOfItem = intStartSearch
    intLengthOfItem = intLength - intStartSearch + 1
    strStateArray(intNumberOfArrayEntries) = Trim(Mid(strInputString, intStartOfItem, intLengthOfItem))
    End If
    Loop Until intNextComma = 0
    End Function
    Regards,
    Rich Locus, Logicwurks, LLC
    http://www.logicwurks.com

  • Table for CO-PA-Value Field Texts

    Hi together,
    does anybody know the table where the texts for the CO-PA-Value-fields are stored?
    Kind regards
    Udo

    Hello,
    both tables do not match my expectations.
    Table V_TKEVG3 is for assignment of value field groups, table TKCTK is for key figures.
    Kind regards
    Udo

  • Change the Condition type to Value Field Assignment in KE4I

    Hi All,
    I have a requirement where a condition type which has been assigned to a Value Field needs to be changed/re-assigned to a different value field.
    There are already some postings into the current value field.
    How can I handle these postings once I change the assignment in KE4I.
    Please help me.
    Thanks in advance,
    erp.warrior.

    Hi
    Once you change in KE4I - It would impact only the subsequent postings... Historical postings wont be impacted...
    If you want to impact them as well - Follow one of these 2 approaches
    a. Then reverse the billing documents which have posted to this Value Field.... Change KE4I and post them again...
    b. Do a KE21N upload i.e. a -ve amount on the Old value field and a +ve amount on the new value field
    Regards
    Ajay M

  • SQL Loader-How to insert -ve & date values from flat text file into coloumn

    Question: How to insert -ve & date values from flat text file into coloumns in a table.
    Explanation: In the text file, the negative values are like -10201.30 or 15317.10- and the date values are as DDMMYYYY (like 10052001 for 10th May, 2002).
    How to load such values in columns of database using SQL Loader?
    Please guide.

    Question: How to insert -ve & date values from flat text file into coloumns in a table.
    Explanation: In the text file, the negative values are like -10201.30 or 15317.10- and the date values are as DDMMYYYY (like 10052001 for 10th May, 2002).
    How to load such values in columns of database using SQL Loader?
    Please guide. Try something like
    someDate    DATE 'DDMMYYYY'
    someNumber1      "TO_NUMBER ('s99999999.00')"
    someNumber2      "TO_NUMBER ('99999999.00s')"Good luck,
    Eric Kamradt

  • Transfer Rule Routine: Assign Date Value into Blank Field

    Can anyone help me with regards to writing some ABAP code in a transfer rule so that I can assign "99991231" value into a date characteristics if it is blank?
    Many thanks for advance.

    I would like to check if the value of EXPIRYDATE is blank in data source. If its value is blank, assign '99991231' to it. Otherwise, it will get the value of EXPIRYDATE in transfer rule. I have rewritten the routine as follows. But there is no effects on the result.
    if TRAN_STRUCTURE-EXPIRYDATE IS INITIAL.
      RESULT = '99991231'.
    else.
      RESULT = TRAN_STRUCTURE-EXPIRYDATE.
    endif.
    Many thanks in advance.

  • Can "SPML Web Service Complex Data Type field" take multiple values ?

    In Generic Technology Connector's -SPML design parameters section, Can we give multiple values in SPML Web Service Complex Data Type field?
    If not, how can i call methods directly instead of calling them through a values of the "name" attribute of the "complexType" element in SPML Web Service Complex Data Type?
    I need 'SPML Web Service Complex Data Type' to hold multiple values.And based on the request it has to initiate appropriate method of action.
    Presently i have three methods add,modify and delete which i am calling through a single value of the "name" attribute of the "complexType" element in SPML Web Service Complex Data Type.
    I want to replace this single value with multiple menthods , so that a direct interaction between the method,OIM and target can be established.
    Edited by: 821054 on 16/02/2011 04:23

    Thanks Robert.
    You'll need to create your own interface to the webapp database for those kind of data operations
    by this, are you speaking of the internal BC database which stores web app schema data? That would be great if it were possible to update that programmatically because I need to use the List (Checkbox List) field type (for the search functionality), but I need to supply the checkbox options from a web app rather than by manually updating the list entered in the Fields view of the web app settings (shown below).
    I'm curious if anyone else has tried this?
    Again, my reason for needing to use the List (Checkbox List) field type is that the page which processes searches knows to expect a comma separated list for this field type and then appears to be parsing out the individual values for searching out web app items with 1 or more matching values. You're right that text fields (string and multiline) just check for 'string contains' matches, and this would be ok if I was only ever needing to search just one value at a time. Here's an example of what I might do:
    Web App item field value (as recorded against the List (Checkbox List) field type:
    8294877,8294878
    Web App Search value (for this same field):
    8294879,8294877,8294885
    The search would return this web app item because the field contains 2 (1 or more) individual values even though they were entered into the search field in a different order. If this web app item were just a Text (string or multiline) field, the searched value is not a substring of the web app item's stored value, so it would not find a match. Hence the need to use Checkbox List field type.
    The web app will have thousands if not 10s of thousands of records, so dumping them all into one big array or object and searching on the front-end won't be practical (though it works great on smaller datasets).

  • Date/Time Field in Access 2000 - INSERT INTO ... syntax error

    I am using Labview 6.1 Professional with the Database Connectivity Toolkit. When I execute this SQL Command "INSERT INTO PRODUCTION (Part, Passed, Date) VALUES ('Part#1', 2, '10/10/2003 10:10:10 AM')" I get a Run-Time Syntax Error. If I remove the Date Label and Date Value it works. What is the proper Format of the Date/Time Type Field in ACCESS 2000 for Labview 6.1 SQL? I have seen and tried all of the solutions already posted like MSG 1ZNAJHJ6.

    Well, if it's any consolation handling dates is a pain regardless of which database you use. In any case, I created a table with the following definition:
    CREATE TABLE testing
    (item1 INTEGER,
    item2 DATE)
    I them did the following insert:
    INSERT INTO testing
    VALUES (1, '18/11/1953 04:20:00');
    And everything worked fine. Note that in the date (my Bday, BTW) the format is DD/MM/YYYY followed by the time.
    What exactly is the error you're getting? Can you post the exact text of the error message. Also, I ran my test using the examples that come with LabSQL--not the toolkit.
    Mike...
    Oops, just noticed something. You have a column name that is probibly a reserved word "Date". Try your insert as:
    INSERT INTO PRODUCTION
    VALUES
    ('Part#1', 2, '10/10/2003 10:10:10 AM')
    If there is only those three columns and they the order the data appears is the same as the column order, you don't need the column list. If this works (and it should--I just tried it) I would only view it as a temporary patch. The column name should be changed.
    This is also a good reason to not use the Access GUI to create tables. If you tried creating a table like that in SQL you would have gotten an error message. Learning to build tables in SQL code isn't hard and it adds an extra layer of error checking that the GUI apparently doesn't think is important.
    If you're interested let me know and I can send you the info on a really good book on SQL...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Import into Lookup Hierarchy Multi-Value Field

    My source data contains two fields (Product ID, Product Notes). I need to map the Product Notes into a Hierarchy Lookup Field on main products table.  THe hierarchy table for product notes contains two text fields and both are display fields.  My source data for product notes contains a comma delimited list of values that only apply to one of the display fields of the Hiearchy table.
    Example:
    product1 |  1,5,10
    product2 |  1,3
    product3 |  1,6,13
    How do I map and assign the multiple product notes to each product?

    Hi Sowseel,
    I do not understand your assumptions.
    I have following tables:
    Tablename: Product Notes
    Table Type: Hierarchy
    Display Fields: Note Number, Note Description
    Unique Fields: Note Number
    Key Mapping: No
    Tablename: Products
    Table Type: Main
    Display Fields: Product Number
    Key Mapping: Yes
    The Product Notes table has following example entries already (comma delimitter indicates field seperation):
    1, Description of product note 1
    2, Description of product note 2
    3, Description of product note 3
    Notice there is no really hierarchy. This table type was used to have manual control of the order of the notes.
    My import data is formated as follows:
    Field1 Name = Product Number
    Field2 Name = Product Notes
    Field1 Value = XYZ
    Field2 Value = 2,8,10
    In import manager, the product notes field in my destination pane is shown as a heirarchy.  Selecting the root level shows destination values of the display fields for this lookup table (i.e. Note Number, Note Description).  However, my source data only contains a comma delimitted list of note numbers.  I do not understand how to map the values.

Maybe you are looking for

  • PC Suite - no USB and Serial Connection Type avail...

    I have been trying to solve this problem for days now. I have Windows XP and Nokia 5310. After I installed Nokia PC Suite, there is no USB or Serial connection type in the Connection Manager; it only has Blue Tooth and Infrared conection available. I

  • Apple TV connections?

    I keep going around in circles here. If you can try and keep it simple. Here is what I have: Apple TV Airport Extreme Denon Receiver Sharp TV Dennon receiver and Sharp TV have more connection options then I can list. Plenty of HDMI ports and an Optic

  • One question about arch linux 2009.02 and ext4

    hi, i want to download newest arch linux version. i heard i can select file system type as ext4, that sounds cool, because i really want ext4. anyway i heard that you need grub2 to properly boot ext4 arch system. so is grub2 will be included in arch

  • SQL Server for OBIEE

    Hello, Can i integrate OBIEE with other database other than Oracle Database. Regards

  • Inspector tool missing

    I'm not to sure what happened, but somehow the Inspector tool in iWeb has gone missing on my computer. I click on the Inspector icon and nothing happens. If I go under View Menu and click "show inspector" nothing happens, although when I do this, the