How to add Timer functionality to Agentry application?

I want to add timer functionality in my Agentry app.
After selecting particular button, the timer should start and end after other button selected.
I am using Eclipse editor for coding and I cant see any option for timer functionality.

Prit,
The actiontimer program is a windows program that was developed to execute the action at certain intervals.  This program is a windows program that naturally will not run on Android and there is no equivalent android program that exists at this time.
Also, since Android is a more locked down OS, we don't have the same capabilites in terms of other external applications invoking actions within the Agentry client that we do with Windows.
The Agentry 6.0.x client just doesn't have the same capabilities needed to implement this functionality.  However as I mentioned, with theSMP 3.0 (Agentry 7) client we have introduced the OpenUI SDK which should give you the ability to write an equivalent capability on the Android platform.
The OpenUI API documentation can be found at the following link
Agentry OpenUI API
--Bill

Similar Messages

  • How we add parter function in customer sales area usinf xd02

    how we add parter function.in xd02.any function module or user exit is there.
    it check first whether parter exit or not if not exit then add to atb partner function tab in XD02.any bdc how we add at run time this

    u can check with lsmw

  • How to add accessibility to already built application

    Hi,
    Can any one help me how to add accessability to already built application. jdev version which am using is 11.1.1.4.
    Thanks in advance.
    Regards,
    lavanya.

    Hi,
    its mostly a configuration in ADF Faces
    http://docs.oracle.com/cd/E23549_01/web.1111/b31973/af_access.htm
    Frank
    Ps.: One of the beauties of using ADF Faces instead of hand-crafted web site in which case you would have been screwed

  • How to Add Time in Date

    hi,
    how to add time in a date for example
    date='01-jan-2005 23:00' [dd-mon-yyyy hh24:mi]
    time (to add)='02:00' [hh24:mi]
    if any one hv any idea about. pls reply

    If you can get the time element into an INTERVAL DAY TO SECOND datatype, you can simply add the interval to the date, e.g:
    yourdate + NUMTODSINTERVAL(2,'HOUR')
    What is tricky is converting a string like '02:00' into an interval or a number. You could generate a numeric offset with something like:
    TO_DATE('02:00','HH24:MI') - TO_DATE('00:00','HH24:MI')
    which can then be added to the date
    SELECT TO_DATE('01-jan-2005 23:00', 'dd-mon-yyyy hh24:mi') +
           (TO_DATE('02:00','HH24:MI') - TO_DATE('00:00','HH24:MI'))
    FROM   dual;

  • How to add images into a java application (not applet)

    Hello,
    I am new in java programming. I would like to know how to add images into a java application (not an applet). If i could get an standard example about how to add a image to a java application, I would apreciated it. Any help will be greatly apreciated.
    Thank you,
    Oscar

    Your' better off looking in the java 2d forum.
    package images;
    import java.awt.*;
    import java.awt.image.*;
    import java.io.FileInputStream;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    /** * LogoImage is a class that is used to load images into the program */
    public class LogoImage extends JPanel {
         private BufferedImage image;
         private int factor = 1; /** Creates a new instance of ImagePanel */
         public LogoImage() {
              this(new Dimension(600, 50));
         public LogoImage(Dimension sz) {
              //setBackground(Color.green);      
              setPreferredSize(sz);
         public void setImage(BufferedImage im) {
              image = im;
              if (im != null) {
                   setPreferredSize(
                        new Dimension(image.getWidth(), image.getHeight()));
              } else {
                   setPreferredSize(new Dimension(200, 200));
         public void setImageSizeFactor(int factor) {
              this.factor = factor;
         public void paintComponent(Graphics g) {
              super.paintComponent(g);
              //paint background 
              Graphics2D g2D = (Graphics2D) g;
              //Draw image at its natural size first. 
              if (image != null) {
                   g2D.drawImage(image, null, 0, 0);
         public static LogoImage createImage(String filename) { /* Stream the logo gif file into an image object */
              LogoImage logoImage = new LogoImage();
              BufferedImage image;
              try {
                   FileInputStream fileInput =
                        new FileInputStream("images/" + filename);
                   image = ImageIO.read(fileInput);
                   logoImage =
                        new LogoImage(
                             new Dimension(image.getWidth(), image.getHeight()));
                   fileInput.close();
                   logoImage.setImage(image);
              } catch (Exception e) {
                   System.err.println(e);
              return logoImage;
         public static void main(String[] args) {
              JFrame jf = new JFrame("testImage");
              Container cp = jf.getContentPane();
              cp.add(LogoImage.createImage("logo.gif"), BorderLayout.CENTER);
              jf.setVisible(true);
              jf.pack();
    }Now you can use this class anywhere in your pgram to add a JPanel

  • How to add time informatio​n to the first column of spreadshee​t file?

    hi all.
    how to add time information to the first column of spreadsheet file?illustrated in the figure below。
    Solved!
    Go to Solution.

    You need to take the time data and convert it to double.  But Excel data is based on days since 1/1/1900 while LabVIEW data is based on seconds since 1/1/1904.
    Take a look at this thread for an example I posted on how to make the conversion.
    One other possibility is to convert your numeric data to a string, and build on an array of time that is also a string version of the timestamp.  Then write your 2-D string array to the Write to Spreadsheet file.

  • How to add scroll function in  the applet launched by  Java Web Start?

    I have Java Web Start installed in order for the applet to launch.The applet size: width:700 height:1000
    my compuer resolution:800*600
    the applet launched by Java Web Start can only be seen partly,especially height.How to add scroll function in the applet launched by Java Web Start?
    Thanks for help.
    email:[email protected]

    You can very easily add a JScrollPane manually between the Applet and your content. Perhaps it would be beter if javaws did this automatically. In the browser, an applet can be any size. In Java Web Start an applet is directly contained within a JFrame, so it cannot be smaller than the minimum size of a JFrame, or Larger than the max.

  • Using time() function in multithreaded application

    I am using time() function in a multithreaded application with NULL argument for getting current time.
    Some time it's observed that we get a time one minute earlier than current time (3600 seconds).
    Is there a problem in the usage of the function?
    I am using expression : currenttime = time(NULL);
    I had seen some people using following way - time(&currenttime );
    Will above two behaves differently in multithreaded environment?
    [I  am using  Sun C++ 5.5 compiler on Solaris 8]

    How do you compare actual time against the time seen by your threads? If your threads are printing the value from time(2) to stdout, it's possible that you're seeing an artifact of thread scheduling and/or output buffering.
    I really doubt that you have a concurrency problem, but anyway make sure that you include the -mt option on your compile line:
    CC -mt blahblahblah...

  • How to Add delta functionality to generic datasource

    Hello all,
    My requirement is to make a Generic Transactional Data source Extractor to Delta enabled.
    The datasource doesnt contain either of the following delta enabling functionality
    -> Date 
    ->time stamp
    ->Numeric pointer.
    Could anyone suggest idea how to add these in Generic Datasource so that it can be delta enabled
    regards
    Bala

    Hi Bala,
    Coding should be done checking th trasaction and the tables.
    but i can provide outline .
    add a field last changed on  and write a code saying last changed on is equal to sy-datum.
    i am not sure of the scenario where to write this code and after which line.you can take a decision.
    check the link below
    https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c062a3a8-f44c-2c10-ccb8-9b88fbdcb008&overridelayout=true
    Regards
    Joga

  • How to Add Partner function in the main screen of the Sales order???????

    Hello All,
    I am working on ECC 6.00 SD module
    I want to add partner function in the main screen of the sales order, that mean add more partner function beside Sold to party and the ship to party to be in the order header, Is it possible and how?
    Regards
    Jacopo Françoise

    Hi
    If you want in the sales order , above the sold to party as the  box then you need to go for enhancements
    Regards
    Srinath
    Edited by: sri nath on Jun 11, 2008 6:56 PM

  • How to use Time Function

    I have two times say
    2310, 0050 - How can I find out using java that the difference between these two is 100 minutes or 1 hour 40 minutes.
    What libraries are used to find this out ??

    I need a time function which will do it.....I will be
    surprised if Java don't have something inbuilt....Try splitting the time into two strings for the hours and minutes, using the functions DrLaszloJamf provided for you.
    minutesSinceMidnight = hours * 60 + minutes; Otherwise, the GregorianCalendar is pretty cool.

  • How to add F4 functionality to a field in the Custom Infotype

    Dear Friends,
    I have created a custom Infotype 9332 for tracking the career growth of the employee. now i want add F4 functionality to a field in this infotype. How to do it and where to implement the code. Please suggest your valuable options.
    regards.

    Hi,
      You have 2 options.
    1.Table Level
    create a search element and you can attch it in table.
    2.Screen Level.
    In the Flow logic, create a module like " FIELD P9332-fieldname MODULE f4_values" under PROCESS ON VALUE-REQUEST.you can do the coding in the module for populating.
    Reward points if helpful.
    Regards,
    Manoj.

  • How to call a function of BRFplus application to another BRFplus applicatio

    Hello Experts,
    I am new to BRF+ subject.
    I have a doubt on this.
    Doubt:- I have two BRF+ application. for example application1 and application2.
                in application1 i have created a function<zfunc1> and attached one descision table to the function<zfunc1>(every thing is done in  application1).
                i want to call the above function<func1> in application2 .
    could anybody help me on this, how to acheive this functionality.
    thanks
    rakshar

    Hi Rakshar,
    You can define the access level of the function as Global if you would like to access it from a different application .
    By default the access level will be Application.
    Thanks and Regards,
    Rama.

  • CRM2007 How to add a Web Dynpro ABAP application to a CRM business role

    I am investigating CRM2007 UI framework and I cannot seem to find a way to add a custom made Web Dynpro ABAP Application (created in CRM 4.0) to a business role, or how to add a custom transaction created in classic ABAP (transaction created via se93, progam created via se38). Whatever I do, I only see BSP components. I am using transaction BSP_WD_CMPWB.
    Next to this it seems you can add/integrate Visual Composer applications to (there is an entry in spro called "integration of the visual composer in BI"). However, I presume we first have to meet the requirements for the portal integration in SAP CRM 2007 as described in spro. If somebody knows how this works, that would be great!
    kind regards
    Angelique Heutinck

    Hello Angelique,
    It should be possible to call web dynpro applications from the L-shape menu of CRM UI (check transaction CRMC_UI_NBLINKS). As for the old GUI transactions, you can embedd them also via transaction launcher using CRMC_UI_NBLINKS (search for "transaction launcher" in this forum, there is plenty of information on it).
    Best Regards,
    Yevgen
    Edited by: Yevgen Trukhin on Jun 19, 2008 11:53 AM

  • How to add Time field in the Date Calender in OAF screen

    Hi All,
    is there a way to add time field in the date calender, so that the user can set the time and select the date, then return the date/time to the specified field?
    or is there any slandered calender that has this functionality?
    Regards,
    Mahdi Charara

    Hi Mahdi ,
    If you are working on standard page then you can create a new item by personalization and set the DataType as : DATETIME it will display
    date as well as time .
    For custom page - you can create a new item as desired in anywhere in page and set the DataType as : DATETIME it will show both time
    and date .
    Is this what you looking for ?
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Downloading a file via JSP

    I am trying to write some code which will generate a file and then download the file from my Webserver. When I download the file I get "Error 500: OutputStream already obtained" appended to the file. I can't work out why this is so. Here is the code

  • I want to back up my Iphone 5 on Itunes but doesn't work. Please help

    Hi there, I want to back up my Iphone5 on my laptop (W8) so that I can use the back up on my new Iphone5s. I use Icloud but would rather do it via my laptop. When plugging the old Iphone into my laptop it only gives two options; set up as new Iphone

  • UC 540

    Hello, I am trying to add this to my network to appy updates, but I can not ping it cable is plugged into interface FastEthernet0/1/0 IP is set to 192.168.5.89, however, I can not ping it Any help wold be appreciated below is config Y log 2014.02.11

  • Want to capture my lips as drawing image in iPhone

    Want to capture my both the lips as scanned image in iPhone. I want to get "Technical Howknow" about capturing lips touch motion. Thanks in Advance

  • Budget exceed

    Hello Everyone, I have a Project which runs from 01/2006 to 12/2007 with Availability-control set for the Budget, the project is technically complete and the Project cost report shows a excess value posted to a particular WBS in the structure. when i