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

Search Help

Former Member
0 Likes
654

Hi Dear All,

I have created one Report. When I execute this Report that time user want to Edit the output. That means I have to allow user to Edit the output it is ok I did it.

But For One column on output which is going to Edit must have Search Help. Please tell me how to set the Search Help On Output Column In ALV Report. Plz help me..........................

Thanks and Regards.

Pradip Pawar

ABAP Consultant

1 ACCEPTED SOLUTION
3 REPLIES 3
Read only

Former Member
0 Likes
568

Hi,

As far as I know, for giving inputs we can create search help but in the display of outputs I am not sure we can create it.

Read only

Former Member
0 Likes
568

HI,

WA_FIELDCAT-COL_POS = 4.

WA_FIELDCAT-TABNAME = 'GT_OUT'.

WA_FIELDCAT-FIELDNAME = 'DATAINS2'.

WA_FIELDCAT-SELTEXT_M = 'POD'.

WA_FIELDCAT-EDIT = 'X'.

APPEND WA_FIELDCAT TO I_FIELDCAT.

CLEAR WA_FIELDCAT.

<b>Reward if useful</b>