‎2009 Mar 13 10:37 AM
Hi,
I have developped a report using ALVGRID & I want to send this report as an attchment.
Can anybody give me a guidance.
Best regards.
‎2009 Mar 13 11:06 AM
‎2009 Mar 13 10:42 AM
‎2009 Mar 13 10:42 AM
Refer below link..
https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/smartformSendvia+Email
‎2009 Mar 13 10:44 AM
‎2009 Mar 13 10:45 AM
hi u can use this FM
call function 'SO_NEW_DOCUMENT_SEND_API1'
exporting
document_data = wa_document_data
document_type = 'RAW'
put_in_outbox = 'X'
commit_work = 'X'
tables
object_header = it_object_header
object_content = it_object_content
receivers = it_receivers
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.
endif.
‎2009 Mar 13 10:46 AM
Hello,
This question was asked many times and answered many times....
Did you check SDN before posting this thread,
you are violating the SDN rules.
Regards!
‎2009 Mar 13 11:06 AM