pears.NetAgencyCandidateStatusChoices

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

Original SQL

CREATE PROCEDURE "pears"."NetAgencyCandidateStatusChoices"( IN "pWebUserID" CHAR(20) ) 
RESULT( "Description" CHAR(40),"ID" CHAR(1) ) 
BEGIN
  SELECT "Name","SecondaryAgencyCandidateStatusID" FROM "SecondaryAgencyCandidateStatus" ORDER BY "SortOrder" ASC,"Name" ASC
END
GO
 
COMMENT TO PRESERVE FORMAT ON PROCEDURE "pears"."NetAgencyCandidateStatusChoices" IS 
{CREATE PROCEDURE pears."NetAgencyCandidateStatusChoices"( IN "pWebUserID" CHAR(20) )
RESULT(Description CHAR(40), ID CHAR(1) ) 
BEGIN
SELECT Name, SecondaryAgencyCandidateStatusID FROM SecondaryAgencyCandidateStatus  ORDER BY SortOrder, Name
END
}