ABAP
文章平均质量分 71
zhaojas
这个作者很懒,什么都没留下…
展开
-
ABAP-Debug background job
1. Create variant called BACKGROUND for program(ZWBTEST) to be debugged.2. Execute ZDEBUGBG (pgm code below) in background for immediate processing.3. Execute transaction SM50.4. Select process that r转载 2009-02-04 17:20:00 · 1073 阅读 · 0 评论 -
FOR ALL ENTRIES vs. INNER JOIN
http://blogs.ittoolbox.com/sap/db2/archives/for-all-entries-vs-db2-join-8912 http://sap.javaeye.com/blog/123347All abap programers and most of the dbas that support abap programmers are familiar wi转载 2009-03-19 21:54:00 · 4593 阅读 · 0 评论 -
ABAP-Send mail with local file as attachment
*&---------------------------------------------------------------------**& Report ZRS08094 **&转载 2008-12-18 15:30:00 · 805 阅读 · 0 评论 -
ABAP-Send email with data of internal table as attachment
Refer to http://blog.sina.com.cn/s/blog_3eefd36c01008bii.html~type=v5_one&label=rela_prevarticle. *******************************************REPORT Z_MAIL_TEST3.PARAMETERS: p_mail TYPE ad_smtp转载 2008-12-18 15:03:00 · 1580 阅读 · 0 评论 -
ABAP - 日期格式转换
Below are several FMs which can be used to convert date format. 1. CONVERSION_EXIT_IDATE_OUTPUT INPUT: 20080203 OUTPUT: FEB0320082. CONVERT_DATE_TO_EXTERNAL INPUT: 200原创 2009-02-25 14:33:00 · 4182 阅读 · 0 评论 -
ABAP- Get email address in HR from employee id.
DATA: lv_sender_addr TYPE adr6-smtp_addr,lv_bname TYPE usr01-bname, “employee numberfs_addr TYPE addr3_val,fs_usr03 TYPE usr03,原创 2008-12-11 17:04:00 · 614 阅读 · 0 评论 -
ABAP-Download/Upload text element into local file
Some times we want to download/upload the text symbol of text element into/from local file, we can use below report, Its very useful. **********************************************************r转载 2008-12-11 16:23:00 · 621 阅读 · 0 评论 -
根据Output Type找到使用它的Document NO.
When we fix the defect related to SAP Script/Smart Form and need to debug the program, we can use following t-code or program to get the document no. which has used the corresponding output type.原创 2008-12-10 13:14:00 · 1005 阅读 · 0 评论 -
ABAP - FM to get Where-used list result
Where-used list在SAP中是一个非常有用的功能,但是有时我们需要在abap code中得到where used list的结果,保存在一个内表中,从而能做进一步的处理。 下面这个FM能帮我们完成这个功能: RS_EU_CROSSREF ***************************************************************原创 2008-12-10 14:14:00 · 1521 阅读 · 0 评论 -
Send email in ABAP
This article is copied from Tims blog(http://jgtang82.javaeye.com/blog/186430). Tim, hope you dont mind. :) 1. Use FM to send email. report zrich_0002. data: maildata like sodocchgi转载 2008-12-10 13:27:00 · 1487 阅读 · 0 评论 -
The Different Types of SAP Tables
What is transparent, cluster and pool table? Where and when we use these tables? Transparent Table : Exists with the same structure both in dictionary as well as in database exactly with the same原创 2009-02-10 14:48:00 · 491 阅读 · 0 评论 -
Performance tuning for Data Selection Statement
For all entriesThe for all entries creates a where clause, where all the entries in the driver table are combined with OR. If the number of entries in the driver table is larger than rsdb/max_block原创 2009-02-10 10:47:00 · 446 阅读 · 0 评论 -
SELECT SINGLE vs. UP TO 1 ROWS
select single is a construct designed to read database records with primary key. In the absence of the primary key, it might end up doing a sequential search, whereas the select up to 1 rows may assum原创 2009-02-10 10:11:00 · 1124 阅读 · 0 评论 -
Transport screen variant & ALV display variant
1. Transport Screen variant Goto SE38, Enter Prog NameClick Radio Button Variants & press DisplayIn next Screen,goto Utilities-->Transport Request , will get selection screen for Variants which原创 2009-05-25 16:44:00 · 541 阅读 · 0 评论