Nudge fields in forms

Acrobat 9 pro.
I'm trying to add rows and columns of checkboxes to an existing form from a client. They need to line up inside the existing lines on the form. I figured out how to use "place multiple fields" to give me what i need sort of. I can use the "change width" and "change height" settings in the "place multiple fields" window to spread them out to fit sort of but it's not accurate enough. The width isn't a problem but the height is. As I increment the height, they don't spread out for every size I choose. For example if I click the spin button 5 times, the height only changes once. It's as if it only accepts certain increments. I've also tried moving them manually with the arrow keys (nudge) after placing the fields but that's not accurate either. One nudge is TOO big and I can't find anything in the settings to allow me to change the nudge size. I sure hope there's a way to get this done accurately! I've tried changing my grid settings as well. Didn't do anything.

Hi
See the following scripts/smartforms and their driver programs
You can see the each form in SE71 and go to the windows(MAIN) and see the fields used
SD
SALES ORDER/ENQUIRY/QUOTATION
Output type         : BA00
ScriptForm Name     : RVORDER01
Driver Program Name : RVADOR01
smartform name
DELIVERY NOTE
Output type         : LD00
ScriptForm Name     : RVDELNOTE
Driver Program Name : RVADDN01
smartform name      : LE_SHP_DELNOTE
Smartform Driver Pgm: RLE_DELNOTE
INVOICE
Output type         : RD00
ScriptForm Name     : RVINVOICE01
Driver Program Name : RVADIN01
smartform name      : LB_BIL_INVOICE
Smartform Driver Pgm: RLB_INVOICE
MM
PUCHASE ORDER/RFQ/CONTRACT
Output type         : NEU
ScriptForm Name     : MEDRUCK
Driver Program Name : SAPMF06P
smartform name      : /SMB40/MMPO_L
smartform driver program: /SMB40/FM06P
GOODS RECEIPT
Output type         : WE01
ScriptForm Name     : WESCHEINVERS1
smartform name      : /SMB40/MMGR1_A
smartform driver program: /SMB40/M07DR
GOODS ISSUE
Output type         : WA01
ScriptForm Name     : WA_SCHEINVERS1
smartform name      : /SMB40/MMGI1_A
smartform driver program: /SMB40/M07DR
FI Forms
Account Statement   : F140_ACC_STAT_01
Cheque Printing     : F110_PRENUM_CHEK
Balance Confirmation: F130_confirm_01
Dunning Form:         F150_DUNN_01
check the link below it provides steps to convert sap scripts to smartforms
http://www.ficoexpertonline.com/downloads/Iyer_SmartForms.pdf
SMARTFORMS -Driver Program
PO: /SMB40/FM06P
SO: /SMB40/RVADOR01
GR: /SMB40/M07DR
You can use the TNAPR  Table or NACE transaction to find the respective Script/form for the corresponding transaction
Regards
Anji

Similar Messages

  • Can someone help with auto-size fields in forms?

    I created a form in Acrobat for my team members with auto-size text fields that allow to shrink the text when the field size is not large enough to show the entire text. When I then open the same form file with Adobe Reader on my machine with text that has shrunk in some field, I can see all the text and have also a scroll function when the text size has reached its lower limits and there is still more text to show.
    However, when I receive the filled out forms back from other team members' iPads (they use my template created with Acrobat), the text didn't shrink as on a PC version and the scroll function is disabled. I checked the template and the fields are correctly set to auto-size left and they do work on my PC's and laptop's Adobe Reader. But the iPad version of Adobe Reader may cause some issues.
    Can anybody help with solutions?
    Thank you!
    Klaus

    The filled version of your PDF document (20140722 Daily Meeting Report...pdf) is no longer a PDF form because it has been flattened.
    Once an interactive PDF form (such as your template version) is flattened, all form fields are replaced with images of filled data.  You can no longer interact with form fields, edit form data, or tap/click any buttons in the flattened PDF document.  That is the reason why the text in auto-size text fields did not shrink.
    When you email a PDF document (including a PDF form) in Adobe Reader for iOS, the E-mail Document dialog is displayed.
    In this particular case, your team member must have selected "Share Flattened Copy".
    If you would like to keep the interactivity of a PDF form, you can select "Share Original Document".  Please advise your team members to select the "Share Original Document" option when emailing filled forms.
    Unfortunately, once flattened, a PDF document cannot be reverted back to the original "unflattened" state.  However, if your team members still have the original filled forms, they can resend the forms with the "Share Original Document" option.
    Please let us know if you have further questions.

  • Need help with tool bar button to clear 10 fields on form

    I have 167 forms with 138 fields, I need to blank out or clear just 10 of them or so, can I create a butotn or script that is outside each document so I can open each one, andc lick this button?
    I don't want to add a button to all 167 pdf files. Or better yet script to open them all and blanks out the fields, evey form is the same so the field names are the same.

    This would be easy to do as a batch process (aka Action). The following JavaScript will do it:
    // Create an array with the list of fields to reset
    var fa = ["text1", "text2", "text32", "text4", "text5", "text6", "text7", "text8", "text9", "text10"];
    // Reset the fields
    resetForm(fa);
    This will set each of the named fields to its default value. If the default value might be different than blank, replace the last line with:
    for (var i = 0; i < fa.length; i++) {
        getField(fa[i]).value = "";
    Replace "text1"..."text10" in the first line with the actual names of the fields you want to clear.

  • How do u calculate total of a field in forms

    how do u calculate the total of a field in forms which u are entering and then compare it with a particulat amount so that it is not more than that amount.
    Message was edited by:
    user521989

    I tried using this query, (it is just an example). in the 'key-next-item-trigger'.....but it takes directly from the database , i want it to take the values that i enter in the form and total those values, but like i said it takes all the stored values from the database and then totals it. could you suggest something
    post;
         declare
         x number:=0;     
         begin
         select sum(salary) into x from dept;
              message(x); pause;
         IF x > 5000 THEN
              message('cannot be greater than 5000');
              raise form_trigger_failure;
         end if;
         end;

  • Insert an uneditable date/time stamp in a clob field in forms

    Is there a way to insert a time date stamp in a CLOB field in forms?
    I was thinking of using a pre-text-item trigger in order to accomplish this. Can I set the field so taht the time date stamp cannot be modified?
    Thank you.
    Joe Merkel

    no

  • Populate a field in Forms with a blob

    I am trying to populate a field in Forms using a blob from an Oracle database. When we try to run the query to reference the field we get an error that states this cannot be done in this context. Is there a way to accomplish this.
    Thank you.

    You would have to preform the calculation within the sql query. Here is an example of a computed field in a query:
    SELECT HOURS,
           PAY_RATE,
           PAY_RATE * HOURS "CALCULATED_FIELD"
      FROM EMPCheers,
    Tyson Jouglet

  • Validate same field, same form, different actions

    Hi !
    I have the following problem. I have a single form with one field = sum and two buttons = withdraw and substract. I need to do the followings validations :
    a) sum must be an integer > 0;
    b) is substract is pressed sum < = existing account's value.
    Here are fragments from code :
    bank_operations.jsp
    <html:form action="/operations">          
         Sum (value): <html:text property="sum" />          
         <html:messages id="err_sum" property="sum">
              <bean:write name="err_sum" />
         </html:messages></p>
         <html:submit property="submit">     
              <bean:message key="button.withdraw" />
         </html:submit>
         <html:submit property="submit">     
              <bean:message key="button.substract" />          
         </html:submit><br>     
    </html:form>
    Here is SumForm
    public class SumForm extends ActionForm {
    private String sum;
    setters / getters
    public ActionErrors validate(ActionMapping mapping,
         HttpServletRequest request) {
         ActionErrors errors = new ActionErrors();
         if (!isNumeric(getSum())) {
         errors.add("sum", new ActionMessage("errors.sum.numeric"));
         request.setAttribute("account", account);
         } else {
         if (Integer.parseInt(getSum()) < 0) {
              errors.add("sum", new ActionMessage("errors.sum.numeric"));
              request.setAttribute("account", account);
         return errors;
    Here is the Action file :
    public class SumAction extends LookupDispatchAction { 
    public ActionForward withdraw()...
    public ActionForward substract()...
    Here is the struts-config.xml
    <action
    path="/operations"
    type="struts.action.SumAction"
    name="sumForm"
    scope="session"
    parameter="submit"
    validate="true"
    input="/pages/operations_struts.jsp">
                   <forward name="success" path="/pages/operations_struts.jsp" />
                   <forward name="failure" path="/pages/operations_struts.jsp" />
    </action>
    The problem is : If I know that only in the Action file I know which button was pressed , how can I made two different validation for the same field /same form , but different buttons pressed ? Or can I update validate method from SumForm file from the Action file? (where I can know which buttons was pressed).
    Thank for every your ideea !
    Forgot the details : it's about Struts2 . :)

    Thanks for your reply, but unfortunately I didn't get the idea. Where I should put that line? In the validate method of the form file?
    If this is the case, in page for <html:submit element what should I declare? I saw that something like id or name, I think is not supported by Struts. I'm not sure.
    Thanks again.

  • Small white cross on black square appears at end of field in form entry - how do I remove it?

    Small white cross on black square appears at end of field in form entry - how do I remove it?

    In Adobe Acrobat change the size of the text field.

  • Change field on form User and change automatic on form AD

    Hello Guys,
    I need change a field on form AD (user atributtes) and when this field is changed, it should change a field on AD form.
    I know that need create a task in Process Taks, using a Copy Value to transfer this values, but this transfer does not occur. What can to be?
    Thanks

    there is no case of auto removal of lookp entries. I am sure some how it is deleted either by Design console or imported Lookup.USR_PROCESS_TRIGGER with old values. Don't worry It won't be deleted automatically.
    --nayan                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I can not use the tab key to move to the next field or use the shift and tab to move to the prior field in forms.

    After updating to 7.0.1 I can not always use the tab key to move to the next field or use the shift and tab to move to the prior field in forms. This always worked in previous versions and it's much needed for my type of work. Does anyone know of a setting to activate this? If not can the Firefox developers work on this issue (please). I love Firefox but desperately need this feature to work correctly. Thanks!

    I tried in safe mode and the tab key worked just fine. I'm not sure about all web forms I've only recently updated to 7.0. The wen form I was using was for appraisal purposes and it has multiple data fields to fill in and also drop down menus to select from. Might I always have to use Firefox in safe mode to be able to utilize the tab between field feature? Thanks for your help!

  • How do i expand a field in a line with 3 other fields when forms design will not allow

    how do i expand a field in a line with 3 other fields when forms design will not allow it? I also want to shrink one of the fields and cannot do so.

    It is possible that all there is not enough room on your line to grow the field. You can try a few things :
    - Make the form width wider by dragging the right edge of the form or via the Form Setup dialog (File > Form Setup... and change the Form Width)
    - You can make other field on the row narrower (if they are not already at their minimum width).
    Each field type has a minimum width. What field type are you trying to make smaller?
    For example : Text and Multiline can go down to a width of 30. Dropdown min width depends on the length of the long item in the dropdown list.
    Hope this helps
    Gen

  • Want the data store values to be displayed in input field of form

    Hi,
    I wanted to know wether is there possibility of displaying the data in a input field instead of expression field.
    In our model i have used a form which has material type,plant and Vendor connected to data service1 in turn gives the out put in chart and i also have the second input form which has To(0CALMONTH) combo box which is connected to Data service2 and gives the data in table.
    But what i wanted is to i also want to use the input fields of first form to second Data service2 and get the data based on on inputs of form1 and form2i.e also To field.
    We can connect the port from form1 to DS2 but problem is we need to click the submit of form1 and form2 and it doesnt gives the output according the input of form1 and form2 as it gives the output of that form when we click that submit button.
    I have followed help.sap for data tore procdure.
    So i have used a datstore where i will store the values of form1 and call it in expression field which i will add and hide it in form2(hide because user should not see that input fields).
    Formula used in data store for expression field.
    IF(CONTAINS(STORE@matltype,@Material_Type),STORE@matltype,STORE@matltype &(IF(LEN(STORE@matltype)>0,'; ',''))&@Material_Type)
    But whats happening is the value is getting concatenated when i goon change the values in input field, so i wanted to get the values to be replaced as soon as i change input field of form1(if  use replace function its not working) and also it would be more preferrable if we use input field instead of expression field.
    I would also like to know is there any alternate solution for the above requirement instead of datastore.
    Thank You
    K.Srinivas

    Hi,
          I have Form1 connected to Data service1 displays the data in a Chart and i have another Form2 connected to Dataservice2 displays the data in table.
    In form1 there are Material Type,plant, and Vendor and form2 i have To (0CALMONTH)SO now i want also Form1 inputs for Table which gets teh data from Dataservice2.
    What i have said earlier is connecting Form1 to Dataservice doesnt fetch the data correectly,its because if i click submit in form1 i get the data of those 3 inputs and i need to click the submit button in form2 after giving input which shows the data accordingly where it doesnt fulfill the requirement.
    So i wanted some solution for that.For that reason i have used the data store and the procedure i have followed the help.sap as i said in my above mesage.
    If Data store is also suggestable than i want to display the data in Text input Field  instead of Expression field which should replace the previous values as soon as values change in data store.
    Hope i have tried to be clear if still it is not i am ready to explain again.
    Thank You
    K.Srinivas

  • Hidden field in form returns null value

    Hi all - I searched for this but found nothing that fit my problem although various other problems came up.
    I have a Login jsp, with a simple form for username and password:
    <form name="login" method="post" action="servlet/ControlServlet"
    onSubmit="return validateForm()"><table width="180" border="0"
    cellspacing="0" cellpadding="0">
                <tr>
                  <td width="96" class="logintext">Username</td>
                  <td width="84"> </td>
                </tr>
                <tr>
                  <td><input name="username" type="text" size="15"
    maxlength="15"></td>
                  <td><input type="submit" name="Submit" value="Login"></td>
                </tr>
                <tr>
                  <td class="logintext">Password</td>
                  <td> </td>
                </tr>
                <tr>
                  <td class="logintext"><input name="password" type="password"
    size="15" maxlength="15"></td>
                  <td><input name="actionCode" type="hidden" value="0"></td>
                </tr>
                <tr>
                  <td> </td>
                  <td><div align="center"><a href
    ="Register.jsp"><i>Register</i></a></div></td>
                </tr>
              </table>
              </form>Nothing complex in that form. my hidden field is actionCode and it should pass a 0 to my ControlServlet servlet.
    Here is a snippet from my servlet:
    import java.io.* ;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class ControlServlet extends HttpServlet {
      public void doPost(HttpServletRequest request,
                        HttpServletResponse response)
          throws ServletException, IOException {
        response.setContentType("text/html");
                //get the printwriter to output for debugging
                PrintWriter out = response.getWriter();
                //read in form variables
            //String formUsername = request.getParameter("username");
            //String formPassword = request.getParameter("password");
            String action = request.getParameter("actionCode");
            //convert String to int for action
            //int actionInt = Integer.parseInt(action);
            //add action variable to request
            request.setAttribute("aktion", action);
                //debug point 1
                //use requestDispatcher to forward session info to JSP
               RequestDispatcher dispatcher =
               request.getRequestDispatcher("/mvcoutput.jsp");
               dispatcher.forward(request, response);I have commented out a bit for debugging purposes, but basically, the form variables are read in, the username and password don't give me any problems, but the actionCode does. Upon forwarding to a basic jsp for testing my output displays value "null" when using the command:
    request.getAttribute("aktion")Any reason why the hidden field is playing silly buggers ??
    cheers

    Anyone ???
    If I have a field in an html form which is hidden, do I retrieve it in the SAME WAY that I retrieve the non hidden form fields i.e. using the request.getParameter() method ??
    Cheers.

  • Decimal for a weight field and form calc on a table - header text

    Hi Guys,
    Need your help on 4 issues I am facing.
    1) I am using a Quantity field and till interface the value is 100.000 but in adobeform print its showing 100. How to get decimals printed.
    2) in item details there is a another quantity field and in old script its printed as &VBPLP-VEMNG&(7.0) but the field length is 12 and 3 decimals. If I am directly making limit leading digits to 7 then in output the values is printed as 0.
    3) In item details printing there is a last field weight which is also decimal field. user wants to print this field value text(Weight) only when a text field value has "X". I got it perfectly getting printed if value is "X" and is not getting printed when its space. but the issue is the text weight is not getting printed only at first page and for subsequent pages the weight is getting printed. In what event I have to write the code for this scenario and currently I had written code in initialize.
    Item Layout :
    If a value of interface field is "X" the output should be
    ID  | Material no | PO no  | SO no | Qty  | unit | Weight  |
    If the value of interface field is " " the output should be
    ID  | Material no | PO no  | SO no | Qty  | unit |
    4) After completion of item details there is a requirement to print 2 standard texts. If 1st standard text has no value then it should print space and the next standard text text and value should move up and display. currently i had kept  text1,std text value1,text2,std text value2 in flowed subform only.
    Awaiting for corrections......

    Hi Guys,
    The issue got solved. I am sharing the solution so that it may be useful for others.
    1) solved by using pattern - num{$z,zzz9.999}
    2) not necessary
    3) In Pagination tab of header - you need to check the check box - keep previous , keep next.
    4) have to make the text box to fit a single line and check box multiple lines and keep each standard text in a flowed sub form. Now if 1 st standard text is blank then second standard text will come up.
    Thanks
    Abilash

  • Field Order Form OIM 9.1.0.2

    Hi,
    I have a query about the order of presentation of the fields in the form of identity OIM.
    It is possible to insert fields with the fields spread out the box that offers OIM.
    Where I can find information about this case

    No you cant. All you can do is create Fields with Labels and Values. You can make them as Read only text boxes though and put like "---------------------" in the default value, and give a field label name for a grouping.
    -Kevin

Maybe you are looking for

  • Adjustment brush changed its behavior

    This behavior just started:  When I use the adjustment brush, it slightly darkens the area brushed over no matter what options I have set for it to apply.  I have no mask active.  The actual effects only become visible once I deactivate the brush.  U

  • Xfce4 no longer starts from kdm [SOLVED]

    I have somehow borked my Xfce4 setup. I've switched back and forth a few times between Xfce4 in /extra and Xfce4-svn. Somewhere I've done something so that I can no longer start Xfce4 from kdm. Instead, I have to open a terminal and manually do "star

  • Cost in pricing

    How is the cost determined in pricing? How can I recognize how the cost was determined?

  • Can i remove 7.1 after installed

    here we go again

  • Main: NLS initialization failed!!

    We are tring to run EBS 12 (12.1.1) for Sun Solaris SPARC (64-bit) . The Pre-Install Checks all Ok for all the 6 checks. but after Post -Install Checks it show error in HTTP    checking URL = http://solaris:10:8000    RW-50015: Error: - HTTP Listener