dbo.TSB_FGIUserInGroupValid_OVR
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 source text reference
- references source dbo.TSB_FGIUserInGroupValid_OVR_Ke source text reference
References
Referenced By
Complete Source
1CREATE FUNCTION dbo.TSB_FGIUserInGroupValid_OVR(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 BIT,13 @OVR_PFD int,14 @OVR_PTD int,15 @OVR_PSI int,16 @OVR_PMD int,17 @OVR_ADA int18) RETURNS int19AS20BEGIN21 RETURN(dbo.TSB_FGIUserInGroupValid_OVR_ke(@P_isinactive, @P_IsTemporaryDeactivated, @P_XMarkedForDeletion,22 @R_PFDInheriteGroup, @R_PTDInheriteGroup, @R_PMDInheriteGroup, @IsDirectAssignment, @P_IsSecurityIncident,23 @R_PSIInheriteGroup, @A_IsAccountDisabled, @R_ADAInheriteGroup, @OVR_PFD, @OVR_PTD, @OVR_PSI, @OVR_PMD,24 @OVR_ADA, 'NONE'))25END
Open raw exported source
1create function dbo.TSB_FGIUserInGroupValid_OVR ( @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 , @OVR_PFD int , @OVR_PTD int , @OVR_PSI int , @OVR_PMD int , @OVR_ADA int ) returns int as begin return( dbo.TSB_FGIUserInGroupValid_OVR_ke4 ( @P_isinactive , @P_IsTemporaryDeactivated, @P_XMarkedForDeletion , @R_PFDInheriteGroup , @R_PTDInheriteGroup , @R_PMDInheriteGroup , @IsDirectAssignment5 , @P_IsSecurityIncident , @R_PSIInheriteGroup , @A_IsAccountDisabled , @R_ADAInheriteGroup , @OVR_PFD , @OVR_PTD , @OVR_PSI , @OVR_PMD , @OVR_ADA , 'NONE'6 ) ) end 7