‎2009 Oct 16 4:48 AM
I have the following code, why the value '0010279879' is not in screen of the TCODE ME57?
SET PARAMETER ID 'BAN' FIELD '0010279879'.
CALL TRANSACTION 'ME57'.
‎2009 Oct 16 5:14 AM
Hi
Try this.
Data :w_banfn type banfn value '0010279879'.
SET PARAMETER ID 'BAN' FIELD w_banfn.
CALL TRANSACTION 'ME57'.
Regards,
Vinod
‎2009 Oct 16 5:43 AM
use:
SUBMIT rm06bz00 VIA SELECTION-SCREEN
with ba_banfn = w_banfn.
‎2009 Oct 16 7:37 AM
Thanks for you reply, another question, why the check box in the next screen is disabled?
‎2009 Oct 21 3:37 AM