pears.SelfBillCustomColumn

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

Original SQL

CREATE FUNCTION "pears"."SelfBillCustomColumn"( 
  IN "SupplierCode" CHAR(20),IN "RecordType" CHAR(2) ) 
RETURNS CHAR(100)
BEGIN
  -- RecordType M= Supplier Code Maint (this is for potential future expansion)
  -- SupplierCode=null means return column heading for RecordType 
  -- usual use is to show Self Bill Agreement expiry date
  RETURN NULL
END