Error when working on Dreamweaver CS3

Any time I do anything in Dreamweaver CS3 I get this error which than I have to click on
several time for it to go away and for the software to work. Please advise...anyone?
The following translators were not loaded due to errors:
wagmp_map.htm: has configuration information that is invalid.
wagt_checkout_buynow.htm: has configuration information that is invalid.
wagt_map.htm: has configuration information that is invalid.
WAPA_Runtime.htm: has configuration information that is invalid.
PHP_MySQL.htm: has configuration information that is invalid.
Spry.htm: has configuration information that is invalid.
SpryWidget.htm: has configuration information that is invalid.

parulvikram,
You may try to reset the preferences.
You can do it irreversibly by pressing Ctrl+Alt+Shift>Cmd+Option+Shift during startup or reversible with Move the folder

Similar Messages

  • "New" Godaddy webhosting account's won't work w/Dreamweaver CS3

    Hello,
    I am having problems getting my Godaddy webhosting account's to work with Dreamweaver CS3. My older accounts work, it is my newer (last 6 months) accounts that have this issue. The ftp information works in my CuteFTP8 Professional. I called Godaddy tech support several times and they could not figure out. And, since it works in my FTP program, they said it is a Dreamweaver issue.
    In the FTP host Remote Info I have tried www.domain.com, domain.com, ftp.domain.com with login and password. I also tried checking Use passive FTP, Use IPv6 Transfer mode, Use Secure FTP (SFTP) and leaving them all unchecked. The error message I always get is:
    An FTP error occurred - cannot make connection to host. No response from the server. This may be due to one or more of the following reasons: etc.
    I compared information with my Dreamweaver accounts that do worked and still no luck.
    The only thing I can think of is when you create a new hosting account with Godaddy, depending on the month, you are assigned a different web server. Could it be the old Godaddy web servers work and the new web servers may have different settings that don't work with Dreamweaver? Or, I need different setting information??? I am at my wits end.
    Any help on this would greatly be appreciated.
    Thanks,
    MonaE

    Hi Mona:
    If your FTP client works, then there has to be some miniscule detail that's different between that setup and what you're inputting into your DW Manage sites.  Maybe you should print out your successful FTP setup details, and compare to what's in your DW...
    If this helps, this info came from GoDaddy's help section:
    From the Site menu, select Manage Sites.
    In the Manage Sites box, Click New, then choose Site.
    In the Site Definition box, enter the name and URL of your website and clickNext.
    If a certain type of server technology is necessary for the site to function, selectyes. Otherwise, select no and click Next.
    For working with files during development, select Edit local copies on my machine...(recommended). It is very important that they select this option.
    Enter connection information as follows:
    How do you connect to your remote server?
    FTP
    What is the hostname or FTP address of your web server?
    ftp.domainname.com
    What folder on the server do you want to store your files in?
    / or blank
    Enter your FTP login and FTP Password
    Click Next.
    For checking in and out files, select No, do not enable..
    Review the summary to be sure all information is accurate, then click Done.
    I have a dozen sites hosted at GD, and in most cases (where I had trouble), it was operator error.  Good luck!
    Regards, Ned

  • CMD+ shortcuts not working in Dreamweaver CS3

    I'm have a very strange issue with CMD+ keyboard shortcuts
    not working in Dreamweaver CS3 on OSX 10.5. These actions are
    working from the menus (i.e., copy, cut, paste, etc.). CMD+
    shortcuts work in other CS3 apps. I've searched this forum and
    googled up and down and found some references to issues like this
    with Dreamweaver 8, but nothing for CS3.
    Has anyone experienced this problem? I'm completely stumped.
    Lawrence

    My concern wasn't with the navbar, but thanks for the headsup.
    The problem is that the link in the upper left hand corner, Suzie's Story, is a rollover image but it does not reveal the other image when the cursor goes over it.
                            <div id="topTabs1">
       <div align="center"><a href="http://www.google.com" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('suzie','','Images/Suzie's Story Tab_light.jpg',1)"><img src="Images/Suzie's Story Tab_black.jpg" alt="suzie" name="suzie" width="75" height="45" border="0" id="suzie" /></a></div>
             </div>
    #topTabs1 {
    width: 75px;
    height: 45px;
    float: left;
    background-color: #ffffff;
    padding-left: 0px;
    padding-right: 0px

  • Error when working with TableView using JCA

    Hi sdns,
    I am getting an iview rutnime error when working with Tableview using JCA. Here i am putting all my code, go thorugh it and tell me if any error is there.One more thing is Usermappping and all properties are set to system object.
    Now you can throught he code which is followed by error also.
    <u>Java file.</u>
    public class DisplayComponent extends PageProcessorComponent {
         public DynPage getPage() {
              return new DisplayComponentDynPage();
         public static class DisplayComponentDynPage extends JSPDynPage {
              private JCATviewBean bean;
              public void doInitialization() {
                   IPortalComponentProfile profile =
                        ((IPortalComponentRequest) getRequest())
                             .getComponentContext()
                             .getProfile();
                   Object o = profile.getValue("myBean");
                   if (o == null || !(o instanceof JCATviewBean)) {
                        bean = new JCATviewBean();
                        profile.putValue("myBean", bean);
                   } else {
                        bean = (JCATviewBean) o;
                   // fill your bean with data here...
                   IPortalComponentRequest request =
                        (IPortalComponentRequest) this.getRequest();
                   doJca(request);
              public void doProcessAfterInput() throws PageException {
              public void doProcessBeforeOutput() throws PageException {
                   this.setJspName("Report.jsp");
              private IConnection getConnection(
                   IPortalComponentRequest request,
                   String alias)
                   throws Exception {
                   IConnectorGatewayService cgService =
                        (IConnectorGatewayService) PortalRuntime
                             .getRuntimeResources()
                             .getService(
                             IConnectorService.KEY);
                   ConnectionProperties prop =
                        new ConnectionProperties(
                             request.getLocale(),
                             request.getUser());
                   return cgService.getConnection(alias, prop);
              public void doJca(IPortalComponentRequest request) {
                   IConnectionFactory connectionFactory = null;
                   IConnection client = null;
                   String rfm_name = "BAPI_COMPANYCODE_GETLIST";
                   try {
                        try {
                             //       pass the request & system alias
                             //       Change the alias to whatever the alias is for your R/3 system
                             client = getConnection(request, "MyIDES");
                        } catch (Exception e) {
                             System.out.println(
                                  "Couldn't establish a connection with a target system.");
                             return;
    Start Interaction
                        IInteraction interaction = client.createInteractionEx();
                        IInteractionSpec interactionSpec =
                             interaction.getInteractionSpec();
                        interactionSpec.setPropertyValue("Name", rfm_name);
    CCI api only has one datatype: Record
                        RecordFactory recordFactory = interaction.getRecordFactory();
                        MappedRecord importParams =
                             recordFactory.createMappedRecord(
                                  "CONTAINER_OF_IMPORT_PARAMS");
                        IFunctionsMetaData functionsMetaData =
                             client.getFunctionsMetaData();
                        IFunction function = functionsMetaData.getFunction(rfm_name);
                        if (function == null) {
                             System.out.println(
                                  "Couldn't find " + rfm_name + " in a target system.");
                             return;
    How to invoke Function modules
                        System.out.println("Invoking... " + function.getName());
                        MappedRecord exportParams =
                             (MappedRecord) interaction.execute(
                                  interactionSpec,
                                  importParams);
    How to get structure values
                        IRecord exportStructure = (IRecord) exportParams.get("RETURN");
                        String columnOne = exportStructure.getString("TYPE");
                        String columnTwo = exportStructure.getString("CODE");
                        String columnThree = exportStructure.getString("MESSAGE");
                        System.out.println("  RETURN-TYPE    = " + columnOne);
                        System.out.println("  RETURN-CODE    = " + columnTwo);
                        System.out.println("  RETURN-MESSAGE =" + columnThree);
    How to get table values
                        IRecordSet exportTable =
                             (IRecordSet) exportParams.get("COMPANYCODE_LIST");
                        exportTable.beforeFirst();
                        // Moves the cursor before the first row.
                        while (exportTable.next()) {
                             String column_1 = exportTable.getString("COMP_CODE");
                             String column_2 = exportTable.getString("COMP_NAME");
                             System.out.println(
                                  "  COMPANYCODE_LIST-COMP_CODE = " + column_1);
                             System.out.println(
                                  "  COMPANYCODE_LIST-COMP_NAME = " + column_2);
                        //       create the tableview mode in the bean
                        bean.createData(exportTable);
    Closing the connection
                        client.close();
                   } catch (ConnectorException e) {
                        //       app.putValue("error", e);
                        System.out.println("Caught an exception: \n" + e);
                   } catch (Exception e) {
                        System.out.println("Caught an exception: \n" + e);
    <u>Bena file</u>
    package com.sap.JCA.bean;
    import java.util.Vector;
    import com.sapportals.connector.execution.structures.IRecordSet;
    import com.sapportals.htmlb.table.DefaultTableViewModel;
    import com.sapportals.htmlb.table.TableViewModel;
    public class JCATviewBean {
         public DefaultTableViewModel model;
         public TableViewModel getModel() {
         return this.model;
         public void setModel(DefaultTableViewModel model) {
         this.model = model;
         public void createData(IRecordSet table) {
    //       this is your column names
         Vector column = new Vector();
         column.addElement("Company Code");
         column.addElement("Company Name");
    //       all this logic is for the data part.
         Vector rVector = new Vector();
         try {
         table.beforeFirst();
         while (table.next()) {
         Vector data = new Vector();
         data.addElement(table.getString("COMP_CODE"));
         data.addElement(table.getString("COMP_NAME"));
         rVector.addElement(data);
         } catch (Exception e) {
         e.printStackTrace();
    //       this is where you create the model
         this.setModel(new DefaultTableViewModel(rVector, column));
    <b>JSP File:</b>
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <jsp:useBean id="myBean" scope="application" class="com.sap.JCA.bean.JCATviewBean" />
    <hbj:content id="myContext" >
      <hbj:page title="PageTitle">
       <hbj:form id="myFormId" >
       <br>
       <hbj:textView id = "tv1" text = "<b>TableView Example Using JCA</b> <br>"/>
    <hbj:tableView
        id="myTableView1"
        model="myBean.model"
        design="ALTERNATING"
        headerVisible="true"
        footerVisible="true"
        fillUpEmptyRows="true"
        navigationMode="BYLINE"
        selectionMode="MULTISELECT"
        headerText="TableView example1"
        visibleFirstRow="1"
        visibleRowCount="30"
        width="500 px"
        />
       </hbj:form>
      </hbj:page>
    </hbj:content>
    <b>Error when Executing this component:</b><u></u>
      Portal Runtime Error
    <b>An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    com/sapportals/portal/htmlb/page/PageProcessorComponent.
    Exception id: 12:21_28/10/05_0173_94105150
    See the details for the exception ID in the log file</b>  
    If anybody find the error please reply to this post.
    Regards,
    sireesha.

    Thanks for your response Martin,
    I have already seen the log file but im couldn't findout anything from that since it is so long here im putting some part of please see this.if u able to find it clarify me,
    <b>Here the log file:</b>
    1.5#001321FD6213005D0000907100001CB000040419258FBF4E#1130405957843#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler/JobStore#Plain###With in the acquireLockForNextAvailableJob DataStore#
    #1.5#001321FD6213005D0000907200001CB00004041925916735#1130405957953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Acquired the job null#
    #1.5#001321FD6213005D0000907300001CB0000404192591688D#1130405957953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Did not find any job.So, Waiting for sometime for the next job#
    #1.5#001321FD621300650000120E00001CB00004041925C953D7#1130405961625#com.sap.aii.af.sample.adapter.ra.SPIManagedConnectionFactory##com.sap.aii.af.sample.adapter.ra.SPIManagedConnectionFactory.XIManagedConnectionFactoryController.run()######04d7f690469311da8d52001321fd6213#Thread[Thread-114,5,SAPEngine_System_Thread[impl:5]_Group]##0#0#Debug#1#/Applications/ExchangeInfrastructure/AdapterFramework/ThirdPartyRoot/comsap/Server/Adapter Framework#Java###MCF with GUID is running. (,)#3#964bfca0444711dabb51001321fd6213#com.sap.engine.services.deploy.server.ApplicationLoader@1586c77#964bfca0444711dabb51001321fd6213#
    #1.5#001321FD6213005D0000907400001CB000040419275B24FC#1130405987953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###within the infinite of the Scheduler Thread#
    #1.5#001321FD6213005D0000907500001CB000040419275B25D9#1130405987953#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler/JobStore#Plain###With in the acquireLockForNextAvailableJob DataStore#
    #1.5#001321FD6213005D0000907600001CB000040419275B2E27#1130405987953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Acquired the job null#
    #1.5#001321FD6213005D0000907700001CB000040419275B2EFA#1130405987953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Did not find any job.So, Waiting for sometime for the next job#
    #1.5#001321FD6213005D0000907800001CB0000404192924ED59#1130406017953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###within the infinite of the Scheduler Thread#
    #1.5#001321FD6213005D0000907900001CB0000404192924EE36#1130406017953#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler/JobStore#Plain###With in the acquireLockForNextAvailableJob DataStore#
    #1.5#001321FD6213005D0000907A00001CB0000404192924F652#1130406017953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Acquired the job null#
    #1.5#001321FD6213005D0000907B00001CB0000404192924F710#1130406017953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Did not find any job.So, Waiting for sometime for the next job#
    #1.5#001321FD621300650000120F00001CB000040419295CCD8B#1130406021625#com.sap.aii.af.sample.adapter.ra.SPIManagedConnectionFactory##com.sap.aii.af.sample.adapter.ra.SPIManagedConnectionFactory.XIManagedConnectionFactoryController.run()######04d7f690469311da8d52001321fd6213#Thread[Thread-114,5,SAPEngine_System_Thread[impl:5]_Group]##0#0#Debug#1#/Applications/ExchangeInfrastructure/AdapterFramework/ThirdPartyRoot/comsap/Server/Adapter Framework#Java###MCF with GUID is running. (,)#3#964bfca0444711dabb51001321fd6213#com.sap.engine.services.deploy.server.ApplicationLoader@1586c77#964bfca0444711dabb51001321fd6213#
    #1.5#001321FD6213005D0000907C00001CB0000404192AEEB1E2#1130406047953#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###within the infinite of the Scheduler Thread#
    #1.5#001321FD6213005D0000907D00001CB0000404192AEEB2C0#1130406047953#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.persistence.jdo.DataBaseJobStore#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler/JobStore#Plain###With in the acquireLockForNextAvailableJob DataStore#
    #1.5#001321FD6213005D0000907E00001CB0000404192AEEBAD8#1130406047968#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Acquired the job null#
    #1.5#001321FD6213005D0000907F00001CB0000404192AEEBB9E#1130406047968#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#sap.com/crm.trexr3#trexr3.com.sapmarkets.isa.services.schedulerservice.SchedulerThread#J2EE_ADMIN#530##obtdev3_O09_94105150#Guest#8a2bbd20444711da932c001321fd6213#Thread[SchedulerThread,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Info#1#/System/Scheduler#Plain###Did not find any job.So, Waiting for sometime for the next job#

  • Error when making tables in CS3 Dreamweaver

    We are using Dreamweaver CS3, it has been working fine for years, just recently we have found we are unable to create tables, not only in new documents but also in old ones. We are getting the following message:
    "while executing onLoad in TableCommands.htm, a JavaScript error occurred."
    Please help!!!
    Thanks Simon

    The answer is in the Dreamweaver FAQ. See Deleting a corrupt cache file.

  • Error when pasintg into DW CS3

    Why do I keep getting this error when I paste text into DW
    CS3.
    "An error occurred while processing the input"
    It doesn't matter what the source was, word document,
    browser, notepad, etc. But it only does it in DESIGN view.
    Any ideas?
    Thanks,
    Houston.

    This also happened to me. 
    I went to "Commands" then " Manage Extensions".
    I unchecked a few of the most recent installed extensions
    then closed Dreamweaver. When I started Dreamweaver again, the
    problem had been solved. I then rechecked the extensions that I had
    unchecked to see which one was causing the problem. The problem was
    still solved even with the extensions marked with a check.
    I don't know what caused the problem. It appears that opening
    up the Extension manager and un checking a few extensions,
    restarting Dreamweaver, then re checking a few of the extensions
    did the trick.
    I can now copy and paste without it changing it to plain
    text.

  • Getting an error when working with Responsive Design Output: MasterThemeSchema.xml

    When generating a Responsive Design HTML 5 output, I'm getting this error:  "MasterThemeSchema.xml file has invalid data." I am unable to  access the manage layout features now to continue my customizations.  I had imported a customized font before seeing this message. I'm moved the project to my harddrive, where the software is installed, and and still getting it (I know RH doesn't always do well on a network drive).  Any ideas?

    I searched this blog for similar posts and found posts that described similar issues.  I ended up moving my RH project file to my local drive, deleting the masterthemeschema.xml, and replacing it with another masterthemeschema.xml from another project via Windows Explorer.  I will recreate my customizations and hope for the best.  Any ideas on what causes this corruption of the mastertheme schema files in the first place?  Does this masterthemeschema.xml error only occur when working on a network drive and not local?

  • Error when working with fillin or droplist fields as part ofgrid field

    Hello,
    A customer at Eli Lilly & Co. is experiencing an error when trying to
    change the properties of a gridfield that contains droplists as part of an
    array that is gridded. They get this error when trying to do any
    modification of the grid field.
    Have any of you experienced this? Any insight for resolution? We do have
    a trouble ticket into Forte regarding this but wanted to see if anyone
    else has experienced this. We get this bug in C1 and F2 versions:
    System Error: Unable to allocate resources for object
    &lsquo;dtlArray.status_ind&rsquo; of class &lsquo;qqds_DropList&rsquo;.
    Class: qqsp_systemResourceException with ReasonCode: SP_ER_WINDOWLIMIT
    error#[701,13]
    detected at widget. ThrowResourceException at 1 Last tool statement:
    method cw.load
    error time: thu feb 20 8:47:23.
    Exception occured (locally) on partition &lsquo;Forte_cl0_client&rsquo;,(partition
    Id=BD14F94489D1-11D0-9BEE-06814DBAA77:ox124:0x1,taskid=[BD14F94489D1-11D0-
    9BEE-062814DBAA77-ox1243654 on node p8888 in environment DevEnv_2F2.
    Thanks,
    Peggy Adrian
    [email protected]

    Hi Jason,
    If you have problems with the network this has to be solved.
    I don't think we can have a software working if a cable was unplug ).
    We advice our customer to use citrix servers in case if the latency into network is high (more than 200 ms) and of course in case of loosing packages.
    But I don't think the problem in your case is related to the network.
    It seems in your case it was a problem of send governor.
    This can have problem when the cube and dimension are not syncronize or you have an error in one of dimensions.
    Also can you check the table sgqueue if you have any record there when nobody is sending data?
    If you have records there then you have to delete these records.
    Check also tbl"your application"lock if you have records.
    Regards
    Sorin Radulescu

  • Error when working with the substring

    Hi,
    i am getting a error when using a substring
    Scenario : from Flat file to IDoc
    input = 30 char
    output1 = first 10 chars
    output2 = last  4 chars
    when my input filed has the maximum number of characters say 30 in this case, then my scenerio works fine.
    but if my input string has only first 6 chars, remaining all "spaces" . i get a stringindexoutof boundexception, when i post a flat file. Can anyone tell me if we are suppose to handle such conditions differently

    Hi,
    you could do it like:
    > if input.length >= 10 char
    > output1 = first 10 chars
    > else output1 = input
    > if input.length >= 4 chars
    > output2 = last 4 chars
    > else output2 = input
    Regards
    Patrick

  • Data Services IDOC Errors when working with a newl Basic Type

    Hello,
    Just wondering if anyone else has encountered an issue similar to the one I am dealing with. We are trying to create business partners in SAP CRM from Data Services via IDOC. We are not using the standard IDOC, but instead we are using a new IDOC type.
    This IDOC type is generated by SAP CRM automatically through a transaction BDFG. This transaction creates a new basic type for an standard IDOC with the additional fields that we have added through the easy enhancement workbench (EEWB).
    The issue that we are having is that when we import the IDOC type into data services and we look at the schema many fields and sub-structures of the IDOC are duplicated. This means that we receive hundreds of errors when we try to validate our data flow. I can delete the duplicated sub structures in my query transformation but then the query transformation and the output schema and the idoc input schema are no longer identical.
    I have searched all over oss and different web forums for a solution but no one else it seems has even encountered this error. If anyone else has had a similar issue and can offer help it would be greatly appreciated.
    Bill

    Issue is resolved.
    After importing the meta data for the IDOC into data services I then proceeded to edit out all of the duplicate structures and fields from the IDOC.
    After making the IDOC structure in data services identical to the structure of the IDOC  in SAP I then proceeded to test this IDOC and it executed successfully.

  • Cloaking Not Working In Dreamweaver CS3

    I have been using dreamweaver for years (currently CS3) but recently cloaking has stopped functioning. I have restarted the application, toggled the checkbox to enable cloaking, nothing seems to work. When I do a sync even folder I have cloaked (red line through) show up with actions attached.
    To my own fault I rely on the the sync to keep the server clean when updating sites, but because the cloaking has stopped working I almost deleted and entire online shop.
    If anyone has run into this issue and corrected it please let me know - in the meantime I will just have to triple check the queue before syncing servers.
    Thanks is advance.

    Crashes, installation, JavaScript errors, and unexplained problems
    If Dreamweaver is acting erratically...
    http://forums.adobe.com/thread/429114
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • PGC error when burning in Encore CS3 ... help

    I've looked and can not find any one else with exactly this problem. I recently upgraded to Adobe Creative Suite 3 and can not get a DVD to burn. The project checks fine, the files transcode without difficulty but during the burning process, I very quickly get a PGC "file name" error.
    I have a Sony Pentium 4, 2 GHz, with 1.21 G of RAM, and plenty (30 G) free on my hard drive. I have a 16X Memorex DVD burner which is probably 6 months old, but up until now has worked great. I've tried several different brands of DVD-R media and same problem.
    I'd describe myself as an advanced amateur at video making. I taught myself on Nova's Video Explosion and burned 100's of dvd's on the Sonic's My DVD program over the past 5 years. Actually that system worked well, but I'd outgrown it. I downloaded Encore 2.0 free 30 day trial and loved it. I'd import (uncompressed) avi files that I'd created in other programs (mostly Video Explosion, but also Movie Shaker, and Windows Movie Maker), create menus in PS CS2 and my DVD's burned quickly and without errors at all. When my 30 days expired, I found they no longer offered 2.0 and I decided to spend the big bucks at got Creative Suite 3 really solely for Encore.
    I've now spent 3 days trying all kinds of different things, many different files from different sources and I always get the same error message of "PGC "file name" has an error at "time" internal software error %0, line "file name:, time 00:"time", ref= BPGC.
    I did read some messages on here about uncompressed avi vs. compressed avi. I did find that I was using uncompressed avi, but when I used Adobe premiere and rendered as MPEG 2 ( I believe), I got the same error. The only success (?) I had was when I rendered a file as a .MOV. It did burn without the dreaded error message, but the quality was extremely poor and jumpy.
    Any ideas? I've got a project due in a couple of days and at present I've got files that I can't get to DVD...

    So, finally I've found the source of the problem and a workaround!
    First the source:
    when Encore has to transcode a video it must corrupt the file, because it's the transcoded file that causes the problem, I tried this by importing a transcoded file into Encore 1.5 there it came with the same error.
    Now the workaround, ok maybe it isn't quite a workaround but it's a way to go:
    What I did was: I built my project new in Encore 1.5, because Encore 2.0 has a problem importing the videos by me, but if you would just import the videos in 1.5 and let 1.5 transcode them so that all of them would fit on a DVD you should be able to import the transcoded files in CS3 and it should work, no guarantee.
    Other possibility: try opening your project in encore 2.0 and re import your videos there and let 2.0 do all of the transcoding, that might work too!
    But for certain: don't let encore CS3 do all the transcoding!
    I'm working with PAL files I don't know if it will be the same by NTSC, but it's worth a try!
    If anybody feels like reproducing the bug, here is the way to do it:
    Make a project in Encore CS3 and import Videos encoded by premiere as MPG2-DVD (I think: .m2v .wav) and set the transcoding options to automatic, encore should have to transcode the files. Then let encore make the DVD, at some point you should get that nice PGC error!

  • Error when inserting image in cs3

    starting a few days ago, when i try inserting any image in my page, i get this error "wen executing objectTag in image.htm, a javaScript error occured" what is this? how do i get ridf of it

    Check theDreamweaver FAQ
    and look JavaScript and other unexpected errors
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://twitter.com/nadiap
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/

  • Data incompatibility error when working with objets

    Hi
    I am passing an object to the procedure inside package.
    when i am using for loop it's working fine
    the code is below
    create or replace type emp_obj as
    object(empno number(10),
    ename varchar2(10),
    sal number(10,3));
    create or replace type emp_tab is table of emp_obj;
    CREATE OR REPLACE PACKAGE emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab);
    END emp_obj_pkg;
    CREATE OR REPLACE PACKAGE BODY emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab)
    IS
    BEGIN
         FOR i IN 1..p_emp_tab.count
         LOOP
    INSERT INTO emp VALUES( p_emp_tab(i).empno,p_emp_tab(i).ename,p_emp_tab(i).sal);
         END LOOP;
    END emp_ins_proc;
    END emp_obj_pkg;
    declare
    v_emp_tab emp_tab;
    begin
    select emp_obj(empno,ename,sal) bulk collect into v_emp_tab from emp;
    emp_obj_pkg.emp_ins_proc(v_emp_tab);
    end;
    when i am trying to use the forall in the package it throwing the error data incompatibility error
    the procedure code for the package is
    CREATE OR REPLACE PACKAGE BODY emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab)
    IS
    BEGIN
         FORALL i IN 1..p_emp_tab.count
    INSERT INTO emp VALUES p_emp_tab(i);
    END emp_ins_proc;
    END emp_obj_pkg;
    i got below errors
    ERROR
    PL/SQL: SQL Statement ignored
    PL/SQL: ORA-00932: inconsistent datatypes: expected - got -
    pls help me how to do this with for all
    Thanks & Regards
    Bala Sake

    954925 wrote:
    when i am trying to use the forall in the package it throwing the error data incompatibility errorThe structure following the VALUE clause need to match the structure of the table being inserted into.
    Basic examples of using record structures for inserting data, for object and normal tables.
    SQL> create or replace type TEmployee is object(
      2          emp_id  number,
      3          emp_name varchar2(10),
      4          dept_id number
      5  );
      6  /
    Type created.
    SQL>
    SQL> create or replace type TEmployeeTable is table of TEmployee;
      2  /
    Type created.
    SQL>
    SQL> create table employees of TEmployee(
      2          constraint pk_employees primary key( emp_id )
      3  ) organization index;
    Table created.
    SQL>
    SQL> create or replace procedure EmpInsert( empTable TEmployeeTable ) is
      2  begin
      3          forall i in 1..empTable.Count
      4                  insert into employees values empTable(i);
      5  end;
      6  /
    Procedure created.
    SQL>
    SQL> declare
      2          empArray        TEmployeeTable;
      3  begin
      4          select
      5                  TEmployee( empno, ename, deptno )
      6          bulk collect into
      7                  empArray
      8          from    emp;
      9 
    10          EmpInsert( empArray );
    11  end;
    12  /
    PL/SQL procedure successfully completed.
    SQL> create table employees(
      2          emp_id  number primary key,
      3          emp_name varchar2(10),
      4          dept_id number
      5  ) organization index;
    Table created.
    SQL>
    SQL> declare
      2          cursor c is select  empno, ename, deptno from emp;
      3          type TCursorBuffer is table of c%RowType;
      4          buffer TCursorBuffer;
      5  begin
      6          open c;
      7          loop
      8                  fetch c bulk collect into buffer limit 100;
      9 
    10                  forall i in 1..buffer.Count
    11                          insert into employees values buffer(i);
    12 
    13                  exit when c%NotFound;
    14          end loop;
    15          close c;
    16  end;
    17  /
    PL/SQL procedure successfully completed.
    SQL> Of course, these example do not show how one should code when moving data from one table to another (using native SQL only is by far faster and more scalable).
    However it does show the basics of inserting a structure via the INSERT call in PL/SQL (as oppose to individual variables) - and this is an important consideration as the resulting code is more robust and requires less keystrokes.

  • When I open dreamweaver cs3 i have problem

    It says : The following translators were not loaded due to errors: spry.htm: has configuration information that is invalid.... Than I cannot INSERT any pictures or INSERT even tables.... The same message appear everytime... Pls help me what should I do to correct ? I have CS3 dramweaver...
    Thank you very much for your help...

    Dreamweaver FAQ
    JavaScript and other unexpected errors
    Mark A. Boyd
    Keep-On-Learnin' :-)

Maybe you are looking for

  • Cannot send email from Outlook 2010 without disabling iCloud Outlook Add-in

    I have seen a few discussions on this but no answers. I have bought a new PC. Installed Outlook 2010 and iCloud latest version 3. All seems to work fine but emails go into the Outbox and dont get any further. If I remove the iCloud Outlook Add-in the

  • Dual monitor setup - primary monitor blank upon startup

    Hello - This has been vexing me for some time now. I've seen hints of this issue from other people but never the exact same circumstances and never do I see a definitive answer. I have a dual monitor arrangement on my 8 core Clovertown (first generat

  • Is it possible to create a column in the runtime?

    Hi, I created a application that connect with Access database. I just wonder is it possible for user to create a column in runtime, because the application need this kind of interaction. Many thanks, Ann

  • How to store images as disk files rather than in iphoto db

    Is there a way to make iPhoto maintain the images as disk files, rather than import them into iphotos massive database file. I would prefer to use iphoto to just store a link to the photo, rather than the photo itself. That way I can work with the im

  • Kodo progress?

    Hello all! I was wondering whether anyone representing TechTrader could update us on how progress is proceeding on Kodo?!?! In particular, integration with application servers, etc. Furthermore, is the JSR for JDO likely to reach final status anytime