Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP scripts

Former Member
0 Likes
394

HI all,

How do we hide a few fields from the print out but have them for uploading to the file...?

please expedite

2 REPLIES 2
Read only

Former Member
0 Likes
368

hi,

Filter them using if condition.

/: if GV_PRINT = 'X'.

AS &it_vbak-vbeln&,,&it_vbak-posnr&

/: endif.

Regards,

Sailaja.

Read only

Former Member
0 Likes
368

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