2010 Oct 20 2:32 PM
Hi experts,
As per subject i have a field for which i have assigned 5 fixed values in the domain level (of that field) . The problem is when i am displaying my ALV grid output i need a F4 help and F4 Option for the same is not reflecting and i have assigned in the field catlog as shown bellow.
wa_fcat-fieldname = 'ZDEPLOY'.
wa_fcat-tabname = 'IT_FINAL'.
wa_fcat-f4availabl = 'X'.
wa_fcat-key = 'X'.
WA_FCAT-SELTEXT_L = 'Deployment Planned'.
wa_fcat-outputlen = '25'.
WA_FCAT-EDIT = 'X'.
WA_FCAT-REF_FIELDNAME = 'ZDEPLOY'.
WA_FCAT-REF_TABNAME = 'ZETMDEPL'.
APPEND WA_FCAT TO IT_FIELDCAT.
CLEAR WA_FCAT.
for the above field the f4 help is not reflecting.
Intrestingly i have another field which i have declared using the same procedure for which my F4 help (with fixed values ) is reflecting in the same program .with the values as shown below
wa_fcat-fieldname = 'ZFINAL'.
wa_fcat-tabname = 'IT_FINAL'.
WA_FCAT-SELTEXT_L = 'Final Status'.
wa_fcat-outputlen = '10'.
WA_FCAT-EDIT = 'X'.
wa_fcat-ref_fieldname = 'ZFINAL'.
wa_fcat-ref_tabname = 'ZETMDEPL'.
APPEND WA_FCAT TO IT_FIELDCAT.
CLEAR WA_FCAT.
can u plz suggest me with a solution .
Regards,
Edited by: abhilash aswath on Oct 20, 2010 3:32 PM
Moderator message: please do not use SMS speak.
Edited by: Thomas Zloch on Oct 20, 2010 3:58 PM
2010 Oct 21 6:33 AM
hi,
There was a mismatch of characteristics. I resolved by matching the same.