dbo.TSB_FGIUserInGroupValid
Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB
Interpretation
- Database function. Usually supports views, validation, or calculated predicates; look at referenced-by entries for callers.
Relations
- No extracted relations.
Typed Edges
- references source dbo.TSB_FGIUserInGroupValid_OVR source text reference
- references source dbo.TSB_FGIUserInGroupValid_OVR_Ke source text reference
References
Referenced By
Complete Source
1CREATE FUNCTION dbo.TSB_FGIUserInGroupValid(2 @P_isinactive BIT,3 @P_IsTemporaryDeactivated BIT,4 @P_XMarkedForDeletion int,5 @R_PFDInheriteGroup BIT,6 @R_PTDInheriteGroup BIT,7 @R_PMDInheriteGroup BIT,8 @IsDirectAssignment BIT,9 @P_IsSecurityIncident BIT,10 @R_PSIInheriteGroup BIT,11 @A_IsAccountDisabled BIT,12 @R_ADAInheriteGroup BIT13) RETURNS int14AS15BEGIN16 RETURN(dbo.TSB_FGIUserInGroupValid_OVR_Ke(@P_isinactive, @P_IsTemporaryDeactivated, @P_XMarkedForDeletion,17 @R_PFDInheriteGroup, @R_PTDInheriteGroup, @R_PMDInheriteGroup, @IsDirectAssignment, @P_IsSecurityIncident,18 @R_PSIInheriteGroup, @A_IsAccountDisabled, @R_ADAInheriteGroup, 0, 0, 0, 0, 0, 'NONE'))19END
Open raw exported source
1create function dbo.TSB_FGIUserInGroupValid ( @P_isinactive bit , @P_IsTemporaryDeactivated bit, @P_XMarkedForDeletion int, @R_PFDInheriteGroup2 bit, @R_PTDInheriteGroup bit, @R_PMDInheriteGroup bit, @IsDirectAssignment bit, @P_IsSecurityIncident bit, @R_PSIInheriteGroup bit, @A_IsAccountDisabled3 bit, @R_ADAInheriteGroup bit ) returns int as begin return( dbo.TSB_FGIUserInGroupValid_OVR_Ke ( @P_isinactive , @P_IsTemporaryDeactivated, @P_XMarkedForDeletion4 , @R_PFDInheriteGroup , @R_PTDInheriteGroup , @R_PMDInheriteGroup , @IsDirectAssignment , @P_IsSecurityIncident , @R_PSIInheriteGroup , @A_IsAccountDisabled5 , @R_ADAInheriteGroup , 0,0,0,0,0 , 'NONE' ) ) end 6