Information Broadcaster- Fales to send ZIP files reports.

Hi everybody,
I schedualed a total of 60 daily sales reports to be sent as ZIP files to varius addresses. the problem is that every day a few of them (1-8) are received but without the ZIP file report and attached to the mail is a txt file with the following message:
"Symantec Mail Security replaced ZSD_SALES_WS_DR_CAP_TM_VERSION.ZIP with this text message.  The original file was unscannable and was quarantined.
ID:NODE02::SYQ7d88c154   "
i don't what is the reason does anybody have a clue?!?!?

I'm not suggesting there is anything wrong with the files. Symantec is examing the files and based on it's various examinations of the file, is indicating it can not/will not pass them along.  Again - this seems like an issue to pursue with whoever administers your email scanning software.  Don't believe this is a BW issue.
Perhaps they can configure Symantec not to scan e-mail attachments from the BW server

Similar Messages

  • How to send zip file as attachment through email

    Hi All,
    I am having a requirement that I need to download the internal table data into .txt file and I need to zip the text file. And this zip files needs to send to the customer through email.
    I am able download the data into .txt and able to zip the file. But I am not able send the .zip file through email.
    I know that we can send .xls, .txt, .csv and also .ppt, .doc file types we can send as an attachement through abap program. But I don't know about .zip files. Is there any possibilty to send .zip file as an attachment thorugh email.
    Can any one help me how to send a .zip file thorugh email as an attachment. 
    Regards,
    vinod

    hi Vinod,
    Can you please tell me how you have zipped the file.
    I am having a text file in application server. I need to zip that file. Then the middleware moves it to Legacy system.
    I used the following code. With this I am having the data in Binary format which my midleware cannot understand.
    What I need on the whole is just to reduce the size of the file.
    form ZIP_FILE .
    DATA: lt_data TYPE TABLE OF x255,
          lt_textdata TYPE TABLE OF x255.
    DATA: ls_data LIKE LINE OF lt_data.
    DATA: lv_dsn1(100) VALUE '/ECD/120/GIS/FTP/IB/DNBPAYDEX.TXT'.
    DATA: lv_dsn3(100) VALUE '/ECD/120/GIS/FTP/IB/DNBPAYDEXZIP.zip'.
    *DATA: lv_dsn3(100) VALUE '/interfaces/SM5/test.zip'. " Contains sample1.xls and sample2.xls
    DATA: lv_file_length TYPE i.
    DATA: lv_content TYPE xstring.
    DATA: lo_zip TYPE REF TO cl_abap_zip.
    CREATE OBJECT lo_zip.
    Read the data as a string
    clear lv_content .
    OPEN DATASET lv_dsn1 FOR INPUT IN BINARY MODE.
    READ DATASET lv_dsn1 INTO lv_content .
    CLOSE DATASET lv_dsn1.
    lo_zip->add( name = 'sample.TXT' content = lv_content ).
    lv_content = lo_zip->save( ).
    *clear lv_content .
    Conver the xstring content to binary
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
    buffer = lv_content
    IMPORTING
    output_length = lv_file_length
    TABLES
    binary_tab = lt_data.
    OPEN DATASET lv_dsn3 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT lt_textdata INTO ls_data.
    TRANSFER ls_data TO lv_dsn3.
    ENDLOOP.
    CLOSE DATASET lv_dsn3.
    IF sy-subrc EQ '0'.
        MESSAGE s999(zfi_ap_gl) WITH text-t10.
      ENDIF.
    Can you please help.
    Thanks Aravind

  • How to send Zip files as attachments !! Very urgent, Please help!

    I am sending PDF files as attachments using java mail (it works fine). But now my requirement is to zip the PDFs and send them as attachments instead of actual PDF's. But i don't know how to achieve that. does java mail API support zip attachment facilities? I have looked in activation API also, but i couldn't find anything helpful. even i searched the forums, but no clue. Please, anybody help me about this, it's very urgent.
    thanks
    sri

    Check the first "if". If I specify an attachment, then a myme multipart doby is created: one for text and the other for the attachemnt I use this myme ovbject only for attachemnts, because some ISPs have problems and report error in email format if the attachemnet is missing and it contains only text and no attachment.
    static public void send(String to,
         String from,
         String host,
         String smtpPort,
         String subject,
         String body,
         String fileAttachment,
         String attachmentMimeType,
         String username,
         String password,
         String debug)
    throws Exception
         // create some properties and get the default Session
         Properties props = new Properties();
         props.put("mail.smtp.host", host);
         props.put("mail.smtp.port", smtpPort);
         props.put("mail.smtp.timeout","5000");
         props.put("mail.debug", debug);
         Session session = null;
         if (username != null && password != null)
              props.put("mail.smtp.auth", "true");
              MyPasswordAuthenticator auth = new MyPasswordAuthenticator(username, password);
              session = Session.getDefaultInstance(props,auth);
         else
              session = Session.getDefaultInstance(props, null);
         //session.setDebug(true);
         // create a message
         MimeMessage message = new MimeMessage(session);
         message.setFrom(new InternetAddress(from));
         InternetAddress[] address = InternetAddress.parse(to, false);
         message.setRecipients(Message.RecipientType.TO, address);
         message.setSubject(subject);
         message.setSentDate(new Date());
         // create the message part
         if ( fileAttachment != null && fileAttachment != "NO" )
              MimeBodyPart messageBodyPart = new MimeBodyPart();
              //fill message
              messageBodyPart.setText(body);
              //Multipart multipart = new MimeMultipart();
              Multipart multipart = new MimeMultipart("alternative");
              multipart.addBodyPart(messageBodyPart);
              // Part two is attachment
              System.out.println("----->fileAttachment DISTINTO de NULL");
              messageBodyPart = new MimeBodyPart();
              FileDataSource fds = new FileDataSource(fileAttachment);
              messageBodyPart.setDataHandler( new DataHandler(fds));
              messageBodyPart.setFileName(fileAttachment); //<-- El archivo atachado.
              multipart.addBodyPart(messageBodyPart);
              //EN DESARROLLO el envio de attachment!!          
              // Put parts in message
              message.setContent(multipart);
         } else { //Envio es solamente TEXTO
              message.setText(body);
         // send the message
         Transport.send(message);
    Regards,
    Vladimir

  • Bypassing SOA MANAGER , Consume a stateless Webservice and send Zip file

    Hello,
    I have question around consuming web service via ABAP program.The scenario is consume a operation of a web-service and get the information, based on this information put the data in flat files and send it back in another operation of this web-service. Due to way web-service is implemented I cannot generate proxy class and use SOA manager the reason is web-service is using complex data type
    1) Is it possible to consume a web-service via ABAP program directly
    I have explored the SAP documentation and came up with this link
    Appendix C - SOAP Runtime for the SAP Web AS - SAP Library
    Few  Links I found are
    Manual HTTP POST from ABAP
    WebService 4.7 / WAS 620 XSTRING BASE 64
    Using any of the above approaches can  SAP program consume a web-service bypassing the SOA manager & send the zipped files in one of the operations.
    Thank you

    Appreciate if some one can answer the question above

  • Sending Zip files

    I have created a project, then while still on the ipad
    clicked the share option, selected email.
    Read email pop up explanation, one tapped the project i wish to email
    Tapped email.
    Email client loads. Tap in address but the Zip file never loads or never completes, so the
    Mail app 'send' button is never 'good to go'. It's a small file 229kb

    Can you give us more information?
    Information about your iPad, if you can share the problematic project in Creative Cloud, can you share with us?
    Thanks,
    Takashi

  • Sending zip file(or folder ) from desktop to email attachment

    Dear all
    I hvae 11 files on my desktop of differnt file type like doc, pdf, xls ...
    By using GUI_UPLOAD, i am able to upload one file at a time
    Is there any way to upload zip file at once OR folder containing all the files at a single go  OR all the files can be uploaded in a single program.
    Is there any class, function module to upload zip file. I am aware of cl_abap_zip but not able to use it.
    Ravi
    Edited by: ravihsr on Mar 24, 2011 3:05 AM
    Edited by: ravihsr on Mar 24, 2011 3:14 AM

    Hi
    This the code:
    REPORT  Z263_EMAIL.
    data: T_MAIL_PACK TYPE TABLE OF SOPCKLSTI1,
          T_MAIL_HEAD TYPE TABLE OF SOLISTI1,
          T_MAIL_REC TYPE TABLE OF SOMLRECI1,
          MAIL_HEAD TYPE SODOCCHGI1,
          T_MAILTXT TYPE TABLE OF SOLISTI1,
          WA_MAIL_PACK TYPE SOPCKLSTI1,
          WA_MAIL_HEAD TYPE SOLISTI1,
          WA_MAIL_REC TYPE  SOMLRECI1,
          WA_MAILTXT TYPE SOLISTI1,
          TAB_LINES TYPE I.
    *FILLING HEADER
    MAIL_HEAD-OBJ_NAME  = 'NEW MAIL TO BE SENT'.
    MAIL_HEAD-OBJ_DESCR = 'SUBJECT FOR MAIL'.
    WA_MAILTXT-LINE = 'MAIL OUTPUT'.
    APPEND WA_MAILTXT TO T_MAILTXT.
    WA_MAIL_REC-RECEIVER = '******@****.COM'. "email-id
    WA_MAIL_REC-REC_TYPE = 'U'.
    APPEND WA_MAIL_REC TO T_MAIL_REC.
    DESCRIBE TABLE T_MAILTXT LINES TAB_LINES.
    CLEAR WA_MAIL_PACK-TRANSF_BIN.
    WA_MAIL_PACK-HEAD_START = 1.
    WA_MAIL_PACK-HEAD_NUM = 0.
    WA_MAIL_PACK-BODY_START = 1.
    WA_MAIL_PACK-BODY_NUM = TAB_LINES.
    WA_MAIL_PACK-DOC_TYPE = 'RAW'.
    WA_MAIL_PACK-OBJ_NAME = 'C:\Documents and Settings\rmalhotra\Desktop\NEW.RAR'.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-TRANSF_BIN = 'X'.
    WA_MAIL_PACK-HEAD_START = 1.
    WA_MAIL_PACK-HEAD_NUM = 1.
    WA_MAIL_PACK-BODY_START = 1.
    WA_MAIL_PACK-BODY_NUM = TAB_LINES.
    WA_MAIL_PACK-DOC_TYPE = 'XLS'.
    WA_MAIL_PACK-OBJ_NAME = 'C:\Documents and Settings\rmalhotra\Desktop\a1.xls'.
    WA_MAIL_PACK-OBJ_DESCR = 'ORDERS'.
    *WA_MAIL_PACK-DOC_SIZE = TAB_LINES * 128.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    DESCRIBE TABLE gv_objbin LINES tab_lines.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'PDF'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\RAGHAV_SMARTFORM.pdf'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'TXT'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\VOTES.TXT'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'DOC'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\TS-MRO-47- Warranty Claim Creation v1.0.doc'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA                    = MAIL_HEAD
      PUT_IN_OUTBOX                    = ' '
       COMMIT_WORK                      = 'X'
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
      TABLES
        PACKING_LIST                     = T_MAIL_PACK
      OBJECT_HEADER                    =
      CONTENTS_BIN                     =
       CONTENTS_TXT                     = T_MAILTXT
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
        RECEIVERS                        = T_MAIL_REC
    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.
    ENDIF.
    SUBMIT RSCONN01.
    Regards
    Raghav Malhotra

  • Cannot send .zip file

    So I'm trying something for Minecraft and I need to send a file that is .zip
    I tried to email it to my gmail but here's what it says
    Unable to Send Email
    A copy has been placed in your outbox. No password provided.
    Please go to Mail Account Settings and enter a password.
    What do I do? I already entered my password but it still doesn't send and keeps popping up the message above.
    Please help me, I'd really appreciate it (by the way I have an iPhone 5c)
    -SnowfurandThistleclaw

    Since no one has an answer does anyone know where I can find iTunes File Sharing on my PC (computer)?

  • Sending Zipped Files Across Sockets

    Hi,
    In my application, I have to send files across sockets. It's already being done, but I wanted to improve performance.
    Currently, we read in the File and send it across however many bytes at a time.
    Using java's zip utilities does anyone know of an example or have any ideas about reading the bytes in, compressing them, and then sending them across?
    thanks for any help in advance,
    Geoff

    Here's the server-side code which corresponds to the code I got from you for ClientSide (it has been tweaked to try to get rid of the error).
    forgive the lack of indentation (error to follow code)
    import java.io.*;
    import java.net.*;
    import java.util.zip.*;
    public class ReceiveData
    public static void main(String[] args)
    System.out.println("Receive Data");
    try
    ServerSocket serverSock = new ServerSocket(1400);
    Socket sock = null;
    while(true)
    System.out.println("before accept");
    sock=serverSock.accept();
    System.out.println("after accept");
    FileOutputStream fileOut = new FileOutputStream("d:\\javatests\\CompressTest\\test2.txt");
    byte[] buffer = new byte[4092];
    DataInputStream is = new DataInputStream(new GZIPInputStream(sock.getInputStream()));
    int totalBytes = 0;
    int bytesRead = is.read(buffer);
    totalBytes += bytesRead;
    while(bytesRead !=-1)
    System.out.println("inside loop");
         fileOut.write(buffer, 0, bytesRead);
         bytesRead = is.read(buffer);
         totalBytes += bytesRead;
    fileOut.flush();
    fileOut.close();
    is.close();
    System.out.println("totalBytes: " + totalBytes);
    catch(Exception e)
    e.printStackTrace();
    produces this error:
    java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:168)
         at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:213)
         at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:134)
         at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:87)
         at java.io.DataInputStream.read(DataInputStream.java:113)
         at ReceiveData.main(ReceiveData.java:45)
    and line 45 corresponds to the following line:
    int bytesRead = is.read(buffer); (the one before the while loop)
    thanks again to all,
    Geoff
    }

  • Send a File(Report Output) From Sap as an Email

    Hi,
    Appreciate if someone can point me to a direction of finding a Function, which can email the File residing on the Application Server or  Presentation Server.
    Exact Requirement:
    We have some  (.dat) files on the Unix Application Server Folder and we want the ability to email these files in excel format.
    Thanks,
    Vasu

    Hi Sastry,
    I have explored this option of reading the data into Internal Table and handle the Descriptions field and then send via SO_NEW_DOCUMENT_ATT_SEND_API1.
    I am looking for a better and if any easy option available where i dont have to handle any string operations.

  • Information Broadcast Error while sending as PDF format

    Dear Team
    I am getting the following error while sending a mail in PDF format using at Query Level.
    Error: com.sap.ip.bi.base.exception.BIBaseRuntimeException
    Notification Number RSBOLAP 014
    If anybody faced this problem pls reply.
    Best Regards,
    SG

    Hi,
    Please check out teh SDN string below. There are couple of notes mentioned which might be helpful. Let us know the result.
    Web Designer -> Java System Error RSBOLAP 018
    Regards
    Pankaj

  • Suddenly unable to send a Zip file

    Hi there
    I am having a problem sending zip files. It has been working fine before but recently it has not been posible. I always send to the same person, who has been receiving without problems before. The zipped file is 5,2 mb and generated in windows via WMWare Fusion 5. I have no problems if I use Gmail, but in Macmail it is not working.
    Any good ideas?

    So what is happening is the mail app can't connect to the gmail smtp server to send the email. This seems to be a fairly common problem with the built in mail program. One minute it works, can send emails, the next it can't find the smtp server for various email providers like gmail or yahoo or suggests the password is incorrect even though you haven't changed anything.
    From what I read on these forums about the only way to correct this is to complete remove the account for the mail program then recreate it. Make sure you remove all smtp entries for that account also.
    Maybe you should try a different email program that doesn't have these constant glitches that pop up from nowhere.

  • Some questions on Information Broadcasting

    Hi,
    We're implementing Information Broadcasting. I have some questions and would be delighted if you could answer some or all of them!!
    1. When using Web-templates I get the following message after opening my zip-file (Independent HTML-file) thru e-mail:
    - Bex Broadcaster does not support Precalculation. What's the meaning of this? We get precalculate figures.
    - The broadcaster demands that Javascript can be executed in the browser. How to solve?
    2. When I broadcast a query as zip-file HTML with seperate MIME files then the precalculated views do not have drilldown functionality, i.e. the navigation block functionality does not work (static). I put navigation on Distribution channel. Is this normal way of working?
    3. Broadcast functionality does not give possibility for Distribution type: 'Export to Enterprise Portal'.
    We have an Enterprise Portal. Is additional customizing required?
    4. Process chains have the Event Data Change process. This only works if I attach it directly to a cube. When I connect it to the process load data (i.e. to an Infopackage) it does not work. Any ideas?
    Thanks in advance!!
    Kind regards, Harjan

    Hi Harjan,
      Not sure what the issue is with regard to (1).
      With regard to (2), you need to to click on the 'Filter Navigation' tab in the BEx Broadcaster, enavle filtering, and select the characteristics you wish to filter on.
      With regard to (3), yes, there's additional configuration required in order to be able to broadcast into the Enterprise portal. Here's the documentation: http://help.sap.com/saphelp_nw04/helpdata/en/84/30984076b84063e10000000a1550b0/content.htm
      With regard to (4), the idea behind integrating the broadcasting event into a process chain is to only perform the brodcast if the info provider was loaded successfully to ensure the end user has accurate and up to date information. http://help.sap.com/saphelp_nw04/helpdata/en/ec/0d0e405c538f5ce10000000a155106/content.htm
    Regards,
    Oliver

  • DB type repository manager for information broadcasting?

    I read some article which says only FSDB type of repository manager can be used for BI informaiton broadcasting. I want to broadcast to MOSS server, which uses IIS, but stores everything in database. Is there anyway to use DB or WSDL type repository manager for broadcasting?
    Thanks
    Jane Zhou

    Where did you get this information from? Is there any document that states that? Below is the information I got, it says FSDB has to be used:
    Can I use information broadcasting to distribute precalculated queries, Web applications, and workbooks to a third-party file server, Web server or document management systems?
    Yes. With information broadcasting, you can precalculate queries, Web applications, and workbooks and publish them into the Knowledge Management of the SAP NetWeaver Portal.
    In KM, you can easily create a Repository Manager (CM repository with persistence mode FSDB) that is attached to a file system directory (for example, the directory of an Internet Information Server (IIS)). You have to create a link in the KM folder of documents to the folder of the CM Repository attached to the file system or you can define your CM Repository as an entry point in KM. For more information, see SAP Note 827994 (SMP login required).
    Information broadcasting can automatically put a new report on the third-party file server (for example, using the data change event in the process chain). KM offers repository managers for many different file servers, Web servers, and document management systems (such as IIS and Documentum):
    1.                            Create CM Repository attached to file system.
    2.                            Use iView KM Content to create subfolder in file system (optional).
    3.                            Set permission to Administrator (optional).
    4.                            Create link in /documents to folder of CM Repository attached to file system or define CM Repository as entry point. (See SAP Note 827994.)
    5.                            Schedule Broadcasting Settings that export to a linked folder of CM Repository.
    Because documents created via Information Broadcasting have additional attributes attached to them which mark them as broadcasted documents, it is not possible to store these kind of documents in a "pure" file system repository because such a repository usually only stores properties like "last changed", "creator", etc. Fortunately, KM provides a mechanism to nevertheless use a file system repository to store the documents. The additional properties will be stored in the database. Details are given here and here.
    The "persistence mode" of the repository must be "FSDB" to allow this kind of behavior. Please note that because of the distributed storage of file and additional properties, the property assignment will be lost when moving around the document in the file system using some non-KM tool like windows explorer.

  • Information Broadcasting purpose in BW 3.5

    Hi SAP Gurus,
    1.I would like to know to which & all the report output can be sent to using BEx Broadcaster.
    2.Please let me know how to set the report output format to bar chart / bar graph as default after execution of a query.

    Hi,
    1. you can send Query, webtemplate and workbook through information broadcaster 3.5
    In BI7.0 information broadcaster you can send query, webtemplate, queryview, workbook and report(created by report designer).
    2. you can send all the object as standard HTML, Multiple HTML, xls, online link and pdf...it has some restriction accroding to object.
    if it helps please assign point
    Regards,
    Senthil
    Message was edited by:
            Senthil Kumar

  • Information Broadcast in Excel

    Hi,
    Has anyone been able to broadcast BeX Analyzer type of report ? In other words as an attachment to the receipients instead of HTML format ?

    Hi,
    only four types of attchments are supported in the information broadcaster.
    we can send the attchment as PDF.
    what Functionality are you planning to achive by sending the report as excel.
    Thanks

Maybe you are looking for