dbo.QBM_FGIXOriginChanged_Effect
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
- No typed edges extracted for this source.
References
- No direct source references extracted.
Referenced By
- dbo.DPR_FSQTriggerWatchMemberShip
- dbo.QBM_FSQXDateSubItemUpdate
- dbo.ADS_TUADSAccountInADSGroup
- dbo.ADS_TUADSContactInADSGroup
- dbo.ADS_TUBaseTreeHasADSGroup
- dbo.ATT_TUHelperHeadOrg
- dbo.LDP_TUBaseTreeHasLDAPGroup
- dbo.LDP_TULDAPAccountInLDAPGroup
- dbo.QER_TUBaseTreeHasQERAssign
- dbo.QER_TUBaseTreeHasQERResource
- dbo.QER_TUBaseTreeHasQERReuse
- dbo.QER_TUBaseTreeHasQERReuseUS
- dbo.QER_TUHardwareInBaseTree
- dbo.QER_TUHelperHeadOrg
- dbo.QER_TUHelperHeadPerson
- dbo.QER_TUPersonHasQERAssign
- dbo.QER_TUPersonHasQERResource
- dbo.QER_TUPersonHasQERReuse
- dbo.QER_TUPersonHasQERReuseUS
- dbo.QER_TUPersonInBaseTree
- dbo.QER_TUWorkDeskInBaseTree
- dbo.RMS_TUBaseTreeHasESet
- dbo.RMS_TUESetHasEntitlement
- dbo.RMS_TUPersonHasESet
- dbo.RMS_TUWorkDeskHasESet
- dbo.RPS_TUBaseTreeHasRPSReport
- dbo.RPS_TUPersonHasRPSReport
- dbo.TSB_TUBaseTreeHasTSBAccountDef
- dbo.TSB_TUBaseTreeHasUNSGroupB
- dbo.TSB_TUBaseTreeHasUNSGroupB1
- dbo.TSB_TUBaseTreeHasUNSGroupB2
- dbo.TSB_TUBaseTreeHasUNSGroupB3
- dbo.TSB_TUPersonHasTSBAccountDef
- dbo.TSB_TUUNSAccountBHasUNSGroupB
- dbo.TSB_TUUNSAccountBHasUNSGroupB1
- dbo.TSB_TUUNSAccountBHasUNSGroupB2
- dbo.TSB_TUUNSAccountBHasUNSGroupB3
- dbo.TSB_TUUNSAccountBInUNSGroupB
- dbo.TSB_TUUNSAccountBInUNSGroupB1
- dbo.TSB_TUUNSAccountBInUNSGroupB2
- dbo.TSB_TUUNSAccountBInUNSGroupB3
- dbo.TSB_TUUNSGroupBHasUNSItemB
Complete Source
1CREATE FUNCTION dbo.QBM_FGIXOriginChanged_Effect(2 @XOriginOld int,3 @XOriginNew int,4 @XIsInEffectOld BIT,5 @XIsInEffectNew BIT6) RETURNS BIT7 WITH SCHEMABINDING8AS9BEGIN10 RETURN((sign(@XOriginOld) & sign(convert(int, @XIsInEffectOld))) ^(sign(@XOriginNew) & sign(convert(int,11 @XIsInEffectNew))))12END
Open raw exported source
1 create function dbo.QBM_FGIXOriginChanged_Effect (@XOriginOld int , @XOriginNew int , @XIsInEffectOld bit , @XIsInEffectNew bit ) returns2 bit with SCHEMABINDING as begin return ( (sign(@XOriginOld) & sign(convert(int, @XIsInEffectOld))) ^ (sign(@XOriginNew) & sign(convert(int, @XIsInEffectNew3))) ) end 4