cancel
Showing results for 
Search instead for 
Did you mean: 

Sript::i dont want to display empty field in script.

Former Member
0 Kudos

hi all,

i dont want empty space to be dispalyed in script,If the patricular field in internal table dont have any value.instead the next value of internal table to be displayed.pl tel me how to do.Thanks.

Regds,

CR

Edited by: Ranganayahi Chandirasekaran on Feb 16, 2008 4:33 AM

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

if you dont want to print empty fileds use following condition.

/: IF&v_field& IS NOT INITIAL

PH &v_field&

/: ENDIF

Regards,

Nageswar

Former Member
0 Kudos

hi

put field u want to display in IF condition on that field ,

LIKE :

/: IF&itab-f1& IS NOT INITIAL

P1 &itab-f1&

/: ENDIF

this may help u.