Import Xml data into Core Data

Hi im very new here, im trying to find a tutorial to import a xml data into a core data and so i can publish it in a tableview
Can somebody help me??
thanks

Hi,
         If you have already have the xml data then you need to parse the XML data (Using NSXMLParser Class), After parsing the data we need to maintain arrays to store this XML content. After getting the arrays with fully parsed data, you have to store this data in our Local Database (Core Data).  May be it helps for you.
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation /Classes/NSXMLParser_Class/Reference/Reference.html

Similar Messages

  • RuleAuthor : error importing XML Schemas into Data Model

    Hi,
    I have problems during import XML Schema in my Data Model.
    I'm following these steps:
    1) Click Definitions tab;
    2) Click XMLFact;
    3) Click Create
    4) I enter the path for the schema and the directory to store JAXB-generated classes. In this directory every user has all permission (777).
    In the next step when I click on "Add Shemas" I have this error:
    java.io.IOException: Not enough space at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.<init>(UNIXProcess.java:53) at java.lang.ProcessImpl.start(ProcessImpl.java:65) at java.lang.ProcessBuilder.start(ProcessBuilder.java:451) at java.lang.Runtime.exec(Runtime.java:591) at java.lang.Runtime.exec(Runtime.java:429) at java.lang.Runtime.exec(Runtime.java:326) at oracle.rules.sdk.datamodel.impl.DataModelUtil.compileJavaFile(DataModelUtil.java:479) at oracle.rules.sdk.datamodel.DataModelManager.addXMLSchemaPath(DataModelManager.java:984) at oracle.rules.sdk.mapper.RuleObjectHelper.addSchemapath(RuleObjectHelper.java:2759) at oracle.rules.ra.uix.mvc.SchemaSelectorEH.addSchema(SchemaSelectorEH.java:138) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at oracle.rules.ra.uix.mvc.BeanEH.genericHandleEvent(BeanEH.java:869) at oracle.rules.ra.uix.mvc.BeanEH.handleEvent(BeanEH.java:838) at oracle.cabo.servlet.event.TableEventHandler.handleEvent(Unknown Source) at oracle.cabo.servlet.event.TableEventHandler.handleEvent(Unknown Source) at oracle.cabo.servlet.event.BasePageFlowEngine.handleRequest(Unknown Source) at oracle.cabo.servlet.AbstractPageBroker.handleRequest(Unknown Source) at oracle.cabo.servlet.ui.BaseUIPageBroker.handleRequest(Unknown Source) at oracle.cabo.servlet.PageBrokerHandler.handleRequest(Unknown Source) at oracle.cabo.servlet.UIXServlet.doGet(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:743) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)
    I cannot find the solution!
    Can someone help me?
    Thanks.

    Do you still have enough disk space available on your file system to store the different xml-facts the RuleAuthor will create for you?

  • Simple Transformation to deserialize an XML file into ABAP data structures?

    I'm attempting to write my first simple transformation to deserialize
    an XML file into ABAP data structures and I have a few questions.
    My simple transformation contains code like the following
    <tt:transform xmlns:tt="http://www.sap.com/transformation-templates"
                  xmlns:pp="http://www.sap.com/abapxml/types/defined" >
    <tt:type name="REPORT" line-type="?">
      <tt:node name="COMPANY_ID" type="C" length="10" />
      <tt:node name="JOB_ID" type="C" length="20" />
      <tt:node name="TYPE_CSV" type="C" length="1" />
      <tt:node name="TYPE_XLS" type="C" length="1" />
      <tt:node name="TYPE_PDF" type="C" length="1" />
      <tt:node name="IS_NEW" type="C" length="1" />
    </tt:type>
    <tt:root name="ROOT2" type="pp:REPORT" />
        <QueryResponse>
        <tt:loop ref="ROOT2" name="line">
          <QueryResponseRow>
            <CompanyID>
              <tt:value ref="$line.COMPANY_ID" />
            </CompanyID>
            <JobID>
              <tt:value ref="$line.JOB_ID" />
            </JobID>
            <ExportTypes>
              <tt:loop>
                <ExportType>
                   I don't know what to do here (see item 3, below)
                </ExportType>
              </tt:loop>
            </ExportTypes>
            <IsNew>
              <tt:value ref="$line.IS_NEW"
              map="val(' ') = xml('false'), val('X') = xml('true')" />
            </IsNew>
          </QueryResponseRow>
          </tt:loop>
        </QueryResponse>
        </tt:loop>
    1. In a DTD, an element can be designated as occurring zero or one
    time, zero or more times, or one or more times. How do I write the
    simple transformation to accommodate these possibilities?
    2. In trying to accommodate the "zero or more times" case, I am trying
    to use the <tt:loop> instruction. It occurs several layers deep in the
    XML hierarchy, but at the top level of the ABAP table. The internal
    table has a structure defined in the ABAP program, not in the data
    dictionary. In the simple transformation, I used <tt:type> and
    <tt:node> to define the structure of the internal table and then
    tried to use <tt:loop ref="ROOT2" name="line"> around the subtree that
    can occur zero or more times. But every variation I try seems to get
    different errors. Can anyone supply a working example of this?
    3. Among the fields in the internal table, I've defined three
    one-character fields named TYPE_CSV, TYPE_XLS, and TYPE_PDF. In the
    XML file, I expect zero to three elements of the form
    <ExportType exporttype='csv' />
    <ExportType exporttype='xls' />
    <ExportType exporttype='pdf' />
    I want to set field TYPE_CSV = 'X' if I find an ExportType element
    with its exporttype attribute set to 'csv'. I want to set field
    TYPE_XLS = 'X' if I find an ExportType element with its exporttype
    attribute set to 'xls'. I want to set field TYPE_PDF = 'X' if I find
    an ExportType element with its exporttype attribute set to 'pdf'. How
    can I do that?
    4. For an element that has a value like
    <ErrorCode>123</ErrorCode>
    in the simple transformation, the sequence
    <ErrorCode>  <tt:value ref="ROOT1.CODE" />  </ErrorCode>
    seems to work just fine.
    I have other situations where the XML reads
    <IsNew value='true' />
    I wanted to write
    <IsNew>
            <tt:value ref="$line.IS_NEW"
            map="val(' ') = xml('false'), val('X') = xml('true')" />
           </IsNew>
    but I'm afraid that the <tt:value> fails to deal with the fact that in
    the XML file the value is being passed as the value of an attribute
    (named "value"), rather than the value of the element itself. How do
    you handle this?

    Try this code below:
    data  l_xml_table2  type table of xml_line with header line.
    W_filename - This is a Path.
      if w_filename(02) = '
        open dataset w_filename for output in binary mode.
        if sy-subrc = 0.
          l_xml_table2[] = l_xml_table[].
          loop at l_xml_table2.
            transfer l_xml_table2 to w_filename.
          endloop.
        endif.
        close dataset w_filename.
      else.
        call method cl_gui_frontend_services=>gui_download
          exporting
            bin_filesize = l_xml_size
            filename     = w_filename
            filetype     = 'BIN'
          changing
            data_tab     = l_xml_table
          exceptions
            others       = 24.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
                     with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.

  • Import XML file into rpd file

    Hi Gurus,
    it seems to be very easy to import XML files into repos, but I could find suitable driver in my ODBC Data Source Administrator.
    Could You help me?
    Many thanks in advance!
    Regards
    Laszlo

    you can't see view Data option for all types of sources... it depends on call interface and source you are using..
    go and check the xml files and open them physically .. you'll see the data..

  • VF11 - Default system date into billing date

    VF11 - Default system date into billing date
    I want to Default system date into billing date
    and not allow any other date.
    I tried some badi and user exit but I didn't get
    any sign from my break point.
    Please Help
    Thanks Kobi

    hi
    good
    in this case you have to change the standard program to the z* program and you can give the today date in the parameter statement as a constant value.
    standrd program name->SAPMV60A
    screen field -RV60A-FKDAT
    thanks
    mrutyun^

  • Can we send the data into different data target from single datasource how

    Hai
    can we send the data into different data target from single datasource how ?

    Hi,
    Create the transformation for each target and connect through DTP if you are in BI 7.0
    If it is BW 3.5 create transfer rules and load it Info source and then different update rules for different targets then load it using IP.
    If you are speaking about loading data from R3 data source to multiple data sources in BI
    Then follow the below step.
    1)create init IP's and run the IP's with different selection to different DSO(With same selection it is not possible).
    2)Then you will have different delta queues for the same data source in RSA7
    3)Your delta loads will run fine to different data sources from same DS in R3.
    Hope this helps
    Regards,
    Venkatesh

  • Error Importing data into switching data source using cim for CRS Oracle Commerce 11

    Hi All,
         I am getting the below error while importing data into the switching data source for oracle commerce 11 with CRS.
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339319
    atg.cim.database.ImportDataTask
    4 Data Import:  Repository: /atg/commerce/locations/LocationRepository  Path: /CIM/tmp/import/switchingA-import3.xml Module: Store.EStore,Store.EStore.International  state:error
    **** info
    Fri Apr 17 12:18:59 IST 2015
    1429253339321
    atg.cim.util.AdminDatabaseUtils
    The administrative tables have not been initialized. Unable to update the administrator password for this datasource.
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.database.ImportDataTask
    1 of 8 data imports had errors. Please check C:\OracleCommerce\ATG\ATG11.0\CIM\log/cim.log for more details.
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    atg.cim.StepException: StartSqlRepositoryTemplateStep:Error Executing Step
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:112)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by :atg.cim.StepException: StartSqlRepositoryTemplateStep:Error Executing Template
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:158)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#2):atg.cim.CommandException: Error Executing Template
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:93)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#3):atg.cim.RunnerException: Error processing Steps.
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:173)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#4):atg.cim.StepException: switchingAImportStep:Error Executing Step
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:123)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#5):atg.cim.StepException: switchingAImportStep:Error Executing Pre Navigation Validation
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.ui.text.TextDisplay.processStep(TextDisplay.java:377)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.ui.UIDispatchImpl.processStep(UIDispatchImpl.java:109)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:239)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:99)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:254)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:86)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:111)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.startCimFlow(Launcher.java:361)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.Launcher.main(Launcher.java:110)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    Caused by (#6):atg.cim.ValidatorExecutionException: AlwaysTrueValidator:Error Executing Validator Commands
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.executeValidations(StepExecutor.java:363)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.ui.text.TextDisplay.processStep(TextDisplay.java:375)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.ui.UIDispatchImpl.processStep(UIDispatchImpl.java:109)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:239)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:166)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:195)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processStep(StepExecutor.java:155)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:105)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.runner.Runner.run(Runner.java:170)
    **** Error
    Fri Apr 17 12:18:59 IST 2015
    1429253339322
    atg.cim.step.StepExecutor
    at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:90)
    **** Error

    Hi,
    I think I faced the same issue when I trying to import data for international(multiple currency support) version of CRS/Motorprise and that time I just switched to use only English version import as last time I concluded was that there is some encoding issue in oracle database.
    Please check once you are using right version of oracle db which are supported by ATG 11.
    Hope this will help.

  • How to convert XML data into binary data (opaque data)

    Hi,
    I am trying to develop a process that delivers files after reading data from a database.
    However, it is required not to deliver the data immediately. We want to perform some checks before the files get written.
    So the way we want to design this is,
    1. Read data from database (or any other input). The data is in XML format (this is a requirement, as in general, we have xml data)
    2. This data is written, opaquely, to a JMS queue that can store binary data, along with what is the filename of the file that would be written (filename is passed using JMS Headers)
    3. When required, another process reads the JMS queue's binary data, and dumps into a file
    The reason I want to use opaque data while inserting in the JMS queue is, that enables me to develop a single process in Step 3 that can write any file, irrespective of the format.
    My questions are
    1. How to convert the xml data to opaque data. In BPEL I may use a embedded java, but how about ESB. Any other way....?
    2. how to pass filename to the jms queue, when payload is opaque. Can I use a header attribute...custom attributes?
    3. Which jms message type is better for this kind of requirement - SYS.AQ$_JMS_BYTES_MESSAGE or SYS.AQ$_JMS_STREAM_MESSAGE

    Ana,
    We are doing the same thing--using one variable with the schema as the source of the .xsl and assigning the resulting html to another variable--the content body of the email, in our case. I just posted how we did it here: Re: Using XSLT to generate the email HTML body
    Let me know if this helps.

  • Save NSArray into Core Data object

    How do I go about saving an array in a core data store?

    I'm not proficient, but you have to make a core data model in the interface for that which is like making an xml file, but with fields (very easy), and then you have to make a number of objects that handle the memory of the variables. It's something like one object for a persistent store, and then one object that mangages the persistent store and then a persistent store object or something. It's actually very clear if you read up on it in the documentation under Core Data or Persistant Store.

  • How to Import XML file into SAP B1

    Dear All,
    I have a scenario like,
    I am receiving a XML file from a 3rd party application for the daily Creation,Update of Item Master,BP Master, Marketing Documents. I want to import this file into SAP B1 through its approp objects. I understand DTW has limitation in its file types (Semicolo,Tab,Comma,ODBC). How do i do this ? Please guide me.
    Thanks,
    Thanga Raj K

    Hy folks,
    I´m frim Brasil and I've been studying the tool EFM (Eletronic File Manager) to learn more about it!
    There I saw that we can extract to XML "any" infomation from the database we want, mainly through the GEP.
    However, as I've seen, this Add-On can not import any XML file into SBO, unless for the BFP wich can be imported in conjunction with the BTHF Add-on.
    So I ask: how is it possible to import XML data into SBO database? Is it possible to be done through the EFM? or  it´s really necessary to write a code specifically to do that?
    Besides, I know that de B1iSN fit to this necessity... but when I tried to use it, by the custom "object" for BP, for example, there are some data wich the mapping conteined in this custom "process" that can not be imported... I tried to understand how to map those other fields not imported by the custom but this has been dificult to me as I am a implementation consultant focused in administrative process not on development...
    Could you please help me with this subject!
    Thanks a lot,
    Denis

  • I need to know how to import xml files into indesign cs6.

    My client wants to send me xml text files to import into Indesign for a multi-page publication. I don't have a clue where to start. Can you point me to a tutorial that would help me figure this out?
    I have a sample file that looks like this:
    <?xml version="1.0"?>
    <providers>
      <provider>
        <name>Bow Valley College</name>
        <description>Putting the Community back in college&#x2026;in the Bow Corrid
    ANY TIME, ANY PLACE, ANY PATH, ANY PACE LEARNING.
    Designated as the comprehensive community college for Calgary &amp; its
    surrounding region, Bow Valley College offers you learning opportunities
    through flexible delivery options, including classrooms, online or self
    paced modules. Whether you are taking a course for interest, to enhance
    your career skills or to finish high school you have access to all of the
    traditional Bow Valley College student supports.
    Visit our website [2] or come see us at our Canmore campus.
    BOW VALLEY LEARNING COUNCIL MEMBER.
    Links:
    [1] http://www.bowvalleycollege.ca/bow-corridor.html
    </description>
        <contact_information>Canmore Campus
    Provincial Building, 800 Railway Ave.
    Canmore, AB&#xA0; T1W 1P1
    OFFICE HOURS: 8:30am - 4:30pm, Monday - Friday (except from 12 - 1pm)
    PHONE: (403) 678-3125
    FAX: (403) 678-3127
    BANFF CAMPUS: Lower Level, Banff YWCA, 102 Spray Ave., Banff (ONLY OPEN
    WHEN COURSES OFFERED).&#xA0;</contact_information>
        <email>[email protected]</email>
        <website>www.bowvalleycollege.ca/bow-corridor</website>
        <registration_information>Cancellation policy: Once your course has begun no refunds or credits will
    be given. Compassionate grounds may be considered with official
    documentation. There are no refunds, transfers, or credits if you cancel
    within one week of the course start date.
    BY PHONE: (403) 678-3125. Payment by Visa or Mastercard
    IN PERSON: Canmore Campus, Provincial Building, 800 Railway Ave., Canmore.
    Payment by cash, Visa or Mastercard.
    &#xA0;
    FUNDING ASSISTANCE&#xA0;MAY BE AVAILABLE FOR THOSE ON A LOW INCOME ON SOME
    COURSES. PLEASE ASK FOR MORE INFORMATION.</registration_information>
        <courses>
          <course>
            <title>Computer Basics/Windows 7 - Instructor led, Canmore</title>
            <description>An instructor will lead the class through the basic features of Microsoft
    Windows, the Internet and Email. Find out how to start programs, create,
    save and organize your files and use the online help feature. You&#x2019;ll also
    get an introduction to surfing the internet and setting up an email
    account. This course is designed for those with little or no computer
    experience &#x2013; and is still our most popular course. 18 HR COURSE.</description>
            <schedule_entries>
              <entry>
                <date>Mon 6:30 - 9 pm, Oct 7 - Dec 2</date>
                <date>Thu 6:30 - 9 pm, Oct 10 - Dec 5</date>
              </entry>
            </schedule_entries>
          </course>
          <course>
            <title>Word 2010 Introduction - Self-paced</title>
            <description>Explore the basics of Microsoft Word to produce professional letters and
    documents. This course guides you through the effective use of the Word
    Ribbon and Quick Access Toolbar. You&#x2019;ll learn how to efficiently edit,
    move and copy text; manipulate fonts; apply bullets and numbering; borders
    and shading; insert and re-size Clip Art; enter headers and footers; insert
    page numbers; set alignment and indents; and change page settings. You&#x2019;ll
    learn to use the AutoCorrect feature and finish documents using the
    spelling, thesaurus and grammar features.
    Self-paced, 18 hr course.
    Prerequisite recommended: Computer Basics or equivalent experience.</description>
            <schedule_entries>
              <entry>
                <date>Mon 7:30 - 9 pm, Oct 7</date>
                <date>Thu 7:30 - 9 pm, Dec 5</date>
              </entry>
            </schedule_entries>
          </course>
          <course>
    AND SO ON...FOR 64 PAGES WORTH OF CONTENT
    HELP!!!
    SGAREN

    Hello Sally,
    First, I have only heard/read good things about the book Steve recommends. It is on my to buy list one day. Been awaiting a long deserved vaction to pick it up to read.
    I approach XML files pretty much like I do any text file I am sent in that I will import or copy/paste a text file into a frame in ID and begin setting my styles. With XML, though, I first clean it up, move closing tags up to their logical close lines, remove spurious codes that mean something in HTML but don't necessarily belong in the XML file (like &#x2019 which is an apostrophe so I do a search and replace. But for &#xA0; which is a non-breaking space I simply search and replace with a regular space in general), and make sure the XML validates.
    Validation is much like making sure an HTML page is formed properly. I use an XML editor (XML BluePrint) and a text editor (UltraEdit) for these tasks. If I had to only have one or the other, I suppose the XML editor is what I would use.
    I always show the import options when I import the XML and make sure that I link to the file.
    So once a sample of the XML is on a page in ID (via File | Import XML), I highlight text within a tag, say like in your example above, the Providor name, and make it like I want and then create a new style. I generally name the styles as per the XML tag. Later on, that makes mapping tags to styles a little easier.
    Once I set up all the styles preliminarily, I map the tags to styles. You can do that either via the Tags palette or via the Structure Pane that will appear once the XML is imported. In both cases, it is found via the flyout menu at the top right of their respective windows.
    After mapping my styles to the tags, I select the root element in the Structure Pane (the topmost element. In your sample above it is "providors" and delete it. This removes the XML in your ID file. But the styles and tags are still present.
    Then I import the XML again and look to makes sure all the tags/elements are styled as intended. I then correct any errors/ommissions. Then...I'll delete the XML again and import the full XML file.
    I can upload what I did with your XML sample above so you can compare it to your source file if you would like. You would then see how/where I moved tags. Now, moving the tags is only "necessary" to avoid all the extra blank paragraphs. That can be accomplished by ID's search/replace, too. But I like to start out with the XML cleaned up, so I take the few minutes to do it.
    Take care, Mike

  • Import XML file into xml DB

    I have the data into the xml files. To store these data, I thinked to create a XML DB.
    I created a new schema, through the 'create schema' function.
    I obtained a table for any element found into .xsd file.
    I don't see the relations for these tables.
    I thinked to import the data into this xml db from xml files.
    How must I do?
    It's possible to store the data with their relations?
    Thanks in advance
    Lucia

    I have the data into the xml files. To store these data, I thinked to create a XML DB.
    I created a new schema, through the 'create schema' function.
    I obtained a table for any element found into .xsd file.
    I don't see the relations for these tables.
    I thinked to import the data into this xml db from xml files.
    How must I do?
    It's possible to store the data with their relations?
    Thanks in advance
    Lucia

  • Does anyone can help me to import XML string into a ORACLE database

    Hi guys!
    i have some problem that my friend wants me to convert XML string to Oracle relational database which means.
    let's say, there is a table that a row has XML string.
    so table has XML string with varchar type.
    what my friend want me to do is, the string needs to be solved as a relational database.
    like
    A table has 'ID', 'data', 'result' rows
    and Data column has XML string like <?xml version...............>
    then wants to convert that data column's XML data into TABLE B with structure normally XML has.
    i'm so confused and have no idea at all.. also i couldn't find any solution related to my stuff..
    if someone knows how to solve the problem, just let us know
    thx

    The database is 10.2.0
    What sort of example do u want me to give you..
    i thought i give all information on the post..
    i will explain it
    let's say there are 3 columns ID,Name,Code
    Id = normal integer
    Name= varchar
    Code= varchar
    and i need to conver that XML in the Code column into relational databases
    the code column has normal XML code which is starting from <?xml version.... and so on
    so does it explain?
    please help me!

  • Import XML file into ABAP WD

    Hi,
    Is there any way to upload an XML file into ABAP WD?
    I just saw a blog for Java WD.
    <a href="/people/johann.marty/blog/2006/10/03/create-a-web-dynpro-tree-from-an-xml-file:///people/johann.marty/blog/2006/10/03/create-a-web-dynpro-tree-from-an-xml-file
    Is there a similar facility in ABAP WD?
    Regards,
    Haresh.

    hey u can do this by using CALL Transformation id.. command..
    here is the example code where i wrote this to convert it DATA to XML format...it may help u..
      DATA : BEGIN OF l_xml_tab OCCURS 0,
              a(100) TYPE c,
             END OF l_xml_tab.
      DATA : xml_out TYPE string .
      DATA : lw_xml_tab LIKE LINE OF l_xml_tab.
    XML
      CALL TRANSFORMATION id "('ID')
      SOURCE tab = gt_outtab[]
      RESULT XML xml_out.
    Convert to TABLE
      CALL FUNCTION 'HR_EFI_CONVERT_STRING_TO_TABLE'
        EXPORTING
          i_string         = xml_out
          i_tabline_length = 100
        TABLES
          et_table         = l_xml_tab.
      OPEN DATASET p_lgfil1 FOR OUTPUT IN BINARY MODE.
      LOOP AT l_xml_tab INTO lw_xml_tab.
        TRANSFER lw_xml_tab TO p_lgfil1.
      ENDLOOP.
      CLOSE DATASET p_lgfil1.

  • Error while loading data into clob data type.

    Hi,
    I have created interface to load data from oracle table into oracle table.In target table we have attribute with clob data type. while loading data into clob field ODI gave below error. I use odi 10.1.3.6.0
    java.lang.NumberFormatException: For input string: "4294967295"
         at java.lang.NumberFormatException.forInputString(Unknown Source)
         at java.lang.Integer.parseInt(Unknown Source)
         at java.lang.Integer.parseInt(Unknown Source)
    Let me know if anyone come across and resolved this kind of issue.
    Thanks much,
    Nishit Gajjar

    Mr. Gajjar,
    You didnt mention what KMs you are using ?
    have a read of
    Re: Facing issues while using BLOB
    and
    Load BLOB column in Oracle to Image column in MS SQL Server
    Try again.
    And can you please mark the Correct/Helpful points to the answers too.
    Edited by: actdi on Jan 10, 2012 10:45 AM

Maybe you are looking for