Posts

Showing posts from 2012

"Structure change at field level" error while creating a database table (Veri tabanı tablosu yaratırken alınan "Structure change at field level" hatası)

English definition: In SE11 menubar follow these steps; utilities->database object->database utility>  and then; press "activate and adjust database" button.  It works.   Türkçe açıklaması: SE11 deki üst menüden aşağıdaki adımları izlemelisiniz;  utilities->database object->database utility>  sonrasında; "activate and adjust database" düğmesine basın.

Describing a SAP table every day (Her gün bir SAP tablosunu açıklama )

English definition Beginning from today, I want to share a SAP table description with you every day. You can follow these descriptions from the label which is named "A table A day". Türkçe açıklaması Bugünden itibaren hergün sizinle bir SAP tablosunun açıklamasını paylaşıyor olacağım. Bu açıklamaları "A table A day" etiketinden takip edebilirsiniz.

Defining Sales Group,Organization and Office in SAP (SAP'de satış grubu,organizasyonu ve bürosu belirleme)

Image
English definition How can you define sales group,organization and office? - Go "SPRO" - Click on "Enterprise structure" --> Definition --> Sales and Distribution --> Define sales organization --> Define sales office --> Define sales group For more http://www.youtube.com/watch?v=Zc9Ibua56QA Türkçe Açıklaması Nasıl satış grubu, organizasyonu ve bürosu tanımlayabilirsiniz? - Git "SPRO" - Tıkla "İşletma yapısı" --> Tanım --> Satış ve Dağıtım --> Satış organizasyonu tanımla --> Satış bürosu tanımla --> Satış grubu tanımla Daha fazlası için http://www.youtube.com/watch?v=Zc9Ibua56QA

How to clear an SAP internal table body data?(SAP'de Internal tablo içeriğini temizlemek)

English definition You can clear your internal table body data via a macro definition. There is no special code for tihs. define delete_body. clear &1. free &1. end-of-definition. delete_body: tb_data. Türkçe açıklaması Eğer bir internal table ın içeriğini temizlemek istiyorsanız, yukarıdaki örnekteki gibi makro tanımlamalısınız. Internal tabla içeriğini temizleyen özel bir kod bulunmamaktadır.

SAP User Exit Examples (Kullanıcı Çıkışı Örnekleri)

You can find some examples about user exit usage http://www.saptechnical.com/Tutorials/ExitsBADIs/ExitsMain.htm Turkish Yukarıdaki bağlantıyı takip ettiğinizde kullanıcı çıkışları(User Exit) ile ilgili örnekler bulabilirsiniz.

The error cause cannot be determined, since the table SNAP does not contain a suitable short dump.

Error Message - Hata Mesajı The error cause cannot be determined, since the table SNAP does not contain a suitable short dump. Table SNAP probably already contains so many short dumps that it cannot take on any more. Examine the situation using the system log.SNAP contains all short dumps from the last 7 days. Solution There are many reasons for this error. I can give some solution methods fix your problem; - The note 17537 - Log backup should be shrinked by DB Team Çözüm Bu hata mesajı birçok nedenden dolayı alınabilir. Bunun için birkaç çözüm yolu aşağıdaki gibidir; - 17537 nolu SAP note - DB takımı tarafından log kayıtları küçültülmelidir.

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.