Back to OIM Explorer

dbo.QER_FTPWOAssigmentSplitForBHO

Inline Table FunctionSQL_INLINE_TABLE_VALUED_FUNCTIONSandbox DB

Inline Table Function.

Source: sandbox-db sys.sql_modules

Source size: 368 characters

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

Complete Source

SQL14 lines
1CREATE FUNCTION dbo.QER_FTPWOAssigmentSplitForBHO(2  @ObjecKeysOfPWO QBM_YParameterList READONLY3) RETURNS TABLE4AS5RETURN(6SELECT7  b.UID_Org,8  pwo.ObjectKeyElementUsedInAssign AS ObjectKey,9  pwo.UID_PersonWantsOrg10FROM @ObjecKeysOfPWO o11JOIN PersonWantsOrg pwo12  ON o.Parameter1 = pwo.XObjectKey13JOIN BaseTree b14  ON pwo.ObjectKeyOrgUsedInAssign = b.XObjectKey)
Open raw exported source
SQL ยท Raw4 lines
1create function dbo.QER_FTPWOAssigmentSplitForBHO (@ObjecKeysOfPWO QBM_YParameterList readonly )   returns table as return(  select b.UID_Org , pwo.ObjectKeyElementUsedInAssign2 as ObjectKey , pwo.UID_PersonWantsOrg from @ObjecKeysOfPWO o join PersonWantsOrg pwo on o.Parameter1 = pwo.XObjectKey join BaseTree b on pwo.ObjectKeyOrgUsedInAssign3 = b.XObjectKey )   4