How to add late fee to total in fillable pdf

I am trying to create a fillable pdf form where a $100 late fee is applied if they submit the form after the deadline.  I have a spot for the person to check a box if they are submitting it after the deadline. How can I get it to calculate in to the total?

Set the export value of the check-box as 100 and then include it in the Sum
function of your total field.

Similar Messages

  • How to add a image to header of exporting pdf in devexpress gridview

    hi guys ;
    how to add a image to header of exporting pdf in devexpress gridview content

    Hi Aly14,
    I am not sure what the type of your project was, is it a C# project or an asp.net project?
    If would be helpful if you could share us more information about your issue.
    In addition, I made a research about your issue and I think the links below might be useful to you:
    # ASPxGridView insert an image for Header and Footer sections for pdf export
    https://www.devexpress.com/Support/Center/Question/Details/Q37155
    # Adding an "Export Header" to PDF export in MvcGridView
    https://www.devexpress.com/Support/Center/Question/Details/T141918
    Best Regards,
    Edward
    This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore,
    Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you
    completely understand the risk before retrieving any software from the Internet.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • How to add text and objects (arrows) over a PDF document?

    I am only familiar with Adobe Reader.  Looking for the least expensive Adobe product that would allow me to add text and arrows over an existing PDF document.  Not looking to edit (change) document other than add a "layer" over the original.  Basic stuff I'm sure.  Thanks for your help. 

    If you say so But I read the Original Comments and it doesn't sound like adding comments. When you adding layers as he is describing That is adding content.
    "Not looking to edit (change) document other than add a 'layer' over the original."
    But if you say Commenting then I suppose you are all correct.

  • How to convert a word document to a fillable pdf form

    hello -
    how to I convert a word document into a fillable pdf form?

    Hi carolynm68845256
    Please browse this link for detailed instructions regarding your issue: Acrobat Help | Creating and distributing PDF forms
    Let me know if you face any challenges or if you have any other query.
    Regards,
    Rahul

  • How can i edit the text in a fillable pdf form?

    I ve a fillable pdf form that needs to be updated - minor change such as 2011 into 2012. I've tried to type in the new text in but I could not manage to change it.
    any idea on how to do it? sorry but i'm not familiar with the abobe x pro at all. Thanks.

    Tools > Content > Edit Document Text
    Better yet, edit the original source document, create a new PDF, and replace the old pages with the new: Tools > Pages > Replace

  • How can I change the margins on a fillable PDF

    I am looking to change the margins on a fillable PDF that is required by the CRA because page 2 of 10 is blank. If I were to print it and send it off with the blank page it will get sent back as 'not completed properly'
    Any ideas on how to get rid of the blank page???

    Oh I understand that it is free. I just don't understand why a fillable document that is required by a government agency such as the CRA has a blank page in it and the program they insist you use to fill out the form cannot remove that blank page. That's where my annoyance lies.

  • How to add hyperlink to report total

    Hi,
    I have a report and the last row display report total ( using apex default feature - checking the sum check box).
    My last row look similar as show below
    report total | 10 | 20 | 30 | 0 | 100|
    My requirement to to add hyper link to the nos. 10 , 20 , 30 , 0 , 100 in the report total.
    Any help will be highly appreciated.
    Thanks in advance

    Hi WinSilver,
    Thanks for the response.
    I added following in region footer
    <a href="http://google.com>10</ a>
    But there is no chnage on the screen.
    Also , my report total is automatically create by the report... I have just checked the SUM check box next to column name in column attribute to get the some of the column...
    How to incorporate the report total value instead of manually typing 10 between <a> < / a >                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to add body text when sending output as PDF in email?

    Hello,
    We are using standard SAP to send SD output as PDF in an email (in output type we choose medium 5, email address is taken from customer master. In transaction SCOT is indicated that SAPscript/smartforms are converted to PDF. When the output is generated, we run rsconn01 to trigger the actual sending of the email).
    Via form TEXT_SYMBOL_REPLACE we can modify the subject of the email that is send to include e.g. the order number. HOWEVER, in the body of the email that is send, we now only have the PDF, but we also would like to add a standard text in the body of the email. Does anyone know how to do this?
    Thanks,
    Alex

    Hi,
    Please refer to the following program and see if it helps you.
    REPORT ZSAMPL_001 .
    INCLUDE ZINCLUDE_01.
    DATA
    DATA : itab LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA : file_name TYPE string.
    data : path like PCFILE-PATH.
    data : extension(5) type c.
    data : name(100) type c.
    SELECTION SCREEN
    PARAMETERS : receiver TYPE somlreci1-receiver lower case.
    PARAMETERS : p_file LIKE rlgrap-filename
    OBLIGATORY.
    AT SELECTION SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CLEAR p_file.
    CALL FUNCTION 'F4_FILENAME'
    IMPORTING
    file_name = p_file.
    START-OF-SELECTION
    START-OF-SELECTION.
    PERFORM ml_customize USING 'Tst' 'Testing'.
    PERFORM ml_addrecp USING receiver 'U'.
    PERFORM upl.
    PERFORM doconv TABLES itab objbin.
    PERFORM ml_prepare USING 'X' extension name.
    PERFORM ml_dosend.
    SUBMIT rsconn01
    WITH mode EQ 'INT'
    AND RETURN.
    FORM
    FORM upl.
    file_name = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = file_name
    filetype = 'BIN'
    TABLES
    data_tab = itab
    EXCEPTIONS
    *file_open_error = 1
    *file_read_error = 2
    *no_batch = 3
    *gui_refuse_filetransfer = 4
    *invalid_type = 5
    *no_authority = 6
    *unknown_error = 7
    *bad_data_format = 8
    *header_not_allowed = 9
    *separator_not_allowed = 10
    *header_too_long = 11
    *unknown_dp_error = 12
    *access_denied = 13
    *dp_out_of_memory = 14
    *disk_full = 15
    *dp_timeout = 16
    *OTHERS = 17.
    path = file_name.
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
    EXPORTING
    complete_filename = path
    CHECK_DOS_FORMAT =
    IMPORTING
    DRIVE =
    EXTENSION = extension
    NAME = name
    NAME_WITH_EXT =
    PATH =
    EXCEPTIONS
    INVALID_DRIVE = 1
    INVALID_EXTENSION = 2
    INVALID_NAME = 3
    INVALID_PATH = 4
    OTHERS = 5
    ENDFORM. "upl
    ***INCLUDE ZINCLUDE_01 .
    10.08.2005 Amit M - Created
    Include For Mail (First Req F16)
    Modification Log
    Data
    tables crmrfcpar.
    DATA: docdata LIKE sodocchgi1,
    objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
    objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
    objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objhex LIKE solix OCCURS 10 WITH HEADER LINE,
    reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    DATA: tab_lines TYPE i,
    doc_size TYPE i,
    att_type LIKE soodk-objtp.
    DATA: listobject LIKE abaplist OCCURS 1 WITH HEADER LINE.
    data v_rfcdest LIKE crmrfcpar-rfcdest.
    FORM
    FORM ml_customize USING objname objdesc.
    Clear Variables
    CLEAR docdata.
    REFRESH objpack.
    CLEAR objpack.
    REFRESH objhead.
    REFRESH objtxt.
    CLEAR objtxt.
    REFRESH objbin.
    CLEAR objbin.
    REFRESH objhex.
    CLEAR objhex.
    REFRESH reclist.
    CLEAR reclist.
    REFRESH listobject.
    CLEAR listobject.
    CLEAR tab_lines.
    CLEAR doc_size.
    CLEAR att_type.
    Set Variables
    docdata-obj_name = objname.
    docdata-obj_descr = objdesc.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addrecp USING preceiver prec_type.
    CLEAR reclist.
    reclist-receiver = preceiver.
    reclist-rec_type = prec_type.
    APPEND reclist.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addtxt USING ptxt.
    CLEAR objtxt.
    objtxt = ptxt.
    APPEND objtxt.
    ENDFORM. "ml_customize
    FORM
    FORM ml_prepare USING bypassmemory whatatt_type whatname.
    IF bypassmemory = ''.
    Fetch List From Memory
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    listobject = listobject
    EXCEPTIONS
    OTHERS = 1.
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'LIST_FROM_MEMORY'.
    ENDIF.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    COMPRESSED_SIZE =
    TABLES
    in = listobject
    out = objbin
    EXCEPTIONS
    OTHERS = 1
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'TABLE_COMPRESS'.
    ENDIF.
    ENDIF.
    Header Data
    Already Done Thru FM
    Main Text
    Already Done Thru FM
    Packing Info For Text Data
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ TABLE objtxt INDEX tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'TXT'.
    APPEND objpack.
    Packing Info Attachment
    att_type = whatatt_type..
    DESCRIBE TABLE objbin LINES tab_lines.
    READ TABLE objbin INDEX tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = att_type.
    objpack-obj_name = 'ATTACHMENT'.
    objpack-obj_descr = whatname.
    APPEND objpack.
    Receiver List
    Already done thru fm
    ENDFORM. "ml_prepare
    FORM
    FORM ml_dosend.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = docdata
    put_in_outbox = 'X'
    commit_work = 'X' "used from rel. 6.10
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    CONTENTS_HEX = objhex
    OBJECT_PARA =
    object_parb =
    receivers = reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8
    IF sy-subrc <> 0.
    MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
    WITH docdata-obj_name.
    ENDIF.
    ENDFORM. "ml_customize
    FORM
    FORM ml_spooltopdf USING whatspoolid.
    DATA : pdf LIKE tline OCCURS 0 WITH HEADER LINE.
    Call Function
    CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = whatspoolid
    TABLES
    pdf = pdf
    EXCEPTIONS
    err_no_otf_spooljob = 1
    OTHERS = 12.
    Convert
    PERFORM doconv TABLES pdf objbin.
    ENDFORM. "ml_spooltopdf
    FORM
    FORM doconv TABLES
    mypdf STRUCTURE tline
    outbin STRUCTURE solisti1.
    Data
    DATA : pos TYPE i.
    DATA : len TYPE i.
    Loop And Put Data
    LOOP AT mypdf.
    pos = 255 - len.
    IF pos > 134. "length of pdf_table
    pos = 134.
    ENDIF.
    outbin+len = mypdf(pos).
    len = len + pos.
    IF len = 255. "length of out (contents_bin)
    APPEND outbin.
    CLEAR: outbin, len.
    IF pos < 134.
    outbin = mypdf+pos.
    len = 134 - pos.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF len > 0.
    APPEND outbin.
    ENDIF.
    ENDFORM. "doconv
    FORM
    FORM ml_saveforbp USING jobname jobcount.
    Data
    *data : yhead like yhrt_bp_head.
    *DATA : ydocdata LIKE yhrt_bp_docdata,
    *yobjtxt LIKE yhrt_bp_objtxt OCCURS 0 WITH HEADER LINE,
    *yreclist LIKE yhrt_bp_reclist OCCURS 0 WITH HEADER LINE.
    *DATA : seqnr TYPE i.
    Head
    *yhead-jobname = jobname.
    *yhead-jobcount = jobcount..
    *MODIFY yhrt_bp_head FROM yhead.
    Doc Data
    *ydocdata-jobname = jobname.
    *ydocdata-jobcount = jobcount.
    *MOVE-CORRESPONDING docdata TO ydocdata.
    *MODIFY yhrt_bp_docdata FROM ydocdata.
    Objtxt
    *seqnr = 0.
    *LOOP AT objtxt.
    *seqnr = seqnr + 1.
    *yobjtxt-jobname = jobname.
    *yobjtxt-jobcount = jobcount.
    *yobjtxt-seqnr = seqnr.
    *MOVE-CORRESPONDING objtxt TO yobjtxt.
    *MODIFY yhrt_bp_objtxt FROM yobjtxt.
    *ENDLOOP.
    RecList
    *seqnr = 0.
    *LOOP AT reclist.
    *seqnr = seqnr + 1.
    *yreclist-jobname = jobname.
    *yreclist-jobcount = jobcount.
    *yreclist-seqnr = seqnr.
    *MOVE-CORRESPONDING reclist TO yreclist.
    *MODIFY yhrt_bp_reclist FROM yreclist.
    *ENDLOOP.
    ENDFORM. "ml_saveforbp
    FORM
    FORM ml_fetchfrombp USING jobname jobcount.
    *CLEAR docdata.
    *REFRESH objtxt.
    *REFRESH reclist.
    *SELECT SINGLE * FROM yhrt_bp_docdata
    *INTO corresponding fields of docdata
    *WHERE jobname = jobname
    *AND jobcount = jobcount.
    *SELECT * FROM yhrt_bp_objtxt
    *INTO corresponding fields of TABLE objtxt
    *WHERE jobname = jobname
    *AND jobcount = jobcount
    *ORDER BY seqnr.
    *SELECT * FROM yhrt_bp_reclist
    *INTO corresponding fields of TABLE reclist
    *WHERE jobname = jobname
    *AND jobcount = jobcount
    *ORDER BY seqnr.
    ENDFORM. "ml_fetchfrombp
    Hope this helps.
    Please reward some points if it helps.
    Regards,
    Amit Mishra

  • How to add a working bar cod in a pdf form?

    I am able to create a bar code using adobe acrobat. It is working perfect in acrobat viewer. But when i open the same form with adobe reader, after a filling corresponding fields, the bar code disappears and a grey box appears. Here i attached an image of the pdf form. One is before i filling the form and one is after filling the form.
    What i need to do? Please help me It's urgent.Please help me.

    http://www.adobe.com/sea/products/server/readerextensions/
    I would recommend:
    1. Check the hardware requirements. (WIndows server, probably). The cost of the server is probably insignificant, even if you have to buy a new one.
    2. Estimate total usage (forms, users per form) over a year and the lifetime of the project.
    3. Contact a sales rep and get a preliminary price quote based on your usage,

  • How to add link to specific page in another PDF

    I'd like to create a link within a PDF to a specific page in a different PDF. As far as I can tell, the Create Link tool will only allow me to open another PDF on page 1. I know you can link to another page in the current PDF, but I need to link to a separate PDF. I have also found info on mechanisms for opening to different pages, but these are for opening using browsers or code.
    So, is it possible to link create a link in a PDF to a specific page in another PDF?
    Thanks for any suggestions.
    - John
    PS - I'm using Adobe 7.0 Professional.

    Try this...
    You can link to a specific page in a specific PDF from a bookmark. You navigate to the new view (page of a PDF) when creating the bookmark.
    When you want to do that with a link (as in selected text in the body of the PDF) you have to do it in two steps. Use any file open to create the link, then edit the properties of the link, select the Action tab, and change the action to Go To A Page View.
    That's how it works in Acrobat 8, but I'm betting it's the same in 7.
    Bear

  • How do I convert a document as a fillable pdf that will allow the end user to save?

    When I convert a Word document into a PDF fillable file, the end user cannot save their file. How to I make the file savable for the end user?

    Hi TinaEllis,
    Is your end user using Reader to fill out the PDF form? If so, the PDF needs to be Reader enabled. Please see Adobe Acrobat X Pro * Enable Reader users to save form data.
    Please let us know if you have additional questions.
    Best,
    Sara

  • How do I enable commenting on a dynamic fillable pdf?

    This question applies to both Acrobat 9 and X. It seems like it's either one or the other - if I enable commenting, it asks that I use the File > Print to print as a flat non-fillable PDF, but if I want to keep the form fillable, then I cannot enable commenting.
    In Acrobat 9, "Advanced > Extend Features" only enables form filling, not commenting. "Comments > Enable Commenting" doesn't seem to do anything other than pop up that window to tell me to print the PDF. I believe the same limitations apply to Acrobat X, in "File > Save As > Reader Extended PDF".
    Is there a way to make my form fillable, but allow the commenting toolbar (sticky notes, highlighting, etc) in Adobe Reader?

    The only way to enable BOTH sets of options is via our LiveCycle Reader Extensions Server product.

  • How do I keep the format in a fillable PDF, specifically the "$" symbol and the 2 decimal places?

    I created a fillable form in Acrobat Pro and when we use it in Adobe Reader on the iPad, the preset format for money doesn't stay when the fields are populated, but if we email the filled form back to the iMac, the format is there and it's fine.  Any suggestions?  Do I need to do something with the original fillable form so that it carries over to the iPad?

    I have been having a similar issue for a client's interactive PDF report that needed the "Show/Hide" feature in InDesign to reveal many acronyms' definitions in a "Pop-up" box when the acronyms were clicked on. Then the "Pop-up" boxes could be clicked on to close themselves using the same "Show/Hide" feature. While I have been going a little crazy the last FEW MONTHS scouring the forums and blogs (and just spent an hour and a half on the phone with Adobe's tech support staff that apparently only support desktops and laptops but have NO CLUE about the delivery of Adobe content via tablets and other mobile devices), I can say that a few things have been helpful - on the expert blogs (but sadly not in any of Adobe's support forums or call centers).
    Buttons in interactive PDFs are NOT supported in iBooks or Acrobat Reader on the iPad.
    Basic buttons, like navigational buttons (go to next or previous page) or submit, DO work in the "PDF Expert" app, which is $9.99 in the App Store.
    So far, no matter which workaraound I have tried from the forums and blogs, the "Show/Hide" buttons still do NOT seem to work properly in even the "PDF Expert" app. (I see a highlight field where my buttons and pop-ups should be but no content in them - no text and no background - only a translucent highlight that shows that somewhere in there it's trying to work. The highlight fields even show and hide the way the buttons and pop-ups are supposed to, which is maddening!)
    The only recommendation I could get from the Adobe tech support folks was to use InDesign and the Digital Publishing Suite (DPS) instead and publish an app through the iTunes Store.
    Unfortunately that is NOT an option for me because my client's report is confidential and being sent to only a small group of less than 100 people.
    I could bypass the iTunes Store and distribute the "Ad Hoc" method of attaching the .ipa file (the app file) to an email list of up to 100 people but my client would have to buy the DPS Enterprise Edition, which costs upwards of $20,000. (Yes, that's $20K in American dollars.)
    There is NO option to distribute "Ad Hoc" with the Single Edition of DPS which comes with the Creative Cloud. I guess a lot of people ask that of the DPS forums and the experts give cranky repies that "No, it is just not possible with any DPS version less than the Enterprise Edition."
    There is no middle ground on this yet but a lot of people seem to be asking for it. What's up with that, Adobe? No support for the small to mid-sized businesses for simple interactive brochures and reports that they don't want to release to the world, just to a select few?
    The only solution I have found even slightly feasible is to create buttons that control "Multi-State Objects" (or MSOs) to behave similarly to the "Show/Hide" buttons and create a DPS .folio file from the InDesign doc.
    I still can't recommend that my client pays $20,000 to be able to distribute his interactive quarterly report but I think I found a way around a small distribution.
    You can share a .folio file with people through an email from the "Folio Builder" panel in InDesign. (See this help file: http://helpx.adobe.com/digital-publishing-suite/help/create-folios.html and scroll down to the "Share Folios" section.)
    Apparently, this link is not permanent, but I haven't found an answer anywhere as to when it will time out. I'm thinking at least 3 months will be enough for my client for the time being until the next quarterly report comes out. Hopefully by then Adobe will have come up with a cost-effective solution for the small to medium-sized business that wants to publish interactive documents for the iPad or the PDF apps on the iPad will become mature enough to handle these slightly more robust interactive features.
    I hope this was helpful to some of you trying to do something similar. If anyone has an elegant solution for the nearly-working interactive PDF on the iPad, please let me know. Thanks in advance!

  • Adding Late Fee to BP

    Hi
    I nned to be ableto add Late fee on past due invoices to the BP Balance. Right now in the dunning run it only shows on the report but does not add to BP balance.
    Has anyone found a solutin for that
    Thanks

    By design, SAP will include finance charges on dunning letters if you use them. It DOES not automatically add the amount to the business partner.
    Most customers like this method, as normally the process is you invoice the finance charges and then end up crediting them anyway. With the current process you incude the amount on the dunning letter and if the customer pays then you add to the BP account using a journ al entry, invoice or other means.

  • Quick Tip: How to handle responses for fillable PDF forms | Acrobat X Tips & Tricks | Adobe TV

    Learn how to view and filter responses to your fillable PDF form and how to send data from your PDF form to an Excel spreadsheet using Acrobat X Std. or Pro. You can also check for responses on Acrobat.com.
    http://adobe.ly/GJAFlC

    I cannot believe the quality of the Acrobat X tutorials. Why can’t they be like the ones for CS.  Some balloon text boxes flash by so fast they cannot be read, timing is also an issue for other balloons. 
    Disappointed, If you like I can make better ones for you

Maybe you are looking for