SMARTFORMS and Microsoft Junk Email

When we create a smartform and call function module SO_NEW_DOCUMENT_ATT_SEND_API1 to send the form via email we are running into an issue where some end users recieve the email in their Junk Inbox.  This does not happen with all users.  It's fairly random.  Except it only happens with SmartForms and not SapScript. 
Has anyone seen this before?  Where the outlook SmartScreen Engine for Microsoft scores the email high enough that it is considered SPAM?

Hi,
Please check the Acrobat version. Your smartform will be converting in to OTF format and displayed in Acrobat.
Check the versions of Acrobat.
Message was edited by: Lanka Murthy

Similar Messages

  • TS3899 iPhone 6   Junk box and blocking junk email from the inbox?

    iPhone 6 when I flag my email as junk it will not move into the junk box, instead it stays in the inbox. Also is there any way of blocking junk email from the inbox?

    What if you are connected to another wifi network assuming your are using that when in the office.

  • How to send Smartform and Script in email?

    hi myself Devendra,
    i ve some queries....regarding the Script and Smartform.
    1- Can any body tell me how to send Script as well as Smartform layout in mail output.
    I ve created script and smartform for the PO confirmation.
    2- If i want to send both script and smartform layout of the PO, whenever created,automatically to the Vendor,then what i ve to do.

    Hey,
    REPORT zemail_gm.
    *********Variable Declarations *****************************
    DATA: gv_form_name TYPE rs38l_fnam, " Used to store the function module generated by Smartform
    gv_bin_filesize TYPE i, " Store the file size
    gv_pos TYPE i,
    gv_len TYPE i,
    gv_tab_lines TYPE i.
    ********Constants *******************************************
    Data : gc_text(11) type c value 'Form Output',
    gc_tst(3) type c value 'TST',
    gc_testing(7) type c value 'Testing'.
    *********Work Area Declarations *****************************
    DATA: gs_docdata TYPE sodocchgi1, " Data of an object which can be changed
    gs_ctrlop TYPE ssfctrlop, " Smart Forms: Control structure
    gs_outopt TYPE ssfcompop, " SAP Smart Forms: Smart Composer (transfer) options
    gs_otfdata TYPE ssfcrescl, " Smart Forms: Return value at end of form printing
    gs_reclist TYPE somlreci1, " SAPoffice: Structure of the API Recipient List
    gs_pdf_tab TYPE tline, " Workarea for SAP Script Text Lines
    gs_objbin TYPE solisti1, " SAPoffice: Single List with Column Length 255
    gs_objpack TYPE sopcklsti1. " SAPoffice: Description of Imported Object Components
    *********Internal tables Declarations *****************************
    DATA: gt_reclist TYPE TABLE OF somlreci1, " SAPoffice: Structure of the API Recipient List
    gt_pdf_tab TYPE TABLE OF tline, " SAPscript: Text Lines
    gt_otf TYPE TABLE OF itcoo, " OTF Structure
    gt_objbin TYPE TABLE OF solisti1, " SAPoffice: Single List with Column Length 255
    gt_objpack TYPE TABLE OF sopcklsti1. " SAPoffice: Description of Imported Object Components
    CLEAR : gv_form_name,
    gs_ctrlop,
    gs_outopt,
    gs_otfdata,
    gv_bin_filesize,
    gv_pos,
    gv_len,
    gv_tab_lines.
    START-OF-SELECTION.
    • Generate Function Module name
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = 'ZPDF_G'
    IMPORTING
    fm_name = gv_form_name
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    • Assigning values to Form Control Structure and Form Composer
    gs_ctrlop-getotf = 'X'.
    gs_ctrlop-no_dialog = 'X'.
    gs_outopt-tdnoprev = 'X'.
    • Getting the OTFDATA
    CALL FUNCTION gv_form_name
    EXPORTING
    control_parameters = gs_ctrlop
    output_options = gs_outopt
    user_settings = 'X'
    IMPORTING
    job_output_info = gs_otfdata
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    • Assigning the OTFDATA to OTF Structure table
    CLEAR gt_otf.
    gt_otf] = gs_otfdata-otfdata[.
    • Convert the OTF DATA to SAP Script Text lines
    CLEAR gt_pdf_tab.
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 132
    IMPORTING
    bin_filesize = gv_bin_filesize
    TABLES
    otf = gt_otf
    lines = gt_pdf_tab
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    OTHERS = 4.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    • Assigning the Description of the object sent in the mail
    CLEAR gs_docdata.
    gs_docdata-obj_name = gc_tst.
    gs_docdata-obj_descr = gc_testing.
    • Assigning the email id to Structure of the API Recipient List table
    CLEAR : gt_reclist, gs_reclist.
    gs_reclist-receiver = '<give the mail id of the receiver'.
    gs_reclist-rec_type = 'U'.
    APPEND gs_reclist TO gt_reclist.
    • Passing the SAP Script text lines to SAPoffice: Single List with Column Length 255 table
    CLEAR : gs_objbin, gs_pdf_tab.
    LOOP AT gt_pdf_tab INTO gs_pdf_tab.
    gv_pos = 255 - gv_len.
    IF gv_pos > 134. "length of pdf_table
    gv_pos = 134.
    ENDIF.
    gs_objbin+gv_len = gs_pdf_tab(gv_pos).
    gv_len = gv_len + gv_pos.
    IF gv_len = 255. "length of out (contents_bin)
    APPEND gs_objbin TO gt_objbin.
    CLEAR: gs_objbin, gv_len.
    IF gv_pos < 134.
    gs_objbin = gs_pdf_tab+gv_pos.
    gv_len = 134 - gv_pos.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF gv_len > 0.
    APPEND gs_objbin TO gt_objbin.
    ENDIF.
    • Filling the details in SAPoffice: Description of Imported Object Components table
    DESCRIBE TABLE gt_objbin LINES gv_tab_lines.
    CLEAR gs_objbin.
    READ TABLE gt_objbin INTO gs_objbin INDEX gv_tab_lines.
    IF sy-subrc = 0.
    gs_objpack-doc_size = ( gv_tab_lines - 1 ) * 255 + STRLEN( gs_objbin ).
    gs_objpack-transf_bin = 'X'.
    gs_objpack-head_start = 1.
    gs_objpack-head_num = 0.
    gs_objpack-body_start = 1.
    gs_objpack-body_num = gv_tab_lines.
    gs_objpack-doc_type = 'PDF'.
    gs_objpack-obj_name = 'ATTACHMENT'.
    gs_objpack-obj_descr = 'test'.
    APPEND gs_objpack TO gt_objpack.
    ENDIF.
    • Sending the Form Output in the PDF format to email
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = gs_docdata
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = gt_objpack
    contents_bin = gt_objbin
    receivers = gt_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 sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    WRITE 'Sent Successfully'.
    ENDIF.
    SUBMIT rsconn01
    WITH mode EQ 'INT'
    AND RETURN.
    END-OF-SELECTION.Regards,
    Midhun Abraham
    Edited by: Midhun Abraham on Oct 12, 2008 4:06 AM

  • Email Format of smartform and sapscript?

    How we can attached the smartforms and sapscript i email and what should be the format?

    Hi Anil,
    Check below thread.
    Re: How to email a smartform?
    Reward points if useful.
    Regards,
    Atish

  • I have not got a verification email for my password for the apple id that i created over two weeks ago.  i have tried resetting my password and resending the email but nothing comes though and i can not buy anything on itunes.

    i have an apple account, but i created a new one because none of the passwords i use worked on it (i hadnt been on in a while)
    so i set up another account with the same email and a new password on January 27.  i have chevcked my emails every day since then and my junk email folder and there is nothing there to help me!
    i cant log on to or use my itunes at all because it tells me that i havent verified my password and every time i click resend verification email and nothing comes to my email.
    i dont know what to do now,  i have just tried to reset my password online and it said that it worked, but when i go on itunes there is still nothing working...
    any help would be appreciated!

    The very similar situation with mine:
    https://discussions.apple.com/thread/3492726
    I can't find any solution. I don't even remember when I changed my apple ID! So does that means I cant recovered my purchased apps from my " old" account? I am totally innocent, for I did not intend to "Change" my account name

  • I am using outlook 2013 for my emails.  My junk emails get automatically deleted.  I have had several people say they sent me emails and i can not find them.  They are not in any of my inboxs. Can anyone please help

    I am using outlook 2013 for my emails.  My junk emails are gettting automatically deleted.  Problem is i am getting sent emails from schools and others that i
    am just not receving.  It;s not in any of my inboxe.  I am losing alot of important info and don't know why.  Please help

    If you suspect they are being marked as junk and deleted, turn off the auto-delete. Being that Office is a Microsoft product, you should ask them how to do that: http://www.microsoft.com/mac.

  • Microsoft Junk E-mail Reporting Add-on bouncing Emails after EOP migration

    Our organization recently migrated from FOPE to Exchange Online Protection. Users who have the
    Microsoft Junk E-mail Reporting Add-on installed on their Outlook desktop client now receive the following email message when reporting Junk Mail:
    Delivery is delayed to these recipients or groups:
    [email protected]
    Subject: Delayed Mail (still being retried)
    This message hasn't been delivered yet. Delivery will continue to be attempted.
    Is there a fix for this issue? Is there an alternate Add-on or should we uninstall the existing one from our Outlook clients?
    Thanks,
    Jason.

    Hi,
    Sometimes some add-ins may take more time to load in Outlook, it depends on the performance of your machine and if you have multiple add-ins enabled, please consider disable some if you don't use them a lot.
    Since you haven't mentioned which version of Outlook you are using, please note for Outlook 2013 users, we can try disabling the hardware graphics acceleration to check if this can help improve the performance:
    Go to FILE tab -> Options -> Advanced
    -> Display -> Uncheck Disable hardware graphics acceleration
    -> OK.
    Let me know if you have any other question.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • I have updated to ios 7 and Microsoft outlook web access for work emails no longer works nor my remote access can you help

    I have updated to ios 7 and Microsoft outlook web access for work emails no longer works nor my remote access can you help

    This happened to me as well. I read somewhere else that resetting the network settings (General, Reset, Reset Network Settings) would help and it partially did. I get half (the folders) of the Web Access screen rather than a blank screen. I tried tihs a few more times and got the right half (the messages) on occasion but never the whole web page.

  • I am using a verizon email address and microsoft office for mac outlook program to manage my emails.   Does any one know if  the apple outlook version offers the ability to save emails as a pdf so that I can save it to my hard drive and how to access?

    I am using a verizon email address and microsoft office for mac outlook program to manage my emails.   Does any one know if  the apple outlook version offers the ability to save emails as a pdf so that I can save it to my hard drive and how to access?

    This is the Microsoft forum site that parallels what Apple has:
    Office for Mac forums
    It's not uncommon for MS employees who work with the Mac side of the business to help there. All in all a useful resource for Office:Mac

  • Windows 7 and Microsoft Office installed a series of updates and now I cannot open hyperlinks in emails.

    After my system rebooted and I opened my emails in outlook, when I clicked on a hyperlink, it brought me no where. I did not get an error message. I went back in and set Firefox to my default program with all extensions and protocols for Firefox. However, when I click a hyperlink in an email, it still does not open in Firefox. What little trick has IE and Microsoft done now to change my system. Until I updated some files today, hyperlinks in emails opened in Firefox. Please Help. I hate IE!

    Windows does not know that it should start Firefox to open those links.
    Try this first. Start IE (yes I know) and set it as the default browser. After
    close IE. Wait a few moments, then start Firefox. Then set FF as your default.

  • I ordered Office 2011 with my MBA, but only the trial version came installed - and no product key was ever emailed to me or included in the shipment. Three calls each to Apple and Microsoft have not solved this.

    I ordered Microsoft Office 2011 with my Macbook Air, but only the trial version came installed - and no product key for the full version was ever emailed to me or included in the shipment. Three calls each to Apple and Microsoft have not solved this and I am at wit's end. Each company blames it on the other - I don't care whose fault it is, I just want the product key so I can use Microsoft Office!  Please help.

    You should have received a DVD in the box (with the MBA). 
    See: https://discussions.apple.com/message/12805337#12805337
    Call AppleCare (they need to send you a DVD, which has the Product Key printed on the sleeve).

  • HT204150 I am currently switching microsoft exchange emails and want to keep my contacts

    I am currently switching microsoft exchange emails and want to keep the contacts associated with the old email address. It seems though that they are backed up to my former employer's server/cloud. How can I keep the contacts on my phone but switch emails?

    Choose Consolidate Library from the Advanced menu or the Library section of the File menu in iTunes, find the iTunes library location from the iTunes preferences, and move the song files inside to the new computer.
    (35991)

  • I have Windows XP and microsoft outlook with FIrefox as my browser; when I try to open a link in an email I get the following message "This operation has been canceled due to restrictions in effect on this computer. Please contact your system administrato

    I have Windows XP and microsoft outlook with Firefox as my browser; when I try to open a link in an email I get the following message "This operation has been canceled due to restrictions in effect on this computer. Please contact your system administrator"

    Tried that. Unfortunately it did not work.

  • I received a "junk" email that I attempted to dispose of by sending it to "trash" and then deleting it from "trash". At that point, instead of deleting, it simply rotates back into "junk"--and over and over. How do I delete this unwanted email?

    I received a  "junk" email and attempted to dispose of it by sending it to "trash" and the deleting it from the trash file (the way I always do). This particular spam, however, instead simply rotates back into the "junk" file-- ad infinatum. How do I eliminate tis unwanted pest?

    Try logging on to your email via the web browser (assuming the email account is gmail, yahoo, etc) and deleting the email from there. It could just be that the email program on the iPad is not properly synching with the web server so the email keeps re-downloading.

  • I want replace my desktop with a iPad to do emails and Microsoft office work. Can this be effectively done? What's the downside if any?

    I want replace my desktop with a iPad to do emails and Microsoft office work. Can this be effectively done? What's the downside if any?

    I'll go down your list one by one.
    1. Access mail - which I know that the iPad can do.
    Enough said.
    2. Save an excel or word or ppt of PDF attachment for review.
    You can view these types of documents natively on the iPad as Tgara has mentioned.
    3. Open an review and maybe change a excel or word file.
    There are many apps that allow this.  I personally prefer Apples iWork programs, Pages, Numbers, Keynote.  They tightly integrate with iCloud.
    4. Resave such above files.
    With Pages, Number, Keynote you can save/resave files in iCloud and locally.  Also you could use dropbox to save your files on dropbox and provide a way for you to share a folder with coworkers/family and they can add/view/review files from there and you can see the changes on your device.
    5. Reply to a mail attaching a file.
    This is possible in many ways.  From dropbox, or another app you can email files with the share button.
    6. Be able to rename files and store them in specific folders.
    This goes back to dropbox/iCloud.  iOS doesn't really have a traditional file system.  If you save a PDF it isn't saved anywhere you can just open it.  You would have to open an app that supports view PDFs and select the PDF you wish to view.  The same goes for documents, spreadsheets and etc.
    Hopefully this helps answer your questions.

Maybe you are looking for

  • Open, save and then fonts are missing

    I am receiving InDesign 5.5 files from clients. I can open them, make changes, do a save-as and close. When I immediately re-open the file, I get an error that most of the fonts are missing. I am using Linotype Font Explorer X, v 1.2.3 and I understa

  • Excel 2013 App Store group

    The App Store group is disable in My Excel 2013 application but is enabled in Word 2013. How can I fix this problem? I have Offcie 2013 Plus and have installed SP 1 Jim

  • Still Image Slideshow Looks Awful... Export Setting?

    Hi everyone, I'm trying to export a video that's basically 1 minute of high res images (taken on a Nikon D800 & D90) that fade from one to the next every 3 seconds, and a piece of music plays behind it. I don't care what the final file size ends up b

  • Single form access

    Hi Guyz, I have created my own tool bar and menu bar and have display filed DIS_FLAG Y/N when user login DIS_FLAG display YES/NO i use the below code on WNFI :CAN_BLK.DIS_FLAG:='Y'; :GLOBAL.FLAG:=:CAN_BLK.DIS_FLAG;and in menu item on employee form i

  • SMS - Character Count

    The option is enabled ... But it's not working, It's not supposed to show the number of characters below the send button ?