SAP R/3

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.

SAP NetWeaver คือ อะไร

ช่วงปีที่แล้วคำว่า NetWeaver น่าจะเคยผ่านหูผ่านตาใครหลายๆ คนที่ทำงานด้าน ERP หรือคนที่ทำงานในบริษัทที่ใช้ SAP ข่าวคราวล่าสุดในไทยก็คือ รัฐบาลตกลงซื้อระบบของ SAP เพื่อใช้เป็น Back Office ที่เรียกว่า GFMIS หรือ Government Fiscal Management Information System นั่นเอง ความจริงแล้ว NetWeaver เป็นผลิตภัณฑ์ชุดใหม่ของ SAP ที่เป็นพื้นฐานของระบบทั้งหมด รวมไปถึง SAP R/3 และ mySAP

How to import & export SAPscript form

You can import and export SAPscript form by using report ’RSTXSCRP’.

img2

You can specify form name in field ’Object name’.

img4

About mode options:

img3

ABAP/4 Example Code: Factorial


DATA: output TYPE i.
PARAMETERS: p_num TYPE i.
START-OF-SELECTION.
  PERFORM factorial USING p_num
                    CHANGING output.
  WRITE:/ output.
*&---------------------------------------------------------------------*
*&      Form  factorial
*&---------------------------------------------------------------------*
*       text
*-----------------------------------

ABAP/4 Example Code: Fibonacci


DATA: output TYPE i.
PARAMETERS: p_num TYPE i.
START-OF-SELECTION.
  PERFORM fibonacci USING p_num
                    CHANGING output.
  WRITE:/ output.
*&---------------------------------------------------------------------*
*&      Form  fibonacci
*&---------------------------------------------------------------------*
*       text
*---------------------------------------

Delete PC Directory in ABAP/4

Example:  We will delete directory ’Temp’ on drive C:

CALL FUNCTION ’GUI_REMOVE_DIRECTORY’      
EXPORTING         
DIRNAME            = ’C:\Temp’     
EXCEPTIONS         
FAILED              = 1         
OTHERS              = 2
            &