dbo.QER_FTPWOVisibleForPerson
Inline Table FunctionSQL_INLINE_TABLE_VALUED_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.QER_FTPWOVisibleForPerson_I source text reference
Complete Source
1CREATE FUNCTION dbo.QER_FTPWOVisibleForPerson(2 @uid_person varchar(38),3 @AsManager BIT4) RETURNS TABLE5AS6RETURN(7SELECT8 x.UID_PersonWantsOrg AS UID_PersonWantsOrg,9 x.IsClosed AS IsClosed10FROM dbo.QER_FTPWOVisibleForPerson_I(@uid_person, @AsManager, NULL) x)
Open raw exported source
1create function dbo.QER_FTPWOVisibleForPerson (@uid_person varchar(38) , @AsManager bit ) returns table as return ( select x.UID_PersonWantsOrg as 2UID_PersonWantsOrg , x.IsClosed as IsClosed from dbo.QER_FTPWOVisibleForPerson_I (@uid_person, @AsManager, null) x ) 3