Appleworks Formula error on import to Numbers

I have devised a spreadsheet for my VAT and TAX in Appleworks (6.2.9 It has worked fine for years. I recently decided that I should try and get it working in Numbers (09) to future proof it. I am having a problem with one of the formulae:
=IF(X4Y4+AA4+AB4+AC4+AF4+AG4+AH4>0,M4-(X4+Y4+AA4+AB4+AC4+AF4+AG4AH4),"")
This totals selected columns across an analysis row and puts the total in a cell at the end. However, if there is nothing in any of the cells then it leaves the total box blank. This avoids filling the spreadsheet with zeros in empty cells. This works fine in Appleworks but when imported into Numbers, I get a red triangle and If I click on the triangle I get a message that says:
The operator "+" expects a number, date or duration but found "."
The cells that this summing operation refers to are themselves filled by a conditional statement that is designed leave a blank cell if no suitable value is entered. This however, requires no addition and so works fine leaving a blank box if there is no suitable value. I should point out that usually on any line only one of the columns will have a value if it is used at all. The others will still be blank and it seems to be the "blankness" that the formula in Numbers does not like. It does not seem to treat a blank cell as zero as happens in Appleworks.
Should I be expressing this differently? If so how?
Thanks for any suggestions.
Regards,
David

dbarlow wrote:
I am sorry to waste your time. I did try to find a previous post but obviously was not searching correctly.
Not a problem of wasted time.
It's just a bit tiring to see questions asked here when the answer was already given several times.
Here are two samples :
http://discussions.apple.com/thread.jspa?messageID=8785388
http://discussions.apple.com/thread.jspa?messageID=10267765
Yvan KOENIG (VALLAURIS, France) vendredi 14 janvier 2011 17:30:47

Similar Messages

  • I am trying to copy and paste a series of numbers from numbers to pages but I keep getting a red triangle indicating formula error. Is there a way a way to open pasting options to copy just the value to avoid writing every single number??! Thanks..

    I am trying to copy and paste a series of numbers that were calculated in a numbers spreadsheet to a document on pages but I keep getting a red triangle indicating a formula error. Is there a way to open pasting options to copy just the value to avoid writing every single number??! Thanks..

    Hi Jess'D,
    Have you tried Menu>Edit>Paste Formula Results?
    quinn

  • Order Import Erroring while importing closed Order

    Hello,
    I am working on importing closed order for historical purpose and order import is erroring without giving much details. I set the debug level to 5 and log file contains only one error' ORDER IMPORT FAIL DUE TO UNEXPECTED ERROR.
    I am attaching the insert statements for headers and lines. Please review and hope to get a solution from one of the OM gurus here.
    Thanks a bunch in advance.
    Anant
    INSERT INTO OE_HEADERS_IFACE_ALL
    (ORIG_SYS_DOCUMENT_REF
    ,ORDER_SOURCE_ID
    ,ORG_ID
    ,ORDER_NUMBER
    ,ORDERED_DATE
    ,ORDER_TYPE_ID
    ,PRICE_LIST_ID
    ,SOLD_FROM_ORG_ID
    ,SOLD_TO_ORG_ID
    ,CUSTOMER_NUMBER
    ,TAX_EXEMPT_FLAG
    ,TRANSACTIONAL_CURR_CODE
    ,INVOICING_RULE_ID
    ,ACCOUNTING_RULE_ID
    ,PAYMENT_TERM_ID
    ,CREATION_DATE
    ,CREATED_BY
    ,LAST_UPDATED_BY
    ,LAST_UPDATE_DATE
    ,SALESREP_ID
    ,OPERATION_CODE
    ,CLOSED_FLAG --BOOKED_FLAG
    ,DROP_SHIP_FLAG
    ,SHIP_TO_ORG_ID
    ,INVOICE_TO_ORG_ID
    ,SHIP_FROM_ORG_ID
    ,ORIG_SYS_CUSTOMER_REF
    ,ORIG_SHIP_ADDRESS_REF
    ,ORDER_CATEGORY
    ,BOOKED_FLAG)
    VALUES
    ('514'     -- ORIG_SYS_DOCUMENT_REF
    ,1001                    -- ORDER SOURCE ID
    ,'102'                    -- ORG ID          
    ,10001006               -- ORDER NUMBER
    ,SYSDATE               -- ORDERED_DATE               
    ,1021                    -- ORDER TYPE ID
    ,6024                    -- PRICE LIST ID
    ,102                    -- SOLD FROM ORG ID
    ,2632                    -- SOLD TO ORG ID      
    ,'UN1666'               -- CUSTOMER NUMBER
    ,'S'                    -- TAX_EXEMPT_FLAG
    ,'USD'                    -- TRANS CURRENCY_CODE
    ,-2                         -- INVOICING_RULE_ID
    ,1                         -- ACCOUNTING_RULE_ID
    ,5                         -- TERMS_ID
    ,SYSDATE               -- CREATION_DATE
    ,1150                    -- CREATED_BY
    ,1150                    -- LAST_UPDATED_BY
    ,SYSDATE               -- LAST_UPDATE_DATE
    ,-3                         -- SALESREP_ID
    ,'INSERT'               -- OPERATION CODE
    ,'Y'                    -- CLOSED FLAG
    ,'N'                    -- DROP SHIP FLAG
    ,NULL                     -- SHIP_TO_ORG_ID (SITE USE ID FROM RA_SITE_USES_ALL, SITE_USE_CODE = SHIP_TO)
    ,1712                     -- INVOICE_TO_ORG_ID (SITE USE ID FROM RA_SITE_USES_ALL, SITE_USE_CODE = BILL_TO)
    ,103                    -- SHIP FROM ORG ID
    ,NULL                    -- ORIG_SYS_CUSTOMER_REF
    ,NULL                    -- ORIG_SHIP_ADDRESS_REF
    ,'Order'               -- ORDER CATEGORY
    ,'N')                    -- BOOKED_FLAG
    COMMIT
    INSERT INTO OE_LINES_IFACE_ALL
    (ORDER_SOURCE_ID
    ,ORIG_SYS_DOCUMENT_REF
    ,ORIG_SYS_LINE_REF
    ,ORIG_SYS_SHIPMENT_REF
    ,INVENTORY_ITEM
    ,REQUEST_DATE
    ,ORDERED_QUANTITY
    ,ORDER_QUANTITY_UOM
    ,PRICE_LIST_ID
    ,UNIT_SELLING_PRICE --UNIT_LIST_PRICE
    ,ACCOUNTING_RULE_ID
    ,PAYMENT_TERM_ID
    ,SALESREP_ID
    ,CREATION_DATE
    ,CREATED_BY
    ,LAST_UPDATE_DATE
    ,LAST_UPDATED_BY
    ,OPERATION_CODE
    ,DROP_SHIP_FLAG
    ,SHIP_TO_ADDRESS1
    ,SHIP_TO_ADDRESS2
    ,SHIP_TO_CITY
    ,SHIP_TO_POSTAL_CODE
    ,SHIP_TO_sTATE
    ,SHIP_TO_COUNTRY
    ,CLOSED_FLAG
    ,ITEM_TYPE_CODE
    ,INVENTORY_ITEM_ID
    ,DELIVERY_LEAD_TIME
    ,DELIVERY_ID
    ,TAX_EXEMPT_FLAG)
    VALUES
    (1001                    -- ORDER SOURCE ID
    ,'514'          -- ORIG SYS DOC REF
    ,'L4'               -- ORIG SYS LINE REF
    ,NULL               -- ORIG SYS SHIP REF
    ,'KR4R362478-07'     -- ITEM NUMBER
    ,SYSDATE               -- REQUEST DATE
    ,40                    -- ORDER QTY
    ,'EA'                    -- ORDER QTY UOM
    ,6024                    -- PRICE LIST ID
    ,95                -- UNIT LIST PRICE
    ,1                    -- ACCOUNTING RULE ID
    ,5                    -- PAY TERM ID
    ,-3                    -- SALESREP ID
    ,SYSDATE               -- CREATION DATE
    ,1150                    -- CREATED BY
    ,SYSDATE               -- LAST UPDATE DATE
    ,1150                    -- LAST UPDATED BY
    ,'INSERT'               -- OPERATION_CODE
    ,'N'                    -- DROP SHIP FLAG
    ,NULL --'1003 WASHINGTON AVE'     -- SHIP ADD1
    ,NULL --'SUITE 340'          -- SHIP ADD2
    ,NULL -- 'CHICAGO'          -- CITY
    ,NULL -- 60610               -- POSTAL
    ,NULL -- 'IL'               -- STATE
    ,NULL -- 'US')               -- COUNTRY
    ,'Y'
    ,'FG'
    ,7488
    ,1
    ,1
    ,'Y')
    commit
    ---------------------------------------

    Ganapati,
    Did you try passing the customer_number like -1 or some random high number that does not exist in hz_cust_accounts table in the account_number for party_type='PERSON' in the table oe_customer_info_iface_all?
    As I see this check for the first_name||last_name is done only of the customer number is not passed and customer_number is not used any where in the customer creation (if you are using automatic numbering for the customer accounts then you will obviously not passing any value to new_account_number which is used to created).
    Give it a try while I keep myself busy with my airport woes here.
    Thanks
    Nagamohan

  • I'm trying to open a 900kb Word doc (240pages) in Pages but get this error message:  Import Warning - A table was too big. Only the first 40 columns and 1,000 rows were imported.

    I'm trying to open a 900kb Word doc (240pages) in Pages but get this error message:  Import Warning - A table was too big. Only the first 40 columns and 1,000 rows were imported.

    Julian,
    Pages simply won't support a table with that many rows. If you need that many, you must use another application.
    Perhaps the originator could use a tabbed list rather than a table. That's the only way you will be able to contain a list that long in Pages. You can do the conversion yourself if you open the Word document in LibreOffice, Copy the Table, Paste the Table into Numbers, Export the Numbers doc to CSV, and import to Pages. In Pages Find and Replace the Commas with Tabs.
    There are probably other ways, but that's what comes to mind here.
    Jerry

  • Error while importing swf file in to Crystal Xcelsius Designer 4.5

    help me...., Error while importing swf file in to Crystal Xcelsius Designer 4.5

    I read in the book called "CRYSTAL XCELSIUS for DUMMIES" on page 243 under topic called Nesting a Dashboard within another Dashboard.
    sorry i used the wrong word embed, here i am importing the swf using image component.
    My requirement is somethis like this parent child dependency menu.
    eg: i have to two tabs 1)alphabets 2) Numerics  First levet menu
    if you click alphabets tab then the following menu A/B/C/D/..... Z i have diff charts.. under each alphabet.
    If you click numberic tab then the follwing menu should one/two/three/.......ten  here also i have diff charts under number
    in over to avoid complexity in dynamic visibility i divided the into 3 dashboards.  1- alphabets 2- number and 3 -importing both swfs.. everything works fine except first tab and last tab under alphabets and numerics.
    If some one help me with some alernative ... would be great.
    Thanks

  • "Quantity falls into negative inventory" Error when importing Goods Receipt through DTW

    Hi,
    We extending the automation between our production plant an SAP Business one.
    We're using DTW import "Goods Receipt PO" currently and want to extend this to internal productions based on Production Orders.
    I've created three csv files to create the import. OIGN, IGN1 an SNRT (as we use serial number based products)
    Some remarks:
    - The stock is sufficient to do the production. No negative stock is created by this the production order.
    - The used materials are all based on "backflush", so should be handled automatically
    - Using the SAP GUI everything goes well. No errors.
    hereby the files I've used (the actual serial number file is of course longer):
    OIGN:
    DocNum;DocType;HandWritten;DocDate;PartialSupply
    DocNum;DocType;Handwrtten;DocDate;PartSupply
    1;dDocument_Items;tNO;20140402;Y
    IGN1:
    ParentKey;LineNum;BaseType;BaseEntry;BaseLine;Quantity
    DocNum;LineNum;BaseType;BaseEntry;BaseLine;Quantity
    1;0;202;92;;49
    SRNT:
    ParentKey;LineNum;InternalSerialNumber;ManufactureDate;ReceptionDate;Notes;BaseLineNumber
    DocNum;LineNum;DistNumber;MnfDate;InDate;Notes;DocLineNum
    1;0;0409001;20140331;20140402;Firmware=SD-TRPE v1.12 y13m10d16;0
    1;1;0409002;20140331;20140402;Firmware=SD-TRPE v1.12 y13m10d16;0
    1;2;0409004;20140331;20140402;Firmware=SD-TRPE v1.12 y13m10d16;0
    1;3;0409005;20140331;20140402;Firmware=SD-TRPE v1.12 y13m10d16;0
    What am I doing wrong? Do we need the handle the goods issue manually when using DTW instead of the auto backflush method in SAP?
    Looking forward to your response.
    Kind regards,
    Vincent

    Hi,
    Please check SAP note:
    841270
    - How to import serial numbers correctly via the DTW
    Please advice your decimal setting for quantity at general settings.
    Thanks & Regards,
    Nagarajan

  • Errors when importing 10.2.0.4  Solaris xml schema into 11g Linux

    We are migrating our database from 10g on Solaris to 11g on Linux. Used expdt for full DB but getting this error - (ORA-39139: Data Pump does not support XMLSchema objects. TABLE_DATA:"SPRUBATCH"."ACCNT_XML_STG_50" will be skipped.) for the schema containing XML. So used exp for this particular schema. But Getting the following errors during import:
    IMP-00058: ORACLE error 604 encountered
    ORA-00604: error occurred at recursive SQL level 1
    ORA-22814: attribute or element value is larger than specified in type
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 72
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 33
    ORA-06512: at line 1
    . . importing table             "ACCNT_XML_ALL_52"ORA-24550: signal received: [si_signo=11] [si_errno=0] [si_code=1] [si_int=0] [si_ptr=0x7000000000]
    [si_addr=0x1043f94e8]
    Memory fault
    Should we deinstall 11g XDB and bring in 10g XDB ? It seems like the "XDB.DBMS_XMLSCHEMA" has changed from 10 to 11?
    Or there is upgrade script needs to be run?
    Who has done this upgrade before and appreciate if you can share your experience with us.
    Thanks!

    Hi Srini,
    here is the export log:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, Oracle Label Security, Data Mining and Real Application Testing options
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses WE8MSWIN1252 character set (possible charset conversion)
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user SPRUBATCH
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user SPRUBATCH
    About to export SPRUBATCH's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export SPRUBATCH's tables via Conventional Path ...
    . . exporting table ACCNT_XML_ALL_50 0 rows exported
    . . exporting table ACCNT_XML_ALL_51 0 rows exported
    . . exporting table ACCNT_XML_ALL_52 1712 rows exported
    . . exporting table ACCNT_XML_STG_50 0 rows exported
    . . exporting table ACCNT_XML_STG_51 0 rows exported
    . . exporting table ACCNT_XML_STG_52 1 rows exported
    . . exporting table AsOfDate1714_TAB 0 rows exported
    . . exporting table AsOfDate1736_TAB 0 rows exported
    . . exporting table BRNCH_XML_ALL_50 0 rows exported
    . . exporting table BRNCH_XML_ALL_51 0 rows exported
    . . exporting table BRNCH_XML_ALL_52 99 rows exported
    . . exporting table BRNCH_XML_STG_50 0 rows exported
    . . exporting table BRNCH_XML_STG_51 0 rows exported
    . . exporting table BRNCH_XML_STG_52 1 rows exported
    . . exporting table CNSTR_XCPTN_TBL 2 rows exported
    EXP-00091: Exporting questionable statistics.
    . . exporting table ChangeDatestamp1730_TAB 0 rows exported
    . . exporting table ChangeDatestamp1756_TAB 0 rows exported
    . . exporting table ChangedBy1731_TAB 0 rows exported
    . . exporting table ChangedBy1757_TAB 0 rows exported
    . . exporting table Comments1715_TAB 0 rows exported
    . . exporting table ComplaintsFromDate1716_TAB 0 rows exported
    . . exporting table ComplaintsToDate1717_TAB 0 rows exported
    . . exporting table DueDate1718_TAB 0 rows exported
    . . exporting table File1742_TAB 0 rows exported
    . . exporting table FileName1738_TAB 0 rows exported
    . . exporting table FileNumber1741_TAB 0 rows exported
    . . exporting table FileReceivedDate1740_TAB 0 rows exported
    . . exporting table FileSize1739_TAB 0 rows exported
    . . exporting table FirmCrdNumber1720_TAB 0 rows exported
    . . exporting table FirmCrdNumber1743_TAB 0 rows exported
    . . exporting table FirmDeletedFiles1746_TAB 0 rows exported
    . . exporting table FirmName1721_TAB 0 rows exported
    . . exporting table FirmName1747_TAB 0 rows exported
    . . exporting table MatterID1719_TAB 0 rows exported
    . . exporting table MsgType1722_TAB 0 rows exported
    . . exporting table MsgType1748_TAB 0 rows exported
    . . exporting table NewStatus1732_TAB 0 rows exported
    . . exporting table NewStatus1758_TAB 0 rows exported
    . . exporting table PublishDate1723_TAB 0 rows exported
    . . exporting table RejectComment1733_TAB 0 rows exported
    . . exporting table RejectComment1759_TAB 0 rows exported
    . . exporting table RequestGroupId1724_TAB 0 rows exported
    . . exporting table RequestGroupId1749_TAB 0 rows exported
    . . exporting table RequestId1725_TAB 0 rows exported
    . . exporting table RequestId1734_TAB 0 rows exported
    . . exporting table RequestId1750_TAB 0 rows exported
    . . exporting table RequestId1760_TAB 0 rows exported
    . . exporting table RequestStatus1726_TAB 0 rows exported
    . . exporting table RequestType1727_TAB 0 rows exported
    . . exporting table RequestType1751_TAB 0 rows exported
    . . exporting table SRM_RQ_XML_ALL 50 rows exported
    . . exporting table SRM_RQ_XML_STG 1 rows exported
    . . exporting table SRM_SST_SC_XML_ALL 43 rows exported
    . . exporting table SRM_SST_SC_XML_STG 1 rows exported
    . . exporting table SRM_XF_XML_ALL 83 rows exported
    . . exporting table SRM_XF_XML_STG 1 rows exported
    . . exporting table SST_SRM_SC_XML_STG 0 rows exported
    . . exporting table SchemaVersion1728_TAB 0 rows exported
    . . exporting table Status1755_TAB 0 rows exported
    . . exporting table ValidFiles1754_TAB 0 rows exported
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully with warnings.
    And import log:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Export file created by EXPORT:V10.02.01 via conventional path
    Warning: the objects were exported by SPRUBATCH, not by you
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    import server uses WE8MSWIN1252 character set (possible charset conversion)
    . importing SPRUBATCH's objects into SPRUBATCH
    IMP-00058: ORACLE error 604 encountered
    ORA-00604: error occurred at recursive SQL level 1
    ORA-22814: attribute or element value is larger than specified in type
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 72
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 33
    ORA-06512: at line 1
    IMP-00058: ORACLE error 604 encountered
    ORA-00604: error occurred at recursive SQL level 1
    ORA-22814: attribute or element value is larger than specified in type
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 72
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 33
    ORA-06512: at line 1
    IMP-00058: ORACLE error 604 encountered
    ORA-00604: error occurred at recursive SQL level 1
    ORA-22814: attribute or element value is larger than specified in type
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 72
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 33

  • SSRS 2008 Column Chart with Calculated Series (moving average) "formula error - there are not enough data points for the period" error

    I have a simple column chart grouping on 1 value on the category axis.  For simplicity's sake, we are plotting $ amounts grouping by Month on the category axis.  I right click on the data series and choose "Add calculated series...".  I choose moving average.  I want to move the average over at least 2 periods.
    When I run the report, I get the error "Formula error - there are not enough data points for the period".  The way the report is, I never have a guaranteed number of categories (there could be one or there could be 5).  When there is 2 or more, the chart renders fine, however, when there is only 1 value, instead of suppressing the moving average line, I get that error and the chart shows nothing.
    I don't think this is entirely acceptable for our end users.  At a minimum, I would think the moving average line would be suppressed instead of hiding the entire chart.  Does anyone know of any workarounds or do I have to enter another ms. connect bug/design consideration.
    Thank you,
    Dan

    I was having the same error while trying to plot a moving average across 7 days. The work around I found was rather simple.
    If you right click your report in the solution explorer and select "View Code" it will give you the underlying XML of the report. Find the entry for the value of your calculated series and enter a formula to dynamically create your periods.
    <ChartFormulaParameter Name="Period">
                      <Value>=IIf(Count(Fields!Calls.Value) >= 7 ,7, (Count(Fields!Calls.Value)))</Value>
    </ChartFormulaParameter>
    What I'm doing here is getting the row count of records returned in the chart. If the returned rows are greater than or equal to 7 (The amount of days I want the average) it will set the points to 7. If not, it will set the number to the amount of returned rows. So far this has worked great. I'm probably going to add more code to handle no records returned although in my case that shouldn't happen but, you never know.
    A side note:
    If you open the calculated series properties in the designer, you will notice the number of periods is set to "0". If you change this it will overwrite your custom formula in the XML.

  • Error while importing music in iMovie 11 From itunes 10

    Error while importing music in iMovie 11
    I have the same error explained in a other post which was still left unanswered
    I have this sound problem after reorganising folders by itunes, i tried to delete al files in itunes and also
    deleted the xml file in the itunes dir, created new playlists, but still i have no music sound in imovie timeline
    after dragging a mp3 into it. When i preview the file in imovie it souds ok.
    Also i see the red dot with the number 1 in the itunes logo while dragging the mp3.
    Is there a solution for this problem?
    Former post;
    Re: Error while importing music in iMovie 09 from iTunes 09
    Posted: Jul 24, 2010 8:08 AM   in response to: vincentplaces  
    I'm having the exact same issue, but still haven't figured out what it is. I note that at the top of this thread it indicates that there are two "helpful" entries and one "solved" entry, but I can't find the solved one, so maybe someone will repost it here or kindly link to it.
    There is one icon missing though.
    As I read through the excellent tutorial at http://www.kenstone.net/fcphomepage/imovie_09stone.html I scroll down to the point where he talks about dragging music in from iTunes, which is what I'm trying to do. I can see, in his screen shot, the extra little icon that is a red oval and a white "1" in it. I don't get that icon when I am trying to drag my music into the video. I do get the green and white plus icon when I try to drag my music in. Also I DO get BOTH the red 1 and the green plus when I try dragging in a sound effect, which I can do with no problem. But why not the music?
    I've been able to drag in music with no problem in other productions, so I can't figure out what is going on with this one. I'm sure there is a setting somewhere that got flipped, but I can't figure out where.
    In desperation I also tried adding an extra title slide at the end of my video just to make sure there is more video time than music time in the production, but that didn't help at all.
    Any help guys?
    iMac 27"   Mac OS X (10.6.4)    

    Hi
    Due to some kind of copy protection in iTunes - I don't copy directly from this in iMovie
    to my projects. (Most often the result of doing it in iMovie is a DVD without any sound)
    I do
    • In iTunes - collect needed audio into a new Playlist
    • then burn this out as an Audio-CD .aiff (NOT .mp3)
    • This CD I copy into a folder on my Mac (often containing other material that's connected to the project)
    • And then I drag and drop these .aiff files into my movie project in iMovie.
    This works Greatly and even more so when I do my DVD.
    Yours Bengt W

  • Error while importing a new CERT in oracle 10G B2B

    Hi All,
    I am trying to upload a new certificate in 10 G B2B server, its not updating a certificate, I am facing the below error while importing
    Error
    An error occurred when updating the certificate.
    Error -: AIP-16001: The model validation engine failed due to an internal system error.
    Error -: AIP-11052: Writing following objects: Certificate failed due to following constraint violation: CERTIFICATE. CAN NOT UPDATE UNVERSIONABLE OBJECT IN A VALIDATED CONFIGURATION.
    Note: Please help me in resolving this ASAP.
    Regards
    Sai

    Hi Sai,
    It seems you are updating certificate in a delivery channel which is being used in a validated (or may be deployed) agreement. Please retire/purge any deployed configuration which is using that delivery channel and also make sure no such agreement is in valid state(which is using this delivery channel).
    Regards,
    Anuj

  • Error while importing a table index.

    Hi,
    We are facing a problem while importing an index to the production region. Below are the details.
    1. A secondary index was created on standard SAP table ILOA in DEV region.
    2. The Index was successfully moved to the Quality system, without any glitches.
    3. Due to some issue (releated to testing, for which we had to revert back the changes), we had to delete the index on ILOA in the DEV region. The transports were moved to the PPD region and hence, the index on ILOA was deleted in PPD also.
    4. Once the issue related to testing was resolved, we again created an index on the table ILOA and moved it to PPD.
    All these 4 mentioned steps happened successfully and in PPD there was no error while importing the transports.
    But, while moving the above transports to the Production region, there was an error :
    "Index ILOA~Y could not be activated
    (E - No index ILOA~Y found with status M)"
    Please note that Y is the name of the index that was created on the table ILOA.
    The error code that we have got is "8".
    Can anyone please shed any light on what the issue is?? WE cannot re-import the transports in to Production without analysing this issue,because our client doesnt permit that.
    Thanks and eagerly awaiting a kind reply.
    Regards,
    Raghavendra.

    You've three transports - one to create the index, one to delete, and one to recreate.  It could be that the the third one tried to run before the database had finished with the second?
    Have you looked on SE14 for the actual status on production of the index?
    matt

  • Error while importing N Accounts to 1 Address with UCM Batch Manager

    Hi,
    I got a problem with importing Accounts using the UCM Batch Manager. Previous steps were loading the EIM Tables EIM_UCM_ORG and EIM_UCM_ADRPER. To associate addresses I used the column EIM_UCM_ADRPER.PAR_UCM_ACCNT_UID. No errors occured during an Enterprise Integration Mgr jobs to load the data into SDH tables.
    The error described below occurs if I have N Accounts using one Address. Example:
    h5. Account Name --> City --> Postal Code --> State --> Street
    Account #1 --- Munich --- 80331 --- N/A --- Some Street 1
    Account #2 --- Munich --- 80331 --- N/A --- Some Street 1
    h5. If I try to get the Accounts into the Base tables using the UCM Batch Manager I get the following message from the log file:
    ObjMgrBusCompLog     Error     1     000003084c571160:0     2010-08-03 19:11:14     (odbccon.cpp (2097)) SBL-DBC-00111: An error has occurred writing to a record.
    Please continue or ask your systems administrator to check your application configuration if the problem persists.
    DBCLog     DBCLogError     1     000003084c571160:0     2010-08-03 19:11:14     SQLError: [23000],[Microsoft][SQL Native Client][SQL Server]Cannot insert duplicate key row in object 'dbo.S_ADDR_PER'-Objekt with unique index 'S_ADDR_PER_U1'.
    DBCLog     DBCLogError     1     000003084c571160:0     2010-08-03 19:11:14     SQLError: [01000],[Microsoft][SQL Native Client][SQL Server]The statement has been terminated.
    ObjMgrBusCompLog     Error     1     000003084c571160:0     2010-08-03 19:11:14     (sqlobj.cpp (43735)) SBL-DAT-00381: A record that contains identical values to the record you have created already exists.
    If you would like to enter a new record, please ensure that the field values are unique.
    ObjMgrLog     Error     1     000003084c571160:0     2010-08-03 19:11:14     (adptutils.cpp (5715)) SBL-EAI-04381: For instance of Integration Component 'Account_Business Address', using user key '[City] = "Munich" AND [Postal Code] = "80331" AND [State] = "N/A" AND [Street Address] = "Some Street 1"', a record with identical values already exists in the Siebel database.
    Please ensure that the field values in the input message are unique.
    EAISiebAdpt     EAISiebAdptErr     1     000003084c571160:0     2010-08-03 19:11:15     [0] For instance of Integration Component 'Account_Business Address', using user key '[City] = "Munich" AND [Postal Code] = "80331" AND [State] = "N/A" AND [Street Address] = "Some Street 1"', a record with identical values already exists in the Siebel database.
    Please ensure that the field values in the input message are unique.(SBL-EAI-04381) (0x75017d)
    h5. Result:
    Account #1 gets inserted with Record Type: "Source-Insert"
    Account #2 will not be imported and gets Record Type: "Incomplete"
    Does anyone know how to handle this problem?
    Many Thanks
    Sebastian
    Edited by: user13098670 on 04.08.2010 06:34

    I have selected the option
    Add new metadata and replace existing objetcs. But it is not importing. Also I tried other options like
    1. deleting the existing mapping and tried.
    2. Putting the mapping in recycle bin and try.
    3. Take it from recycle bin.Even during taking it from recycle it is giving me the following error .
    Error occurred importing mapping
    <DWH_CMMDTY_INVC_FACT_MAP/DWH_CMMDTY_INVC_FACT_MAP>
    (at line 141).
    Detailed Error Message:
    API2014: Internal Error: Error in createStage:
    In above all cases it is giving me the error.
    Could you please help?

  • Javac(1.4.2) gives error in import statement

    Hi All,
    I am facing a surprising problem. I have 2 java class files. I write the import statement for second one in the first one. There is no package & these are in the same directory. I have compiled the second one. But when I try to compile the First one. Javac throws error at import statement like below :
    D:\Clubs\oct\6>javac -d . ManojTest.java
    ManojTest.java:1: '.' expected
    import SessionBean;
    ^
    1 error
    My Java Files are as below :
    import SessionBean;
    public class ManojTest
         public static void main(String args[])
    //ManojTest.java
    public class SessionBean
         public static void main(String args[])
    //SessionBean.java
    I have compiled SessionBean.java successfully but when I try to compile ManojTest.java I get error mentioned above.
    However this probelm comes when I use j2se 1.4.2.. but works in j2se 1.3.1..
    Another way could be I use package structure.
    But I can't do any of these, as I have to port my big project to j2se1.4.2.. from j2se1.3.1.. (Live project is running on Tomcat).
    Problems is similar in Unix & Windows both.
    Is this javac compiler issue or there is some setting which I can make.
    I have already included . (dot) in PATH & CLASSPATH environment varibales.
    Please help me out if there is any way around this, as i am stuck up in between
    thank you
    Manoj :confused:

    Use a package and then add that package in your classpathOr don't use a package, leave the file in the default (noname) package, and don't use the import statement. Java will find it in the default package without the import.
    Explicit import statements from the default package are no longer allowed

  • MII 14.0 SP4 :Migration error while importing SAP BM Templates

    Hi Experts,
    I am facing some migration errors while importing SAP Batch Manufacturing Templates into MII 14.0 SP4.
    There are almost 23 transactions which are not getting imported and the error message for all of them is-
    "Unable to migrate transaction Unable to import file
    <Name of the Transaction>"
    Any first hand experiences will be really helpful for me to proceed further.
    Regards,
    Muddassar Khan

    Hi All,
    Got the solution. The STARTUP.BAT file is been placed in the installation directory(usr/sap) and then it works fine. Also I have installed the patches and all working fine.
    Any way thanks for the answer christian libich.
    Regards
    G.Partheeban

  • Error while import PAR with schedule task

    Hi everybody
    I've the following error while import a new PAR with schedule task in Portal NW04s
    Inner Stack is:
    Unable to lock the local configuration to run import "import_it.tsf.pld.cercapersone.updateadgruppofs.st.prjconfig_config_fwk_service_4692550,4692550_(ready)".
    System error is "LockConfigException: Configuration framework system error: "configuration-lock-service overloaded: cannot acquire central-lock file for config://local"".
    Inner Stack is:
    LockConfigException: Configuration framework system error: "configuration-lock-service overloaded: cannot acquire central-lock file for config://local"
    at com.sapportals.config.fwk.data.ConfigLockManager.lockWithDependent(ConfigLockManager.java:507)
    thanks in advance

    Hi Ram,
    I've encountered the problem only on productive instance with offline deployment (Scheduler Tasks reinitialize CRT). Before a restart I have to make sure it works.
    thanks for your help!
    Gennaro

Maybe you are looking for

  • My MBP thinks it has a modem attached to it (I think)

    Hey all, I have a mid-2009 MBP, Intel Core 2 Duo 2.66Ghz, running OS10.5.8(9L30). Last night Software Update told me it had an update, and since it was a security update (Security Update 2009-006), I let it rip. Now I think it thinks there's a modem

  • HT2534 Why is my debit card been checked for free download apps?

    I have tried to download & update some free apps but for some reason it won't allow me without me popping in my debit/credit card details its free so why do I need to do this?

  • Ogre 3D 'glGetString' Problem, May Be Driver Issue

    Hello! I'm relatively new to Arch Linux, all I did till now was install it and get X running with the 'awesome' window manager. I must say, I like it, especially pacman, AUR and ABS. I'm a hobbyist programmer and I generally write graphics applicatio

  • Credit Management- i want to allocate inventory but block the delivery

    Dear SAP Gurus, i am having a problem with Credit Mgt. when order get blocked for credit check that time i want inventory i mean material should allocate to that customer but the delivery should be blocked. whats are the customisation needed for such

  • EDIT error

    i am trying to edit the specs of a table in the command line and im writing EDIT my_table.sql however when i press enter this message appears, error is not recognized as an internal or external command, operable program or batch file. I've already ch