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

Regarding ALV

Former Member
0 Likes
366

hi freinds,

Can anybody tell me how to do this.................?

Like in SE11 we can select input fields and outputfields...........

same i need to implement in ALV report ...........

Regards,

Imran

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
349

Hi

There are 2 ways wherein you can make a field as input enabled.

One is by setting the edit = 'X' in the fieldcatalog for that field.

Loop at l_fcat.

if l_fcat-fieldname = 'FIELD'.

l_fcat-edit = 'X'.

modify l_fcat.

endif.

Endloop.

Second method is by using Styles by which you enable a field, disable a field or make it a pushbutton etc..Using Styles can be found in any basic document on ALV.

2 REPLIES 2
Read only

Former Member
0 Likes
350

Hi

There are 2 ways wherein you can make a field as input enabled.

One is by setting the edit = 'X' in the fieldcatalog for that field.

Loop at l_fcat.

if l_fcat-fieldname = 'FIELD'.

l_fcat-edit = 'X'.

modify l_fcat.

endif.

Endloop.

Second method is by using Styles by which you enable a field, disable a field or make it a pushbutton etc..Using Styles can be found in any basic document on ALV.

Read only

Former Member
0 Likes
349

Hi Imran,

Try with the <b>Change Layout</b> option in the ALV and Save the variant.

You can select the layout based on the ALV variant saved before.

Reward points if this helps.

Nanda