SAP R/3
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
- 8845 reads
SAP NetWeaver คือ อะไร
ช่วงปีที่แล้วคำว่า NetWeaver น่าจะเคยผ่านหูผ่านตาใครหลายๆ คนที่ทำงานด้าน ERP หรือคนที่ทำงานในบริษัทที่ใช้ SAP ข่าวคราวล่าสุดในไทยก็คือ รัฐบาลตกลงซื้อระบบของ SAP เพื่อใช้เป็น Back Office ที่เรียกว่า GFMIS หรือ Government Fiscal Management Information System นั่นเอง ความจริงแล้ว NetWeaver เป็นผลิตภัณฑ์ชุดใหม่ของ SAP ที่เป็นพื้นฐานของระบบทั้งหมด รวมไปถึง SAP R/3 และ mySAP
- sugree's blog
- Add new comment
- Read more
- 8539 reads
How to import & export SAPscript form
You can import and export SAPscript form by using report ’RSTXSCRP’.
You can specify form name in field ’Object name’.
About mode options:
- thitima's blog
- Add new comment
- Read more
- 2099 reads
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
*-----------------------------------
- Add new comment
- Read more
- 1877 reads
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
*---------------------------------------
- Add new comment
- Read more
- 2111 reads
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
&
- Add new comment
- Read more
- 876 reads
Recent comments
2 years 45 weeks ago
2 years 50 weeks ago
2 years 50 weeks ago
2 years 51 weeks ago
2 years 51 weeks ago
3 years 1 week ago
3 years 1 week ago
3 years 1 week ago
3 years 1 week ago
3 years 2 weeks ago