Hi All,
I have 2 queations
1) Can I have word wrap option in alv, ie any option to display the same cell information in multiple lines and
2) I am trying to use no_zero of fieldcatalog as shown in below code
wa_billets_fcat-fieldname = 'ACTUAL_QTY'.
wa_billets_fcat-inttype = 'C'.
wa_billets_fcat-outputlen = '13'.
wa_billets_fcat-coltext = 'Actual Qty'.
wa_billets_fcat-seltext = 'Actual Qty'.
wa_billets_fcat-edit = 'X'.
wa_billets-no_zero = 'X'.
APPEND wa_billets_fcat TO billet_fcat.
CLEAR wa_billets_fcat.
but it is giving the error as bellow
Field "WA_BILLETS-NO_ZERO" is unknow. it is neither is one of the specified tables nor defined by a 'DATA" statement.
Please help me
Thanks in advance.