‎2006 Aug 24 10:40 AM
HI all,
How do we hide a few fields from the print out but have them for uploading to the file...?
please expedite
‎2006 Aug 24 10:50 AM
hi,
Filter them using if condition.
/: if GV_PRINT = 'X'.
AS &it_vbak-vbeln&,,&it_vbak-posnr&
/: endif.
Regards,
Sailaja.
‎2006 Aug 24 10:56 AM
Hello,
U can hide it by having a flag like LV_down.
In print program.
LV_DOWN = 'X'
Try like this in the Form.
/: IF LV_DOWN EQ 'X'
&HIDE FIELD&
/: ENDIF
If useful reward.
Vasanth