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: 

input

Former Member
0 Kudos

Hi

What is the diff between fieldcatalog-edit and fieldcatalog-input.??

Thanks in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos

fieldcatalog-edit = 'X'. For edit mode( or input mode) in reuse_alv_grid_display

fieldcatalog-input = 'X' For edit mode( or input mode) in reuse_alv_list_display

regards

shiba dutta

6 REPLIES 6

Former Member
0 Kudos

krk,

fieldcatalog-edit = 'X'. -


Supoose already data is there in field it will allow to edit

fieldcatalog-input = 'X'.---Input menas it will accept the new entries

Don't forget to reward if useful.

former_member194669
Active Contributor
0 Kudos

Hi,

Both these fields not available in field catalog type LVC_T_FCAT . which version you are woking ?

aRs

Former Member
0 Kudos

User can modify some of the fields( <b>fieldcatalog-input is set to x</b> for that field). If one field(for ex. flag) is set, then user should not be allowed to change any of the fields on that row.

Change the field catalog's edit property as

data: ft_cat type lvc_s_fcat. Create field catalog.

If ft_cat-fieldname = 'MATNR'.

<b>ft_cat-edit = 'X'.</b>

endif.

rewardpoints if it is usefull ...

Girish

0 Kudos

Girish

I didnt understand what you are trying to say

you said input,i can edit 1 field??what about edit??edit also we can specific field.

Hi AR

iam talking normal fieldcatalog build...i think ur talking about object oriented.

Thanks

Former Member
0 Kudos

fieldcatalog-edit = 'X'. For edit mode( or input mode) in reuse_alv_grid_display

fieldcatalog-input = 'X' For edit mode( or input mode) in reuse_alv_list_display

regards

shiba dutta

Former Member
0 Kudos

Check the below thread :

input will be using for checkbox option means do not modify after user edit the value first time..