Bagaimana merubah page orientation (Portrait/Landscape) di SmartForm.

1. Pertama buka smartform ( tcode smartforms ).
2. Klik 2x TEST, Klik "Output Options" tab, Disana akan terlihat print attributes kemudian pilih Page Format.

Capture Screen :

Posted by Shanto Labels:
Wednesday, October 6, 2010 at 5:58 AM | 0 comments
Fungsi DateDiff adalah mengembalikan jumlah interval antara dua tanggal itu di VB, sedangkan di ABAP kita bisa mengunakan fungsi DAYS_BETWEEN_TWO_DATES.

Contoh :

CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
EXPORTING
   i_datum_bis = '20080401'
   i_datum_von = '20080327'
   i_stgmeth = 2
IMPORTING
   e_tage = output_interval.
Posted by Shanto Labels: