... s build a ZohoCreator subform
c_UsualShift = Collection();
for each v_WorkDay in m_ShiftBuildUp.keys()
{
info v_WorkDay;
//
// format the opening time and closing time
v_StartTi ...
What?
This is an article documenting how to parse the notification from eBay and using it to create an order in Shopify.
Why?
Previously, we would receive an eBay notification and create an ...
... and end dates
for each v_DayIndex in
{
v_CheckDateStart = v_FirstMonthDate.addDay(v_DayIndex);
if(v_CheckDateStart.toString("E")=="Sun")
{
v_DST_StartTime = v_CheckDateStart;
...
What?
A quick article to demonstrate code that creates a task in CRM based on the time logged against an Event/Meeting.
Why?
As developers, we're keep account of our time and we are currently ...
... == "Subform1")
{
// loop through the first subform of this record
for each r_SubformRow in r_Record.mySubform1
{
v_StartTime = r_SubformRow.Start_Time;
...
... a duration, we will work out the requested start and end time:
req_StartTime = input.Date_Field;
req_Duration = 90;
bool_doubleBooked=false;
for each thisRecord in allRecords
{
thisRecord_StartTime ...
... environment but the SQL basics are here to help me adapt it to whatever environment people keep throwing at me.
What I want:
ThisDate ThisDay StartTime TimeOut TimeIn EndTime TotalTimeToday ...
... milliseconds it took for a report to execute... I decided to do a database level calculation using two datasets:
-- Oracle 10g: DataSet1 -- your normal dataset query with an added field (ReportStartTime)
SELECT
field1,
field2,
TO_CHAR(systimestamp, ...
... WHERE WeekNumber=wm.[WeekNumber])) AS 'Date',
tt.[RoomId] AS 'Room',
tt.[StartTime] AS 'Start',
tt.[FinishTime] AS 'Finish',
sd.[Descrip] AS 'Event Type',
sd.[Notes] AS 'Booking Notes',
c.[Name] ...
... below... hopefully it will be quicker next time now that I noted it all down.
The SQL Script:
DECLARE
@StartTime datetime,
@EndTime datetime,
@GivenDate datetime;
SET DATEFORMAT dmy;
SET ...
... dateadd(d, tt.[WeekDay] - 1, @baseDate)) AS 'Day',
tt.[SiteId] AS 'Site',
tt.[StartTime] AS 'Start',
tt.[FinishTime] AS 'Finish',
tt.[RoomId] AS 'Room',
sd.[Descrip] AS 'Event Type',
sd.[Notes] ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.