Billing Code

Specify the method used to determine the amount to bill for SRO material and labor transactions. The default billing code value is specified on the Service Parameters form. Select one of these options:

Material Stored Procedure

	exec @Severity = SSSFSCustomMatlRateSp
	@InTransType,
	@InSroNum,
	@InSroLine,
	@InSroOper,
	@InItem,
	@InCustNum,
	@InTransDate,
	@InQty,
	@InCurrCode,
	@InPricecode,
	@InBillCode,
	@InCost,
	@OutUnitPrice, OUTPUT,
	@Infobar OUTPUT

Labor Stored Procedure

	exec @Severity = SSSFSCustLaborRateSp 
	@iTransType, 
	@iSroNUm, 
	@iSroLine, 
	@iSroOper, 
	@iBillCode, 
	@iTransDate, 
	@iPartnerId, 
	@iWorkCode, 
	@iUnitCost, 
	@iHrsWorked, 
	@iHrsBilled, 
	@tUnitPrice OUTPUT, 
	@Infobar OUTPUT 

Miscellaneous Stored Procedure

	exec @Severity = SSSFSCustMiscRateSp 
	@iTransType, 
	@iSroNum, 
	@iSroLine, 
	@iSroOper, 
	@iBillCode, 
	@iTransDate, 
	@iPartner, 
	@iMiscCode, 
	@iUnitCost, 
	@iQty, 
	@tUnitPrice OUTPUT, 
	@Infobar OUTPUT 

Notes About the Stored Procedures