dbo.QER_ZITShopProductNodeCheck
SQL_STORED_PROCEDURE
Created 2025-06-27T18:01:06.300 · modified 2026-04-14T23:20:38.827 · source: live DB sys.objects/sys.sql_expression_dependencies.
Parameters
| Name | Type | Output |
|---|---|---|
@SlotNumber | int | no |
@UID_OrgBO | varchar | no |
@dummy1 | varchar | no |
@GenProcID | varchar | no |
Referenced objects
| Schema | Object | Column/minor | Class |
|---|---|---|---|
| QBM_PDBQueueInsert_Single | OBJECT_OR_COLUMN | ||
| QBM_PSessionErrorAdd | OBJECT_OR_COLUMN | ||
| QBMDBQueueCurrent | OBJECT_OR_COLUMN | ||
| QER_PITShopProductNodeCheck | OBJECT_OR_COLUMN |
Source excerpt
First extracted SQL definition lines from the exported source. Use the full source page for complete context.
1create procedure QER_ZITShopProductNodeCheck( @SlotNumber int , @UID_OrgBO varchar(38) , @dummy1 varchar(38) , @GenProcID varchar(38) ) AS begin 2 declare @WirMachenDasNochEinmal bit = 0 BEGIN TRY if exists (select top 1 1 from QBMDBQueueCurrent cu with(nolock) where cu.SlotNumber <> @SlotNumber 3 and cu.SlotNumber > 0 and cu.UID_Parameter = @UID_OrgBO and cu.UID_Task = 'QER-K-OrgAutoChild' ) begin select @WirMachenDasNochEinmal = 1 goto NochMalEntscheidung 4 end exec QER_PITShopProductNodeCheck @UID_OrgBO, @GenProcID NochMalEntscheidung: if @WirMachenDasNochEinmal = 1 begin exec QBM_PDBQueueInsert_Single 5'QER-K-OrgAutoChild', @UID_OrgBO, '', @GenProcID end END TRY BEGIN CATCH exec QBM_PSessionErrorAdd default RAISERROR ('', 18, 1) WITH NOWAIT END CATCH 6endLabel: return end 7
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:38.827
inserts DBQueue tasks has TRY/CATCH error handling
Summary: calls QER_PITShopProductNodeCheck, QBM_PDBQueueInsert_Single, QBM_PSessionErrorAdd; reads/joins QBMDBQueueCurrent
Declared parameters
| Parameter | Type | Direction |
|---|---|---|
@SlotNumber | int | input |
@UID_OrgBO | varchar(38) | input |
@dummy1 | varchar(38) | input |
@GenProcID | varchar(38) | input |
DML targets
None extracted.Read/join references
SQL dependency metadata
Config/session
Config: None extracted.
Session: None extracted.
DBQueue/tasks
QER-K-OrgAutoChildTemp tables / referenced variables
Temp: None extracted.
Variables: @SlotNumber @UID_OrgBO @dummy1 @GenProcID @WirMachenDasNochEinmal
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.
| Referencing object | Relation | Evidence |
|---|---|---|
| dbo.QER_PITShopBoardPrepareDelete | SQL expression dependency | OBJECT_OR_COLUMN |
| dbo.QER_PITShopBoardPrepareDelete | source text reference | uses session context values, has TRY/CATCH error handling |