2007 Jul 23 5:51 PM
Hi Experts,
In my screen 100, i got 4 fields,
items
quantity
rate = $24
Tot_amount
default rate is $24
when user insert quantity and User pressing keyboard
tab button tot_amout shud apear quantity multipy rate automatically.
is there any events to perform this type of task while pressing tabbutton, please guide me.
Hi Experts,
In my screen 100, i got 4 fields,
items
quantity
rate = $24
Tot_amount
default rate is $24
when user insert quantity and User pressing keyboard
tab button tot_amout shud apear quantity multipy rate automatically.
is there any events to perform this type of task while pressing tabbutton, please guide me.
2007 Jul 23 6:40 PM
You can write the code in field statement
after PAI
field quantity module cal.
module cal.
if qty ne 0.
rate = qty * rate.
endif.
endmodule.
the above code should work
Thanks
Seshu
2007 Jul 23 8:24 PM
Seshu,
i am asking when user press TAB button from his keyboard, amount should automatically display that ( qty * rate ).
how it will appear once he entered quantity value, and press keyboard TAB button.
What to do, Pls tell me.
2007 Jul 23 8:28 PM
2007 Jul 23 8:46 PM
Seshu,
i am asking when user press TAB button from his keyboard, amount should automatically display that ( qty * rate ).
how it will appear once he entered quantity value, and press keyboard TAB button.
What to do, Pls tell me.
2007 Jul 23 8:54 PM
2007 Jul 23 9:23 PM
Hello Anil,
As Rich Said it is not possible ,I thought that Enter button ,then i saw your message it is TAB.
Either you enter enter button or keep one push button in Screen.
Try to convience client since SAP GUI Will not support.
Thanks
Seshu
2007 Jul 23 9:24 PM
thanks a lot for ur quick reply.
but this is the drawback of sapgui.
2007 Jul 23 9:27 PM