Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

F4 help on Date implicitly

Former Member
0 Likes
962

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.

1 ACCEPTED SOLUTION
Read only

hymavathi_oruganti
Active Contributor
0 Likes
923

see the fn module CALENDER_FOR_F4_DATE.

call the fn module in the event

at selection screen on value_request for (parameter)

9 REPLIES 9
Read only

Former Member
0 Likes
923

Hi,

Yes u can trigger explicit f4 help.

rgds

p.kp

Read only

0 Likes
923

do you know How to trigger it explicitly?

Read only

hymavathi_oruganti
Active Contributor
0 Likes
924

see the fn module CALENDER_FOR_F4_DATE.

call the fn module in the event

at selection screen on value_request for (parameter)

Read only

Former Member
0 Likes
923

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

Read only

0 Likes
923

I want to get the F$ get in the fiweld of Module pool

rograme. So what should i use for Value-request?

Read only

0 Likes
923

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.

Read only

0 Likes
923

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.

Read only

0 Likes
923

the above relates to POV

Read only

Former Member
0 Likes
923

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.