Can I use Dreamweaver to import data into specific fields on a website?

We need to build a website that will allow us to import data from an existing database, into specific fields on website (desktop and mobile).  Is it possible to do that in Dreamweaver?

Ben answered your question. You asked if one CAN use DW to call data. Just understand that it isn't necessary to use DW for this, and there are good reasons not to.
Using a plug-in or data behaviors allows you to get up and running quickly, but they are like training wheels on a bicycle. Eventually they cripple your capabilities and you have to go back to the beginning to learn how to do things right, which means making the connections and writing the code yourself. Why not just do it the right way from the start?
If you script the database connections and queries yourself, you can still work within DW.
You did not specify which kind of server, database or scripting language you plan to use. The typical configuration is MySQL database and PHP scripting on Linux.

Similar Messages

  • Can anyine help me in importing data into oracle 9i

    Hi All ,
    I am very new to oracle 9i.I have created the dump of the database using exp command.
    exp system/manager file="testdb.dmp" owner=scott
    Now i want the same database to be imported to a new machine.I have installed oracle 9i with database global database name SID as stc .I am able to connect to the database "stc " using scott and tiger using sql plus.
    The import command that I used is
    imp scott/tiger file=testdb.dmp fromuser=scott touser=scott
    When I gave like this , it showed like "Invalid login name/password".
    But when I gave the command as
    imp scott/tiger file=testdb.dmp fromuser=scott touser=system
    It worked . But I am unable to loacate the tables.
    Also I want to import these tables into scott.So is there any better way so that I can copymy data from one machine to another . Or is there any tool which converts mysql tables scripts into oracle table scripts
    Thanking you in advance
    Diny

    Hi
    I tried giving the same but it is showing the same : oracle error 1017 encoountered . Logon denied.
    And it is asking for new login and password.
    Then I gave the login / pwd as scott / tiger . Then it started importing .
    We already had added around 150 tables in the database early. So is there any command so that we can delete all the tables entirely.
    Dinny

  • Importing data into form fields

    I own a retail parts store, and one of my suppliers has given me a flyer that has been created with a form so that their customer's (myself included) can manipulate that pricing to our liking.
    My issue is that the flyer was created using American dollars, and I need to convert the entire 24 pages to Canadian dollars....and a newer flyer comes out every two months.
    They do include a pricing file in numerous different formats (which I can easily multiply),  but due to the fact that each price has been entered into a form field in the pdf flyer, I cannot figure out how to export that data, let alone import the new pricing back in.
    Attatched is one page of the flyer if that will help.
    I have been trying to find an answer to this for some time now, if anyone has an idea or can point me in the right direction I would be very greatful.

    Thank you for your reply, and yes, I am able to merge the form's data files into a spreadsheet, through manage form data, but I cannot get that data back into the pdf document once I have changed the info in a spreadsheet.  Using the import option will only allow .fdf  files to be imported, in which I cannot manipulate the data.

  • Use Spry to insert data into a database?

    I'm new to Spry, so I have a question:
    Can I use Spry to insert data into a MySQL database without
    reloading the site?
    Reading data from XML file works fine, but I don't know if
    writing is possible..

    I don't get it... I tried this:
    <script type="text/javascript" src="spry/xpath.js"
    /></script>
    <script type="text/javascript" src="spry/SpryData.js"
    /></script>
    <script type="text/javascript">
    /* <![CDATA[ */
    function subscribe() {
    var subscribe;
    var info =
    document.getElementById("subscription_info").value;
    if (document.getElementsByName("subscription")[0].checked ==
    true) {
    subscribe = "ja";
    else {
    subscribe = "nein";
    var dsSubscribe = new
    Spry.Data.XMLDataSet("include/inc_subscribe.php?subscribe="+subscribe+"&info="+info+"&sit e=<?=$_GET['site'];?>",
    "subscription/ok");
    /* ]]> */
    </script>
    <div id="infos">
    <input type="radio" name="subscription" value="ja" />
    dabei
    <input type="radio" name="subscription" value="nein"
    /> nicht dabei
    <input type='text' class='text'
    id='subscription_info_text' />
    <input type='submit' id="subscription_submit"
    value='Eintragen' onClick="subscribe()" />
    </div>
    But the data isn't inserted into the mysql database. When I
    start the php script directly, it works, so I think it's not a php
    problem.

  • Can we use impdp to import the data from an normal exp dump?

    Hi All,
    I have a export dump taken from a 9i database. Can i use impdp to import the data into 10g database from that 9i exp dump?
    Please suggest
    thanks and Regards
    Arun

    Hi,
    I have a export dump taken from a 9i database. Can i use impdp to import the data into 10g database from that 9i exp dump?Yes, it can be.
    Refer:
    http://wiki.oracle.com/thread/3734722/can+a+9i+dump+file+be+imported+into+10%3F
    thanks,
    X A H E E R

  • What is the best protocol to import data into sqlserver using an SSIS Package?

    Im trying to import data into SQL Server from EXCEL with an SSIS package. In my data flow I am using "Excel Source" object and an "OLE DB Command" object.  Im getting the following error message, "...Excel Connection Manager"
    is an incorrect type....."  May someone explain why I get this and point me in the right direction in choosing the proper source for my package so I can complete my task.  Thanks.

    Hi jsorrisone,
    The data type mismatch issue is a common issue when using Excel Source in SSIS. The Excel driver recognizes only a limited set of data types. The following section of the document
    Excel Source should point you in the right direction:
    The Excel driver recognizes only a limited set of data types. For example, all numeric columns are interpreted as doubles (DT_R8), and all string columns (other than memo columns) are interpreted as 255-character Unicode strings (DT_WSTR). Integration
    Services maps the Excel data types as follows:
    Numeric – double-precision float (DT_R8)
    Currency – currency (DT_CY)
    Boolean – Boolean (DT_BOOL)
    Date/time – datetime (DT_DATE)
    String – Unicode string, length 255 (DT_WSTR)
    Memo – Unicode text stream (DT_NTEXT)
    Integration Services does not implicitly convert data types. As a result, you may need to use Derived Column or Data Conversion transformations to convert Excel data explicitly before loading it into a non-Excel destination, or to convert non-Excel data
    before loading it into an Excel destination. In this case, it may be useful to create the initial package by using the Import and Export Wizard, which configures the necessary conversions for you. Some examples of the conversions that may be required include
    the following:
    Conversion between Unicode Excel string columns and non-Unicode string columns with specific codepages
    Conversion between 255-character Excel string columns and string columns of different lengths
    Conversion between double-precision Excel numeric columns and numeric columns of other types
    If you need further help, post the complete error message as well as the data nature in your Excel source file for further analysis.
    Regards,
    Mike Yin
    TechNet Community Support

  • Can I use LabVIEW to load data directly into system memory? The serial card I'm using isn't supported by NI nor does VISA recognize it. I'm using a Win32 function to read the data from the card and now I want it to go directly to system memory.

    Can I use LabVIEW to load data directly into system memory from a VI? The serial card I'm using isn't supported by NI nor does VISA recognize it. I'm using a Call Library function to read the data from the card and now I want it to go directly to system memory.
    The data is being received at 1Mbps.
    Thanks

    Two questions:
    One, if it's a serial card, then presumably it gives you more serial ports, like COM3, COM4, etc. If so, VISA would see the COM ports, and not the card directly. The drivers for the card should make it so that you see the extra serial ports from the OS. If you don't see the extra COM ports from VISA, then it sounds like the drivers for the card are not installed properly. Do the extra COM ports show up in Device Manager?
    Two, you said that you're using a Call Library function to get the data and you want to put it into system memory. Errr.... you just read the data and you have it in memory by definition. Are you saying you need a way to parse the data so it shows up on a graph or something?

  • Can anyone confirm the date used for pushing the data into AR interface table? Is it abse don Actual ship date or scheduled ship date?

    Can anyone confirm the date used for pushing the data into AR interface table? Is it abse don Actual ship date or scheduled ship date? We are facing a scenario where trx date is lower than the actual ship to which logically sounds incorrect.
    Appreciate any quick response around this.

    Hi,
    Transaction date  will be your autoinvoice master program submission level date (If you haven't setup any logic.
    Please check the program level default date, if user enter old date ststem will pick the same.
    Customer is trying to set the value of the profile OM:Set receivables transaction date as current date for non-shippable lines at the responsiblity level. System does not set the transaction date to current date in ra_interface_lines_all.
    CAUSE
    Customer has used the functionality in R11i. But after the upgrade to R12, the system functions differently than R11i.
    SOLUTION
    1.Ensure that there are no scheduled workflow background process run.
    2.Set the profile "OM: Set Receivables Transaction Date as Current Date for Non-Shippable Lines"  at Responsibility level only as Yes.
    3.Now switch the responsibility to which the profile is set.
    4.Create order for Non-Shippable Lines and progress it to invoicing.
    5.Ensure that the 'workflow background process' concurrent program is run in the same responsibility and this line is considered in it.
    6.Now check if the 'SHIP_DATE_ACTUAL' is populated to ra_interface_lines_all

  • 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.

  • Import data into oracle from a text file?

    hi guys,
    How can we import data into oracle9i release 1 from a text file with comma seperated or tab seperated delimeters?
    please help,
    Imran

    table is already created, just have to populate data into table through a dat or text file. As suggested, you would either:
    1). use SQL*Loader to load the data into this table.
    2). create external table on that data file and then do:
    INSERT INTO your_real_table
    SELECT * FROM that_external_table ;

  • How to bulk import data into CQ5 from MySQL and file system

    Is there an easy way to bulk import data into CQ5 from MySQL and file system?  Some of the files are ~50MB each (instrument files).  There are a total of ~1,500 records spread over about 5 tables.
    Thanks

    What problem are you having writing it to a file?
    You can't use FORALL to write the data out to a file, you can only loop through the entries in the collection 1 by 1 and write them out to the file like that.
    FORALL can only be used for SQL statements.

  • Importing data into tables with grant access (sql developer 3.2)

    Hello,
    I want to import data into a table PAY_BALANCE_BATCH_LINES which is an interface table. I'm logged in to a schema (APPS) and this table belongs to the HR schema. However, if you look at the grants, the APPS schema has all access to this particular table. In TOAD, this used to work great.
    But in sqldeveloper, when I filter the tables dropdown, I am not able to find this table. Since this is my primary way of uploading data I'm not sure how else I can get access to upload data into this table. I don't know the password for the HR schema by the way.
    Is there a way out?
    Many Thanks

    Scroll down the tree to the 'Other Users' node, expand it, and then drill down into HR > Tables. Then do your import.
    For an alternative browser, right-click on your connection in the tree and open a Schema Browser.

  • Importing Data into Apex 3.0.1

    I know that this question has a simple answer, but here goes. I know how to import data into oracle using sql loader and sql insert commands but can Apex import data into a blank application form with multiple rows of data to import.
    Like:
    U_Id L_Name F_Name City State zip
    15 Taylor Joe Atown Mi 42333
    16 Jones Jim NewT Ky 43211
    and 200 or 500 or more columes
    Again I know how to import into Apex to create a new form from a spreadsheet or access, but I don't know how to move raw data from a text file into Apex.
    Can this task be done.
    Thanks,
    Tim

    Tim,
    When an application is first created the developer has to specify the schema that will be used to parse (compile) all the code against. All you need to do is to use your existing knowledge of importing data into Oracle and import the data you want into the Parsing Schema of the application. Use Application Definition to find the parsing schema for your application.
    Sima

  • Can I  use excel type functions embedded into an online pdf form, ie Qty x Price= total $

    Can I use excel type functions embedded into an online pdf form, ie Qty x Price= total $

    Let me tell you what I am sure about and what I am not sure about:
    I am sure that I want to be able to sell my products online. The industrial market that I sell to usually do not allow the maintenance people that find me on the web, do not have the ability to use credit cards in a typical shopping cart format due to the higher prices that the equipment I sell costs and that most people call me up to 'request a formal quotation' to give to their purchasing depart. So, my bright idea is to create numerous pdf files with very specific url's to match the very specific items that I sell. (1) item per pdf. I am thinking that the advantage to skipping the shopping cart approach and allowing the customer to fill in the qty of items, which would be mulitpled by the price of the item (a constant #) and then hitting a apply button, that would calculate subtotal price. Discounts for the qty the customer inputs (qty of items inputted by customer would be discounted on a percentage x base price) and a refresh the screen. It would allow for SEO advantages from what I have seen in the past in my very vertical market. All forms would be setup using the same functionality, just images, alt text, urls, and readable text would change.
    What I don't know- which is alot, then how to calculate shipping costs. I have a weight per item, which can be added up. I saw an Adobe blog that allows UPS shipping cost to be programmed in. I don't know how dreamweaver works, which was what the blog mentioned would allow for this updated, instantanious interface with UPS and calculating real shipping costs to a specific zip code. Shipping cost would be fluff to this page. The main thing would be to do allow the customer to be able to fill in a qty of the specific item on the page, calculate a discount if / then type thing, be able to have customer email to purchasing dept or print. I would date stamp it with verbage that pricing is valid for XX days and if I could get a copy emailed to me that would be icing on the cake. I believe that this non static pdf would be something different then the current competion and that it would allow for 100's of quotes to be generated without customers having to wait 15 minutes to an hour for me to process the exact document that they are looking for.
    Hajeks

  • Possible to use JavaScript to Import Data from XML file to pre-fill fields?

    Hi,
    I have a dynamic fill-in PDF that I want to "pre-fill" internally in my company before sending out to users who will change any pre-filled fields necessary and answer questions we did not already answer.
    We do not have LiveCycle Reader Extensions, but we can use Acrobat to import data from an XML document to pre-fill the named fields.  Is it possibly to do this task using folder-level Javascript or some other method?  I can look into this, and post my findings, but I'd like to know if it's possible or if I need to use a different programming language.

    Hi,
    I am afraid that solution was for a specific client and I can't share it. If I get a chance I will mock up an example, but this wont be for a while. From memory it was just a straight importData method. This would normally fail silently in a non-certified form, but when the form is digitally signed/certified, it works without a hitch.
    Good luck,
    Niall

Maybe you are looking for