hi,
please note two things for forms:
1. Only font family Courier works with the arabic letters.
2. RTL or LTR is defined in system table, where the languages are stored.
or you can put modification in the driver program or in adobeform interface..like
data: date1 type NUMC10.
DATE = sy-datum.
if sy-langu = 'AR'.
concatenate DATE+6(2) DATE+4(2) DATE+0(4) into DATE1 separated by '.'
endif.
thanks!!