Edit offline table problem

hi,
I am trying to edit an offline table (from MS SQL SERVER) created with JDeveloper 10g 10.1.2 without success.
Whatever the modification I try, I have always the error message "Columns of type smallint cannot have a size specified" or "Columns of type varchar cannot have a size specified" or "Columns of type int identity cannot have a size specified"
Does anybody have an idea ?
thanks
phil

Hi Phil,
This is because in 10.1.2 Oracle validation checks are being run against the Table's columns.
In 10.1.2 and 10.1.3 Preview Offline Tables were only supported against Oracle Databases.
However in 10.1.3 Production our Foreign Database support has been greatly improved so that you will be able to import from SQL Server, Informix, MySQL, DB2 and SyBase and create/edit Offline Tables against these databases using the valid datatypes for that particular database.
Hope that helps,
Lisa Sherriff
JDev QA

Similar Messages

  • 10g : Edit Offline Table

    about JDeveloper 10g preview (build 1375)
    Using "Edit Offline Table" I uncheck "Cannot be NULL" for a column.
    If I "Generate SQL Script" for this table and select "Generate SQL to UPDATE the chosen objects", I get:
    "The following object(s) were found to be identical to those in the database, and therefore no reconcile is necessary: <table_I_changed>".
    But they are NOT identical.
    -Jan

    Thanks for reporting this. I have logged bug 3168415 to get the problem fixed.
    Lisa Sherriff
    JDev QA

  • Edit Offline Table : Datatype : TIME

    hi
    In the Edit Offline Table dialog on the Column Information pane it is possible to configure a Datatype in the Column Properties area.
    There is a Datatype TIME in the dropbox.
    Where can I find more information about when and how to use this TIME Datatype?
    many thanks
    Jan Vervecken

    Thanks Lisa
    I've found this
    "Oracle Database SQL Reference 10g Release 1 (10.1) : Datatypes"
    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10759/sql_elements001.htm
    But there is nothing in it about a datatype TIME.
    If I use JDeveloper to create an offline table that uses the datatype TIME in a column, JDeveloper can generate a script, but the database isn't able to run it. I get "ORA-00902: invalid datatype" on an Oracle 10.1.0.2.0 database.
    Has anyone ever used this datatype from JDeveloper? Or does anyone know why this datatype TIME is in that dropbox?
    thanks
    Jan Vervecken

  • Bug in Offline Tables

    I get the following error when I edit offline tables:
    Character literals must be enclosed in single quotes
    I get this error for a column (Varchar2) with USER as default value. I Seems that JDeveloper doesn't know the keyword USER (which returns the name of the session user).
    It seems that this bug also makes it impossible to create database diagrams.

    Hi,
    Yes, I'm afraid you have hit a known bug (3580690), unfortunately there is no workaround.
    Thanks,
    Lisa Sherriff
    JDev QA

  • Pbworks editing tables problem

    A problem in Firefox 6 beta 7 that was not in beta6 is that editing of tables in a wiki hosted on pbworks.com is impossible. FFox4b7 indents each column causing me to use Chrome on this site.

    Tables always exist inside a text frame. Even if it looks like a stand alone table, it's within a kissfit frame.
    In order to edit a table, you have to check out its parent frame first.
    Click inside one of the table cells. Look at the assignments panel, where all the editable stories (text frames) are listed. Is one highlighted? That will be the frame that the table belongs to. Click the Check Out button at the bottom to check out the selected story, or use any method you like to check it out.
    If you can select text inside a table but there is no story highlighted in the Assignments panel, then the designer forgot to export that text frame to InCopy format. It's read-only and uneditable by you in InCopy. Ask them to export the text frame. Then you can File > Update Design (or just close and open the file) in InCopy and you'll be able to check it out and edit it.
    AM
    incopysecrets.com

  • Problem in editable  alv table .

    hello friends ,
    i am facing a problem in editable alv ,the problem is  while saving my data in internal table through editable alv one of my numeric field  is being  wrongly  updated  .
    for eg :  if i am entering  '2.00 ' in the field the value updated is 0.02.
    regards ,
    arpit.

    Dear Arpit
    Please check the below code and it may very useful
    TABLES: VBAK, VBAP.
    TYPE-POOLS: SLIS, ICON.
    DATA: BEGIN OF ITAB OCCURS 0,
          VBELN LIKE VBAK-VBELN,
          ERDAT LIKE VBAK-ERDAT,
          END OF ITAB.
    DATA: BEGIN OF JTAB OCCURS 0,
          VBELN LIKE VBAP-VBELN,
          MATNR LIKE VBAP-MATNR,
          KWMENG LIKE VBAP-KWMENG,
          END OF JTAB.
    DATA: TB_FCAT TYPE SLIS_T_FIELDCAT_ALV,
          WA_FCAT LIKE LINE OF TB_FCAT,
          WA_LAYOUT TYPE SLIS_LAYOUT_ALV,
          TB_EVENT TYPE SLIS_T_EVENT,
          WA_EVENT LIKE LINE OF TB_EVENT,
          TB_HEADER TYPE SLIS_T_LISTHEADER,
          WA_HEADER LIKE LINE OF TB_HEADER,
          WA_KEYINFO TYPE SLIS_KEYINFO_ALV.
    CLEAR WA_FCAT.
    WA_FCAT-ROW_POS = '1'.
    WA_FCAT-COL_POS = '1'.
    *WA_FCAT-REF_FIELDNAME  = 'VBELN'.
    WA_FCAT-REF_TABNAME = 'VBAK'.
    *WA_FCAT-OUTPUTLEN = '10'.
    WA_FCAT-FIELDNAME = 'VBELN'.
    WA_FCAT-EDIT = 'X'.
    WA_FCAT-SELTEXT_M = 'DOCUMENT'.
    APPEND WA_FCAT TO TB_FCAT.
    CLEAR WA_FCAT.
    WA_FCAT-ROW_POS = '1'.
    WA_FCAT-COL_POS = '2'.
    *WA_FCAT-REF_FIELDNAME  = 'ERDAT'.
    WA_FCAT-REF_TABNAME = 'VBAK'.
    WA_FCAT-FIELDNAME = 'ERDAT'.
    *WA_FCAT-EDIT = 'X'.
    WA_FCAT-SELTEXT_M = 'DATE'.
    APPEND WA_FCAT TO TB_FCAT.
    CASE SY-UCOMM.
      WHEN 'VBELN'.
        WA_FCAT-SELTEXT_M = 'SURENDRA'.
        MODIFY TB_FCAT FROM WA_FCAT.
    ENDCASE.
    SELECT VBELN ERDAT FROM VBAK INTO CORRESPONDING FIELDS OF TABLE ITAB UP TO 15 ROWS.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = SY-REPID
       IS_LAYOUT                         = WA_LAYOUT
       IT_FIELDCAT                       = TB_FCAT
    TABLES
        T_OUTTAB                          = ITAB
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks
    Surendra P

  • Problem: Can't edit any table values

    Hi,
    I'm using the latest version of Oracel SQL Developer in XP and cannot edit any table values (ie: the actual data). I've tried the reset of Accelerators as previously suggested to no effect. I know the user has access since TOAD and DreamCoder all allow edits.
    Any ideas?
    Cheers,
    Peter

    I was trying to edit by double-clicking the field, which opens an Edit box. And then I had believed I could type a new value in? This was behaviour I was used to in Toad so I appreciate I may be doing it incorrectly.
    Is this not the correct way to edit a value? (without using SQL).
    EDIT: I re-read you're reply and I see what you mean. Going to Table> MyTable > Data (tab) I can add rows and such. But this seems to mean I can't execute an SQL query to pullback specific data and then edit it in-place, in the grid?
    Cheers,
    Peter
    Edited by: [email protected] on 14-May-2009 08:05

  • Cant add offline table

    When I come to create an offline table, I cant click past the constraints dialog the application just sits there if I click next or finish. 10 G Preview.
    Simon

    Answers:-
    1) I can add the table with the columns - but when I come to add constraints it wont save.
    2) It appears to be related to the constraints and not the columns. I can add any type of column but as soon as I add a constraint the problem occurs
    3) Using jdev.exe the following appears when I try to add a constraint to the table:-
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at oracle.jdeveloper.offlinedb.browser.BaseSchemaObjectNode.getSchemaObj
    ect(BaseSchemaObjectNode.java)
    at oracle.jdeveloper.offlinedb.OfflineDBObjectBuilder.listObjects(Offlin
    eDBObjectBuilder.java:92)
    at oracle.jdeveloper.cm.ds.db.AbstractDBObjectProvider$ObjectTypeEntry.l
    istObjects(AbstractDBObjectProvider.java:833)
    at oracle.jdeveloper.cm.ds.db.AbstractDBObjectProvider$ObjectTypeEntry.a
    ccess$1000871(AbstractDBObjectProvider.java:627)
    at oracle.jdeveloper.cm.ds.db.AbstractDBObjectProvider.listObjectsImpl(A
    bstractDBObjectProvider.java:302)
    at oracle.jdeveloper.cm.ds.db.AbstractDBObjectProvider.listObjects(Abstr
    actDBObjectProvider.java:386)
    at oracle.jdeveloper.cm.ds.db.AbstractDBObjectProvider.listObjects(Abstr
    actDBObjectProvider.java:381)
    at oracle.jdeveloper.offlinedb.wizard.verifier.OfflineConstraintsInfoVer
    ifier.verifyTable(OfflineConstraintsInfoVerifier.java:70)
    at oracle.jdeveloper.cm.dt.ui.table.ConstraintsInfoPanel.commit(Constrai
    ntsInfoPanel.java:510)
    at oracle.jdeveloper.cm.dt.ui.table.ConstraintsInfoPanel.onExit(Constrai
    ntsInfoPanel.java:289)
    at oracle.jdeveloper.offlinedb.panels.OfflineConstraintsInfoPanel.onExit
    (OfflineConstraintsInfoPanel.java:84)
    at oracle.ide.panels.MDDPanel.exitTraversable(MDDPanel.java:761)
    at oracle.ide.panels.MDDPanel.onExit(MDDPanel.java:286)
    at oracle.jdeveloper.cm.dt.ui.DBObjectEditDialog$EditMDDPanel.onExit(DBO
    bjectEditDialog.java:171)
    at oracle.ide.panels.TDialogLauncher$1$Dlg.vetoableChange(TDialogLaunche
    r.java:297)
    at java.beans.VetoableChangeSupport.fireVetoableChange(VetoableChangeSup
    port.java:300)
    at java.beans.VetoableChangeSupport.fireVetoableChange(VetoableChangeSup
    port.java:217)
    at oracle.bali.ewt.dialog.JEWTDialog.fireVetoableChange(Unknown Source)
    at oracle.bali.ewt.dialog.JEWTDialog.dismissDialog(Unknown Source)
    at oracle.bali.ewt.dialog.JEWTDialog$UIListener.actionPerformed(Unknown
    Source)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
    64)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1817)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:419)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:245)
    at java.awt.Component.processMouseEvent(Component.java:5134)
    at java.awt.Component.processEvent(Component.java:4931)
    at java.awt.Container.processEvent(Container.java:1566)
    at java.awt.Component.dispatchEventImpl(Component.java:3639)
    at java.awt.Container.dispatchEventImpl(Container.java:1623)
    at java.awt.Component.dispatchEvent(Component.java)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
    at java.awt.Container.dispatchEventImpl(Container.java:1609)
    at java.awt.Window.dispatchEventImpl(Window.java)
    at java.awt.Component.dispatchEvent(Component.java)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:452)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:197)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:150)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:141)
    at java.awt.Dialog.show(Dialog.java:538)
    at java.awt.Component.show(Component.java:1134)
    at java.awt.Component.setVisible(Component.java:1089)
    at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
    at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
    at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:217
    at oracle.jdeveloper.cm.dt.ui.DBObjectEditDialog.editObject(DBObjectEdit
    Dialog.java:93)
    at oracle.jdeveloper.cm.dt.ui.DBObjectEditDialog.editObject(DBObjectEdit
    Dialog.java:76)
    at oracle.jdeveloper.offlinedb.wizard.TableWizard.doInvokeEditWizard(Tab
    leWizard.java:162)
    at oracle.jdeveloper.offlinedb.wizard.TableWizard.invokeEditWizard(Table
    Wizard.java:142)
    at oracle.jdeveloper.dbmodeler.data.DatabaseTableDataElement.edit(Databa
    seTableDataElement.java:964)
    at oracle.jdeveloper.dbmodeler.propertydialog.databasetable.DatabaseTabl
    eDialog.invoke(DatabaseTableDialog.java:94)
    at oracle.jdeveloper.dbmodeler.propertydialog.databasetable.DatabaseTabl
    eDialog.invoke(DatabaseTableDialog.java:66)
    at oracle.bm.edit.dialoginvocation.ReflectiveDialogInvoker.invoke(Reflec
    tiveDialogInvoker.java:112)
    at oracle.bm.edit.dialoginvocation.DialogInvokerRegistry.invoke(DialogIn
    vokerRegistry.java:102)
    at oracle.bm.common.registry.CRBaseUtil.editContents(CRBaseUtil.java:135
    at oracle.bm.common.registry.CRBaseNode.editContents(CRBaseNode.java:331
    at oracle.bm.diagrammer.BaseDiagramView$17.onCheckedCmdUIEvent(BaseDiagr
    amView.java:1249)
    at oracle.bm.diagrammer.BaseDiagramView$CheckedCmdUIReceiver.onCmdUIEven
    tNow(BaseDiagramView.java:2199)
    at oracle.bm.diagrammer.BaseDiagramView$CheckedCmdUIReceiver.onCmdUIEven
    t(BaseDiagramView.java:2147)
    at oracle.bm.addinUtil.IDEAppContext.handledElseWhere(IDEAppContext.java
    :1669)
    at oracle.bm.addinUtil.IDEAppContext.onCmdUI(IDEAppContext.java:1618)
    at oracle.bm.addinUtil.IDEAppContext.handleEvent(IDEAppContext.java:3590
    at oracle.bm.addinUtil.IDEAppContext.handleEvent(IDEAppContext.java:3539
    at oracle.bm.diagrammer.track.SelectionTracker.mouseClicked(SelectionTra
    cker.java:1142)
    at oracle.bm.diagrammer.track.ModularTracker.processEvent(ModularTracker
    .java:221)
    at oracle.bm.diagrammer.track.SelectionTracker.processEvent(SelectionTra
    cker.java:159)
    at oracle.bm.diagrammer.track.TrackerStack.processEvent(TrackerStack.jav
    a:349)
    at oracle.bm.diagrammer.BaseDiagramView$2.processEvent(BaseDiagramView.j
    ava)
    at oracle.bm.diagrammer.PageView$PageViewPanel.fireEvent(PageView.java:2
    520)
    at oracle.bm.diagrammer.PageView$PageViewPanel.processEvent(PageView.jav
    a:2685)
    at java.awt.Component.dispatchEventImpl(Component.java:3639)
    at java.awt.Container.dispatchEventImpl(Container.java:1623)
    at java.awt.Component.dispatchEvent(Component.java)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3174)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
    at java.awt.Container.dispatchEventImpl(Container.java:1609)
    at java.awt.Window.dispatchEventImpl(Window.java)
    at java.awt.Component.dispatchEvent(Component.java)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:452)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:197)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    4) I can successfully create the table using the database diagram method - I know believe it is a constraint issue.

  • Is it possible to edit the table that contains sites with the passwords?

    for certain sites Firefox does not ask to remember the password, therefore this site will not appear in the security-table. By editing the table this problem could be bypassed.

    *Saved Password Editor: https://addons.mozilla.org/firefox/addon/saved-password-editor/

  • Mass update of cost element description - edit a table

    Hi Folks,
    i would like to know wich is the best way to update thousand of description of cost element!
    this is due to the fact that i have 4 differents languages to manage....so every time it's necessary to enter them in 4 languages, but the problem was that nobody have done like this, so now i have discrepancy at description level and i want to update...quickly.
    i was thinking about table editing in CSKA i know it's not the right way to procede but it's only description and i don't want to spent time in making catt....
    In any case i would know wich is the command to edit  a table, for my knowledge.
    Thanks

    Hi,
    To edit a table type &sap_edit in the transaction window, while being in SE16N and entering the table. However, the right table for texts is CSKU and not CSKA.
    Alternatively, you can do mass creation of cost elements 4 times while log-on in different table (OKB2 and OKB3 transactions).
    Regards,
    Eli

  • Editing offline in WE but windows pop up constantly asks me for username and password.

    I started using web expression a few months ago to add some html pages to my os commerce site. I successfully created, uploaded and edited the html pages for several months but now suddenly a pop up box appears asking for my username and password to connect
    to my website server every time I try to edit offline in WE.
    I have to click cancel 8 times before the box stops appearing but I have to do this every time I save a change.
    I guess I could try editing while disconnected from the internet when I use web expression but there are a few down sides to this. I tried entering my server username and password but it didn't work and besides I don't want my live site to be editing until
    I finish editing. I'm hoping for a better alternative.
    If anyone has any idea about this problem and could suggest something, I'd really appreciate it.

    Unfortunately, I have no suggestions.  Assuming you are talking (as it seems you are) about a local copy of your site on your PC hard drive, there is nothing about your work flow that should trigger a request for a login.
    And, especially since it was working properly until recently, I would have no way of knowing what changed on your machine.

  • Edit-able tables in iWeb?

    I am a teacher, and have a website for my students where I list what we do every day in class and have links to all notes and assignments. Usually, I just create a table that looks like a calendar. I've been using Google Sites, and it's been fine except I seem to reach my file limit in January. I'd love to use iWeb, but I can't figure out how to make an edit-able table for the website.
    I realize that you can make tables using HTML, but those don't seem to be that easy to edit (i.e. I would need to edit it at least once every day to update what we did in class). I know you can use Google Calendar, but the layout of the calendar entries just doesn't work as well as when I make my own table-esque calendar, and then I to link any files I have to upload them to Google Documents first.
    I realize I'm being picky, but I'd just love a way to make and edit a table in iWeb like there is in Google Sites. Has anyone been able to find a way to do this? If so, my next question will be: how do I actually get my kids to remember to check the freakin' calendar? But I regress.
    Thank you so much!

    Hmmmm.. as far as I remember the answer is no.
    The way I do it is to drop an empty text box over the file name in the table and make this a hyperlink to the file.
    Some people report that this doesn't work and use a shape with almost zero opacity. I think they have this problem when using internal rather than external links. If you are linking to files in a download folder on your server you will be using external links and the text box is a lot quicker to do.
    The links on this page are done in this fashion....
    http://www.iwebformusicians.com/iWebMusicWebsite/WebsiteMap.html

  • Editable sorting table

    Does anyone has an example on an editable, sortable table?
    My application implements TableModelListener, which will catch the changes made in the table. I am using the defaultTableModel and sitraka's JCSortableTable.
    Here is the problem:
    After sorting, you only can edit one cell, once you move to the next cell, the view of the table return to the pre-sorting status (of course, the change on first cell has been caught).
    And I know the cause of the problem:
    The defaultTableModel's setValueAt() method repaint the viewable part of the table using the tableModel. Taht changes the view (lost the sorting).
    Is there any way to disable this repaint or repaint using the view, not the model.
    Thanks!

    I was having the same problem. I found a simple solution although I am really not sure if it's the best.
    I went into where I was actually sorting on the column headers - in my table sorter class. At the top of the class, I added the variables boolean sort and int lastColumn. Directly after the sort, I set the boolean sort to true and the lastColumn to the column I'm sorting on.
    I also added two methods. One that returns the boolean sort and one that returns the lastColumn int.
    I was able to pinpoint where I was losing my sort (it was when I used the setValue method). I called my first method right after that place. If the boolean sort was true, I called sortByColumn(using my lastColumn int returned by my second method).
    Hope this helps.

  • One row as editable and other row as non-editable in table control

    Hi Experts,
               Is this possible to make one row as editable and another row is non editable in table control?
    My Requirement is
    1st row non editable field
    Customer code, description,amount will come from the previous screen this will be non editable for user.
    2nd row editable
    User has to enter the amount in 2nd row here the customer code description will be empty.
    If 4 customer are there
    1,3,5,7 should be non editable and 2,4,6,8 should be editable..
    Pls help me in this issue..
    Thanks in Advance!

    hI
    This is a simple Module POOL program with only Table control and nothing else
    " This is Tested to Enable one row and disabling the next row
    in TOP Include
    controls : tc type tableview using screen 100.
    DATA : OK TYPE SY-UCOMM.
    DATA : ITAB TYPE TABLE OF SPFLI WITH HEADER LINE.
    in PBO
    PROCESS BEFORE OUTPUT.
      MODULE status_0100.
      LOOP AT itab WITH CONTROL tc.
       MODULE TC_MOD.
      ENDLOOP.
    in PAI
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
      LOOP AT itab.
      ENDLOOP.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'TEST'.
      SET TITLEBAR 'TEST'.
      DESCRIBE TABLE itab LINES tc-lines.
      IF tc-lines = 0.
        tc-lines = 20.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    MODULE tc_mod OUTPUT.
      DATA : mod TYPE i.
      LOOP AT SCREEN.
        mod =  tc-CURRENT_LINE MOD 2  .
        IF mod = 1.
          IF screen-name = 'SPFLI-CARRID'.
            screen-input = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMODULE.                 " TC_MOD  OUTPUT
    Edited by: Ramchander Krishnamraju on Jan 25, 2011 7:17 AM

  • How can I edit a table in a pdf document?

    I'm in data entry and I have to make reports that are generated in a pdf document. I use this program called PROMIS that I access through the internet to enter attendance among other things. At the end of each month I need to make a report of the attendance of that month and a blank report. The table that is generated in that blank report is the one that I wish to edit, make the columns and rows bigger to be more specific. Is there a way to edit the table in Acrobat Pro or another program? I tried to export the file as a Word document to edit it in Word but I get this error:
    Acrobat was unable to make this document accessible because of the following error:
    Bad PDF; error in processing fonts. <unsupported Type2 font> [1]
    Please note that some pages of this document may have been changed. Because of this failure, you are advised to not save these changes.
    I have Acrobat Pro 9.3.4 on a Mac with Snow Leopard and I have Office 2008 for Mac.

    Hi Naveenraju,
    You will need Acrobat Pro for that. This Help document has all the information that you need: Acrobat Help | Edit images or objects in a PDF
    Please let us know how it goes.
    Best,
    Sara

Maybe you are looking for

  • Using different datasources and different view objects.. (ADF 11g)

    In our application we have the need for using two different datasource (an old version and a new verision) - but not at the same time. Isn't it possible to base a viewobject on top of two sub viewobjects and run time decide which sub viewobject to us

  • Error in Quota

    Dear Experts. For some employees Got less instead of 19.25 and for some employees got more instead of 19.25 but, by doing forced recalculation it is coming correctly client would like to generate without using the forced recalculation Please help me

  • Is it possible to see the Import History???

    I am importing a lot of folders with photos from a hard drive but I lost track of what has been imported already. Can I find the import history somewhere in iphoto 11??

  • Jsessionid only one time

    I'm using Tomcat 5.5 and MyFaces v.1.1.5 (1.1 implementation). All my browsers have cookie enabled. I access the application using the index welcome file (under the root of my application) that forward to the jsf entry point page. When I get this res

  • HT4946 I found my back up files. How do I open them?

    I found my back up files. How do I open them? It's just a tremendous list of files and Adobe can't open them. I would like to be able to read my text messages from a particular contact.