2005 Dec 22 6:36 AM
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
2005 Dec 22 6:53 AM
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
2005 Dec 22 6:57 AM
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
2005 Dec 22 7:04 AM
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.
2005 Dec 22 7:12 AM
This example will be more helpful to you..
<b>BCALV_EDIT_08</b>
try this..
vijay
2005 Dec 22 7:02 AM