pears._NetPushNotificationsDevices

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

CREATE PROCEDURE "pears"."_NetPushNotificationsDevices"( IN "pWebUserID" CHAR(20) ) 
RESULT( "PushNotificationDeviceID" CHAR(20),"DeviceName" CHAR(100),"DeviceType" SMALLINT,"WhenCreated" "datetime" ) 
BEGIN
  SELECT "PushNotificationDeviceID",
    "DeviceName",
    "DeviceType",
    "WhenCreated"
    FROM "PushNotificationDevice"
    WHERE "WebUserID" = "pWebUserID"
END /* DOC
 
2019-10-04 GJ Creation.
 
*/
GO
 
COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."_NetPushNotificationsDevices" IS 
{CREATE PROCEDURE pears."_NetPushNotificationsDevices"( IN pWebUserID CHAR(20) )
RESULT("PushNotificationDeviceID" CHAR(20),	"DeviceName" CHAR(100),	"DeviceType" SMALLINT, "WhenCreated" datetime )
BEGIN
    SELECT
        PushNotificationDeviceID,
        DeviceName,
        DeviceType,
        WhenCreated
    FROM
        PushNotificationDevice
    WHERE
        WebUserID = pWebUserID;
END
 
/* DOC
 
2019-10-04 GJ Creation.
 
*/
}
  • database/procedures/pears_netpushnotificationsdevices.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1