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 in ALV GRID class based

Former Member
0 Likes
2,987

hi

you have any idea about how to invoke the F4 help in ALV GRID Class based program.,

if u have any other related document or program using F4 function in ALV GRId please send to me for reference

Thanks & Regards

K.G

hi

you have any idea about how to invoke the F4 help in ALV GRID Class based program.,

if u have any other related document or program using F4 function in ALV GRId please send to me for reference

Thanks & Regards

K.G

5 REPLIES 5
Read only

Former Member
0 Likes
846

hi for what kind of fields you need to give f4.

are they std or custom...

please let me know about the fields..

try to check my logic which i gave in the below post..

it will give f4 help to the fields(if thet are standard table fieldS)

Message was edited by: Vijay Babu Dudla

Read only

Former Member
0 Likes
846

if you are using standard fields

then no need of any fm.

  X_FIELDCAT1-FIELDNAME = 'VBELN'.
  X_FIELDCAT1-TABNAME = 'IT_VBAK'.
....
.....
.....
  X_FIELDCAT1-REF_TABLE = 'VBAK'.
  X_FIELDCAT1-REF_FIELD = 'VBELN'.

vijay

Read only

0 Likes
846

hi

i need to invoke F4 help in custom defined tables in ALV GRID how to do that ?

right now i am following these steps still is not working

For F4 help, you must register the fields whose F4 request will trigger the “onf4” event. For this you must prepare a table of type “LVC_T_F4” and register this table using the method “register_f4_for_fields”. While preparing table you must include a line for each field which will trigger F4 event.

Read only

0 Likes
846

This example will be more helpful to you..

<b>BCALV_EDIT_08</b>

try this..

vijay

Read only

Former Member
0 Likes
846

Hi,

Take a loke in this site : http://www.geocities.com/mpioud/Abap_programs.html

Best Regards