Import error as error number is -12018

Hi All,
While importing a project getting an error as:
Import Error: com.fatwire.cs.core.realtime.DataException: com.fatwire.assetapi.common.AssetAccessException: Error met whiling saving assets [AttrTypes:1415189814137] and the error number is -12018
https://docs.oracle.com/cd/E29542_01/apirefs.1111/e39371/MISC/errno.html shows error related to Missing publication. No clue..

-12018 means " Missing publication."
Since the DemoSite is a new site that doesn't exist in the CSDT target environment, I would import the site first, e.g.
java com.fatwire.csdt.client.main.CSDT http://hostOrIP:8080/cs/ContentServer username=fwadmin password=xceladmin resources=@SITE:DemoSite cmd=import
NOTE: Make sure the site was exported to your datastore before import.
Then, import assets of this site:
java com.fatwire.csdt.client.main.CSDT http://hostOrIP:8080/cs/ContentServer username=fwadmin password=xceladmin resources=@ALL_ASSETS:*;@ALL_NONASSETS:* fromSites=DemoSite cmd=import
Note that the parameter is fromSites, not fromSite.
See if this helps.
Thanks,
Yu-Chun

Similar Messages

  • Error number 207 error type SPECIFIC_CODE IMPORT ABAP phase error when install database instance

    IMPORT ABAP phase error when install database instance
    Error number 207 error type SPECIFIC_CODE.
    In phase   "Import ABAP" the installation halts with error. Can anyone please tell me what error should I search for and (possibly) what is the solution? 
    Thanks in advance
    synxcaccmg.cpp: 133: PSyUser CSyAccountMgtImpl::getUser(iastring sNameOrSID) const
    syxxccache.cpp: 267: CSyAccountCache::getUserImpl(name="IboSap-PC\nspadm", sid="", create=false)
    syxxccache.cpp: 276: CSyAccountCache::getUserImpl(name="IboSap-PC\nspadm", sid="", create=false, ISyProgressObserver* )
    synxcuser.cpp: 119: CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="IboSap-PC\nspadm" does not exist.
    Failed action:  with parameters
    Error number 207 error type SPECIFIC_CODE

    It is not easy, really , it has taken many hours and at the End I got the problems,.
    so I have decided to pay 20 $ every month, and I can get an access IDES to SAP, ERP, ABAP.
    without any problem.  In ABAP, I have only Sflight ,SBOOK etc. but MARA, and others tables, dont exist, .
    I know, some students have not enough money, so what can we do? every one get problem with installaion and others after installaion, with server, 3 days work, and NSP becomes RED. Yellow, etc.
    anyway. thank you for all.
    Best Regards.

  • When I tgry to drop a video from the main screen to a time line with no secuence i receive an error with no number, just tell me the progran stop working and the program closes can you help me please

    please someone who help me please
    when I tgry to drop a video from the main screen to a time line with no secuence i receive an error with no number, just tell me the progran stop working and the program closes

    You need to help us first ...
    Computer specs:
    OS, CPU, RAM, GPU, vRAM ... and also disc layout & connections can be useful (as in, "2 internal hard-drives and an external on Thunderbolt connection for exports")
    Program specs:
    Specific build of Premier Pro from the bottom of the "About" splash screen off the "Help" menu is best.
    Footage file type: MXF, AVCHD, MOV, m2s, what?
    Even the camera it was shot on can be of interest at times.
    And did you use media browser to import, then project panel to drag & drop?
    Neil

  • Error ORA-06502, numeric or value error character to number conversion

    I have been trying to create an email including data from a table as part of the body. Whenever I try to send it, I get an error ORA-06502, numeric or value error, character to number conversion. If I take out the part referencing the table, the email will go without error, but if I put it back in I get the error.
    There is the code:
    DECLARE
    v_email_body CLOB;
    v_from_email_address VARCHAR2(100) := v('APP_USER');
    v_id NUMBER;
    BEGIN
    v_email_body := 'Please pay the attached invoice from FY '||:P14_FY||' funds
    Date: '||:P14_PURCHASE_DATE||'
    Vendor: '||:P14_VENDOR||'
    Invoice Number: '||:P14_INVOICE||'
    Invoice Date: '||:P14_INVOICE_DT||'
    Due Date: '||:P14_INVOICE_DUE_DT||'
    KSR Number: '||:P14_KSR||'
    DTS PO: '||:P14_DTS_PO||'
    FINANCE DO: '||:P14_FINANCE_PO||'
    FOR detail IN(SELECT OB_CODE
    FROM BUDGET_USED
    WHERE P_ID = :P14_ID)
    v_email_body := v_email_body||detail.OB_CODE||utl_tcp.crlf;
    LOOP
    FOR detail2 IN (SELECT ob_code, amount
    FROM budget_used
    WHERE p_id = :P14_ID)
    LOOP
    v_email_body := v_email_body||detail2.ELCID||' - '||detail2.AMOUNT||utl_tcp.crlf;
    END LOOP;
    END LOOP;
    v_email_body := v_email_body
    '||:P14_EMAIL_NOTES||'
    Thanks.
    v_id := APEX_MAIL.SEND
    (p_to => :P14_SUBMIT_TO
    ,p_cc => v('APP_USER')
    ,p_bcc => '[email protected]'
    ,p_from => v_from_email_address
    ,p_body => v_email_body
    ,p_subj => 'Invoice, '||:P14_VENDOR||', '||:P14_INVOICE||'');
    --Having set up your email, now add one (or more) attachments...
    FOR c1 in (SELECT FILENAME
    ,BLOB_CONTENT
    ,MIME_TYPE
    FROM file_subjects f, apex_application_files a
    where a.name = f.name
    and f.P_ID = :P14_ID) LOOP
    IF c1.blob_content IS NOT NULL THEN
    APEX_MAIL.ADD_ATTACHMENT( p_mail_id => v_id,
    p_attachment => c1.blob_content,
    p_filename => c1.filename,
    p_mime_type => c1.mime_type);
    END IF;
    END LOOP;
    END;
    Apex_mail.push_queue();
    This is important to my company to be able to put this data into an email. If anyone can help me, I would greatly appreciate it. Thank you in advance.

    Lets isolate the erroring line by running the code in debug mode and adding some debug lines at various stages in the code
    Apex has a builtin function named wwv_flow.debug which can print messages to the debug stack and would be visible when the page is run in debug mode.
    DECLARE
    v_email_body CLOB;
    v_from_email_address VARCHAR2(100) := v('APP_USER');
    v_id NUMBER;
    BEGIN
    wwv_flow.debug('BEGIN');
      v_email_body := 'Please pay the attached invoice from FY '||:P14_FY||' funds
      Date: '||:P14_PURCHASE_DATE||'
      Vendor: '||:P14_VENDOR||'
      Invoice Number: '||:P14_INVOICE||'
      Invoice Date: '||:P14_INVOICE_DT||'
      Due Date: '||:P14_INVOICE_DUE_DT||'
      KSR Number: '||:P14_KSR||'
      DTS PO: '||:P14_DTS_PO||'
      FINANCE DO: '||:P14_FINANCE_PO||'
      '||:P14_EMAIL_NOTES||'
      Thanks.
    wwv_flow.debug('Before sending mail');
      v_id := APEX_MAIL.SEND
      (p_to => :P14_SUBMIT_TO
      ,p_cc => v('APP_USER')
      ,p_bcc => '[email protected]'
      ,p_from => v_from_email_address
      ,p_body => v_email_body
      ,p_subj => 'Invoice, '||:P14_VENDOR||', '||:P14_INVOICE||'');
    wwv_flow.debug('Before attachements');
      --Having set up your email, now add one (or more) attachments...
      FOR c1 in
             (SELECT FILENAME
            ,BLOB_CONTENT
            ,MIME_TYPE
            FROM file_subjects f, apex_application_files a
            where a.name = f.name
            and f.P_ID = :P14_ID)
      LOOP
        IF c1.blob_content IS NOT NULL THEN
        APEX_MAIL.ADD_ATTACHMENT( p_mail_id => v_id,
        p_attachment => c1.blob_content,
        p_filename => c1.filename,
        p_mime_type => c1.mime_type);
        END IF;
      END LOOP;
    wwv_flow.debug('Finished attachements'); 
      Apex_mail.push_queue();
    END;What is the last message you see in the debug after running the page in debug mode and submitting it ?

  • Error 'Specify account number' while posting a parked document through FBV0

    Hi,
    I am getting an error 'Specify account number' while posting a parked document through transaction FBV0.
    I am not able to figure it out as to what account number it is referring to. Since the document is parked I assume the GL account used has no problem. Please help.

    Hi,
    Try to change the Account number and then save or post the data. I think Once We Parking the Document it wont allow to post the data without changing.
    Try same scenario in the development its be useful
    Regards,

  • In Google Scholar, the "Import to EndNote" now gives an error: "Download Error ... an unknown error occurred."

    In Google Scholar, the "Import to EndNote" link now generates an error
    =========
    Download Error
    <<Filepath>> could not be opened, because an unknown error occurred.
    Try saving to disk first and then opening the file.
    =========
    Screenshot here - www.imgur.com/K8kqd.jpg
    MAC OSX Version 10.7.5
    FireFox Version 17.0.1
    EndNote Version X6
    Google Chrome does not have any issues and Safari at least downloads the file to be manually opened.
    Any ideas?

    Error 1611: This error may indicate a hardware issue with your device. Follow the steps in this article. Alsoattempt to restore while connected with a known-good 30-pin Dock Connector cable, computer, and network to isolate this issue to the device. The MAC address being missing or the IMEI being the default value (00 499901 064000 0) can also confirm a hardware issue. Out-of-date or incorrectly configured proxy or security software, such as FoxyProxy, can cause error 1611. To troubleshoot third-party security software, follow these steps.
    Above from:
    http://support.apple.com/kb/TS3694

  • Report error:ORA-06502: PL/SQL: numeric or value error: character to number

    The oracle application express environment is created by installing the HTTP Server on the windows server and the application express 3.2.1 components on the 11.1.0.7 oracle database on UNIX. The installation is successfully and have not seen any issues during the installation. After completing all the steps, when tried to login and click the application builder or workspace components, I see the error message
    report error:ORA-06502: PL/SQL: numeric or value error: character to number.
    This error message is seen on most of the pages when trying to accessed and not able to understand the reasons behind it. Its a brand new environment setup and not even presented to developers to test it.
    Below error message is always seen when trying to access most of the components like application builder, schema comparison and some other tabs. Please advice
    report error:
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Edited by: user589320 on Jun 9, 2011 5:17 PM

    I think its better you use APEX 4.x version ratherthan using old version.
    You will get more features and some bug fixes and also it's easy for you to get some help when you need.
    * If this answer is helpfull or correct then please mark it and grant the points.

  • Error: EDI: Error while assigning IDoc number

    Hi Everybody,
    using XI 3.0 on Linux 64 bit SLES9 with Oracle I got some probleme sending messages from mq series to sap:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!-- Call Adapter
    -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30"
    xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"
    SOAP:mustUnderstand="">
    <SAP:Category>XIAdapter</SAP:Category>
    <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_IDOC_METADATA</SAP:Code>
    <SAP:P1>EDI: Error while assigning IDoc number</SAP:P1>
    <SAP:P2 />
    <SAP:P3 />
    <SAP:P4 />
    <SAP:AdditionalText />
    <SAP:ApplicationFaultMessage namespace="" />
    <SAP:Stack>Error: EDI: Error while assigning IDoc number</SAP:Stack>
    <SAP:Retry>M</SAP:Retry>
    </SAP:Error>
    What is missing here?
    Kind regards,
    Michael

    Hi Jayakrishnan,
    thanks a lot for your answer.
    SM59 is working finde. In IDX1 I got the the correct RFC destination entered and a double click works fine also.
    The other way around R3 -> XI -> mq series is working fine. Here we are trying mq -> XI -> R3 and it stops sending from XI to R/3.
    How to check the IDOC type?
    Regards,
    Michael

  • Import expoort wizard error on sql server 2008r2

    - Executing (Warning)
    Messages
    Warning: Preparation SQL Task 1: Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done. (SQL Server Import and Export Wizard)
    Warning: Preparation SQL Task 1: Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done. (SQL Server Import and Export Wizard)
    - Copying to `tblSFUpload` (Error)
    Messages
    Error 0xc0202009: Data Flow Task 1: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
     (SQL Server Import and Export Wizard)
    Error 0xc0209029: Data Flow Task 1: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR.  The "input "Destination Input" (615)" failed because error code 0xC020907B occurred, and the error row disposition on "input "Destination
    Input" (615)" specifies failure on error. An error occurred on the specified object of the specified component.  There may be error messages posted before this with more information about the failure.
     (SQL Server Import and Export Wizard)
    Error 0xc0047022: Data Flow Task 1: SSIS Error Code DTS_E_PROCESSINPUTFAILED.  The ProcessInput method on component "Destination - tblSFUpload" (604) failed with error code 0xC0209029 while processing input "Destination Input" (615).
    The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running.  There may be error messages posted before this with more information
    about the failure.
     (SQL Server Import and Export Wizard)
    Error 0xc02020c4: Data Flow Task 1: The attempt to add a row to the Data Flow task buffer failed with error code 0xC0047020.
     (SQL Server Import and Export Wizard)
    Error 0xc0047038: Data Flow Task 1: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on component "Source - tblSFUpload" (1) returned error code 0xC02020C4.  The component returned a failure code when the pipeline engine
    called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the failure.
     (SQL Server Import and Export Wizard)
    - Post-execute (Success)
    Messages
    Information 0x4004300b: Data Flow Task 1: "component "Destination - tblSFUpload" (604)" wrote 65535 rows.
     (SQL Server Import and Export Wizard)
    Can someone tell me what to do with this please?

    Hi faiz,
    >>Error 0xc02020c4: Data Flow Task 1: The attempt to add a row to the Data Flow task buffer failed with error code 0xC0047020.
    According to this message, it can be caused by that there is not enough memory available or the buffer size is too small. To resolve this issue, I recommend you perform the following steps.
    1. Change the Server memory configuration of the SQL server. For example, you can increase maximum memory via the following scripts. For more information, please review this article:
    Server Memory Server Configuration Options.
    sp_configure 'show advanced options', 1;
    GO
    RECONFIGURE;
    GO
    sp_configure 'max server memory', 4096;
    GO
    RECONFIGURE;
    GO
    2. Adjust the buffer size by increasing the DefaultBufferMaxSize and DefaultBufferMaxRows properties of Data Flow tasks. For more information about it, please review this article:
    Data Flow Performance Features.
    Thanks,
    Lydia Zhang

  • Database error text: invalid number

    Hi Gurus,
    I am calling a procedure proxy from ECC and it is giving me a short dump:
    Error 339 has occurred while executing database procedure
      ""_SYS_BIC"."Krishna_Demo_Proj.Model/KC_GET_MARA"" on the
    current database connection "R/3".
    Database error text: invalid number: ''
    Triggering statement: "dsql_open_proc"
    I have created a table with only one field.
    Mapped the Data types after creating the Procedure Proxy
    Which data type I need to use? I tried with lots of combinations but, still the same error.
    Regards,
    Krishna Chauhan

    Hi Srinu,
    I have used NVARCHAR 18 and corresponding to that CHAR18 is used.
    Please see the attached screen shots.
    Regards,
    Krishna Chauhan

  • Error "Specify account number" during PRELIMINARY_POSTING_FB01

    Dear All,
    I am trying to post FI document in FB01 through PRELIMINARY_POSTING_FB01 F.M.
    I am passing following data to it.
    *Populate the header
    Company code
    ls_bkpf-bukrs = ls_posting2-bukrs.
    Year
    ls_bkpf-gjahr = ls_posting2-budat+0(4).
    Document Type
    ls_bkpf-blart = p_blart.
    Posting date
    ls_bkpf-bldat = ls_posting2-bldat.
    Document Date
    ls_bkpf-budat = ls_posting2-budat.
    Period
    Is_bkpf-monat = Is_posting2-monat.
    *currency
    Is_bkpf-waers = is_posting2-waers.
    *Item data
    *posting key
    is_bseg-bschl = is_posting-bschl.
    *Account
    is_bseg-hkont = is_posting-hkont.
    *amount
    is_bseg-wrbtr = Is_postng-wrbtr.
    After executing this it gives error
    "Specify account number"
    Is there any sollution for that......
    Regards,
    Amar

    That is bcoz the account number you are populating in table parameters is not matching with values in table while processing.  Use FM conversion_exit to prefix zeroes so that it matches the value in table.

  • Hyp FR Error: 5200 : Error executing query.  Exceed max row number 100000

    Hi,
    I am getting the error
    5200 : Error executing query. Exceed max row number 100000
    when I run the report on Financial Reporting. It gives the same error when run on Workspace.
    Have you guys encountered this error before? What are the best ways to tackle it? Help is much appreciated guys.
    -- Adi
    Edit 1 - I tried to simplify the parameters but I still get the same error making me suspect that the issue is not the 100000 row issue.
    Edited by: Aditya26 on Apr 11, 2012 9:02 AM

    Hi Adi,
    This is from My Oracle Support:
    How to Increase Row Limit to Avoid Error "Exceed Max Row Number 100000" [ID 866832.1]
    Modified 23-FEB-2012 Type HOWTO Status PUBLISHED
    In this Document
    Goal
    Solution
    Applies to:
    Hyperion BI+ - Version: 9.3.1.0.00 to 11.1.1.3.00 - Release: 9.3 to 11.1
    Information in this document applies to any platform.
    Goal
    How do you increase the maximum row limit to avoid the error "5200: Error executing query: Exceed max row number 100000"?
    Solution
    1.Edit \Hyperion\common\ADM\<version>\lib\ADM.properties as follows:
    From MAX_ROW_NUMBERS=100000 to MAX_ROW_NUMBERS=500000
    If you are running extremely large reports, you can increase the limit.
    2.Restart Reporting and Analysis services.
    For version 11.1.2.x
    The path of ADM.properties file in these versions should be located under:
    %Oracle_Home%\Middleware\EPMSystem11R1\commo\ADM\11.1.2.0\lib
    Cheers,
    Mehmet

  • Error in Serial number while doing MB1B

    Dear SAP Experts,
    I am facing the error of serial number already exist when I am doing transfer posting using 309 movt type (material to material). To explain you in detail, we have maintained two material codes for same material for two different plants. so We did STO process and received the material at second plant. now we want to transfer the entire quantity to another material code including serial number and for that we are doing MB1B with 309 movt type, but we are unable to do and system says error
    Message no. IS121 -  Serial number XXX already exist for material YYYYYYY123
    Please suggest the possible solutions.
    Thank you in advance.
    Regards,
    BIraj Adeshara

    Check the following Note:
    1519543 - Unable to Transfer a Material from one Plant to another using different Serial Number Profiles : Error M7174
    /Manoj

  • 1) How do I restore a spreadsheet that says "Spreadsheet couldn't be imported. An error occurred." & 2) How do I prevent this from happening?

    Several times on my iPad, I have been getting the following message when trying to open a Numbers spreadsheet that I've been working on:
    "Spreadsheet couldn't be imported. An error occurred."
    The icon had already turned into a generic Numbers icon at that point in time, and the iPad doesn't allow me to email this file. I would then try to recover it on my iPhone, but Numbers/iCloud had already automatically deleted it. I've tried resetting my iPhone &amp; iPad and restoring the previous day's data, but my hard-earned work was still gone!
    This was a fairly large spreadsheet that I would make changes to multiple times throughout the day with either my iPhone 5 or 3rd Gen iPad. They are both updated with iOS 6.1.2 and Numbers 1.7.2, and both have iCloud turned on for syncing Numbers documents. I travel and work throughout the city on a daily basis, so I get a mixture of connection speed from LTE, 4g, wifi, to none.
    I've made it a habit to make additional copies of my spreadsheets each week, and now I'm resorting to making additional copies at the end of each day. Sooner or later if this keeps happening, I may have to make annoying copies of the file every time I make a minor edit. This isn't how iCloud or anything from Apple is suppose to work. Please help out with this problem.
    Thank you in advance.
    Yffub

    Thanks den.thed,
    Apologies for not replying back sooner - I've been away.
    Although your suggestion helped me in getting a copy of Lion that I could use, it didn't help with the restore from Time Capsule issue.  I had to download the Lion app onto my MacBook & then transfer it across but it wouldn't let me upgrade my OS for some reason, so I ended up wiping the iMac completely and restoring via my Snow Leopard install disk.  For some reason, this time, it let me have the option of using Setup Assistant to access the Time Capsule for a complete restore.
    Now, over a week later, with various bits of tweaking and reinstalling some apps that didn't seem to come across, I have my system back.
    Thanks for the help anyway.
    Cheers,
    Paul

  • Error "This serial number is not for a qualifying product..." when installing an upgrade or upsell

    I am trying to open a .indd file.  I am running Adobe InDesign CS5.  I got an error that plugins need to be updated.  When I try to install the updates, I get the error that says: "Error "This serial number is not for a qualifying product..." when installing an upgrade or upsell..."  
    Can someone please help me with what I need to do to be able to open .indd files?
    Thanks,
    Nick

    Those files were created in a later version of InDesign. Have the person that created them save them back via IDML or you’ll need to upgrade.

Maybe you are looking for

  • X201 Windows 8.1 Keyboard driver issue

    I tried clean installing Windows 8.1 on my ThinkPad X201T The Windows itself installs without any issue, but for some reason the keyboard drivers seem to be out of order. They will either not load up at all, or take incredibly long time to load up. I

  • Moving folders to an external hard drive - LR3.2, Mac Snow Leopard

    I apologize for this right off, but after reading other threads in this forum, buying a book, and watching a video, I'm more confused than ever! I want to move (not copy), 6 months of folders, with their subfolders, meta-data and keywords, off my lap

  • List wrapping in back ground scheduling

    HI folks,    I am executing a program which displays an alv list ,when run in the foreground ,there are no issues. when i run from the selection screen ,giving the option as run in background,and when i check the o/p in sm37 ,the list is getting wrap

  • Issues with updating!! Help!!

    I got the App 200 Error and am trying to update the OS, but my desktop manager keeps saying that I have connection issues with the internet and won't let me update. Is there something I can do??

  • What do these numbers mean?

    It is my understanding that there are different Product numbers for the Captivate products, Some I know has an unopened version that they are offering to me, but I dont want to make the mistake of buying an unuseable version. The one he is offering h