2008 Oct 29 11:58 AM
Hi All,
Am using 4 screen fields which are of DATS type ,but am unable to attach F4 help.
i have tried several posibilities like declaring the fields like sy-datum and many more,but nothing is working out.
pls help me out.
regards
-john
2008 Oct 29 12:05 PM
Hi John,
declare your date field with type S_DATE.
hope it will work.
Regards,
Anirban
2008 Oct 29 12:30 PM
hi,
am getting f4 help but am getting f4 symbol ( f4 help symbol ) for the field.
any solution
regards,
-john
2008 Oct 29 12:08 PM
hi,
use 'F4_DATE' function module.
DATA: DATE LIKE WORKFLDS-DAY.
CALL FUNCTION 'F4_DATE'
EXPORTING
DATE_FOR_FIRST_MONTH = SY-DATUM
IMPORTING
SELECT_DATE = DATE
EXCEPTIONS
CALENDAR_BUFFER_NOT_LOADABLE = 1
DATE_AFTER_RANGE = 2
DATE_BEFORE_RANGE = 3
DATE_INVALID = 4
FACTORY_CALENDAR_NOT_FOUND = 5
HOLIDAY_CALENDAR_NOT_FOUND = 6
PARAMETER_CONFLICT = 7
OTHERS = 8.
2008 Oct 29 12:10 PM
Hi,
Check the following code:
PARAMETERS:
p_var TYPE budat.
Thanks & Regards,
Navneeth K.
2008 Oct 29 12:12 PM
Hi,
Try to declare it as type of Standard table field.
For example :
DATA: CREDAT TYPE EDIDC-CREDAT.
Regards,
Amit.
2008 Oct 29 12:41 PM
hi.
plz show me code where u r facing problem.
bcoz
parameters: date1 like sy-datum
will automatically attach the help with it.
best regards.
tahir naqqash
2008 Oct 29 1:18 PM
hi,
what do u mean ?
"am getting f4 help but am getting f4 symbol ( f4 help symbol ) for the field"
you mean the following.
your are getting F4 help but not want to show symbol ?
kind regards,
Faisal
2008 Nov 02 8:56 AM