Posts

Showing posts from March, 2012

Sending e-mail with zipped xls attachment via ABAP (ABAP aracılığı ile sıkıştırılmış xls eklentisini mail atmak)

*----DEFINITIONS(Tanımlamalar)--------------------- DATA: gv_file type string, gv_zippedhexfile type xstring, go_zip type ref to cl_abap_zip, xl_content type xstring. DATA binary_content type solix_tab. *----Zipping operations(Sıkıştırma İşlemleri)--------- gv_file = 'FILENAME.xls'. "Zip file name create OBJECT go_zipper. go_zip->add( name = gv_file content = xl_content ). gv_zippedhexfile = go_zip->save( ). refresh binary_content . call function 'SCMS_XSTRING_TO_BINARY' exporting buffer = gv_zippedhexfile tables binary_tab = binary_content. *------------------------------------------------------- --ENGLISH-- After these operations you get binary value of xls content, then use it for sending mail function steps. --TÜRKÇE-- Bu adımlar tamamlandıktan sonra xls dosyanın binary içeriğini elde etmiş oluyoruz. Daha sonra bu binary içerik e-posta gönderim adımları için kullanır.

Variant XXX of program XXX is not the current version

ENGLISH DEFINITION Causes: If you upgrade your system you may get this warning. Solution: Go to SE80 or SE38 and run "RSVARDOC_610" or "RSVARFIT". These are SAP Standard programs and one of them fixes your problem. TÜRKÇE AÇIKLAMASI Sorun: Sistem güncellenmesinden kaynaklı bir sorun olabilir. Çözüm: SE80 ya SE38 işlem kodu ile SAP'nin standart programları olan "RSVARDOC_610" yada "RSVARFIT" çalıştırdığınızda sorun ortadan kalkacaktır.