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
- 11648 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
- 9485 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
- 2624 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
- 2426 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
- 2829 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
- 1022 reads
Recent comments
3 years 29 weeks ago
3 years 34 weeks ago
3 years 35 weeks ago
3 years 35 weeks ago
3 years 35 weeks ago
3 years 38 weeks ago
3 years 38 weeks ago
3 years 38 weeks ago
3 years 38 weeks ago
3 years 38 weeks ago