Auto Convert Doesn't Do the Check Boxes

I created a document in Word, created a PDF from it and am turning it into a form. The form only consists of lines and check boxes. The check boxes are square and begin blank. I want the user to put an x or a check (I don't care) in them as necessary.
I used the automatic convert and it created fields where there were lines perfectly. But it ignored all the check boxes. Isn't there a way for it to automatically convert them too?

Additional three thoughts: First, is there anything I can do while still in MS Word to enable Acrobat to see the check boxes easier? Different font? Same font, but different "character"? Etc. Second, if there is no way the check boxes can be recognized and converted, is there a way to do an after-the-fact search-and-replace, searching for the check boxes and replacing them with clickable boxes. By the way, I don't need to capture data; I just need for people to be able to fill out the form on their computer and print it. Third, if Acrobat can't do this, is there third-party form software that recognizes check boxes?

Similar Messages

  • How to activate the Check box in Purchase Order after Goods Receipt

    Hi All,
    How to activate the check box after Goods receipt of Purchase order in Item view (Goods Receipt is completed).
    Where t make the settings in SPRO.
    Regards,
    Shailendra Hadkar

    Hi
    SPRO - SAP IMG- Material management - Inventory management and physical inventory - Goods receipt - create purchase order automatically - activate auto Po creation for movement type.
    Then activate the auto PO creation in Vendor master - Purchasing view
    Check it out.
    Regards,
    raman

  • AR AUTOINVOICE ignores the checked box "copy document number to transaction

    dear ,
    AR AUTOINVOICE ignores the checked box "copy document number to transaction number"
    I setup the batch source as check "copy document number to transaction number" but when
    I import the invoice by auto invoice I found the transaction number is 2 and
    the document number is 1
    That mean the system ignore the check box in definition of batch "copy document number to transaction number"
    Facts: Navigate -> Setup -> Transactions -> Sources
    Setup Transaction Source with Automatic Transaction Numbering checked and Copy Document Sequence Number to
    Transaction Number checked.
    Navigate - > setup -> system option  tab (transaction & customer)
    Document number generation level: when completed
    Expected Behavior:
    The Expected Behavior is that when I checked the "copy document number to transaction number" in definition of the source
    AR Auto Invoicing must assign the document number to transaction number
    Business impacts :
    There is gaps with the sequence number for the invoice that not accepted from the finance auditor in the last of the year
    thanks

    check have u performed these steps or not.
    you have to do all the necesarry set up steps:
    1) Enable the Sequential Numbering Profile Option
    2) Enable the AR: Document Number Generation Level Profile Option
    3) Check Copy Document Number to Transaction Number box on Transaction Sources
    4) Define Sequences
    5) Assign Sequences to Categories
    In batch source definition for your invoice, there is a flag for 'copy doc num to trx num'. is it ticked?

  • How to with the check box in Suppliers - Contact Directory

    EBS R 12.
    I am in need of finding a solution for the following:
    Payables Manager -> Suppliers -> Inquiry -> Select a supplier -> Go to "Contact Directory" -> Select a contact
    Under User Account section there is a check box.
    When I check the check box, the following action should happen:
    1. The "Username" field must contain the value of the "Email".
    2. Under "Responsibilities" "Sourcing Supplier" must be checked.
    I don't know where to put my hands to solve this problem.
    All helps will be appreciated. Thanks.

    Hi
    SPRO - SAP IMG- Material management - Inventory management and physical inventory - Goods receipt - create purchase order automatically - activate auto Po creation for movement type.
    Then activate the auto PO creation in Vendor master - Purchasing view
    Check it out.
    Regards,
    raman

  • Why does the check box untick itself?

    I have a program which has a GUI control that I designed. It consists of several check boxes inside a panel, the user can tick one or more of them. There are various methods to get all the selections, untick boxes in code etc. In one place in my software, I need a dialog box to appear when the user ticks a box. So I got my control to raise a property change event whenever one of the check boxes is ticked or unticked. I then catch this in another part of the code, and cause a dialog to appear which asks the user for further options.
    My problem is this: for some strange reason, when the dialog appears, it is causing the check box to be unticked again immediately after it is ticked. I have prepared a simplified version of the problem code, below. If you comment out the call to ticking(), then it works ok (but the dialog doesn't appear obviously). Has anyone got any ideas, please?
    import java.awt.GridLayout;
    import java.awt.event.*;
    import java.beans.*;
    import java.util.HashSet;
    import javax.swing.*;
    public class Testing {
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                @Override public void run() {                 
                    Testing testing = new Testing();
        public Testing() {
            JFrame fmMain = new JFrame();
            CheckBoxes cb = new CheckBoxes("one", "two", "three");
            cb.addPropertyChangeListener(new PropertyChangeListener() {    
                @Override public void propertyChange(PropertyChangeEvent pce) {
                    String category = (String) pce.getPropertyName();
                    if(category.equals("ticking")) {            
                        ticking();  //commenting this out means the boxes are ticked ok
            fmMain.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            fmMain.add(cb);
            fmMain.pack();
            fmMain.setVisible(true);
        private void ticking() {
            final JDialog dlg = new JDialog();
            JButton okbutton = new JButton("OK");
            okbutton.addActionListener(new ActionListener() {
                @Override public void actionPerformed(ActionEvent ae) {
                    dlg.dispose();
            dlg.add(okbutton);
            dlg.setModal(true);
            dlg.pack();
            dlg.setVisible(true); 
        class CheckBoxes extends JScrollPane {
            public CheckBoxes(Object... arr) {
                super();
                GridLayout gl = new GridLayout();
                gl.setColumns(1);
                JPanel panel = new JPanel();
                setViewportView(panel);
                gl.setRows(arr.length);
                panel.setLayout(gl);
                ItemListener cl = new ItemListener() {
                    @Override public void itemStateChanged(ItemEvent ie) {
                        JCheckBox cbi = (JCheckBox) ie.getSource();
                        String propertyName = cbi.isSelected() ? "ticking" : "unticking";     
                        System.out.println("Item event: "+propertyName);
                        CheckBoxes.this.firePropertyChange(propertyName, null, cbi.getText());
                HashSet data = new HashSet();
                for(Object o: arr) {
                    if(!data.contains(o)) {
                        JCheckBox candidate = new JCheckBox(o.toString());
                        panel.add(candidate);
                        candidate.addItemListener(cl);
                        data.add(o);
    }

    Thanks Malcolm, I used the different thread as you suggested and it works fine :).
    import java.awt.EventQueue;
    import java.awt.GridLayout;
    import java.awt.event.*;
    import java.beans.*;
    import java.util.HashSet;
    import javax.swing.*;
    public class Testing {
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                @Override public void run() {                 
                    Testing testing = new Testing();
        public Testing() {
            JFrame fmMain = new JFrame();
            CheckBoxes cb = new CheckBoxes("one", "two", "three");
            cb.addPropertyChangeListener(new PropertyChangeListener() {    
                @Override public void propertyChange(PropertyChangeEvent pce) {
                    String category = (String) pce.getPropertyName();
                    if(category.equals("ticking")) {   
                        ShowDlg sd = new ShowDlg();
                        EventQueue.invokeLater(sd);
            fmMain.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            fmMain.add(cb);
            fmMain.pack();
            fmMain.setVisible(true);
        class CheckBoxes extends JScrollPane {
            public CheckBoxes(Object... arr) {
                super();
                GridLayout gl = new GridLayout();
                gl.setColumns(1);
                JPanel panel = new JPanel();
                setViewportView(panel);
                gl.setRows(arr.length);
                panel.setLayout(gl);
                ItemListener cl = new ItemListener() {
                    @Override public void itemStateChanged(ItemEvent ie) {
                        JCheckBox cbi = (JCheckBox) ie.getSource();
                        String propertyName = cbi.isSelected() ? "ticking" : "unticking";     
                        System.out.println("Item event: "+propertyName);
                        CheckBoxes.this.firePropertyChange(propertyName, null, cbi.getText());
                HashSet data = new HashSet();
                for(Object o: arr) {
                    if(!data.contains(o)) {
                        JCheckBox candidate = new JCheckBox(o.toString());
                        panel.add(candidate);
                        candidate.addItemListener(cl);
                        data.add(o);
        class ShowDlg implements Runnable {
            @Override public void run() {
                final JDialog dlg = new JDialog();
                JButton okbutton = new JButton("OK");
                okbutton.addActionListener(new ActionListener() {
                    @Override public void actionPerformed(ActionEvent ae) {
                        dlg.dispose();
                dlg.add(okbutton);
                dlg.setModal(true);
                dlg.pack();
                dlg.setVisible(true); 
    }Edited by: 892190 on 19-Oct-2011 08:02

  • Very elementary....what is the check box for in itunes?

    Would someone please enlighten me on the functionality of the check boxes next to items in itunes? I check several songs I want to delete and then click Edit>Delete but only the ONE ITEM selected by the cursor is deleted. OK, so I know how to do shift-click to select a number of items then click Edit>Delete, but what in the dog-gone world is the check box for?!? when I search for help on "Check Box" no results are found. Also, if you like to show me how non intuitive I am by demonstrating how to find this solution in the Help menu, I would love to learn something from the exercise. Otherwise, I'm going to believe, beyond belief, that the itunes help is not very helpful!
    Thanks, inspite of this insanely simple problem!
    Alan

    you can multiple select songs from your list by using the CTRL or SHIFT keys, and then you can right-click on the selected items and choose delete.
    the check box is actually for auto-syncing; which means that if you have some songs checked in your library, then you connect your ipod, those checked songs will automatically update on your ipod, or transfered. (of course, thats only true if you have the auto-sync option selected, and not manual update).
    another thing for the checked box; if you change anything to the song like ID tags, or artwork, .... they will automatically be changed and updated on that song on the ipod next time you plug it in.
    i found out that this check box thing is useful if you wanna update your ipod ONLY with the new songs added recently to your library. this way, your ipod wont update all songs, it will only do the ones checked.
    you can also right click on a bunch of songs and choose check selection, or uncheck selection.
    hope i didnt forget anything, and i hope that helps.

  • Check the check-box using script

    Hi
    I have a requirement where from script i need to check the  check box.
    Based on if a condition is true , when i execute the script , the check box field needs to be auto-checked .
    Appreciate the help

    Hi,
    Access the field and set it to true. If it is a standard field it should have its getter and setter, you should use that. In case of an extension field do this :
    doc.getExtensionField("FIELD_NAME").set(true);
    Thanks
    Devesh

  • Firefox security settings will not save any of my passwords even when i click on the check box for saving passwords. please help.

    When a pop-up comes up on the screen it will ask to save my password or not, well, I click on save password but it doesnt save any passwords even when I have the check box checked for remembering my passwords for certain sites it will not save any type of passwords at all. What am I doing wrong? I am using linux-mac OS user.

    Simply because I don't think about using this option that takes more time to close... I always close ALL my windows with the X.
    Firefox doesn't hang at exit also...
    Using Firefox / Exit doesn't always save the bookmarks also... let's say there is 80% chances it will but not always... I noticed the first time I open firefox after booting the computer... Bookmarks won't be saved... But if I close firefox and re-open it, then it might save it... 50% guess...
    I tried the safe mode, but since its closing firefox and re-open it... new saved bookmarks sometimes work, sometimes don't... it's pretty unstable...
    Hopefully there is a solution to this problem in a near update, annoying... else I will simply reverse to firefox 3.6.16

  • The Bold, Italic, Underline functions have disappeared from the screen as have the check boxes at the beginning of the intro line

    The bold, italic, underline, color hi-lite and other boxes in that line suddenly disappeared from the screen and that section remains blank. However when writing a new message if I mouse over the area the boxes re-appear but without their previous alliterations. Also the system does not allow me to color hi-lite text and shows all the colors in a very fuzzy format when I mouse over where the hi-lite box used to be. Additionally the check box at the front of the email subject line has also disappeared but, again, if I mouse over & click it will perform a delete or other function. Need help!

    Hi ITBobbyP,
    According to your description, there are two text boxes at the bottom of the tablix and both of them are outside the tablix. When you export the report to excel, the upper text box could not be displayed.
    Microsoft Excel places limitations on exported reports due to the capabilities of Excel and its file formats. The following limitations apply to text boxes and text:
    Text box values that are expressions are not converted to Excel formulas.
    Text boxes are rendered within one Excel cell.
    The text effect "Overline" is not supported in Excel.
    Excel adds a default padding of approximately 3.75 points to the left and right sides of cells. If a text box’s padding settings are less than 3.75 points and is just barely wide enough to accommodate the text, the text may wrap in Excel.
    To troubleshoot the problem, please make sure that the text box meet the limitations. In addition, please validate that visibility of the text box is set to true, it’s better to set CanGrow property of text box to false.
    If the problem remain unresolved, i would appreciate it if you could give us detailed information about the report, I would be appreciated it if you could provide sample data and screenshot of the report. It will help us move more quickly toward a solution.
    Thanks,
    Wendy Fu

  • How to read the check box value in alv report

    hi experts,
    i m working on one alv report where i m using the check box for field selection in alv display.
    but i don't know how to read the only selected fields.
    wa_fieldcat-fieldname = 'BOX'.
      wa_fieldcat-tabname = 'IT_HEADER'.
      wa_fieldcat-seltext_m = 'Box'.
      wa_fieldcat-checkbox = 'X'.
      wa_fieldcat-input = 'X'.
      wa_fieldcat-edit = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
      wa_fieldcat-fieldname = 'AUFNR'.
      wa_fieldcat-tabname = 'IT_HEADER'.
      wa_fieldcat-seltext_m = 'Sales Doc'.
      wa_fieldcat-hotspot = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program                = v_repid
         I_CALLBACK_PF_STATUS_SET          = 'SET_PF_STATUS'
         i_callback_user_command           = 'USER_COMMAND'
         i_callback_top_of_page            = 'TOP_OF_PAGE'
         it_fieldcat                       = i_fieldcat[]
         i_save                            = 'A'
         it_events                         = v_events
        TABLES
          t_outtab                          = it_header
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    *&      Form  USER_COMMAND
          text
         -->R_UCOMM    text
         -->,          text
         -->RS_SLEFIELDtext
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
      CASE r_ucomm.
    when '&RELEAS'.
    endcase
    endform.
    i gone through some already posted que for same problem i tried options like
    loop at it_header.
    endloop.
    but i m getting box field empty.
    is there i missed something? plz sugeest.. if u have any other solution plz post...

    Have this code in your user command fm:
    * For capturing changed data
      CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
        IMPORTING
          e_grid = w_grid.
      CALL METHOD w_grid->check_changed_data
        IMPORTING
          e_valid = w_valid.
      IF w_valid = 'X'.
    loop at itab where mark = 'X'.
    endloop.
    ENDIF.
    Regards,
    Ravi

  • How to name the Check Box as "Want Free Gift" using PARAMETERS statements

    Hi all,
    I am new to check boxes. I have a existing report where I have to add a check box to the selection screen.
    So i said
    PARAMETERS: p_cncldc AS CHECKBOX.
    everythibng is fine and I get the check box on the selection screen. when i execute the report i get the name of check box as p_cncldc. but i want the name of the check box as "Want Free Gift".
    How to name the check box as "Want Free Gift".
    if i am saying
    PARAMTERS: Want Free Gift AS CHECKBOX. it says a syntax error saying it canot be more that 8 chars.
    Some one please help. I am new to Check boxes
    Regards,
    Jessica Sam
    Edited by: jessica sam on Mar 31, 2009 10:37 PM

    Text on the Right hand side of check box.
    selection-screen begin of block b1.
    selection-screen begin of line.
    parameters: w_check as checkbox.
    selection-screen: comment  4(30) TEST .
      selection-screen end of line.
    selection-screen end of block b1.
    INITIALIZATION.
    test = 'Want Free Gift AS CHECKBOX'.
    Text on the Left hand side of check box.
    selection-screen begin of block b1.
    selection-screen begin of line.
    selection-screen: comment  2(30) TEST .
    parameters: w_check as checkbox.
      selection-screen end of line.
    selection-screen end of block b1.
    INITIALIZATION.
    test = 'Want Free Gift AS CHECKBOX'.
    OR:
    GOTO(Menubar)>Text Elements>Selection Texts
    Regards,
    Gurpreet

  • How do  we check the check box items based on the databse fields.

    Hi All,
    I have a requirement like as mentioned below#
    1. I have a combox box whcih i will be populated from database.
    2. I have created two check box as "Stategric " and "Non Stategric".
    3. Now when i select the combox box condition i need to select the check box items.
    4. But the problem is i wil be knowing weather it is a stategric or Non stategirc based on the database column.
    5. How do i need to map the database point of view and correlacte with javascript pont of view.
    6. Do we need to write any Application process to achieve this task and who we can do that.
    Thanks,
    Anoo..

    Hi VC,
    As per my understanding the code should be placed between --.
    Based on this i have placed the code
    function setCheckbox(pThis, pItem){
    alert('inside');
        var l_code = '';
        // Get checkbox name
        rName = document.getElementsById('P1_ENG_BAU').firstChild.name;
    alert("The value is"+rName);
        // Fire AJAX
        var get = new htmldb_Get(null,html_GetElement('pFlowId').value,'APPLICATION_PROCESS=CHECKBOX_LIST',0);
        get.add('F120_COMPANY',pThis.value);
        gReturn = get.get('XML');
        if (gReturn) {
          var values = gReturn.getElementsByTagName('value');
          var messages = gReturn.getElementsByTagName('message');
          // Build the checkbox
          for (i=0; i<values.length; i++) {
            var rValue = values.firstChild.nodeValue;
    var rMessage = messages[i].firstChild.nodeValue;
    l_code+='<input id='+P1_ENG_BAU+'_'+i+' type=checkbox value='+rValue+' name='+rName+'>';
    l_code+='<label for='+P1_ENG_BAU+'_'+i+'>'+rMessage+'</label>
    document.getElementsById('P1_ENG_BAU').innerHTML = l_code;
    Correct me if iam understanding is wrong.
    Thanks,
    Anoo..
    Edited by: Anoo on May 31, 2012 11:04 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • By clicking on  a button all the check boxes i have should be checked

    Hi all,
    Im having a button 'SELECT ALL', by clicking on that all the check boxes i have in my view should be checked.
    Help me out with procedure and the sample code.
    Thanks & Regards,
    Suresh

    Hi Sureshkumar,
    1. Create a value attribute named <b>select</b> of type boolean.
    2. Bind the <b>checked property</b> of all the checkboxes to this attribute.
    3. Create an action called <b>click</b> and bind it to <b>OnAction</b> event of the button(whose click will check all the checkboxes) and write this code in that action.
    <b>wdContext.currentContextElement().setSelect(true);</b>
    Warm Regards,
    Murtuza

  • What is the check box column for in iTunes?

    I just upgraded to the latest version of iTunes (11 something).  Now the checked songs on the Music/Song page do not sync with my iphone.  I have to go to a separate page to select what I want to sync with my phone and if it's not my whole library I have to recheck everything manually.  Why isn't this just what I have already checked on my Music/Song page, like in older versions?  Now I have to start from scratch and the sync page isn't even by song, it's by album.  I don't want to sync every song in each album as this takes up too much space on my iphone.  So I don't understand what the point is of the check box column now since it's purpose seems to have been made redundant.  If I uncheck the box, the song now disappears completely.  It used to still be on my list but just was unchecked.  Where does the song go now?  And how can I get it back?  If there is any sort of support documentation on these features/functions, please point me to the link as I could not find anything on the apple site. 

    Check marks can be used to mark out tracks that you rarely want to listen to but still want to keep in your library, e.g. a bonus interview track at the end of an album. Unchecked tracks are usually excluded from syncing to devices, skipped during track to track playback and ingored when shuffling. To easily check or uncheck all tracks hold the ctrl key down while clicking a checkbox.
    tt2

  • Since updating to Firefox 3.6.15, I can no longer print coupons from SmartSource. The error message is that Java is not detected. The check box is longer showing in the Options/Content of this version of Firefox, so I can not enable it.

    # Question
    Since updating to Firefox 3.6.15, I can no longer print coupons from SmartSource. The error message is that Java is not detected. The check box is longer showing in the Options/Content of this version of Firefox, so I can not enable it.

    Same PC as I used to post the question. When I go to the "plug in check" page, it shows I am up to date and it is not disabled.
    Java(TM) Platform SE 6 U24
    Next Generation Java Plug-in 1.6.0_24 for Mozilla browsers 1.6.0.24

Maybe you are looking for

  • What's wrong with my mouse?

    Ok, I'm using an imac g4 and the original pro keyboard and mouse that came with it. My mouse is starting to act funny for the first time ever. Every few seconds, the pointer arrow will just stop moving. And after I move the mouse around for a couple

  • Compilation error: "The definition of base class Application was not found."

    Hi, I imported my Flash Builder 4.6 project to the 4.7 pre-release version. My application use a CustomSystemManager (in order to force the loading of a "TextContainerManager", I'm using latest TextLayoutFramework 3.0.0.29). I had no error with previ

  • 1 second media pending, random occur

    CS5 on Win7 64Bit, 6.4GB RAM reserved for CS5, Quadcore 2.4, all data on internal HDD, all Cachefiles and other Data in Projectfolders. 1440x1080 (1.3333) Project, 25 fps, PAL, 48000Hz, 1.5hours duration, 69 different Objects, biggest 9.2GB, mpeg, m2

  • How to list top 10 biggest files?

    Hi Friends, In OEL 5.4 I have seen a script before that will list the top 10 biggest file by size(bytes) in linux. But i forgot where I saved it :( Can you help me find the link about it please. Thanks a lot, Ms K

  • Reg:DC to be imported to DTR

    Hi Friends, My DC has been developed on my Local System,sometimes i had updated to DTR and sometimes i did not. Now i need to put this DC on to the DTR from my Local Development . Is it possible for me to do the same. Please let me know,if atall its