Home      Ask a Question      My Stuff      Help   
  
TimeWorksPlus: IP Information into a Clock Prompt / Report
We can pull in IP data from a punch made online either from the WebClock 2.0, ESS (Plus), or the Mobile App (Plus): This can be done for either the IN or OUT punch using the below keywords(not case sensitive):

- inip
- OUTIP

Using the above we can use a script to do so like the below as far as pulling this into the "X_Prompt":

For an IN Punch:

X_Prompt = INIP;

For an OUT Punch:

X_Prompt = outip:

For both IN and OUT:

if (INip != "" OR OUTip != "") {X_Prompt = (inip + " - ") + OUTIP;}

From this you can then run any report that allows you to pull in clock prompt data with the punch.


Populating a clock prompt with location or department information based on IP address:

if(inip = "123.456.789.1"){
Loc = "Office";
}

You will want to replace "Loc" with whatever the Field Name of the clock prompt is.
ID
1311
Category
<Unassigned>
Date Created
9/24/2014 9:45:38 AM
Date Updated
2/9/2015 1:31:19 PM
Back to Search Results