Sheet with Date Calc - example of time please

I am new to LiveCycle Designer.  I worked mainly with Acrobat script in the past.  I need to automate the calculations of time on a timesheet with 4 columns (AM, PM In, PM Out WALKED out) for each day of the week.  How to use the code below in a PDF file example?  I found this and believe it will work, but I do not know where to go in the PDF file.

function sTime2Min (sTime) {}

var aTime = sTime.split(":");

If (aTime.length < 2) sTime [1] = 0;

return (60 * Number(aTime[0])) + Number(aTime[1]);

}

function Min2HrsMin (fMins) {}

RFT var = Math.floor(fMins / 60);

var fMins = fMins % 60;

Var = util.printf SHRS ("%, 302d" RFT);

var sMins - util.printf ("%, 302d", fMins):

return RSH + ': ' + sMins;

}

var fEtime is sTime2Min (EndTime.formattedValue) - sTime2Min (StartTime.formattedvalue);.

$.rawvalue = Min2HrsMin (fEtime);

Here's the code for Acbrobat that I know works, but it does not work in the designer.  Can it be converted into Designer?  If so, how?

var DayWorked =

this.getField ("Date");

var aDayWorked =

DayWorked.getArray ();

var TotalMinWorked = 0;

{

TotalMinWorked + DayMinutes (i);

}

var MinWorked is TotalMinWorked % 60;.

var HrsWorked = Math.floor(TotalMinWorked / 60);

HrsWorked = Event.Value + ":" + MinWorked;

Any help would be greatly appreciated.  Thank you!!

Becky

Hi Becky,

I think that we have a crisis of growth with the new forum.

Please send an email requesting the attachments to [email protected].

Steve

Tags: Adobe LiveCycle

Similar Questions

  • Problem with Date calc

    I am trying to get this FormCalc calculation to work:

    Date2Num (form1. Page1_SF. EffectDates.endDate, ' DD/MM/YYYY') - Date2Num (form1. Page1_SF. EffectDates.startDate, "DD/MM/YYYY")

    Evently, I will divide by 7 to get the number of weeks, but the initial calculation won't work after the dates entered.

    Can you tell me what the problem with my forumula?

    Thank you.

    Odd. Something strange on the Date2Num format. I changed them in the calculation for "YYYY-MM-DD" and it works. Note that this is the calculation of the number of days elapsed.

    If (HasValue (form1. Page1_SF. EffectDates.endDate) & HasValue (form1. Page1_SF. EffectDates.startDate)) then
    $.rawValue = Date2Num (form1. Page1_SF. EffectDates.endDate.rawValue, 'YYYY-MM-DD') - Date2Num (form1. Page1_SF. EffectDates.startDate.rawValue, "YYYY-MM-DD")
    on the other
    $.rawValue = null
    endif
    Steve
  • How to change date if time existed with date?

    Dear friends,

    I have a table and the date is at the same time with time in the entry_date field.

    data are like below in the field entry_date

    01/02/2014 08:00:03

    08:00:09 01/02/2014

    my SQL is

    update problems

    set ENTRY_Date = 1 January 2014"

    WHERE ENTRY_DATE = January 2, 2014;

    but the date is not changed. Please help how do I do this? I will be grateful

    Kind regards

    you could do:

    UPDATE problems

    SET entry_date = date ' 2014-01-01'

    WHERE TRUNC (entry_date) = date '' 2014-01-02;

    but he doesn't know a relay on entry_date index

    the opposite would be

    UPDATE problems

    SET entry_date = date ' 2014-01-01'

    "WHERE the entry_date > = date '" 2014-01-02

    AND entry_date< date="">

    both ways will define your entry_date at 00:00:00 January 1, 2014 - so any component "hour" that was in the entry_date is set at midnight.

    HTH

  • Time sheet calculation date

    I did some research on this for hours and I just can't understand, so I hope someone can help me here...

    I have a timesheet form where I want the user to click on the first box that I put up as a date field so the little open pop calendar. Once they choose the date in this field (I named dtf [0]) I would like to the rest of the fields to be filled automatically with dates for the rest of the week. I prefer the format to show only the month and the day - no year is needed.

    Example: the user chooses August 15, so the first field will display 8/15 and the rest of the week will be filled with 8/16, 8/17, 8/18 etc.

    Go to a previous thread wrote here last year, I found this code and twisted to apply to my domain names:

    Form1. .DTF #subform [0] [0]: output - (FormCalc, client)

    XFA. Form.Form1. #SubForm. Table2.Row1.DTF [1] = Num2Date ((Date2Num (xfa.form.form1. #subform.))) "Table2.row1.DTF [0]." (FormattedValue, "M/D") + 1), "M/d"); "
    XFA. Form.Form1. #SubForm. Table2.Row1.DTF [2] = Num2Date ((Date2Num (xfa.form.form1. #subform.))) "Table2.row1.DTF [0]." (FormattedValue, "M/D") + 2), "M/d"); "
    XFA. Form.Form1. #SubForm. Table2.Row1.DTF [3] = Num2Date ((Date2Num (xfa.form.form1. #subform.))) "Table2.row1.DTF [0]." (FormattedValue, "M/D") + 3), "M/d"); "
    XFA. Form.Form1. #SubForm. Table2.Row1.DTF [4] = Num2Date ((Date2Num (xfa.form.form1. #subform.))) "Table2.row1.DTF [0]." (FormattedValue, "M/D") + 4), "M/d"); "
    XFA. Form.Form1. #SubForm. Table2.Row1.DTF [5] = Num2Date ((Date2Num (xfa.form.form1. #subform.))) "Table2.row1.DTF [0]." (FormattedValue, "M/D") + 5), "M/d"); "
    XFA. Form.Form1. #SubForm. Table2.Row1.DTF [6] = Num2Date ((Date2Num (xfa.form.form1. #subform.))) "Table2.row1.DTF [0]." (FormattedValue, "M/D") + 6), "M/d"); "

    But I'm running into the same problem as the person who wrote the other thread has made... After my field date fields are populated, but 1/1, 1/2, 1/3 etc.!

    Moreover, the first field (dtf [0]) is a date/time field, while the other days of the week are only plain text areas. (Wasn't sure if they should all be date/time fields, perhaps?)

    What I'm doing wrong here? I don't know anything about JavaScript or FormCalc (clearly)! Thanks for any help you can provide...

    Check the attached samples...

    I write the script in FormCalc event and out of control...

    Also check the view model.

    https://Acrobat.com/#d=xH1H6-8fmYRxxQn2sZuIMA

    Thank you

    Srini

  • Make XY graph from the string with date and time data

    1 all sorry for my English.

    I have files with data. In this array of strings, I have 2 columns with date and time. I want to show these data to the XY Chart with time and date on some of the DBL and X on Y.

    I tried to do it by myself, but cannot add to time on X axis.

    Hi olderon,

    you date string is something like "30.01.2014" but looking for "%d//%m %y. Spot the problem?

  • page every time I try to download a free trial version for the sequels, I get to the legacy that when I click on free trial he always says we know the atm problem but its nothing to with the wifi is good, but its unique every time Please HELP

    page every time I try to download a free trial version for the sequels, I get to the legacy that when I click on free trial he always says we know the atm problem but its nothing to with the wifi is good, but its unique every time Please HELP

    You MUST have a 64-bit computer and operating system... What is your computer?

    -Programs are supposed TO not view or download if they are not installed on your computer

    MINIMUM for After Effects and Premiere Pro http://helpx.adobe.com/premiere-pro/system-requirements.html

  • Working with date and time of the request for help from acrobat JavaScript...

    This coming from

    Working with date and time in Acrobat JavaScript (part 1 of 3)

    The following code adds five days to the current date, and then prints the new date in the console window.

    Get the date and time

    var rightNow = new Date();

    Get the value of millisecond

    Article date

    var msRightNow = rightNow.getTime ();

    Calculate in milliseconds, of 5 days

    5 days x 24 hours/day x 60 min / h x 60 s / min x 1000 ms/s

    Challenge of var = 5 * 24 * 60 * 60 * 1000;

    Do the calculation of var CFAbsoluteTime = msRightNow + challenge;

    Create a new Date from the calculated value

    var theNewDate = new Date (finalTime);

    In the actual work on a form code, you'll want to place the

    the object of a field value. But since this is test code, we will

    Print the result to the Console window (great for debugging)

    Console.println ("5 days from now is:" + theNewDate.toString ());

    The foregoing is the exact code (cut and paste)

    The error I get here is;

    ReferenceError: theNewDate is not defined

    1:Console:exec

    undefined

    To get the "undefined" question a lot... it seems to me, learn to distinguish the undefined 'of type' undefined 'variable' and undefined 'value '.

    in this case 'theNewDate' seems to be defined as a variable equal to the current date plus 5 days... BUT I am now "educated" enough to 'see' Why am I getting the error...


    Any thoughts... Any who...

    You need to highlight all the text that you want to run.

    You have not set the rightNow variable before you can apply a method to the variable.

    You can just add a new variable as msRightNow name. Why not use rightNow.

    Executes the code that you provided with a new departure of Acrobat, I get the following error messages:

    rightNow.getTime is not a function

    1:Console:exec

    TypeError: rightNow.getTime is not a function

    1:Console:exec

    undefined

    What you are showing probably works because your previous attempts have left behind them a variable "rightNow" and as long as you do not have the object of time date change too much, you will not notice the error.

    Cleaning of your code:

    get the number of milliseconds of the date object.

    rightNow var = (new Date()) .getTime ();

    define 5 days in milliseconds;
    Challenge of var = 5 * 24 * 60 * 60 * 1000;

    Add 5 days to the value of this moment and assign the result to the last time;
    var CFAbsoluteTime = rightNow + challenge;

    convert finalTime value in a date object.
    var theNewDate = new Date (finalTime);

    display the result;
    Console.println ("5 days from now is:" + theNewDate.toString ());

    Have you tried the code that I provided, it is another way to add days to the date object.

  • retriving records with date and time stamps

    I need to get all records that have been updated between 08:36:06 and 08:36:09 12/15/2009

    I use this application it gives me the numbers on the right (I think) because this condition GURMAIL_CPLN_CODE = 'UGAP', I want something more
    using the stamp date and time with dates
    12/15/2009 08:36:06 AM
    12/15/2009 08:36:07 AM
    12/15/2009 08:36:08 AM
    12/15/2009 08:36:09 AM
    select * from GURMAIL
    where 
    PERMAIL_CPLN_CODE = 'UGAP'
    AND TO_CHAR(PERMAIL_ACTIVITY_DATE,'MM/DD/YYYYHH24:MI:SS AM') >= '12/15/2009 08:36%'
    Thank you

    face-> Office (while exclaiming in despair "¿Dang, now how could I miss that?")

    Yes, Max, you're right, thanks for being there!
    When I never learn never to post a reply, unless I ran the code me first? ;)
    In any case: bed here now, ciao!

  • the date of the first time, I install app

    I need the date of the first time I have install agame, very important to me

    The problem happened when my brother remove my apple mistakenly ID so I re register once again with the same old apple ID but the game does not connect with game Center and was told that (the game is attached to the different game Center account than you are logged)

    I wrote to the support of game and I asked them to change the email on the game, but they asked me to tell them the date of the first time I have install the game and play with him. can - what someone knows the way to know this date

    How I can got to this date, I have this game for 3 years and I don't want to lose my progress if some damage that happened to my iPhone

    Please help me

    I used iphone 4

    Best regards

    Mack

    Sign in to your iTunes and make appear the purchase history, follow the steps mentioned in this article:

    See your purchase history in iTunes on Mac or PC store
    Find which apps, songs, movies, TV shows or books you bought from the iTunes Store, App Store and iBooks Store.

  • Lack of voice and data at the same time kills me

    After using a treo 750 (WM 6.1) on att for the past three years, I guess I did not realize the advantage of ATT and gsm in general.  There are many drawbacks... mainly pricing for simple accounts (However their family plan was directly comparable to those of sprint).  I constantly try to use data applications while talking on the phone without success.  I started thinking that I could do without, but a week later, I still really really miss.  My wife did too... because she's I usually give directions or any other web information while on the phone.  There is nothing like view google satellite map to help someone make sure they are in the right place... "see a big tree on your right with a large Brown building behind it, Yes, it's that one" does anyone else have this feeling?  WiFi is not an option for me most of the time.

    Voice and data at the same time is not available when using any CDMA network due to network constraints. This is true for all types of phones, not only Palm or not only the Pre. Your example of electronic control or by using google maps, the gps data that can be stored before you activate the call. try to browse the web while making a call and try to go to a web page, you have never visited before, so that you know, that he cannot be a version collected page.

  • the server is not registered with DCOM within the required time.

    I use Windows 7 Enterprise Edition (SP1). It works fine while working on it directly. But when I try to make the remote access connection in the machine it is restarted after a certain time (1 hour or more). I found error in the following system logs:

    Log name: System
    Source: Microsoft-Windows-DistributedCOM
    Date: 01/04/2013 18:41:34
    Event ID: 10010
    Task category: no
    Level: error
    Keywords: Classic
    User: n/a
    Computer: xxxxxx.yyyy.net
    Description:
    The server {AAC1009F-AB33-48F9-9A21-7F5B88426A2E} is not registered with DCOM within the required time.
    The event XML:
     
       
        10010
        0
        2
        0
        0
        0 x 80000000000000
       
        10589
       
       
        System
        XXXXX.yyy.NET
       
     
     
        {AAC1009F-AB33-48F9-9A21-7F5B88426A2E}
     

    Hi Varun,

     

    Thanks for posting your question in the Microsoft Community.

     

    The question you posted would be better suited in the TechNet Forums.

    I suggest you to ask your question in the below link:

     

    Windows 7 networking:

    http://social.technet.Microsoft.com/forums/en-us/w7itpronetworking/threads

     

    I hope that the information above helps you.

    In the future if you fall on any question relating to Windows, please do not hesitate to post your request here on Microsoft Community, we will be more than happy to help you.

  • Data Guard environment, how time will need to use standby Database

    Dear experts,

    OS - Windows server 2012

    Oracle Version - 11.2.0.1.0

    The size of the database - 500 GB

    I have the plan to implement Data Guard. The database size is 500 GB.

    Please find below the question

    (1) when the database is harnessed for how long take use waiting for database so immediately or a few minutes?

    (2) when the server went down how long then to connect with the server backup immediately or a few minutes?

    I'm new to the data protection environment. Kindly help me

    Hello;

    I can perform a failover or a failover with Data Guard Broker in about 20 seconds. If I don't use a broker, it takes about 3 minutes.

    Quick start failover takes less time. Time will depend on the material, etc. of configuration options.

    Best regards

    mseberg

  • name the file exported with date

    Hi, I use this command to export my schema

    exp file = c:\expdat.dmp med/med

    I think that if I use the same command over and over again, it will replace the old file with the new one? right?

    2. I want to name the file exported with the sysdate (date and time)? , and I think it's a way to create a new file and does not replace the old file.

    Thank you

    Here is an example of adding a date for a file name:

    > exp med/med file=c:\expdat.%date:~10,4%%date:~7,2%%date:~4,2%.dmp

    To add as a data and once, you just need something based on time that is unique, so try something like:

    > exp med/med file=c:\expdat.%date:~10,4%%date:~7,2%%date:~4,2%.%time:~1,1%%time:~3,2%%time:~6,2%%time:~9,2%.dmp

  • The charge would be created with the unique package with date id

    Hi all

    Thanks in advance,

    IAM new to ODI, in my process I dnt know below two constaraints how to do, please help me in this regard...

    1. the load would be created with the id of a single lot with the date and
    stamp under the unique number (when the load data from source to target).
    2. HIGHLAND field would have the line number incremented from
    .001 when records are inserted in the table

    30021986 wrote:
    Hello

    Thanks for the reply, my requirement is,
    1.i have field JELN in the target table, in that line number is incremented from de.001 in the table. (Field JELN would have the incremented number line from de.001 when the rows are inserted in the table)

    -> for what I had done using sequenceing odi_sequence craeating, but it will give higher error.
    and the second condition is

    Never use ODI sequence unless you do business with a technology that has no native sequence is
    (eg files). Most of the RDBMS has their own sequence, and you use these alone.
    For oracle, you must use . NEXTVAL in the field mapping. Be sure to run on the target.

    2. when iam loading the data from the source to target a unique batch number must be generated with the date and time stamp (the load would be created with the unique package with date id and + *)
    timestamp in the unique number +) *.

    You can use SYSTIMESTAMP in this area and do not forget to run on the target.

  • Help with this calc; I can't make it work...

    is someone can you please tell me what is the problem with this calc script in the attached document?  This is the field titled 'advice of Total"Thank you so much; I spent a lot of time on this today.  This thing is new to me.  Thank you.

    Hello

    Not sure if that's what you're talking about, but I noticed your event.value is being commented because it is located on the top line, when I moved your event on a new line, he started to work on your calculation.

    Were you having trouble with?

Maybe you are looking for