2009 Sep 17 12:57 PM
Any idea how to hide null quantities, that is donot display the 000,0000.0000 in the grid?
2009 Sep 17 1:00 PM
You have the option
no_zero = 'X' for the Fieldcatalog.
Please use that
Any idea how to hide null quantities, that is donot display the 000,0000.0000 in the grid?
2009 Sep 17 1:00 PM
You have the option
no_zero = 'X' for the Fieldcatalog.
Please use that
2009 Sep 17 1:02 PM
Hi!
Move the Particular field into a character type field and then display it...in that case the zeros won't get displayed when the value is null as the initial value for the character type data is Spaces rather than zeros.
Regards.
2009 Sep 17 1:02 PM
either set no_zero = 'X' in field catalog or make the field of type string.. and before passing check the value is initial or not. if its initial do not pass it.
2009 Sep 17 1:07 PM
dear
Pls check this code snippet
<
s_field-col_pos = 5.
s_field-fieldname = 'WBS_ELEMENT'.
s_field-reptext = 'WBS ELEMENT'.
s_field-outputlen = 30.
s_field-edit = 'X'.
s_field-no_zero = 'X'.
APPEND s_field TO t_field.
CLEAR s_field.
>
Thanks and regards
suresh kumar kollapuri
2009 Sep 17 1:09 PM
if your query got solution please close this thread
Suresh kumar Kollapuri
2009 Sep 17 1:02 PM
Use this setting in the field catalog
wa_fieldcat-no_zero = 'X'.
Regards,
Vikranth
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |