ABAP/4 Example Code: SAVE_TEXT
You can create and save long text by apply function module ’SAVE_TEXT’.
Example: We will create program for create standard text. The created text will be contained text ’Test Create Text’. you can input name of long text on selection screen. After you run this program, you can check the output of program in transaction SO10 (Standard Text).
DATA: GW_THEAD LIKE THEAD,
IT_LINE TYPE TABLE OF TLINE WITH HEADER LINE.
PARAMETERS: P_TXTNAM LIKE THEAD-TDNAME.
START-OF-SELECTION.
- thitima's blog
- Add new comment
- Read more
- 5583 reads
6 Steps to remove duplicated csrss and smss
If your computer installed Windows-based operating system, you might have seen csrss.exe and smss.exe in Task Manager. What is it? Actually, they are essential software component for Microsoft Windows. However, they must be run as SYSTEM process and no duplication. If you found two copies of them, one is SYSTEM and one is yours, you machine has been already infected. I don’t know exactly but it seems to be a kind of malware. NOD32 don’t classify them. These processes couldn’t be deleted or terminated as usual. msconfig or regedit cannot help you. Fortunately, you can remove it permanently by yourself.
- sugree's blog
- 1 comment
- Read more
- 4040 reads
ABAP/4 Example Code: GET & GET ... LATE
*** Using Logical Database: F1S ***
TABLES: SPFLI,
SFLIGHT,
SBOOK,
SCARR.
START-OF-SELECTION.
GET SPFLI.
WRITE:/ ’SPFLI: ’, SPFLI-CARRID, SPFLI-CONNID, SPFLI-AIRPFROM, SPFLI-AIRPTO.
GET SFLIGHT.
WRITE:/ ’ SFLIGHT: ’, SFLIGHT-CARRID, SFLIGHT-CONNID,
SFLIGHT-FLDATE.
GET SBOOK.
WRITE:/ ’ SBOOK: ’, SBOOK-CARRID, SBOOK-CONNID,
- thitima's blog
- Add new comment
- Read more
- 1667 reads
ศึกรักจอมราชันย์ ตอนที่ 7
เสี่ยวลู่จื่อได้มาหาอันเชี่ยนเพื่อนำเย็นมาให้นางไปช่วยย่า นางเล่าว่านางขอเอ้อกงกงออกไปหาย่าแต่เอ้อกงกงไม่ให้ทำให้นางกลุ้มใจ เสี่ยวลู่จื่อจึงแซวว่าเพราะเหตุนี้จึงทำให้นางไปดุนางกำนัล อันเชี่ยนปฏิเสธพลางบอกว่านางต้องการสอนให้พวกนั้นรู้จักว่าสิ่งใดถูกหรือผิด โดยเฉพาะเรื่องของเจ้านาย เพราะถ้าผิดขึ้นมาพวกนางต้องรับโทษด้วยชีวิต เสี่ยวลู่จื่อจึงบอกว่าพวกนางยังเด็กต้องค่อยๆสอน พลางบอกว่าสำหรับย่าของอันเชี่ยนไว้รอให้หายดีค่อยหารถม้าและนำย่าอันเชี่ยนมาเมืองหลวงจะได้พบกัน
- Add new comment
- Read more
- 1849 reads
How to define variable in SAPscript
You can define variable in SAPscript by apply statement ’DEFINE’.
Example: We will define variable name = ’TXT1’ and initial value = ’Text1’. After we already define it, we will write a value of field.
/: DEFINE &TXT1& = ’Text1’
* Test Define Text = &TXT1&
The Output is
- thitima's blog
- Add new comment
- Read more
- 4194 reads
How to debugging SAPscript form
Go to transaction SE71 and input form name that you want to debug.
Select menu Utilities -> Activate Debugger.
System will generate message that debugger success or fail.
After you run program that call this form, system will skip to form debugger.
- thitima's blog
- 1 comment
- Read more
- 5732 reads
Recent comments
2 years 11 weeks ago
2 years 16 weeks ago
2 years 16 weeks ago
2 years 17 weeks ago
2 years 17 weeks ago
2 years 19 weeks ago
2 years 19 weeks ago
2 years 19 weeks ago
2 years 20 weeks ago
2 years 20 weeks ago