‎2006 Feb 03 5:26 AM
Can we invoke POV for Date field.
I have a date field and depending upon the Transaction F4 help should come. In one transaction i have to get Calender and others the Dates from Ztables have to appear. Is it possible to invoke calender implicitly.
‎2006 Feb 03 5:43 AM
see the fn module CALENDER_FOR_F4_DATE.
call the fn module in the event
at selection screen on value_request for (parameter)
‎2006 Feb 03 5:30 AM
‎2006 Feb 03 5:32 AM
‎2006 Feb 03 5:43 AM
see the fn module CALENDER_FOR_F4_DATE.
call the fn module in the event
at selection screen on value_request for (parameter)
‎2006 Feb 03 6:00 AM
HI saji
you can use
CALENDER_FOR_F4_DATE in the at selection-screen for value-request for <parameter>
for getting the calendar.
and for getting the date from the ztable you can use
F4IF_FIELD_VALUE_REQUEST
regards
‎2006 Feb 03 6:24 AM
I want to get the F$ get in the fiweld of Module pool
rograme. So what should i use for Value-request?
‎2006 Feb 03 6:30 AM
In the relevant event block, the MODULE statement is executed, which is assiciated with the FIELD statement for the screen field of the selected screen element. If several FIELD statements exist for the same screen field, only the first is executed.
‎2006 Feb 03 6:30 AM
Hi saji,
1. use in PAI
MODULE pai_1000.
PROCESS ON VALUE-REQUEST.
FIELD t001-bukrs MODULE abc.
where t001-bukrs = your fieldname.
module abc = your module to write code.
regards,
amit m.
‎2006 Feb 03 6:31 AM
‎2006 Feb 03 7:52 AM
Hi saji,
1. use in PAI
MODULE pai_1000.
PROCESS ON VALUE-REQUEST.
FIELD t001-bukrs MODULE abc.
module abc.
select all the dates from your Ztable based on your first transaction into a internal table.
and use f4 help function modules.
endmodule.