How to send the quotation as attachment in notification

Hi folks,
I have a small clarification regarding workflows. I am creating a Quotation and Iam trigering the workflow . The Workflow gets trigerred and a notification is sent to the Manager . The Manager can either Approve or reject . If Approved the status of the Quotation gets changed to Approved. if Rejected the status of the Quotation gets changed to rejected. I am also sending the sales order number.  I have achieved upto this step.
But I am not able to send the Quotation as attachment in the notification to the Manager. The Business Object for the quotation is  BUS20001.
Please guide me how to send attachments in notifications.
Regards,
Palani.

Hi Palani,
    You can acheive this by using the step type FORM.
Regards,
A.Fahrudeen

Similar Messages

  • How to send the Adobe page as mail attachement from webdynpro...

    Hi Experts,
    How to send the Adobe page as external mail attachment from webdynpro automatically (for example: If I input the data for sales order in a view and created the sales order, if the sales order is created then have to place the created sales order number and the some details in a adobe form and should send as external mail and have to specifying the body as "Sales order created and details can be found in the attached adobe form" from webdynpro).
    Do the needful.
    Thanks & regards,
    Ravi.

    Hi ravi,
    See the WDA forum for the how to attach a file in webdynpro component for the attachments.

  • How to send the email to different email addresses from Workflow

    Hello,
    i an not getting that how to send the email from Workflow in SAP.
    plz give the steps to do that.
    i have done lots of time but system is not sending the email to different email address.

    Hi,
    lot of configuration is invloved in sending
    mail to external email id. check BASIS to
    configure for external mails ans also check
    debug FM and see which conditions exceptions
    (Document not sendis raised)
    also check below code
    CLEAR: DOC_CHNG, OBJTXT, OBJBIN, OBJPACK, OBJHEAD, RECLIST,
    RECIPIENT_INT, DOC_SIZE,TAB_LINES.
    REFRESH: OBJTXT, OBJBIN, OBJPACK, OBJHEAD, RECLIST.
    OBJBIN[] = CONTENT_OUT[].
    Populate e-mail title
    DOC_CHNG-OBJ_NAME = 'MAIL'.
    CONCATENATE 'EETS for Contract #'(245)
    OIA01_TAB-EXGNUM
    INTO DOC_CHNG-OBJ_DESCR SEPARATED BY SPACE.
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    It is a text document
    CLEAR OBJPACK-TRANSF_BIN.
    The document needs no header (head_num = 0)
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    but it has a body
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    of type RAW
    OBJPACK-DOC_TYPE = 'RAW'.
    APPEND OBJPACK.
    Create the attachment (the list itself)
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    It is binary document
    OBJPACK-TRANSF_BIN = 'X'.
    we need no header
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    but a body
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    of type PDF
    OBJPACK-DOC_TYPE = 'PDF'.
    OBJPACK-OBJ_NAME = 'Attachment'(239).
    CONCATENATE 'EETS_' OIA01_TAB-EXGNUM '_'
    IT_ZMMTACCUID-ACCTUSRID
    '_' SY-DATUM '_' SY-UZEIT '.PDF'
    INTO OBJPACK-OBJ_DESCR.
    READ TABLE OBJBIN INDEX TAB_LINES.
    DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJBIN ).
    OBJPACK-DOC_SIZE = DOC_SIZE.
    APPEND OBJPACK.
    Get e-mail address
    CLEAR IT_ADDRESS.
    READ TABLE IT_ADDRESS WITH KEY ACCTID = IT_ZMMTACCUID-ACCTUSRID
    BINARY SEARCH.
    IF SY-SUBRC = 0.
    RECIPIENT_INT-ADDRESS = IT_ADDRESS-SMTP_ADR.
    ENDIF.
    *Send email to external mail address
    RECLIST-RECEIVER = RECIPIENT_INT.
    RECLIST-REC_TYPE = 'U'.
    APPEND RECLIST.
    CLEAR RECLIST.
    *Send email to SAP Office mail address
    RECLIST-RECEIVER = IT_ZMMTACCUID-ACCTUSRID.
    RECLIST-REC_TYPE = 'B'.
    APPEND RECLIST.
    CLEAR RECLIST.
    SEND THE DOCUMENT BY CALLING THE SAPOFFICE API1 MODULE
    FOR SENDING DOCUMENTS WITH ATTACHMENTS
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    exporting
    document_data = doc_chng
    put_in_outbox = 'X'
    importing
    sent_to_all = sent_to_all
    tables
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    receivers = reclist
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    operation_no_authorization = 4
    others = 99.
    also check
    https:/Re: mail sending problem
    Regards
    amole

  • How to send the email without using server side (Php, java)

    How to send the (Run time image or file) Email & Attachment in Flex web application. without using php, java.

    Well, at some point your email needs to be handed over to an SMTP server. It's a fair amount of work, but if you want to just send an email you could open a socket to a mail server's SMTP port and follow the SMTP protocols to send your email.
    ActionScript sockets: http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7cf7.html
    SMTP protocol: http://tools.ietf.org/html/rfc821
    -- Tom

  • How to send SMARTFORMS output as attachment through?

    how to send SMARTFORMS output as attachment through e-mail?
    after executing SMARTFORMS how to send that output via e-mail.
    Help me.
    thanks
    surya.
    Moderator Message: Please search for available information first
    Edited by: kishan P on Nov 7, 2010 7:19 PM

    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 more than 1 attachment thru email

    Hi All,
    Need to know how to send more than one attachment through email.  I need the coding part of it.
    Thanks in Advance.
    Balaji

    Hi Balaji,
    Check this thread
    Sending mail with 2 attachments
    Regards,
    Santosh

  • How to send the spool output to the specific user during ALE distribution

    Hi All
    In ALE internal order Configuration done by BAPI Method SAVEREPLICA Business object BUS2075whenever user changed the internal order which is moved to the destination system because of change data setting in data element fields.
    I want to know how to send the spool output of the changed internal order to the specific user during ALE distribution.
    Please help me to reslove the above issue
    Thanks & Regards
    KRISHGUNA

    Solved by myself

  • How to send the ALV GRID output to spool by using the print button in std t

    How to send the ALV GRID output to spool by using the print button in standard tool bar.
    We have created a button in the va02 transaction.  If user click on the button the new screen will be display on that screen we are populating the alv grid output using the oops concept.  But i am unable to send the output to spool using the print button in the standard tool bar.
    I am able to display the Print parameter dialog box but i am not able to send it to spool.
    Kindly help.
    Thanks In Advance.
    G.V.Ramana

    Hi Shaik,
    There is not properties button in my print screen.
    MODULE user_command_0900 INPUT.
        WHEN 'EXCEL'.
          PERFORM excel_download.                              
        WHEN 'PRI'.
          PERFORM print_output.
    form Print_output.
    CALL FUNCTION 'RSPO_LIST_LAYOUT_FITS'
               EXPORTING
                    columns        = 80
                    device         = 'ANY '
                    lines          = 65
                    maxpenality    = 1999
               TABLES
                    layouts        = lt_layouts1
               EXCEPTIONS
                    unknown_device = 1
                    OTHERS         = 2.
          IF sy-subrc = 0.
            LOOP AT lt_layouts1.
              IF lt_layouts1-penality < 1000        AND
                 lt_layouts1-penality < l_min_penality.
                l_layout       = lt_layouts1-layout.
                l_min_penality = lt_layouts1-penality.
              ENDIF.
            ENDLOOP.
            IF NOT l_layout IS INITIAL.
              CALL FUNCTION 'GET_PRINT_PARAMETERS'
                   EXPORTING
                        mode                   = 'CURRENT'
                        line_size              = 80             "#EC *
                new_list_id            = l_new_list_id
                        no_dialog              = l_no_dialog
                        layout                 = l_layout
                   IMPORTING
                        out_archive_parameters = rs_arc_params
                        out_parameters         = rs_pri_params
                        valid                  = l_valid
                   EXCEPTIONS
                        archive_info_not_found = 1
                        invalid_print_params   = 2
                        invalid_archive_params = 3
                        OTHERS                 = 4.
              IF sy-subrc NE 0.                                 " INS SLIN
              ENDIF.                                            " INS SLIN
              IF rs_pri_params-linsz LT 80 OR
                 rs_pri_params-linsz LT gt_stack-s_lprint-width.
                gt_stack-print_line_break = 'X'.
              ELSE.
                CLEAR gt_stack-print_line_break.
              ENDIF.
              IF l_valid NE 'X'.
                rs_pri_params = ls_pri_params_sav.
                rs_arc_params = ls_arc_params_sav.
              ENDIF.
            ENDIF.
          ENDIF.
    endform.                    " Print_output
        CALL METHOD gv_cost_tot_alv_grand->set_table_for_first_display
                EXPORTING
                   is_layout         = gs_layout_cost_tot_grand
                CHANGING
                   it_fieldcatalog   = gt_fcat_cost_tot_grand[]
                   it_outtab         = gt_cost_tot_grand[].
    Please check my code

  • Issue in sending the file as attachment

    I am using functional module 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send the email with attachment.
    If the file type is 'RAW', the records are getting displayed as that of the source file. For the other file types, all the records are getting displayed in a single line in the output. Please let me know the solution for this.

    Hi Saranya,
    Chk this example:
      DATA :  DS_OBJPACK TYPE SOPCKLSTI1,
              DS_OBJHEAD TYPE SOLISTI1,
              DS_OBJBIN TYPE SOLISTI1,
              DS_OBJTXT TYPE SOLISTI1,
              DS_RECLIST TYPE SOMLRECI1.
    *--MAIL related Internal tables
      DATA: DS_XDOCCHNG TYPE SODOCCHGI1,                     " document
                                                             " attributes
            DT_OBJPACK TYPE STANDARD TABLE OF SOPCKLSTI1,    " attachment
                                                             " table
            DT_OBJHEAD TYPE STANDARD TABLE OF SOLISTI1,      " objectheader
                                                             " table
            DT_OBJBIN TYPE STANDARD TABLE OF SOLISTI1,       " binary table
            DT_OBJTXT TYPE STANDARD TABLE OF SOLISTI1,       " object text
            DT_RECLIST TYPE STANDARD TABLE OF SOMLRECI1.     " mail
      " recipients
      DATA: DL_TEXT       TYPE CHAR50,
            DL_TABLELINES TYPE SY-TABIX,
            DL_STARTDATE(10)  TYPE C,
            DL_ENDDATE(10)    TYPE C,
            DL_SUBJECT(100)    TYPE C, "sin_obj_de,  Subject for Mail
            DL_SDATE      TYPE CHAR10,
            DL_DDATE      TYPE CHAR10,
            DL_CDATE     TYPE CHAR10,
            DL_DATE     TYPE CHAR10,
            DL_FDATE     TYPE CHAR10,
            DL_SYDATE     TYPE CHAR10.
    *subject of the mail
    *if delivery date in entered
    IF NOT S_CONDAT[] IS INITIAL.
       WRITE S_CONDAT-LOW TO DL_STARTDATE MM/DD/YYYY.
       WRITE S_CONDAT-HIGH TO DL_ENDDATE MM/DD/YYYY.
       IF S_CONDAT-HIGH IS INITIAL.
         CONCATENATE 'Capital FutIssue- Dtd Btn'(007)
                     DL_STARTDATE
                     DL_STARTDATE
                     INTO DL_SUBJECT SEPARATED BY SPACE.
       ELSE.
         CONCATENATE 'Capital FutIssue- Dtd Btn'(007)
                     DL_STARTDATE
                     'and'
                     DL_ENDDATE
                     INTO DL_SUBJECT SEPARATED BY SPACE.
       ENDIF.
    ELSE.
      WRITE SY-DATUM TO DL_SYDATE MMDDYY.
      CONCATENATE 'Capital FutIssue- Exectd on'(008)
                 DL_SYDATE
                 INTO DL_SUBJECT SEPARATED BY SPACE.
    ENDIF.
    *-- Populate mail id
      CHECK S_USERID[] IS NOT INITIAL." OR P_DLIST IS NOT INITIAL.
      IF NOT S_USERID[] IS INITIAL.
        LOOP AT S_USERID.
          CONCATENATE S_USERID-LOW '@ntmcon02.emn.com'(009) INTO
                                    DS_RECLIST-RECEIVER.
          DS_RECLIST-REC_TYPE = 'U'.
          APPEND DS_RECLIST TO DT_RECLIST.
        ENDLOOP.
      ENDIF.
    *-- Mail subject line
      CLEAR: DS_XDOCCHNG.
      DS_XDOCCHNG-OBJ_NAME = 'HEADING'.
      DS_XDOCCHNG-OBJ_DESCR = DL_SUBJECT.
    *-- Mail body
    CONCATENATE TEXT-010  SPACE INTO DS_OBJTXT SEPARATED BY SPACE.
      DS_OBJTXT = TEXT-010.
      APPEND DS_OBJTXT TO DT_OBJTXT.
    *-- Populate the attachment text.
    *-- Header
      CONCATENATE TEXT-036
                  TEXT-026
                  TEXT-053
                  TEXT-052
                  TEXT-037
                  TEXT-018
                  TEXT-019
                  TEXT-022
                  TEXT-021
                  TEXT-017
                  TEXT-023
                  TEXT-024
                  TEXT-025
                  TEXT-027
                  TEXT-028
                  TEXT-020
                  TEXT-029
                  TEXT-030
                  TEXT-038
                  TEXT-046
                  TEXT-047
                  TEXT-048
                  TEXT-049
                  TEXT-031
                  TEXT-032
                  TEXT-034
                  TEXT-035
                  INTO DS_OBJBIN
                  SEPARATED BY CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
      APPEND DS_OBJBIN TO DT_OBJBIN.
      CLEAR  DS_OBJBIN.
    *--Body
      CLEAR: DS_FINAL.
      LOOP AT DT_FINAL INTO DS_FINAL.
        DG_MENGE   = DS_FINAL-MENGE.
        DG_CMOQTY  = DS_FINAL-CMOQTY.
        DG_WEMNG   = DS_FINAL-RECV_QTY.
        DG_BALANCE = DS_FINAL-BALANCE.
        DG_DAYS    = DS_FINAL-DAYDIFF.
        WRITE DS_FINAL-CONSDT TO DL_DATE MM/DD/YYYY NO-ZERO.
        WRITE DS_FINAL-SLFDT TO DL_SDATE MM/DD/YYYY NO-ZERO .
        WRITE DS_FINAL-EINDT TO DL_DDATE MM/DD/YYYY NO-ZERO.
        WRITE DS_FINAL-AEDAT TO DL_CDATE MM/DD/YYYY NO-ZERO.
    Calling conversion exit to display WBS in external format
        PERFORM CONV_EXIT_ABPSN_OUT CHANGING DS_FINAL-WBS.
        CONCATENATE    DL_DATE
                       DL_DDATE
                       DS_FINAL-DAYDIFF
                       DS_FINAL-EXPEDITE
                       DS_FINAL-FLTDT
                       DS_FINAL-AUFNR
                       DS_FINAL-CMOITEM
                       DG_CMOQTY
                       DG_BALANCE
                       DG_MENGE
                       DG_WEMNG
                       DS_FINAL-EBELN
                       DL_CDATE
                       DL_SDATE
                       DS_FINAL-EBELP
                       DS_FINAL-TXZ01
                       DS_FINAL-MATNR
                       DS_FINAL-MAKTX
                       DS_FINAL-WBS
                       DS_FINAL-INDOOR
                       DS_FINAL-FOOTPRINT
                       DS_FINAL-WEIGHT
                       DS_FINAL-STORAGE
                       DS_FINAL-LIFNR
                       DS_FINAL-NAME1
                       DS_FINAL-EKGRP
                       DS_FINAL-AFNAM
             INTO DS_OBJBIN
          SEPARATED BY CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
        TRANSLATE DS_OBJBIN USING ', '.
       CONCATENATE CL_ABAP_CHAR_UTILITIES=>NEWLINE DS_OBJBIN INTO DS_OBJBIN
        APPEND DS_OBJBIN TO DT_OBJBIN.
        CLEAR  DS_OBJBIN.
      ENDLOOP.
    **-- Populate packing list for body text
      DS_OBJPACK-TRANSF_BIN = ''.
      DS_OBJPACK-HEAD_START = 1.
      DS_OBJPACK-HEAD_NUM   = 0.
      DS_OBJPACK-BODY_START = 1.
      DS_OBJPACK-DOC_TYPE   = 'RAW'.
      APPEND DS_OBJPACK TO DT_OBJPACK.
      CLEAR DS_OBJPACK.
    *-- Get total no.of lines of Object table(attachment)
      CLEAR : DL_TABLELINES.
      DESCRIBE TABLE DT_OBJBIN LINES DL_TABLELINES.
      DL_TEXT = DL_SUBJECT.
    *-- Packing list for attachment
      DS_OBJPACK-TRANSF_BIN = 'X'.
      DS_OBJPACK-HEAD_START = 1.
      DS_OBJPACK-HEAD_NUM = 1.
      DS_OBJPACK-BODY_START = 1.
      DS_OBJPACK-BODY_NUM = DL_TABLELINES .
      DS_OBJPACK-DOC_TYPE = 'XLS'.
      DS_OBJPACK-OBJ_NAME = ' '.
      DS_OBJPACK-OBJ_DESCR = DL_TEXT.
      DS_OBJPACK-DOC_SIZE = DL_TABLELINES * 255.
      APPEND DS_OBJPACK TO DT_OBJPACK.
      CLEAR  DS_OBJPACK.
    *-- Sending the EMail document in given format
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DS_XDOCCHNG
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = DT_OBJPACK
         OBJECT_HEADER              = IT_OBJHEAD
          CONTENTS_BIN               = DT_OBJBIN
          CONTENTS_TXT               = DT_OBJTXT
          RECEIVERS                  = DT_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 NE 0 .
        WRITE:/ SY-SUBRC , 'Mail document not sent'(004).
      ELSE.
        MESSAGE S000 WITH 'Mail sent successfully'(012).
      ENDIF.
    Thanks,
    Keerthi.

  • How to send the data from mac pc to External drive

    how to send the data from mac pc to External HDD
    or Pen Drive but with out deleting the preview as data

    You can use "Finder", which is in your dock, to copy files from your iMac folders over to the external hard drive.
    Hope this helps

  • How to send the payload to a jsp using receiver Http adapter?

    Hi experts,
    I have this scenario from Legacy to XI to external app server.I have a test jsp to execute that functionality .Its a jsp which has 1 textarea named "test" and when I click on the submit buton I get a response back.This way I am able to test this independently.Now from XI when I am executing my scenario I am getting status code '1250' and message as ' http request(test) is null'.Now in the scenario in http adapter I just provide the target host : ip of server ,
    service number : port no ,
    path: the container or the request handler. But this scenario fails and gives me the above erroneous response.Now Basically I am not able to get how to send the value to the textarea "test"? please provide help as soon as possible.Do we have to put the name of the jsp in the "path" in http adapter and use prolog as test=.I tried this but it doesnt work.
    Is there any way to check the URL that it forms after appending the querystring in the url ...?
    So please provide help on this or suggest a solution to [email protected] as soon as possible.....
    Thanx in advance.
    Akshata

    hey Shekhar,
    thanx for that prompt reply but I have configured the communication channel in the same manner as suggested by u.
    actually I have this jsp page http://xx.xx.xx.xx:8080/abcdef/try/efg.jsp where there is a textarea "test" which has to be filled and there is a submit button.When I test this http client i.e the above jsp page independently then it goes to handler
    http://xx.xx.xx.xx:8080/abcdef/trial/    And it gives a proper response message after clicking on the submit button.
    now I want to carry out the same using receiver http adapter. I need to pass the value for this inputfield names "test" on that jsp . so right now I have configyured the adapter as
    addressing type: url
    target host : xx.xx.xx.xx
    service no:8080
    path : here I have given the path of handler i.e /abcdef/trial I tried giving the jsp page also but logically I guess it should be the handler.
    content type: text/xml; charset=iso-8859-1
    xml code: UTF-8
    Mask special characters (URL escaping) checked.
    now since the name of the inputfield is "test" in the prolog I gave test=
    But it doesnt work I get this error "http request parameter [test] is null" in the response message  which I guess suggests that it is not able to send the value for the field"test" to that handler.Please suggest how to send this and tell me if there are any other configurations that I have to do in the receiver communication channel.
    Thanx ,
    Akshata

  • How to send the output to PDF format in reports 6i?

    Hi,
    How to send the output to PDF format in reports 6i? I given Mode = BITMAP.
    DESTYPE = File, DESFORMAT = PDF, DESNAME = C:\x.pdf.
    Report is running fine. But PDF file not generated. I don't know what i missed. Any one can help this?
    Thanks
    Kavitha

    Hello,
    Do you get this problem only for DESFORMAT=PDF ?
    Test with :
    DESFORMAT = RTF, DESNAME = C:\x.rtf
    or
    DESFORMAT = HTMLCSS, DESNAME = C:\x.html
    does it work ?
    Check if DESNAME is modified in the reports itself.
    Regards

  • How to send the data manually

    Hi Experts,
      I need small information.when messages are gone into queue state due to one message 
    When an EDI file came into wrong format and with that some messages are gone into queue state in MONI.
    if i cancel the first message then remaining all the messages are processing successfully.
    So from that cancel message i want sent the data manually as business needs that data.
    Can all please tell  me how to send the data manually with steps.
    Thanks in Advance.
    Bhaskar

    Hi,
    I think you are talking about QoS "EOIO", in which all messages are porcessed in FIFO order and whenever the preceeding message get stuck due to error in the queue, then all the messages are stoped. And yes as soon as you will cancel the message which went into error all the remaining messages will automatically will be delivered.
    In my opinion since QoS is EOIO then it will be not possible to sent the data mannually, you can do one thing, do not cancel the message. Try to correct the messge and then resend it.
    Regards,
    Sarvesh

  • How to send the two PDF attachments into one mail

    Hi Team,
    I need one requirement...I have two forms ,one is cover sheet and another one is form data. These two forms are converted into two PDF documents and sent to vendor as mail attachments...
    Please suggest me,  how to send the two attachments through one mail .....
    Thanks & Regards,
    Samantula.

    Please SEARCH in SCN before posting. There are lots of threads related to send mail with multiple attachments.

  • How to find the form name attached to AR Open item list

    How to find the form name attached to AR Open item list
    FBL5N -> Correspondance
    Thanks
    Ganesh

    You can find out in SPRO.
    Go to tcode SPRO
    Financial Accounting (New)
    Financial Accounting Basic Settings (New)
    Correspondence
    Define Form Name for Correspondence Print
    Here you will find the form attached to the program.
    To find the attached program to the Correspondence type.
    Go to tcode SPRO
    Financial Accounting (New)
    Financial Accounting Basic Settings (New)
    Correspondence
    Assign programs for the Correspondence Types
    Regards,
    Naimesh Patel

Maybe you are looking for

  • What happened? After this morning Firefox's update, I couldn't get into Firefox but got this message, "The application failed to start because it's side-by-side configuration is incorrect.

    This morning I went to go into Firefox, a message came up stating it was updating. After the update, Firefox didn't open, so I clicked on the icon and got this message. C:\Program Files (x86) Mozilla Fire\firefox.exe. The application has failed to st

  • Stms problem

    Dear experts: I was troubled in my transport system. Our ECC6.0 system run on AIX server, the transport system is very simple, there are only two systems in the landscape,filesystem /usr/sap/trans is export from development server and then mount on p

  • Having Troubles With Restoring Refurbished iPhone 4.

    I have just received a refurbished phone as my iPhone 4 went for a swim. Now I am trying to restore my phone through iTunes, and after three tries its still saying my phone needs to be restored. My contacts have transfered but none of my apps will an

  • API for Portlet Identity information?

    I've been trying to come up with a way to uniquely identify a portlet in a particular region of the page; assuming that many instances of the same portlet are stacked together in the same region, (differing only perhaps by parameter values). Ideally,

  • Rendering after effects CC

    Как в этой версии можно сжать видео, если раньше можно было сохранять в мр4 / h264. Возможно ли в after effects CC так же сжать проект/видео?? http://vk.com/mail?act=show&id=2983