Form suddenly returning xml file via email instead of pdf

I've got a form online that has been working the way I wanted for at least several months which is to send a completed pdf form (job application)as an attachment via email. Now I just received an email with an xml file instead of the pdf file. When I go to the website and test the online form it sends it as a pdf. So what could have caused one specific form to come back as an xml file? Could it be the type of browser, lack of Reader? Thanks for any assistance.

I know I set up the form with the extended reader rights, I would guess that both reader and acrobat were being utilized for this form. It seems strange to me that out of the blue the form sent in this manner if the permissions haven't been modified since it was setup nearly 6 months ago. Thanks for the feedback!
JACKSON

Similar Messages

  • How do i send a file via email so it opens in booklet form to other people

    how do i send a file via email so it opens in booklet form to other people

    You would appear to be doing the right method as in this work through:http://support.en.belgacom.be/app/staticpages/devices/en/#/nokia/c3-00/email/sending-an-email-messag...
    Is there similar problem with Email without attachment?
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Creation of a shipping notification for a PO in EBP from a XML file via XI.

    Hi everybody.
    We are trying to create a shipping notification for a Purchase Order in Enterprise Buyer from a XML file via XI.
    For to do it, we are using ‘DespatchedDeliveryNotification_In’ message interface (transaction SPROXY).
    But when we execute it, the system show us next message:
    "An error occured within an XI interface: An exception with the type CX_GDT_CONVERSION occurred, but was neither handled locally, nor declared in a RAISING clause Programm: SAPLBBP_BD_MAPPING_SAPXML1; Include: LBBP_BD_MAPPING_SAPXML1F5B; Line: 4"
    No more information is available.
    Is there any additional transaction to see more information about the error message?
    Is there any documentation about this XML file, mandatory fields, examples…?
    We populated some fields in our XML file, but we do not know if the problem is with mandatory fields, data, program error…
    I will thank for any information
    Thanks in advance.
    Raúl Moncada.

    Raúl,
    This is because of the inbound UOM.
    The include LBBP_BD_MAPPING_SAPXML1F5B is in charge of mapping the item Unit Of Mesure (UOM) sent in the ASN XML file (it should be an ISO code).
    You can test FM UNIT_OF_MEASURE_ISO_TO_SAP with this inbound ISO code.
    PS: you should create an OSS message so the mapping sends back an error message instead of generating an uncatched exception (that generates a dump).
    Rgds
    Christophe
    PS: please reward points for helpfull answers

  • Problem in attaching a xml file in Email Notification

    Hi,
    I am new to BPEL. I am using 10.1.3.4 Jdev. Facing a problem in attaching a xml file in Email Notification process. I do not get any email when ever the attachment is a xml. Whereas when the attachment is a pdf, i get the pdf in the mail. I have put the mime type as text/xml. Used ora:doc() to read the xml. Dont know what i am missing. Please help me out. Thanks.
    Edited by: friendsforever on Oct 6, 2010 1:05 AM

    actually i want that when a user open my website register form then he must attached their resume in it
    so i want to know how can i make a field of attaching.
    please reply
    I am waiting for your reply

  • Keeping contact with controlling applet while u/l XML file via servlet

    Hello everybody,
    if I am thinking too complicated, please send me other suggestions. Here's the situation:
    I already have a working applet for a metadata application, that is sending the contents of the client's textfields to a remote database via servlet communication. Now I want to implement the following:
    -The users have some attribute data in form of an XML file
    -I want them to upload this file to the server (I already have that functionality using the fileUpload libraries of Apache Commons) by calling the servlet from a pop-up html page (is there any other possibility to do the communication, i.e. getting files from the file system?)
    -the XML file should be parsed on the server and the content should be sent back to the calling applet for previewing reasons.
    -when the user gives his/her O.K. the data should be transferred to the database.
    Now there are some obstacles to overcome: When I upload the XML file to the server, I loose "contact" with the applet, i.e. the file is not connected with the applet code in any way. This is not a problem, when there is only one user at the time, but with many users loading up their data at the same time, things could get tricky.
    What I thought was to copy the XML file to a temp directory with a unique name, the name of which would be transferred back to the applet by another servlet that is called when the (upload)pop-up window closes. The name of the temp directory could be the ID of the applet thread (is there such an ID, if yes, how can it be retrieved?)
    Any suggestions (or just shaking heads concerning my complicated construction ;-) )
    Cheers and many thanks in advance
    Jan

    You may be able to read a file from the file system with the applet, but it may require you to sign the applet. If you can, then use an HttpURLConnection to the servlet and send the file that way.
    On the server side, you could create a session object (wether you actually need a session or not), and use the session's id as the key id for the directory name for the uploaded file. Session IDs are unique per client, and if the client handles cookies, then the same session will be used from one request to the next.
      session = request.getSession();
      String sessionID = session.getId();The response from the servlet would be a link to the server-side file. If you are using the Applet to send the request, you could get the response and automatically view the new file. Otherwise, you could send a page to the popup window saying: "Click This Link To See Your File" type of thing.

  • Send spool list ceated by Job (SM36) as pdf-file via email

    We are running the report RM06EFLB (Transaktion ME84 - "Create Releases") in the background.
    The Job is creating a spool list with 17 pages.
    I want to send this 17 pages (in a readable form) to a number of persons.
    This did I try so far:
    - Distribution list with Recipient type "via Internet" as Spool list recipients in the Job. (Tried different formats for ABAP List in Transaction SCOT)
    => Email is send to recipients, attachment is readable depending on format.
         Problem: attachment is not complete, it contains only about 15 pages (985 rows).
    - Distribution list with Recipient type "Internal User - SAP-Office" as Spool list recipients in the Job.
    => Document is sent to Business Workplace
         Problem:  attachment is not complete, it contains only about 15 pages
    Any ideas how to get the complete spool list?
    Is there mayby a report around  that is sending a spool list as pdf-file via email to a number of recipients?
    (Would like to maintain this Report as an additional step in the job. The spool-number should be selected from the previous step.)
    Thank you for your help.
    Jens

    Oh sorry - here is the coding which is used in that program:
    First use function module  'CONVERT_ABAPSPOOLJOB_2_PDF' to convert the spool entry into pdf.
    Loop at output table PDF and concatenate all lines into a string. Convert string to xstring.
    Then call mail class:
    DATA: lv_pdf_x TYPE xstring,
            lv_subject TYPE string,
            lv_doc_desc TYPE so_obj_des,
            lv_mail_body TYPE soli_tab.
      DATA: ls_atta TYPE rcf_s_att4mail_hex,
            lt_atta TYPE rcf_t_att4mail_hex.
    * -- Fill parameter
      lv_subject = 'Requested Report'."#EC NOTEXT
      lv_doc_desc = 'Report XXL'."#EC NOTEXT
    *  lv_mail_body = ?
      ls_atta-name = lv_doc_desc.
      ls_atta-extension = 'PDF'.
      ls_atta-content = p_pdf_x. <- This is your xstring
      APPEND ls_atta TO lt_atta.
      TRY.
          CALL METHOD cl_hrrcf_services_mail=>send_web_mail
            EXPORTING
              p_subject              = lv_subject
              p_receiver             = p_receiver->email_address
              pt_atta_hex            = lt_atta
              p_sender               = p_sender->email_address
              p_body_c               = lv_mail_body.
        CATCH cx_hrrcf.
      ENDTRY.
    I hope that you have the above mentioned class in your system but it should work with other email functions as well.
    Regards
    Nicola

  • Sending .fdf file via email + exiting full screen mode

    Hi everyone,
    I have the following code attached to a button on a pdf form that sends the form data in a .fdf file via email:
    var f = this.getField("useraddress");
    this.mailForm(true, f.value, "", "", "RSVP");
    Apparently the following line gets the user address from a field:
    var f = this.getField("useraddress");
    I created a field called "useraddress" and set it to be hidden but I don't know how to have my email address continually popuate this field so that it can be used in the above code to automatically send the .fdf file to my address.
    Would someone be able to tell me how I'd do this?
    Also just one other question if that's okay?
    The pdf is set to open up in full screen mode automatically. I want to add a button that will take the viewer out of full screen mode but I'm not sure what the code would be to do this. Can someone tell me how to do this also?
    Thanks in advance for any help.

    Yeah I probably should - I'm not that familiar with javascript so I didn't know I could. Have worked out the correct way now so thanks.
    I also noticed that when the .fdf file is attached, Acrobat names the file with a generic file name, eg. ACR5037112.fdf - is there a way to automatically name the file with the contents of one of the fields in the form?
    Also, do you have an idea of what the code would be to exit out of fullscreen mode when a button is clicked?

  • How do I send pictures from iphoto to a group via email instead of to just one individual? I can't type in more than one name or send the pictures to a group.

    How do I send pictures from iphoto to a group via email instead of to just one individual? I can't type in more than one name or send the pictures to a group.

    I had a similar problem in that my wife's iphone 5 could not send pics with imessage.  Had to set the settings to default to SMS or whatever.  After laboring many hours on the web I coincidentally was on the phone with the internet people to question my internet speed.  They changed the router channel, which is something that I am capable of doing myself.  After that, the pics go over imessage.  My own Iphone didn't have the problem.  We are both latest IOS 7.0.6.

  • Problems with creating XML file via Call Transformation

    Hi,
    When creating a XML file via Call transformation an extra character '#'is placed at the beginning of the file.
    This problems occurs since the upgrade to ECC6.0 and the Unicode conversion.
    When opening the XML file the following error message appears:
    Invalid at the top level of the document. Error processing resource 'file ....
    Has anybody an idea why this extra character is placed at the beginning of the file. Has it something to do with the unicode conversion and how can we solve the problem?
    thanks for your help
    kind regards,
    Maarten van IJzendoorn

    Hello Marteen,
    Can you please share the solution to this issue and let me know.
    Our Issue:
    1) We are executing a report which generates an XML file on FTP.
    2) The FTP file is always in Error when executed thorugh JAPANESE login but not thorugh EN login.
    3) The XML files generated have always an extra character in the end ( which can be space,#,$%^&, etc.) when this extra character is removed from XML file with opening it in NOTEPAD then XML works OK in JA login as well.
    4) In the PROGRAM everything has been checked with respect to OPEN dataset statement , XML ports UNICODE etc.
    5) THIS issue has been reported only after upgrading to ECC 6.0 from 4.6C.( in older version it works fine).
    Various OPEN dataset statments are :
    OPEN DATASET path_fil
    FOR OUTPUT
    Thanks to reply.

  • Non UTF-8 xml file by Email channel

    Hi there,
    I am sending an US-ASCII xml file content to B2B receiver. b2b does not identify the doc and gives doc identification error. The issue is the encoding is not mentioned in the xml.
    It works if i send it as UTF-8 or specify the encoding in the xml file (<?xml version="1.0" encoding="US-ASCII" ?>)
    My que is:
    Is it possible for b2b to read an us-ascii xml file over email channel, and identify the associated custom document when the encoding is not configured in the xml file. ?
    Is changing the tip.properties as racle.tip.adapter.b2b.encoding = Characterset Name will work? Also wondering where is tip.prop file in 11g?
    Can you help me with a solution for this?
    Thanks
    Ganesh
    Edited by: Ganesh on Oct 15, 2010 1:54 PM

    Hello Ganesh,
    Is it possible for b2b to read an us-ascii xml file over email channel, and identify the associated custom document when the encoding is not configured in the xml file. ?If file is UTF-8 encoded then without encoding configuration in XML b2b should be able to accept and identify the document.
    Is changing the tip.properties as oracle.tip.adapter.b2b.encoding = Characterset Name will work? Also wondering where is tip.prop file in 11g?tip.properties file is used in Oracle B2B 10g. In 11g, there is no such file. Few of the properties are part of the product in 11g and rest of them can be set using B2B system parameters in Administration --> Configuration tab. Few properties can also be set using fusion middleware control. Please refer -
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/bb_config.htm#CEGEADFJ
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/app_isags.htm#CIHDFDIC
    Regards,
    Anuj

  • How do i share a numbers file via email?

    I just upgraded os x to version 10.9.4 and now cant share a numbers file via email.  also when I try to save a file "save as" is no longer an option?  Whats up?  after I upgraded the system software I was prompted to upgrade the apps which I did. 

    Hold down the OPTION key and the Save As selection will appear in the File menu.
    To send any file as an attachment in Mail simply drag the file into the message composition window. I find it's often best to zip the file first - select the file then CTRL- or RIGHT-click and select Compress "filename" from the context menu. Then drag the archived file into the message composition window.

  • Corrupt PDF and other files via eMail?

    Hi Everyone
    Having strange going on with the printers of late.
    I've used the exact same PDF settings for about 7 years and never have an issue.
    I sent a PDF to the printers last week and the printed product had our logo printed incorrectly on it (there wasn't any time for a colour proof).
    What happened was that the logo is built in CMYK, but the logo only printed 100% black areas of the logo - basically the backing of the logo is in black and that's all that printed.
    The printers couldn't explain it and it's the same logo that's been used with other printers around that time and since then.
    All is fine with the logo.
    Today I sent a cover to the printers and there's an advert on the right hand side of the document that has corrupted. I opened the PDF I sent and all is fine.
    The printer emailed me back what I sent to him and that seems to be corrupt - I can't explain it.
    What I have done is sent him a link to download the file from my Dropbox - which bypasses the file hitting the email altogether.
    When they got the file it was perfectly fine and printed just fine.
    As a test I sent the file several friends of mine who all opened it on various machines, and printed it successfully on various devices.
    The only common denominator here is that when I send the printer the file via Email it gets corrupted (nobody else I sent it to experienced any corruption).
    What exactly can an email system/firewall/anti-virus or other variable possibly affect a PDF?
    As a sidenote: I packaged the InDesign file and zipped it and sent that too - and that too got corrupted and the printers could not open it.

    Email notoriously damages PDF files, so I'd recommend using a Dropbox or similar approach as standard.
    The causes of corruption can be very hard to track down and can include subtle incompatibilities between email programs, size limits, failure of email programs to treat PDFs as binary, and automatic processing of email, such as corporate signatures or antispam.

  • I have tried, several times to share a numbers file via email but no email dialogue box shows when I select share

    I have tried, several times to share a numbers file via email but no email dialogue box shows when I select share

    Are we talking about the new Numbers, V3, or the old Numbers?
    Jerry

  • How to send .CSV file via email in Oracle10g/11g PL/SQL

    Hi Guys,
    Can any one let me know or suggest me how to send .csv file via email attachment using Oracle PL/SQL.
    Thanks in advance!
    Regards,
    LRK

    A FAQ. Use UTL_MAIL (if attachment is 32KB less). Else use UTL_SMTP. Search this forum. Search using google.

  • Nokia N8 - Sending large video files via email pro...

    Hello, When I try to send a pretty large video file via email on my N8 I get the following error "Memory low. Delete or move some data from C: Phone memory." However my videos are stored on my memory card which has plenty of space so I am confused and not sure what to do
    I hope someone can help me on this, any help is greatly appreciated.
    Thank You.

     My best guess would be that the N8 temporarily caches the video to C: memory when sending via Email and therefore the file size exceeds the available free memory on C:.
     I'm not sure the email server will allow the sending of files larger than a certain limit anyway, so you may be out of luck if you want to send any videos via email.
    Ray

Maybe you are looking for