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.

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.

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,

ศึกรักจอมราชันย์ ตอนที่ 7

เสี่ยวลู่จื่อได้มาหาอันเชี่ยนเพื่อนำเย็นมาให้นางไปช่วยย่า นางเล่าว่านางขอเอ้อกงกงออกไปหาย่าแต่เอ้อกงกงไม่ให้ทำให้นางกลุ้มใจ เสี่ยวลู่จื่อจึงแซวว่าเพราะเหตุนี้จึงทำให้นางไปดุนางกำนัล อันเชี่ยนปฏิเสธพลางบอกว่านางต้องการสอนให้พวกนั้นรู้จักว่าสิ่งใดถูกหรือผิด โดยเฉพาะเรื่องของเจ้านาย เพราะถ้าผิดขึ้นมาพวกนางต้องรับโทษด้วยชีวิต เสี่ยวลู่จื่อจึงบอกว่าพวกนางยังเด็กต้องค่อยๆสอน พลางบอกว่าสำหรับย่าของอันเชี่ยนไว้รอให้หายดีค่อยหารถม้าและนำย่าอันเชี่ยนมาเมืองหลวงจะได้พบกัน

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&
img10

The Output is

 img11

How to debugging SAPscript form

Go to transaction SE71 and input form name that you want to debug.

img7

Select menu Utilities -> Activate Debugger.

img5

System will generate message that debugger success or fail.

img6

After you run program that call this form, system will skip to form debugger.