2007 May 11 10:36 AM
2007 May 11 10:43 AM
hi,
set this filed <b>
no_out</b> as <b>
'X'</b> in field catlog.
Rgds
Reshma
hi,
set this filed <b>
no_out</b> as <b>
'X'</b> in field catlog.
Rgds
Reshma
2007 May 11 10:38 AM
Hi,
Yes you have to use the filed catalog for that. In the strucutre( of type LVC_S_FCAT) you have somthing called NO_OUT you just need set it to 'X' to make the filed dissappear. Check out the exapmles in the package SLIS.
Best Regards,
Sesh
2007 May 11 10:41 AM
2007 May 11 10:42 AM
chk these 2 options in fieldcatalog
<b>NO_OUT</b>
If you set this field, you hide the relevant column in the list. Nevertheless, the column is available in the field selection and can be interactively selected by the user as a display field. The ALV displays the contents of hidden fields on the detail screen for a row in the grid control.
wa_fieldcat-no_out = 'X'.
<b>TECH</b>
If this field is set, the relevant field is not displayed on the list and cannot be shown interactively. The field is only known in the field catalog. (For example, it must not be specified as a sorting criterion).
wa_fieldcat-tech = 'X'.
Message was edited by:
Chandrasekhar Jagarlamudi
2007 May 11 10:42 AM
Hi,
Once u have created the field catalog using LVC_FIELDCATALOG_MERGE function, u can write the following piece of code:
LOOP AT T_FIELDCAT (this is ur fieldcatalog table)
IF T_FIELDCAT-FIELDNAME = 'MATNR'.
T_FIELDCAT-NO_OUT = 'X'.
MODIFY T_FIELDCAT INDEX sy-tabix.
ENDLOOP.
Regards,
Himanshu.
2007 May 11 10:43 AM
hi,
set this filed <b>
no_out</b> as <b>
'X'</b> in field catlog.
Rgds
Reshma
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |