Can a PDF template be created with editable and non-editable areas?

Hi
Sorry - probably a bit of a newbie question but i can't find an answer to this anywhere. Hope i'm also posting in the most relevant forum - apologies if i'm not.
I have been asked by a client if i can create (from an existing illustrator CS4 file) a PDF template with restricted editable areas - two to handle text for email and physical address and one to allow logos to be swapped. All other items and text need to be locked. Is it feasible to create this from the Illustrator file (or InDesign, Acrobat Pro etc) and if so how? and what software would the client need in order to do the edits and then save as a final version for print?
Hope that makes sense and that someone can help.
thanks in advance, Tom

Thanks for the reply Niall.
I ended up chanigng the numeric field to a decimal field instead, and added the following display pattern: num{zzzz9.99'%'}
So although the user can't enter a % symbol into the field, a % symbol automaticaly populates when the user enters a number.
My criteria involved ensuring that a user could not enter a number with more than two numbers after the decimal, so I also set a trailing digits max of 2 (in the Obect > Field settings)
This is the FormCalc formula I used in the "calculate" event to calculate the salary increase amount request: (DecimalField1 * NumericField2) *.01 + NumericField2
This formula is meant to calculate the salary amount a manager is requesting their employee's salary be increased to.

Similar Messages

  • How can we make edit and non edit of rows on particular conditions in alv

    hi experts,
                   i am very new to web dynpro for abap.i have one query regarding alv.
    in one view i have alv table with two line items,and line each line item having foue editable fields and remaining are non editable.
    now i am navigating to another view and make some action.here i have generated one value  and updated this value to one field ofselected  line items of alv table in the previous view.now i am coming back to previous view .now i want to display the row of alv table which contain value which is generated in second view as completely non editable and remaining rows are as it is .
    hi guys please look into this and suggests me.

    Hi babu,
    You can do this in one view it self.
    create a one attribute of type wdy_boolean.. in view context.
    Bind these attribute to read only property of table.. and  initially set the value to abap_true in wddoinit method.
    Then create one button say "EDIT" in view and create action for edit button.. in that action set the above attribute value to
    abap_false.
    so now, initially table will be in display mode, when you click on edit mode...it will become editable mode...
    Hope you got some idea.
    Regards
    Srinvias

  • Editable and non editable issue in ALV OOPS

    Hi All,
    After giving the input in selection screen when i execute the report program will display the output in ALV OOOps.
    Here i need few fields in Editable and some fields are non editbale mode. I can't use Edit  ='X" in fieldcatalog.
    I refered few threads in SDN at last  i found the method cl_gui_alv_grid=>mc_style_enabled. using this method also i am not getting. PLz see below sample code.
        gs_celltab-fieldname = 'Z_MESSAGEID'.
        gs_celltab-style = cl_gui_alv_grid=>mc_style_enabled.
         INSERT gs_celltab INTO TABLE gt_celltab.
          gs_final-celltab = gt_celltab.
          APPEND gs_final TO gt_final.
    I am passing GT_FINAL to below mthiod.
        CALL METHOD grid->set_table_for_first_display
          EXPORTING
            i_save               = 'A'
           i_default            = 'X'
            is_layout            = gs_layout
            is_variant           = gs_variant
            it_toolbar_excluding = gt_exclud
          CHANGING
            it_fieldcatalog      = gt_fieldcat[]
            it_outtab            = gt_final[].
    still inut all fields are in disply mode. Any body can suggest me how to approach.
    Regards,
    Maheedhar

    Here is the sample code.
    DATA :PT_CELLTAB Type LVC_T_STYL,
               LS_CELLTAB TYPE LVC_S_STYL,
               L_MODE type RAW4.
      LS_CELLTAB-fieldname = 'KUNRG'.
      LS_CELLTAB-style = cl_gui_alv_grid=>mc_style_disabled.
      Insert LS_CELLTAB Into Table PT_CELLTAB.
      LS_CELLTAB-fieldname = 'KUNNR_AG'.
      LS_CELLTAB-style = cl_gui_alv_grid=>mc_style_enabled.
      Insert LS_CELLTAB Into Table PT_CELLTAB.
    Append X_OUTTAB to TB_OUTTAB.
    *---Switch edit mode 0 for No-edit 1 for Edit
      CALL METHOD g_grid->set_ready_for_input
        EXPORTING
          i_ready_for_input = 1.
    its recommended to use the below events for editable mode to handle changed data
    example
    handle_data_changed
           FOR EVENT     data_changed OF cl_gui_alv_grid
               IMPORTING e_onf4
                         e_onf4_before
                         e_onf4_after
                         er_data_changed,
    Handle data Change Finished
        handle_data_changed_finished
           FOR EVENT data_changed_finished OF cl_gui_alv_grid
               IMPORTING. ...
    Edited by: Ashwin Kumar Chitram on Oct 3, 2011 8:06 PM

  • Sold to party field should be editable and non-Editable for diff sales org

    Hi,
        in creation of SO,i want SP field should be editable for Domestic sales org and Non Editable for Export sales org.
    please help on this.

    Dear Mohanty,
    In sales order, for domestic sles SP is editable - It is Normal process.
    Non Editable for Export sales org.
    In this how user will enter the sold to party while creating sales order.
    And did you create export customer classification in Sales org rather Distribution channel.
    Regards,
    Mani

  • Editable and Non editable portion in JTextArea

    hi all
    i have following problem:
    in my application i m using JTextArea and JButton when button is clicked some text is added as follows with append method
    textarea.append("darshan");
    textarea.append("\n\n");
    textarea.append("gajjar");
    now i want the text in textarea noneditable (ie 'darshan','gajjar') while other portion is editable (ie '\n\n')
    it means i can enter or change text between two texts 'darshan' and 'gajjar' but i can not edit 'darshan' and 'gajjar'.
    and finally i want to save thest text in a file
    please help me
    thanks
    darshan

    Hi,
    You have to use JEditorPane and linkit with extended HTMLDocument.
    this methods override HTMLDocument methods and make the content between
    to tags (in this example between tag<template>) not editable. There are some bugs to fix here but i hope that this will help.
    kit object is HTMLEditorKit instance of current JEditorPane editor kit.
    public void insertString(int offs, String str, AttributeSet a) throws
          BadLocationException {
        if (kit == null) {
          super.insertString(offs, str, a);
          return;
        if (!canEditTemplate) {
          Element curTag = kit.getCharacterAttributeRun();
          Element parent = curTag.getParentElement();
          try {
            int i = 0;
            for (; i < parent.getElementCount(); i++) {
              if (parent.getElement(i).equals(curTag)) {
                break;
            if (i != 0) {
              Element prev = parent.getElement(i - 1);
              Element next = parent.getElement(i + 1);
              if (prev.getName().equalsIgnoreCase("template") &&
                  next.getName().equalsIgnoreCase("template")) {
                System.out.println("Tempate element not editable");
                return;
          catch (ArrayIndexOutOfBoundsException exxx) {}
          catch (NullPointerException exe) {
            System.out.println("nullPointer in template insert");
        super.insertString(offs, str, a);
      public void remove(int offs,
                         int len) throws BadLocationException {
        if (!canEditTemplate) {
          if (kit == null) {
            super.remove(offs, len);
            return;
          Element curTag = kit.getCharacterAttributeRun();
          Element parent = curTag.getParentElement();
          try {
            int i = 0;
            for (; i < parent.getElementCount(); i++) {
              if (parent.getElement(i).equals(curTag)) {
                break;
            if (i != 0) {
              Element prev = parent.getElement(i - 1);
              Element next = parent.getElement(i + 1);
              if (prev.getName().equalsIgnoreCase("template") &&
                  next.getName().equalsIgnoreCase("template")) {
                System.out.println("Tempate element not editable");
                return;
          catch (ArrayIndexOutOfBoundsException exxx) {}
          catch (NullPointerException exe) {
            System.out.println("nullPointer in template remove");
            return;
        super.remove(offs, len);

  • Make editable and non-editable some cells in ALV OO

    Hello Experts, i have a table like this:
    KUNNR DATE VALUE1
    And a search button that obtains data, and then display the information in the ALV, like this
    KUNNR DATE       VALUE1
    1000     1.1.2009    A
    1001     2.2.2009    B
    Also i have a button that append  an empty line to the ALV
    I want that the kunnr retrieved in the search be non-editable
    But i want that the kunnr cell in the appended line be editable
    How can i do this?
    THANKS!
    Edited by: Mariano Gallicchio on Jun 26, 2009 3:45 PM

    when (sy-ucomm for New row)
    LOOP AT <fcat> into <workarea>
       CASE <workarea>-fieldname.
          WHEN 'KUNNR'.
    * Making a column as Editable
            <workarea>-edit = 'X'.
        ENDCASE.
      ENDLOOP.
    Kanagaraja L
    Edited by: Kanagaraja  Lokanathan on Jun 26, 2009 4:01 PM
    Edited by: Kanagaraja  Lokanathan on Jun 26, 2009 4:02 PM

  • Size differences between editable and non-ediatble combo boxes

    Hi
    There seem to be some differences between the sizes of editable and non-editable JComboBox.
    I have two combos one editable and one non-editable.Even though all the constraints(except [x, y], of course) are same for both in gridbaglayout, they are displayed in different sizes.
    Why is it so? and what should I do to display them in same size. I dont want to do trial and error.
    Another related question is, how do I set two editable comboboxes to always have same sizes irrespective of the values are added into it. I am asking this question bcos I have observed that sizes differ between combos when values are added during initialization and when values are added at a later time.
    TIA,
    CA

    Maybe something like this:
    myCombo.addItemListener( new ItemListener() {
    public void itemStateChanged( ItemEvent ie )
        JComboBox combo = (JComboBox)ie.getSource();
        ComboValue selection = (ComboValue)combo.getSelectedItem();
        if( combo.getSelectedItem().equals("edit") )
            combo.setEditable( true );
        else
            combo.setEditable( false );
    }}):(untested code)

  • Can I rotate mark ups created with Adobe X on the background page of a PDF document?

    Can I rotate mark ups created with Adobe X on the background page of a PDF document?

    Thank you for taking the time to reply.
    I tried both ways and neither works.  It gives me a prompt box that I have to click "next" for every page but after going thru all pages, nothing is sent to the printer.
    Also, all directions I've read indicate it will print to the default printer.  If my default printer is on a network, will that cause problems....
    and...
    should I be getting a prompt box on every page?  I thought all this would happen behind the scenes and not force me to interact with every page.
    dc

  • I want to know what I need and then how to take a pdf form I created in word and add the blue boxes so that anyone can type into my form

    I want to know what I need and then how to take a pdf form I created in word and add the blue boxes so that anyone can type into my form

    Hey john@adobe,
    Could you please specify how exactly have you created your form.
    You might need to have Acrobat installed on your computer to convert a word document to PDF.
    Do you have Acrobat installed? If yes, what version? If no, then please try using the trial version of Acrobat DC (latest version) and access its features:
    Download Adobe Acrobat free trial | Acrobat Pro DC
    Also, let me know what kind of blue boxes are you talking about.
    If you want others to edit your PDF form, then you need to make it a fillable form by choosing 'Form Editing' option from Tools pane.
    Let me know more on this so that I can help you out.
    Regards,
    Anubha

  • I have Adobe Creative Cloud.  How do I edit a PDF form I created at work and e-mailed to my home tablet?

    I have Adobe Creative Cloud.  How do I edit a PDF form I created at work and e-mailed to my home tablet?

    Hi Val,
    I see! Please see this thread: Is FormsCentral part of the Creative Cloud?
    Creative Cloud doesn't include FormsCentral, which is why you're being prompted to upgrade. (An Acrobat Pro subscription, on the other hand, does include FormsCentral.)
    Best,
    Sara

  • How I can see what accounts I created with my family pack in my old mobileme account?

    Any ideas how I can see what accounts I created with my family pack in my old mobileme account?
    i updated it when we need to migrate and all emails are active and being used.
    i need to update an email address. we use this for my personal company and need to keep the email in
    the same format so it matches the others in the company. i dont see it anywhere in my account now.
    i am using a .mac format. thanks.

    In order to see which devices are authorized on your account:
    Open iTunes
    Click Store
    Click Account
    Click View Account
    Enter your password
    Look in the second section iTunes in the Cloud
    To the far right you'll see Manage Devices
    Once it's clicked you will see all of the devices currently authorized in iTunes/on your account
    I was going to say, "Hope this helps," but based on the above, I'm pretty sure it did!
    Thanks guys...

  • Why does Quicktime tell me it can't play certain videos created with my Phantom 2 v3 drone ? I fly it and switch back and forth from video to still pics and while I may have filmed four videos sometimes Quicktime tells me that one of them can't be pl

    Why does Quicktime tell me it can't play certain videos created with my Phantom 2 v3 drone ? I fly the drone and switch back and forth from video to still pics and while I may have filmed four videos , sometimes Quicktime tells me that one of them can't be played . Checking the info shows that each of the unplayed videos was saved in the same mp4 format as the playable ones yet some of my most important videos won't play . It's getting very frustrating .

    first; I use Perian, that helps even though it is no longer supported, (must have for avi files)
    the apple-cores at apple have gotten very sloppy -- quicktime is a bit finicky and flakey. 
      example,   occasionally (when copy file from quad's card to hard drive)  the avi will show up as a 'mov' file and qt plays it no problem and no conversion.
    but that is very occasionally,  most of the time qt won't convert the file,   -- iMovie won't open an avi without Perian installed  ,  I don't know how that effects qt.
    qt 7"pro" is no good either, (qt 10 does everything it does and for NOT the extra $35)  
    I have gone to VLC  and MPlayerX  for direct playback for drones and cameras.  

  • I am new to mac.  Do I need to store photos on the hard drive to use iPhoto or can I store pics on a network drive and still edit with iPhoto?

    I am new to mac.  Do I need to store photos on the hard drive to use iPhoto or can I store pics on a network drive and still edit with iPhoto?

    iPhoto needs to have the Library sitting on disk formatted Mac OS Extended (Journaled). Users with the Library sitting on disks otherwise formatted regularly report issues including, but not limited to, importing, exporting, saving edits and sharing the photos.
    See this article
    http://support.apple.com/kb/TS5168
    for more. Note also the comment:
    “Additionally, storing the iPhoto library on a network rather than locally on your computer can also lead to poor performance or data loss.”

  • My website created with Iweb and hosted on mobileMe is not showing well on all computers. What could be the problem ?

    My website created with Iweb and hosted on mobileMe is not uploading well on all computers. What could be the problem ?

    I got a chance to look at it on a PC.  Totally hosed up. It loads incorrectly then parts of it go blank.
    I have a site that is based very much on one of the built-in templates and it works fine on the same PC.  It contains only text boxes, image placeholders, and images with "picture frame" borders.  Nothing fancy, no overlays, no extra code or anything. I haven't looked much at the other templates so I don't know if yours is mostly a template or how much you may have modified one or what tricks you may have done to get the look you wanted.  Whatever it is, IE does not like it.  Unfortunately, you can't really ignore them as was suggested; they make up a large part of your audience.

  • Two PDF's - 1 created from Illustrator and the other Acrobat. Same colour is different in both. Why?

    Two PDF's - 1 created from Illustrator and the other Acrobat. Same colour is presented differently in both pdf documents. Why?

    Hi - sorry pressed send too quickly....
    I have two PDF documents that show a sample business card in PDF.
    One was apparently created through illustrator and is the focument for the printers ... it is this document that shows a completely different colour to the one that is in the other PDF that was apparently created in Acrobat. Though designers assure me that they are exactly the same patenone and that it's the software interpretting it.
    What i dont understand is why the colours would look different using the software from the same company....and why designers would put up with this as a basic layman it just looks plain wrong to me.

Maybe you are looking for

  • Multiple applications on a single JVM

    I was looking at some of the disadvantages of running multiple apps on a single JVM and then I came across this sentence which I donot totally comprehend. I guess somebody here would be able to shed some light JVMs tend not to scale well past four pr

  • The ipod cannot be updated.an unknown error occured (50)

    hey all, I downloaded itunes 7 and was unable to update my ipod...i then updated from a friends computer(i thought the USB was the problem)without any hassle...i then downloaded 7.0.1 and am still having the same problem..cant update due to unknown e

  • Posing a question for those well versed in flash and flex

    I would like to start an off-line communication chat with those of you who are well versed in Flash and Flex. I've worked with Cold Fusion but I am not up to date on all the technologies available.  This seems like the perfect forum for this question

  • Adobe PS 7.01 Not opening files on Powerbook G4

    Hi For some reason I am getting PS to open, can create a new file but cannot open jpgs or tiffs in my collection. Reinstalled, trashed prefs, and permissions repaired still no dice. Any ideas? Should I post this in another better suited forum? Thanks

  • Internal db server deosnt start..

    Hi, I get the following error when i start tomcat in the catalina.log. Idm is deployed in the webapps folder. Defining system properties... StartupServlet: programmatically derived waveset.home=file:/usr/local/tomcat/webapps/idm/ StartupServlet: Defi