2005 Nov 22 8:56 AM
2005 Nov 22 9:00 AM
Hi Yogendra,
Yep. In your Field catalog
enable edit = 'X'.
for a particualr field.
if you want it for full layout
then layout-edit = 'X'.
regards
vijay
Is it possible to enter the values after displaying the list
2005 Nov 22 9:00 AM
Hi Yogendra,
Yep. In your Field catalog
enable edit = 'X'.
for a particualr field.
if you want it for full layout
then layout-edit = 'X'.
regards
vijay
2005 Nov 22 9:01 AM
Yes we can do.
In the field catalog we need to specifiy the input = 'X'.
Regards
Muthappan
2005 Nov 22 9:02 AM
X_FIELDCAT-SELTEXT_M = 'Material'.
X_FIELDCAT-FIELDNAME = 'MATNR'.
X_FIELDCAT-TABNAME = 'IT_FINAL'.
X_FIELDCAT-COL_POS = L_POS.
X_FIELDCAT-OUTPUTLEN = '3'.
<b> X_FIELDCAT-INPUT = 'X'.</b>
X_FIELDCAT-HOTSPOT = 'X'.
APPEND X_FIELDCAT TO IT_FIELDCAT.
CLEAR X_FIELDCAT.
in this case Matnr will set editable.
suppose you want all fields to be editable then
set the layout-edit = 'X'.
regards
vijay
2005 Nov 22 9:24 AM
Hi Yogendra,
welcome to SDN.
yes it is possible to enter the values after displaying the list.
for example see the dempo programme <b>BCALV_EDIT_01</b>
hope this helps you.
regards,
venu.
2005 Nov 22 10:02 AM
Hi,
data i_fieldcat TYPE lvc_t_fcat.
Field-symbols: <lfs_fieldcat> TYPE lvc_s_fcat.
LOOP AT i_fieldcat ASSIGNING <lfs_fieldcat>.
CASE <lfs_fieldcat>-fieldname.
WHEN 'MATNR'.
....
<lfs_fieldcat>-edit = 'X'.Also chek out a link for editable ALV:
http://www.sapdevelopment.co.uk/reporting/alv/alvscr.htm
Best Regards,
Anjali