dbo.CPL_ZSubRuleFillPerson
Stored ProcedureSQL_STORED_PROCEDURESandbox DB
Interpretation
- Database routine. Review parameters, called procedures, DBQueue inserts, and QBM_PJobCreate helper calls before assuming side effects.
Relations
- No extracted relations.
Typed Edges
- references source dbo.CPL_PSubRuleFillPerson_i source text reference
- references source dbo.QBM_PSessionErrorAdd source text reference
References
Referenced By
Complete Source
1CREATE PROCEDURE CPL_ZSubRuleFillPerson(2 @SlotNumber int,3 @UID_ComplianceRule varchar(38),4 @dummy varchar(38),5 @GenprocID varchar(38)6)7AS8BEGIN9 SET XACT_ABORT OFF10 BEGIN TRY11 EXEC CPL_PSubRuleFillPerson_i @UID_ComplianceRule,12 DEFAULT,13 @GenProcID14 END TRY15 BEGIN CATCH16 EXEC QBM_PSessionErrorAdd DEFAULT17 RAISERROR('',18 18,19 1)20 WITH NOWAIT21 END CATCH22 endLabel:23 RETURN24END
Open raw exported source
1create procedure CPL_ZSubRuleFillPerson (@SlotNumber int , @UID_ComplianceRule varchar(38) , @dummy varchar(38) , @GenprocID varchar(38) ) AS 2begin SET XACT_ABORT OFF BEGIN TRY exec CPL_PSubRuleFillPerson_i @UID_ComplianceRule, default, @GenProcID END TRY BEGIN CATCH exec QBM_PSessionErrorAdd3 default RAISERROR ('', 18, 1) WITH NOWAIT END CATCH endLabel: return end 4