dbo.QBM_FTRightsMissingForDisplay
SQL_INLINE_TABLE_VALUED_FUNCTION
Created 2026-04-14T23:20:32.287 · modified 2026-04-14T23:20:32.287 · source: live DB sys.objects/sys.sql_expression_dependencies.
Parameters
| Name | Type | Output |
|---|---|---|
@TableName | varchar | no |
Referenced objects
| Schema | Object | Column/minor | Class |
|---|---|---|---|
| DialogColumn | OBJECT_OR_COLUMN | ||
| DialogTable | OBJECT_OR_COLUMN | ||
| QBMMissingDisplayRight | OBJECT_OR_COLUMN |
Source excerpt
First extracted SQL definition lines from the exported source. Use the full source page for complete context.
1create function dbo.QBM_FTRightsMissingForDisplay (@TableName varchar(30) ) returns table as return ( select mr.UID_DialogGroup , mr.UID_DialogColumn , 2 c.ColumnName , mr.IsTableRightExisting , mr.SelectWhereClause , tc.TableName as ChildTableName from QBMMissingDisplayRight mr with (readpast) join DialogColumn 3 c with (readpast) on mr.UID_DialogColumn = c.UID_DialogColumn join DialogTable tich with (readpast) on c.UID_DialogTable = tich.UID_DialogTable join DialogTable 4 tc with (readpast) on mr.UID_DialogTableChild = tc.UID_DialogTable where tich.TableName = @TableName ) 5
Module relation graph
Loading module relation graph…
Source-derived context
Generated from exported SQL module definitions plus read-only sandbox sys.objects/sys.parameters/sys.sql_expression_dependencies metadata. This is factual source evidence, not a semantic guess.
provenance: SQL definition export provenance: sandbox DB metadata modified: 2026-04-14T23:20:32.287
None extracted.
Summary: reads/joins QBMMissingDisplayRight, DialogColumn, DialogTable
Declared parameters
| Parameter | Type | Direction |
|---|---|---|
@TableName | varchar(30) | input |
DML targets
None extracted.Called routines
None extracted.
Read/join references
SQL dependency metadata
Config/session
Config: None extracted.
Session: None extracted.
DBQueue/tasks
None extracted.Temp tables / referenced variables
Temp: None extracted.
Variables: @TableName
Referenced by / reverse dependencies
Generated from live DB metadata, FK rows, and exported SQL dependency/source extraction. This is factual linkage evidence, not inferred behavior.
No reverse dependencies extracted.