cancel
Showing results for 
Search instead for 
Did you mean: 

Print an amount when the bank account change.

Former Member
0 Kudos

Hi!!

I need to print in the screen a values when the bank account change into a loop. But I can't use a on change because the first record is printed and I only want print the data if the change is true.

Thanks!!

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Carlos,

Use AT NEW <Bank Acct>.

Former Member
0 Kudos

loop at itab.

if not sy-tabix eq 1.

on change of var.

do ....

endon.

endif.

endloop.

Regards,

Bikash

Former Member
0 Kudos

Just add an additional check 'IF SY-TABIX = 1' avoid the AT NEW or ON CHANGE OF logic for this.

Srinivas