on ‎2007 Jun 15 9:08 AM
hi i want code for running timer in webdynpro
it should be in hh:mm:ss
format
thank u
Request clarification before answering.
Hi,
Check the below link u get an code for timer,
http://help.sap.com/saphelp_nw70/helpdata/en/53/7bfa40badbf56fe10000000a1550b0/frameset.htm
Timed Trigger,
http://help.sap.com/saphelp_nw70/helpdata/en/da/a6884121a41c09e10000000a155106/frameset.htm
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
1)Insert Timed Trigger UI Element
2)create 1 attribute TIME,set datatype as String.
3)context map this attribute to component controller
4)Insert Textview,then bind that time attribute to textview
5)create action as Time for timed trigger in their properties and also set properties DELAY = 1
6)write code in this, onActionTime(),
String dt1 = Calendar.getInstance().getTime().toString();
wdContext.currentContextElement().setTime(dt1);
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.