Application Development 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: 

Use ALV as input

Former Member
0 Kudos

Hi all,

i want to use an empty ALV as an input area on the selection screen, i have created a new screen and new container with ALV in it, however i am facing following questions:

1. How do i display multiple rows (empty) available for the user to make entries?

2. I have tried filling the internal table(ALV) with blank spaces , i can see one row on the ALV but if i change some data on the ALV and try to see the changed data in Debugger i cannot see any values.

3. Is using ALV as an input area on the selection screen good option?

Please help me out.

Regards,

Kapil

1 REPLY 1

Former Member
0 Kudos

Hi,

when you create field catalog for ur alv.

take a field type of input.

for your help.

wa_fieldcat-tabname = 'ITAB'.

wa_fieldcat-fieldname = '<fieldname>'.

wa_fieldcat-col_pos = -


.

wa_fieldcat-outputlen = -


.

wa_fieldcat-edit = 'X'.

wa_fieldcat-seltext_l = text.'.

wa_fieldcat-seltext_m = 'text.'.

wa_fieldcat-seltext_s = 'text.'.

<i><b>regards

Debjani

reward point for helpful answer</b></i>