2006 Oct 16 6:50 AM
Hai all,
Can i use the control break stm on change of b/n select and endselect.if so how just send me a bit of code relating.
Thanks
ganesh
2006 Oct 16 6:58 AM
Hi,
U can't able to use On Change on between select and end select.
They are usedin between loop and endloop only..
Some points would be fine..
Cheers,
Simha.
2006 Oct 16 6:58 AM
Hi,
Yes, and following is the example code:
TABLES T100.
SELECT * FROM T100 WHERE SPRSL = SY-LANGU AND
MSGNR < '010'
ORDER BY PRIMARY KEY.
ON CHANGE OF T100-ARBGB.
ULINE.
WRITE: / '**', T100-ARBGB, '**'.
ENDON.
WRITE: / T100-MSGNR, T100-TEXT.
ENDSELECT.
Regards,
Rajesh
2006 Oct 16 7:40 AM
hi
good
use like this
SELECT * FROM T100 WHERE SPRSL = SY-LANGU AND
MSGNR < '010'
ORDER BY PRIMARY KEY.
ON CHANGE OF T100-ARBGB.
ULINE.
WRITE: / '**', T100-ARBGB, '**'.
ENDON.
WRITE: / T100-MSGNR, T100-TEXT.
ENDSELECT.
thanks
mrutyun^