Numbers leaving data fields blank

I just started using Numbers for iCloud today and spent several hours putting together a budget spreadsheet in Firefox. When I went to sum up the numerical column, I noticed the sum was totally off. So I tried opening the same doc up in Safari, and noticed that most of my data did not appear. Is this an issue with Numbers being incompatible with Firefox?

ORA-00001: unique constraint (MAIN_SCHEMA.VLE_PK) violatedbecause ur inserting duplicate data into following column on which u have define the primary key.
00001, 00000, "unique constraint (%s.%s) violated"
// *Cause: An UPDATE or INSERT statement attempted to insert a duplicate key.
// *Action: Either remove the unique restriction or do not insert the key.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • IPhone contacts, Country field, keeps Syncmyride  Navigation from  giving directions.  Is there a way to leave Country field blank?  Thanks for any help.  JW

    iPhone contacts, Country field, keeps Syncmyride  Navigation from  giving directions.  Is there a way to leave Country field blank?  Thanks for any help.  Jww

    Syncmyride. That's what's having the problem. If it were handing the data properly, it wouldn't be a problem. You should not have to remove data from your contacts in order for an app that is accessing the contact data to work correctly. This is a bug in syncmyride. It has nothing to do with iCloud or anything else that Apple controls.

  • "Posting Date" field blank by default

    Hi!
    Is there any way, in transactions FB60 and F-43, so that field "Posting Date" is displayed blank whenever the user executes them? By default, this field displays the current date.
    Thank you
    Lucia

    Hi Lucia,
    The SAP standard defaults the value of the posting date automatically and it is not possible to remove this default value in BUDAT.
    However, it may be possible to use a substitution to get your desired result. You can check note 42615 for information purposes.
    Best regards,
    Cintia

  • IWeb leaves title field blank in podcast rss.xml

    For some reason iWeb is not filling in the <title> field of my podcast's RSS feed which means that when I try to submit it to iTunes it is rejected for not having a title.
    Is there a way to make iWeb add in the title to the feed after the podcast page has already been created? There are lots of entries already and I really don't want to have to go back and make a new page and re-enter them all from the beginning.
    This is being published to .Mac via iWeb and I have my own domain that I've set up and am using.
    Thanks.

    Hi JJ,
    I created my podcast successfully using iWeb (v. 1.1.2) and the title name was not an issue. When creating your page, i am guessing you used the podcast template??
    If so, when inputting your own personal info, did you delete the text in the boxes and replace with yours, or did you delete the actual text boxes and create new ones?? I did find when publishing that if i created a new box, it would not work in the same way as the default boxes did. I think the default boxes are referenced in some way. Perhaps this is the issue??
    Alternatively, you can locate the XML/RSS file related to your site (if you published to iWeb using a dotmac account it will be easy to find) and just input the title yourself by inputting *<title>YOUR TITLE</title>* below the <channel> tag.

  • Where do we have Fixed date field  in sales order

    Hi All,
    Where do we have the field "fixed date" in the sales order,
    What is the relevance of the field.
    Thanks in Advance,
    Regards
    Jai

    Hi,
    The fixed date field is available at sales order -> line item -> scheudle line tab. (VBAP-FIXMG).
    If you click on F1 button on this field you can see the user of it.
    From F1 help;
    Delivery date and quantity fixed
    Indicates whether you want to fix the delivery dates and quantities that are confirmed after an availability check for the item.
    Use
    You use this field if you cannot confirm the delivery date or quantity that the customer initially requests.
    Procedure
    If the customer accepts the delivery and quantity confirmed by the system, mark the field. The system then passes on MRP requirements so that the confirmed date and quantity can be met.
    Note
    If you leave the field blank, the delivery date and confirmed quantity are not fixed. If you are able to expedite either the manufacture or purchase of goods, you may be able to deliver the goods closer to the customer's original request (and sooner than the date the system confirmed).
    Regards,
    PS: Can you please close your previous postings, if you feel answered.

  • Date field (not required) causing an error...Please assist!

    Hello, I am a beginner when it comes to ColdFusion could someone please assist with this issue?
    I have a date field in my application that is not required, I want users to have the choice to leave this field blank.
    Below is a breakdown of what I have going on:
    On Add/Edit page:
    <cfinvoke component="test"
               method="get"
               ReferenceNumber="#URL.RefIDNum#"
               returnvariable="record">
    <cfset ThisIsTheDateField=DateFormat(record.ThisIsTheDateField, "MM/DD/YYYY")>
    <cfform action="process.cfm">
       <cfinput type="Text"
                name="ThisIsTheDateField"
                value="#ThisIsTheDateField#"
                message="ThisIsTheDateField must be a valid date"
                required="no"
                                            validate="date"
                validateAt="onSubmit"
                size="50"
                maxlength="10">
    On process.cfm:
    <cfinvokeargument name="ThisIsTheDateField"
                       value="#DateFormat(FORM.ThisIsTheDateField)#">
    On CFC Page:
    <!--- Method arguments --->
    <cfargument name="ThisIsTheDateField"
                  type="date"
                  required="no"
                  hint="ThisIsTheDateField field">
    Query Value for this field:
    #CreateODBCDate(ARGUMENTS.ThisIsTheDateField)#,
    The error I get is:
    Error Occurred While Processing Request
    The THISISTHEDATEFIELD argument passed to the add function is not of type date. 
    If the component name is specified as a type of this argument, it is possible that either a definition file for the component cannot be found or is not accessible. 
    The error occurred in E:/site/test.cfc: line 56
    54 :
    55 :  <!--- Add a record --->
    56 :  <cffunction name="add"
    57 :              returntype="boolean"
    58 :              hint="Add a record">
    I need a way to make this field accept blank entries... when I leave it blank I get the above error!
    Thank you!

    The cfif does not surround the cfargument.  Put your cfargument for ThisIsTheDateField the same way you have it for your First/Second/Other Thing cfargument.  Then, understand that even though you have a cfargument tag that is named "ThisIsTheDataField", that the variable "arguments.ThisIsTheDataField" doesn't necessarily exist (because you have defined the argument as optional).  If it doesn't, you can't use it, otherwise you will get
    Element THISISTHEDATEFIELD is undefined in ARGUMENTS.
    So for the parts of your function where you will want to do something specific if the ThisIsTheDataField was passed to your function, you have to check using IsDefined("argument.ThisIsTheDataField") to determine if that variable exists or not.  SO, to summarize using the example you supplied above:
    <cffunction name="add"
                 returntype="boolean"
                 hint="Add a record">
      <!--- Method arguments --->
      <cfargument name="FirstThing"
                  type="string"
                  required="no"
                  hint="First Thing">
      <cfargument name="SecondThing"
                  type="string"
                  required="no"
                  hint="Second Thing">
      <cfargument name="ThisIsTheDateField"
                  type="date"
                  required="no"
                  hint="ThisIsTheDateField field">
      <cfargument name="Fourth Thing"
                  type="string"
                  required="no"
                  hint="Fourth Thing">
    <cfif IsDefined("arguments.ThisIsTheDateField")>
       <!--- operations that happen if ThisIsTheDateField was passed to the function
    <cfelse>
        <!--- operations that happen if ThisIsTheDateField was not passed to the function --->
    </cfif>
    As an example, let us say that you want to have the date be a default value (say, today's date), if the date isn't passed to the function.  You could do:
    <cfif IsDefined("arguments.ThisIsTheDataField")>
        <cfset TheDateField = arguments.ThisIsTheDataField" />
    <cfelse>
        <cfset TheDateField = Now() />
    </cfif>
    At the end of this code, the variable "TheDateField" will be guaranteed to have a date, and the date will be the date passed to the function if one was passed, or otherwise today's date if not.
    I hope that clarifies everything!

  • I have a numbers spreadsheet for tracking company data.  I want to copy the format of the spreadsheet (rows, columns,and formulas) but have all of the data fields be blank for the new year.  How do I do that?

    I have a numbers spreadsheet for tracking company data.  I want to copy the format of the spreadsheet (rows, columns,and formulas) but have all of the data fields be blank for the new year.  How do I do that?

    click and hold on one cell, then drag to select the range, then release, then type the delete key.  Only inlude cells in the range you do not want to keey the contents of the cell.  You can remove one-off cells by holding the command key and clicking cells to add or remove as needed.
    You can download the Numbers users guide here:
    http://support.apple.com/manuals/#productivitysoftware

  • Blank or null date fields are displaying 1/1/1901

    I have optional date fields that users may leave blank.  When they do, the result is that my report is printing 1/1/1901 (which I am guessing is a default setting somewhere in the options???)  Can anyone point me in the right direction so that if the field is null, the "text string" & doesn't print?
    Here's the formula, maybe it's a fundamental problem with the way I've done the formula:
    if totext({Command.SHIPDATE}) = ""
    then ""
    else "Needed by: " & {Command.SHIPDATE}
    Any help is greatly appreciated.

    Is SHIPDATE a date type or text field?  I an presuming a text field based on your example.  If the date is defaulting to 1/1/1901, I am guessing that is a function of your database server rather than Crystal Reports.  So I would alter your code to say:
    if totext({Command.SHIPDATE}) = "1/1/1901"
    then ""
    else "Needed by: " & {Command.SHIPDATE}
    Fuskie
    Who notes you could also put the text and data object directly in the report and use a suppression formula instead of a report object formula...

  • Date fields are showing as  /  /   in DSO for blank dates or no dates

    We are loading flat file data to DSO and the date fields are showing as  /  /   in DSO for blank dates or no dates in the flat file source system.  We don't want to see this / /  and instead of this, we would want to this field in DSO to be in blank. Please help how to achieve this. Is there any way to do this transformation. If yes, then can you please provide  the sample coding.
    Advance Thanks,
    Christy

    I have added the code and data loading is successful. while DSO activation, it is failing. The error message is,
    Value '#' of characteristic 0DATE is not a number with 000008 spaces.
    It seems that we need to change the code. Can you provide me the corrected code please. Thanks.
    Christy

  • How do I set blank data to date field in pdf form ?

    Dear Sir,
    I made PDF form by Acrobat X on Windows PC and then,
    read the pdf form by acrobat reader on iPad.
    Date field  is included in the form.
    The Acrobat version is 10.1.6 .
    The acrobat reader version is 10.5.0 .
    First, I put the wrong date data to the date field.
    So, I tried to clear the date field.
    I want to put the blank data to the date, but I think
    there are no way to put the blank data on iPad
    I would like to know how to reset the date data.
    If that helps, I tried to the same thing on Android.
    I could put blank data to the date field by BS key.
    Sincerely,
    PV NEXT CO., LTD.
    Kiyonobu Matsuo
    PVネクスト株式会社

    Here is how to clear the Date field on the Ipad.
    NOTE: In order for this to work that has to be another TEXT field in the PDF to get the keyboard to pop-up.
    Click on Text field (this is to get the regular keyboard on screen)
    Click on Date field (date spinner control will show up)
    Click on SAME DATE field (spinner control will disapper)
    Click on "Reset Field" on top of keyboard (date field will now be empty)
    Click any where on PDF that is not another Date field (keyboard will disappear and date field will be empty)
    Bingo! your free and clear.

  • When I open numbers, my spreadsheet appears blank.  yet, when I moveacrossa row, data appears in the formula bar.  How can I fix it so I can see the sheet?

    When I open numbers, my spreadsheet appears blank.  yet, when I moveacrossa row, data appears in the formula bar.  How can I fix it so I can see the sheet?

    I had the same issue for several days (and several reboots).  During that time I found I could print the spread sheet as a pdf, though I couldn't see it except cell by cell.
    Suddenly the problem disappeared.  I never did know why the problem appeared nor why it disappeared.
    In the interim I ran the disk utility several times and repaired permissions twice.  That may have helped, but I don't know.

  • Office 2010 Don't print blank lines when data fields are empty

    How do you do this in office 2010?  Where do we go now?
    This used to be under the Tools menu in previous versions:
    On the Tools menu, click Mail Merge.
    In the Mail Merge Helper dialog box, click Merge.
    NOTE: You must select the main document and data source for the merge before doing step 2.
    In the Merge dialog box, under When Merging Records, click either:
    Don't print blank lines when data fields are empty.
    -or-
    Print blank lines when data fields are empty.
    Click Close in the Merge dialog box, and then click
    Close in the Mail Merge Helper.
    NOTE: If you made no changes in the Merge dialog box, the
    Close button is not available. Click Cancel instead.
    Back to the top

    Hi,
    In Word 2007 or Word 2010, you can add
    Mail Merge Helper to the Quick Access bar, and perform the steps then.
    To add the
    Mail Merge Helper command in the Quick Access Toolbar in Word 2007, follow these steps:
    a.                 
    In Word 2007, click the
    Microsoft Office Button, and then click Word Options >
    Customize.
    In Word 2010, click File > Options > Customize Ribbon.
    b.                 
    Click
    All Commands in the Choose commands from, and then click
    Mail Merger Helper in the Choose commands from list.
    c.                  
    Click
    Add, and then OK.
    Best Regards,
    Sally Tang

  • Is it possible to set up a Paragraph Style leaving the Font Style field blank?

    We often have to import text into InDesign from Word docs. We place the docs (Command-D, rather than copying and pasting) in order to preserve italics, bold text, etc. As it is now, we have to select all the text and set each element separately - leaving the Font Style field blank - in the Character Palette.
    It would save a lot of time, if we could set up a Paragraph Style without specifying the Font Style, (leaving it blank), which overrides the formatting we are trying to preserve. Is this possible?

    The answer is "kind of". You can create the Paragraph Style you want to apply and select the paragraphs you want to apply it to - then right-click on the Paragraph Style and choose 'Apply "Body". Clear Character Styles.'
    It is possible to do this as a Character Style if you click outside of a text area and create a new style. I do it all of the time as I import lots of Word documents to write to ePub (you have to define all of the styles to ensure the document looks right). Since the documents come in with small caps, bold, italics, different font sizes but the same font throughout.
    So I have a style based on None with blank Font Size and Font Style which I apply to the whole document. If there is anything in these boxes you can just erase it by backspacing over the text.

  • Query about Leaving date,Reason for leaving fields in R3 report of HR Modul

    Hi Experts,
              I have a report in R3 for HR. In the report i am getting fields like leaving date,reason for leaving .
    When I  clicked F1 on the leaving date and reason  i came to know the field name as FIREDATE and MGTXT...
    I checked in DD03L table with these field name and found no related tables for that.....
    but i found some structures only.........
    In order to create a generic datasource with these fields included then how data will get for these fields....
    But i find no relevant tables regarding these fields.....in the report of r3 when checked f1
    Text
    Leaving date
    Definition
    Date, on which an employee leaves the company.
    Dependencies
    The following infotypes are taken into account when the value is created:
    P0000 - Actions
    P0001 - Organizational Assignment
    But the above P0000 ,P0001 are structures .... how can the leave date get populated in the generic datasource.which i may have to create ?
    Thanks
    Vamsi

    The easiest way to accomplish that would be to add some logic in a custom controller (i.e some java code). Which is a little more complex than regular personalizations.

  • Date field to be set blank--Urgent --Please help

    Hi All,
       We are running on SRM 4.0(classic scenario).On the SC screen,there  is a  date field called "Required on".By default this field is getting populated with the system date.
      Now my reqt is that when the SC screen appears,i want this date field to be blank(not carry the system date)..The user will change the date whcih will flow to the next screen(Item level data-->std functionality)....
       I tried implementing this using the BADI BBP_DOC_CHANGE_BADI....but with this BADI,the date field can be changed to blank at the next screen..not at the first screen where this field gets populated by deafult with the system date where I want...
       In addition to this with this BADI,when i reset the field value to blank on the2nd(next ) screen,i get an error  message(stating that the date field value is not carried over)...
      Can anyone tel me how this date field is getting populated and how i can set this  value to blank when the SC screen appears???Please help..
    Thanks & regards,
    Disha.

    Hi Disha,
    second message is normal: this is the std check on delivery date (here it is initial because of your mods).
    first one semas to be related to the WF.
    It could be deactivated via usual message control in SPRO.
    1> I don't know this message
    2> message BBP_PD 584 or 587
    If you set this field as mandatory in the HTML template, maybe it would force the user to populate it before sending it to SRM SC item.
    Rgds
    Christophe
    PS: please reward points for helpfull answers

Maybe you are looking for

  • TransformerException -- possible bug in weblogic.apache.xalan.transformer.TransformerImpl

    Using WebLogic Server 6.1 SP2. Am using xslt to transform xml into html. After repeatedly using the same Transformer object to transform different xml documents, the Transformer eventually becomes corrupt – sometimes after 20 or so transforms, someti

  • Finding relevant search results in sharepoint 2013

    I had a 5 word documents Test1, Test 2, test 3, test 4 and test 5 and i had variant, score, geoname and complex variant like the below. Test 1 Variant : 501 Score : 500 GoeName : 502 Test 2 Variant : 500 Score : 502 GoeName : 501 Test 3 Variant : 502

  • Reformated PC, does it count as a new one of your 5 allowable?

    My computer crashed.  I've had it reformatted and am having to re-authorize it so I can rebuild my Itunes library.  Does it still count as a 2nd computer in the 5 allowable?

  • Input ready query performance

    Hi Experts, We are working on input ready queries. But the input ready reports are taking lot of time around 10 to 15 mins to display the results and hence the planning functions like save are also taking lot of time. We can't use the OLAP cache as t

  • Finding the correct JDK release

    Hi, I am trying to locate a JDK release which contains a bug fix ( #2121401 http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=2121401 ). according to the bug page the problem is fixed in relase: 5.0u2(b04) since i can't find this bug id in the jdk u