Hi Susmitha,
I made with this
w_month = sy-datum+4(2).
*IF cols-SCREEN-name = .
LOOP AT tc-cols INTO cols.
IF w_month = 01 AND
cols-screen-name = 'ZEXT_RPT_WA-JANY'.
cols-screen-active = 1.
cols-screen-input = 1.
cols-screen-output = 1.
ELSEif cols-screen-name = 'ZEXT_RPT_WA-JANY' .
cols-screen-active = 0.
* cols-screen-input = 1.
* cols-screen-output = 1.
ENDIF.
MODIFY tc-cols FROM cols.
Its working fine but for new entry it would work but what about change if the user clicked on change will the values entered before for others months be visible or not.
Thanks
Gaurav