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.

Open formatted source/search result

Parameters

NameTypeOutput
@TableNamevarcharno

Referenced objects

SchemaObjectColumn/minorClass
DialogColumnOBJECT_OR_COLUMN
DialogTableOBJECT_OR_COLUMN
QBMMissingDisplayRightOBJECT_OR_COLUMN

Source excerpt

First extracted SQL definition lines from the exported source. Use the full source page for complete context.

Open full formatted source

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

ParameterTypeDirection
@TableNamevarchar(30)input

DML targets

None extracted.

Called routines

None extracted.

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.