Steps to be followed:
1)Go to SE18
2)Select Enhancement spot
3)Give the Espot name 'HRESS_PAYSLIP'
4 From left side double click on the Implementing Class 'CL_HRESS_PAYSLIP_BADI_STANDARD'.
5)Within that double click on the method 'if_hress_payslip_badi~adjust_field_catalog'.
6)AT the end of this method there will be 4 Lines of coding with the Loop and endloop. This is the code which
is use to hide the column from ESS/MSS payslip overview.
7) According to your requirements you should copy the same 4 lines code and hard code the particular column field name
with the Implicit Enhancement.
Below Code is for your understanding:
clear ls_field_usage.
ls_field_usage-enabled = abap_false.
ls_field_usage-visibility = cl_wd_uielement=>e_visible-none.
modify ct_field_usage from ls_field_usage transporting enabled visibility
where name eq 'Hardcode ur column field name'.
All the best