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

ALV field catalog

Former Member
0 Likes
1,083

Hi,

Can any one define the Difference between slis_fieldcat_alv_spec-input and slis_fieldcat_alv_spec-edit

Both can be used for ALV edit enabled ?

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
962

Hi,

Input is to make the field ready for input.

The other one is of sap internal use and i dont have any idea about that.

you can check the where used list for sample programs.

Hi,

Can any one define the Difference between slis_fieldcat_alv_spec-input and slis_fieldcat_alv_spec-edit

Both can be used for ALV edit enabled ?

5 REPLIES 5
Read only

Former Member
0 Likes
962

Hi

there isn't too much documentation about it.....

maybe this can help you..is the definition of the structure


types: begin of slis_fieldcat_alv_spec,
         key_sel(1)     type c,        " field not obligatory
         no_sum(1)      type c,        " do not sum up
         sp_group(4)    type c,        " group specification
         reprep(1)      type c,        " selection for rep/rep
         input(1)       type c,        " input
         edit(1)        type c,        " internal use only
         hotspot(1)     type c,        " hotspot
       end of slis_fieldcat_alv_spec.

you can try to use one at time, an see the difference

regards

Marco

Read only

0 Likes
962

Hey,

I've already seen that.

Would like to actual difference and application of those two fields in ALV.

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
963

Hi,

Input is to make the field ready for input.

The other one is of sap internal use and i dont have any idea about that.

you can check the where used list for sample programs.

Read only

0 Likes
962

Keshav,

I've seen both ( input , Edit) used to make ALV editable reports..

But am still looking for a better answer.

Read only

0 Likes
962

Hi,

I think you can write a sample program based on these options, so that you can understand a bit more better.

Me too will check it once

Keshav