pears.NetProvTimesheetShiftCheckDates

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

CREATE PROCEDURE "pears"."NetProvTimesheetShiftCheckDates"( IN "pWebUserID" CHAR(20),IN "pTempProvTimesheetID" CHAR(20) ) 
RESULT( "startdate" DATE,"enddate" DATE ) 
BEGIN
  SELECT "weekmonthstartdate"("period","periodlength") AS "startdate",
    "weekmonthenddate"("period","periodlength") AS "enddate"
    FROM "tempprovtimesheet"
    WHERE "tempprovtimesheetid" = "pTempProvTimesheetID"
END
GO
 
COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."NetProvTimesheetShiftCheckDates" IS 
{CREATE PROCEDURE pears."NetProvTimesheetShiftCheckDates"(IN pWebUserID CHAR(20),IN pTempProvTimesheetID CHAR(20))
RESULT(startdate DATE, enddate DATE)
BEGIN
    SELECT 
        weekmonthstartdate(period,periodlength) AS startdate,
        weekmonthenddate(period,periodlength) AS enddate 
    FROM 
        tempprovtimesheet 
    WHERE tempprovtimesheetid=pTempProvTimesheetID;
END
}
  • database/procedures/pears_netprovtimesheetshiftcheckdates.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1