dbo.ATT_FGIPWOTaskToUse
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.QBM_FGIConfigparmValue source text reference
Complete Source
1CREATE FUNCTION dbo.ATT_FGIPWOTaskToUse(2) RETURNS varchar(383)4AS5BEGIN6 RETURN CASE dbo.QBM_FGIConfigparmValue('QER\Attestation\ReducedApproverCalculation')7 WHEN 'NoRecalc' THEN8 ''9 WHEN 'CurrentLevel' THEN10 'ATT-K-AttestationHelper-Cfg'11 ELSE 'ATT-K-AttestationHelper'12 END13END
Open raw exported source
1 create function dbo.ATT_FGIPWOTaskToUse() returns varchar(38) as begin return case dbo.QBM_FGIConfigparmValue('QER\Attestation\ReducedApproverCalculation'2) when 'NoRecalc' then '' when 'CurrentLevel' then 'ATT-K-AttestationHelper-Cfg' else 'ATT-K-AttestationHelper' end end 3