Can't insert Table

I can't insert a table into my file.  What am I missing?  The options are grayed out. 

Tables behave as inline objects (in text). You must have a live insertion point (blinking cursor) to insert a table. So if you draw out a text frame, then click in it to set an insertion point, the Insert Table command should become available.

Similar Messages

  • Can't insert tables

    I have Dreamweaver MX and installed it on a new system with
    windows vista (my old system was XP), I try and insert a table, I
    enter rows/columns and an error message appears and dreamweaver
    shuts down, when I restart the programme I click on the tables tab
    but nothing happens, I restarted my computer, no change, so I
    uninstalled and reinstalled dreamweaver, and entered rows/columns
    and I get the same problem, any suggestions????
    Mike (Fivemiletown)

    This is the fix y'all:
    . Delete FileCache.dat files from the Dreamweaver user
    configuration folder.
    Delete the WinFileCache-7A9586CB.dat,
    MacFileCache-BFE7CE2E.dat, or FileCache.dat file from the
    Dreamweaver user configuration folder. It is recommended to delete
    the FileCache.dat file if you are experiencing a JavaScript error
    related to "dwscripts" or if you are receiving a "translators were
    not loaded" error message. The string of characters after
    "FileCache-" may differ on your machine. The location of the
    FileCache.dat file depends your operating system and your version
    of Dreamweaver. Note that on Windows, the Application Data and
    AppData folders are hidden by default, so verify that your Windows
    Explorer folder options are set to View Hidden Folders.
    Dreamweaver CS3 on Windows Vista:
    C:\Users\[username]\AppData\Roaming\Adobe\Dreamweaver
    9\Configuration
    Dreamweaver CS3 on Windows XP:
    C:\Documents and Settings\[username]\Application
    Data\Adobe\Dreamweaver 9\Configuration
    Dreamweaver 8 on Windows XP:
    C:\Documents and Settings\[username]\Application
    Data\Macromedia\Dreamweaver 8\Configuration
    Dreamweaver 8 on Windows Vista:
    C:\Users\[username]\AppData\Roaming\Macromedia\Dreamweaver
    8\Configuration
    Dreamweaver CS3 on Macintosh:
    Mac HD/Users/[user]/Library/Application
    Support/Adobe/Dreamweaver 9/
    Dreamweaver 8 on Macintosh:
    Mac HD/Users/[user]/Library/Application
    Support/Macromedia/Dreamweaver 8/
    Works like a charm (after hours of research)

  • Can't insert tables in Dreamweaver MX

    I am unable to insert any tables in Dreamweaver MX. I am
    running Windows Vista Home Premium. I've had some difficulties with
    the program since purchasing this new computer. Does anyone know a
    fix?
    Thanks!

    This is the fix y'all:
    . Delete FileCache.dat files from the Dreamweaver user
    configuration folder.
    Delete the WinFileCache-7A9586CB.dat,
    MacFileCache-BFE7CE2E.dat, or FileCache.dat file from the
    Dreamweaver user configuration folder. It is recommended to delete
    the FileCache.dat file if you are experiencing a JavaScript error
    related to "dwscripts" or if you are receiving a "translators were
    not loaded" error message. The string of characters after
    "FileCache-" may differ on your machine. The location of the
    FileCache.dat file depends your operating system and your version
    of Dreamweaver. Note that on Windows, the Application Data and
    AppData folders are hidden by default, so verify that your Windows
    Explorer folder options are set to View Hidden Folders.
    Dreamweaver CS3 on Windows Vista:
    C:\Users\[username]\AppData\Roaming\Adobe\Dreamweaver
    9\Configuration
    Dreamweaver CS3 on Windows XP:
    C:\Documents and Settings\[username]\Application
    Data\Adobe\Dreamweaver 9\Configuration
    Dreamweaver 8 on Windows XP:
    C:\Documents and Settings\[username]\Application
    Data\Macromedia\Dreamweaver 8\Configuration
    Dreamweaver 8 on Windows Vista:
    C:\Users\[username]\AppData\Roaming\Macromedia\Dreamweaver
    8\Configuration
    Dreamweaver CS3 on Macintosh:
    Mac HD/Users/[user]/Library/Application
    Support/Adobe/Dreamweaver 9/
    Dreamweaver 8 on Macintosh:
    Mac HD/Users/[user]/Library/Application
    Support/Macromedia/Dreamweaver 8/
    Works like a charm (after hours of research)

  • Insert Table Error

    I upgraded to 8.0.2 today and now I can't insert tables. I
    reverted to
    version 8 and tested, then 8.0.1, and then to 8.0.2. Still
    broken. The error
    says:
    "While executing objectTag, the following JavaScript error(s)
    occurred:
    At line 26 of file "Macintosh HD:Applications:Macromedia
    Dreamwear
    8:Configuration
    bjects:Common:Table.htm":
    TypeError: cmdDOM.parentWindow.creatTableStr is not a
    function"
    How do I fix this? Thanks.

    > I upgraded to 8.0.2 today and now I can't insert tables.
    I reverted to
    > version 8 and tested, then 8.0.1, and then to 8.0.2.
    Still broken. The error
    > says:
    >
    > "While executing objectTag, the following JavaScript
    error(s) occurred:
    >
    > At line 26 of file "Macintosh HD:Applications:Macromedia
    Dreamwear
    > 8:Configuration
    bjects:Common:Table.htm":
    > TypeError: cmdDOM.parentWindow.creatTableStr is not a
    function"
    >
    > How do I fix this? Thanks.
    Can anyone help please? I can't work without being able to
    place tables.
    Thanks.

  • Can not insert/update data from table which is created from view

    Hi all
    I'm using Oracle database 11g
    I've created table from view as the following command:
    Create table table_new as select * from View_Old
    I can insert/update data into table_new by command line.
    But I can not Insert/update data of table_new by SI Oject Browser tool or Oracle SQL Developer tool .(read only)
    Anybody tell me, what's happend? cause?
    Thankyou
    thiensu
    Edited by: user8248216 on May 5, 2011 8:54 PM
    Edited by: user8248216 on May 5, 2011 8:55 PM

    I can insert/update data into table_new by command line.
    But I can not Insert/update data of table_new by SI Oject Browser tool or Oracle SQL Developer tool .(read only)so what is wrong with the GUI tools & why posting to DATABASE forum when that works OK?

  • Can we insert data directly in standard table

    hi
    how can we insert data in standard table directly.
    pls reply urgently.

    Hi sapna yes u can insert data to the SAP tables, as shown below...
    use the table mara in the place of m
    REPORT  ZTEST_INSERT.
    TABLES: <m>.
    DATA: wa_m TYPE <m>.
    wa_m-ernam = 'ZTEST'.
    insert into <m> VALUES wa_m.
    if sy-subrc = 0.
      WRITE / 'Records inserted Successfully'.
    ENDIF.
    reward if usefull,
    Vishnu. R
    Edited by: vishnu ramanathan on Sep 18, 2008 2:17 PM

  • Can not insert or update [TABLE] from internal table in method

    I've faced a problem with OO abap. I've tried to insert into [ TABLE ] from internal table, but i've got error msg after i compiled.
    "An explicit work area is necessary in the OO context. Use "INSERT wa INTO [TABLE] itab""
    After  i changed to loop in work area and INSERT INTO  [TABLE] VALUES gw_data., everything is fine, can compile and run.
    This is error code.
      METHOD set_data_to_table.
        REFRESH gi_data.
        CLEAR gi_data.
        IF gi_file[] IS NOT INITIAL.
    * Set data for modify table
          LOOP AT gi_file INTO gw_file.
            MOVE-CORRESPONDING gw_file TO gw_data.
            me->conversion_input( EXPORTING im_vendor = gw_data-vendor
                                  CHANGING  ch_vendor = gw_data-vendor ).
            APPEND gw_data TO gi_data.
          ENDLOOP.
          INSERT [TABLE] FROM TABLE gi_data.
    *      LOOP AT gi_data INTO gw_data.
    *        INSERT INTO  [TABLE] VALUES gw_data.
    *        IF sy-subrc = 0.
    *          COMMIT WORK.
    *        ELSE.
    *          ROLLBACK WORK.
    *        ENDIF.
    *      ENDLOOP.
        ELSE.
          MESSAGE 'No data found' TYPE 'I'.
        ENDIF.
      ENDMETHOD.                    "set_data_to_table

    Hi Matthew,
    I think there is no difference in database insert between OO and non-OO.
    The correct syntax according to ECC600 online documentation is
    [Inserting Several Lines|http://help.sap.com/saphelp_erp2005vp/helpdata/en/fc/eb3a6d358411d1829f0000e829fbfe/content.htm]
    To insert several lines into a database table, use the following:
    INSERT target FROM TABLE itab \[ACCEPTING DUPLICATE KEYS].
    This writes all lines of the internal table itabto the database table in one single operation. If one or more lines cannot be inserted because the database already contains a line with the same primary key, a runtime error occurs. You can prevent the runtime error occurring by using the addition ACCEPTING DUPLICATE KEYS.
    Whenever you want to insert more than one line into a database table, it is more efficient to work with an internal table than to insert the lines one by one.
    I think the syntax
    INSERT my_dbtable FROM TABLE gi_data.
    should work, your suggestion may lead to syntax error.
    Regards,
    Clemens

  • How can I insert values from table object into a regular table

    I have a table named "ITEM", an object "T_ITEM_OBJ", a table object "ITEM_TBL" and a stored procedure as below.
    CREATE TABLE ITEM
    ITEMID VARCHAR2(10) NOT NULL,
    PRODUCTID VARCHAR2(10) NOT NULL,
    LISTPRICE NUMBER(10,2),
    UNITCOST NUMBER(10,2),
    SUPPLIER INTEGER,
    STATUS VARCHAR2(2),
    ATTR1 VARCHAR2(80),
    ATTR2 VARCHAR2(80),
    ATTR3 VARCHAR2(80),
    ATTR4 VARCHAR2(80),
    ATTR5 VARCHAR2(80)
    TYPE T_ITEM_OBJ AS OBJECT
    ITEMID VARCHAR2(10),
    PRODUCTID VARCHAR2(10),
    LISTPRICE NUMBER(10,2),
    UNITCOST NUMBER(10,2),
    SUPPLIER INTEGER,
    STATUS VARCHAR2(2),
    ATTR1 VARCHAR2(80),
    ATTR2 VARCHAR2(80),
    ATTR3 VARCHAR2(80),
    ATTR4 VARCHAR2(80),
    ATTR5 VARCHAR2(80)
    TYPE ITEM_TBL AS TABLE OF T_ITEM_OBJ;
    PROCEDURE InsertItemByObj(p_item_tbl IN ITEM_TBL, p_Count OUT PLS_INTEGER);
    When I pass values from my java code through JDBC to this store procedure, how can I insert values from the "p_item_tbl" table object into ITEM table?
    In the stored procedure, I wrote the code as below but it doesn't work at all even I can see values if I use something like p_item_tbl(1).itemid. How can I fix the problem?
    INSERT INTO ITEM
    ITEMID,
    PRODUCTID,
    LISTPRICE,
    UNITCOST,
    STATUS,
    SUPPLIER,
    ATTR1
    ) SELECT ITEMID, PRODUCTID, LISTPRICE,
    UNITCOST, STATUS, SUPPLIER, ATTR1
    FROM TABLE( CAST(p_item_tbl AS ITEM_TBL) ) it
    WHERE it.ITEMID != NULL;
    COMMIT;
    Also, how can I count the number of objects in the table object p_item_tbl? and how can I use whole-loop or for-loop to retrieve values from the table object?
    Thanks.

    Sigh. I answered this in your other How can I convert table object into table record format?.
    Please do not open multiple threads. It just confuses people and makes the trreads hard to follow. Also, please remember we are not Oracle employees, we are all volunteers here. We answer questions if we can, when we can. There is no SLA so please be patient.
    Thank you for your future co-operation.
    Cheers, APC

  • How can I Insert data into my msaccess Database table

    Hello all,
    I am new to Java programming and I have problem that how can i insert name into my database table.
    The code which i have written is following:
    String filename = "d:/test.mdb";
    String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
    database+= filename.trim() + ";DriverID=22;READONLY=true}";
    Connection con = DriverManager.getConnection(database,"","");
    String s = String.valueOf(text.getText());
    int k =10;
    Statement st = con.createStatement();
    st.execute("create table Test123(name text)");
    st.execute("INSERT INTO Test123 values" +s);
    on the INSERT program throws exception???
    can any one help me how to insert data into tabel.
    Thanks

    he INSERT program throws exception???
    can any one help me how to insert data into tabel.I have never used the jdbc driver to access, but what do you think that the flag READONLY=true means? An insert is not a read.
    Kaj

  • In ADF how can i insert data in multiple table if they have foreign key

    I have started working on ADF and can anybody inform me in ADF how can i insert data in multiple table if they have foreign key,please?
    Thnak you very much.

    Hello,
    Still no luck.I am surely doing silly mistakes.Anyway,Here are my workings-
    1> student_mst (id(pk),studentname) and student_guard_mst(id(fk),guardianname)
    2> created EO from both of the tables,made id in both EO as DBSequence and an association was also generated.
    3> i made that association composite by clicking the checkbox
    4> i created 2 VO from 2 EO.
    5> put those VO in Application Module.
    6> dragged and dropped 2 VO on my jspx page and dropped them as ADF Form.
    Now what to do please?

  • In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    You're in luck. Create the first field and then right-click it (in Form Edit mode) and select Create Multiple Copies. You'll be able to specify how many copies of the fields to generate, and at what intervals. The nice thing is that although the properties of the new fields will be identical to the source one, they'll each have a unique name, so you'll get an instant "table" of fields.

  • How can I insert a table in headnote so it will show on each page?

    I would like to insert a table in the headnote, but I don't know how with this new pages layout. Suggestions?
    Thank you much

    It isn't possible to do. Maybe can make the tables as an backround image. http://help.apple.com/pages/mac/5.0/?lang=en#/tan9fdc65243

  • How can I insert a table in the header?

    The question is easy: How can I insert a table of one row in the header.
    Thanks in advance.
    Jesús.

    There are multiple versions of Pages in circulation on Mavericks and Yosemite. Telling us which one helps with a more accurate answer.
    If you are referring to Pages v5, then you cannot insert a table into the header or footer, because implicitly, these are table cells too. The discontinued Pages ’09 v4.3 would allow table insertion in the document header/footer fields.

  • Trigger problem -- can't insert the same data into audit table

    Sir/Madam,
    I'm trying to use insert trigger with a 'long raw' datatype data for my audit purpose. Each time, the data of original table can be inserted correctly. While the trigger for audit table in which it contains almost the same data as original would failed. The error messages are some thing like following:
    java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column
    ORA-06512: at "CORPSEC.TI_ARCHIVE_PDF", line 9
    ORA-04088: error during execution of trigger 'CORPSEC.TI_ARCHIVE_PDF'
    If the column with 'long raw' datatype is taken out, then there is no error at all. I'm using Oracle 8i 8.1.6 for Windows NT and suspect there is bug in PL/SQL execution.
    The following are SQL text for the trigger:
    CREATE OR REPLACE TRIGGER "CORPSEC"."TI_ARCHIVE_PDF" AFTER INSERT ON "ARCHIVE_PDF" FOR EACH ROW DECLARE
    LOG_SEQ_NO NUMBER;
    BEGIN
    SELECT AUDIT_SEQ.NEXTVAL INTO LOG_SEQ_NO FROM DUAL
    insert into ad_archive_pdf (DOC_TITLE,PDF_FILENAME,CONTENT,DOC_DESC,AUDIT_REF_NO,AUDIT_DATE,AUDIT_MODE,AUDIT_BY)
    values (:new.DOC_TITLE,:new.PDF_FILENAME,:new.CONTENT,:new.DOC_DESC,LOG_SEQ_NO,sysdate,'I',:new.created_by);
    END;
    Any help on this. Thank in advance.
    Best regards,
    Ruijie

    See here for a discussion of how to incorporate LONG datatypes into triggers:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:635439::NO::F4950_P8_DISPLAYID

  • How can I inserting file's line into a oracle table in physycal order

    How can I insert the file's line into a oracle table in the same physycal order that they exists in the file ?
    I am using "SQL to FILE" km to performing file load into Oracle table, but the order which the records are insered into the oracle table doesn't match with the order of file's lines
    How can I guarantee the same file's physycal order in the oracle table( target ) and file( source ) ?
    Is it possible throught ODI ?
    Thanks,
    Luciana

    Hi,
    although I understand why use "File to Oracle( SQLLDR )" KM, I haven't the guarantee that in the agent's machine the Oracle Client installed and because when I openned the others projects I saw that anyone in my company use this KM( "File to Oracle( SQLLDR )" )
    Tha's why I ask for anyone lead me whith the modification of the previous post in the "uLKM File to SQL", specifing the km step e where put the RECNUM pseudo column
    This is fundamental for my ODI project
    When I try to alter the "Create Work Table" and "Load Data" step of my "uLKM File to SQL" km, the execution returned me the error below:
    =====================> Create Work Table Step
    create table <@= vWorkTable @>
         C1_LINHA_ARQ     VARCHAR2(500) NULL, RECNUM NUMBER(10)
    =====================> Load Data Step
    select     LINHA_ARQ     C1_LINHA_ARQ
    from      TABLE
    /*$$SNPS_START_KEYSNP$CRDWG_TABLESNP$CRTABLE_NAME=ARQ_INSS2SNP$CRLOAD_FILE=/arquivos_odi/ccrs/in/#CCRS_CAD_INSS.vpNOME_ARQUIVOSNP$CRFILE_FORMAT=DSNP$CRFILE_SEP_FIELD=09SNP$CRFILE_SEP_LINE=0D0ASNP$CRFILE_FIRST_ROW=0SNP$CRFILE_ENC_FIELD=SNP$CRFILE_DEC_SEP=SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=LINHA_ARQSNP$CRTYPE_NAME=STRINGSNP$CRORDER=1SNP$CRLINE_OFFSET=1SNP$CRLENGTH=500SNP$CRPRECISION=500SNP$CR$$SNPS_END_KEY*/
    insert into ODI_RUN_CONV.C$_0TMP_ODI_INSS_DADOS_ARQ
         C1_LINHA_ARQ, RECNUM
    values
         :C1_LINHA_ARQ, RECNUM
    =====================
    984 : 42000 : java.sql.BatchUpdateException: ORA-00984: column not allowed here
    984 : 42000 : java.sql.SQLSyntaxErrorException: ORA-00984: column not allowed here
    java.sql.BatchUpdateException: ORA-00984: column not allowed here
         at oracle.jdbc.driver.DatabaseError.throwBatchUpdateException(DatabaseError.java:629)
         at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:9409)
         at oracle.jdbc.driver.OracleStatementWrapper.executeBatch(OracleStatementWrapper.java:211)
         at com.sunopsis.sql.SnpsQuery.executeBatch(Unknown Source)
    ...Thanks again gyus,
    Luciana
    Edited by: 933810 on 31/05/2012 06:04
    Edited by: 933810 on 31/05/2012 06:07
    Edited by: 933810 on 31/05/2012 06:14

Maybe you are looking for

  • Problem in displaying text in smartform

    Hi, In my smartform, In a text element I have written a text like below. Reference Number ,,,, &v_ref& ,,,, Date Received ,,,,&v_date& Now v_ref can be max of 23 characters. When it is of 23 characters, it is showing fine in output. But when it is <2

  • SDK3.0 save user defaults before app exit

    Hi, I would like to save some parameters to NSUserDefaults before my app exit so next time when the app launch those parameters could be recovered. But I am not sure where is the best place the do the saving. I used to do it in applicationWillTermina

  • Suggestions for new stable system?

    So I am looking at getting the MSI Neo2-FIS2R, and have been reading through all the problems people are posting on this forum. I am not looking at doing any real overclocking just yet (I am fairly sure overclocking my old P2 eventually fried the boa

  • Date format not working in 11G ?

    Hi All, i am using Oracle 11g on windows 7 i try to execute this format of date not allways show me same format select To_date('2/02/2012' ,'DD/MONTH/YYYY') from dual; (when i want to save to date column ) but the error is NOT VALID MONTH select To_d

  • Docky skin in gnome-do not supported in xfce?

    I just installed gnome-do on xfce and it won't let me use the docky skin. The default composition in xfce is enabled, is there anything else that needs to be done? Or do I need to be running compiz?