dbo.QER_PITShopProductNodeCreate
SQL_STORED_PROCEDURE
Created 2025-06-27T18:01:06.253 · modified 2026-04-14T23:20:38.763 · source: live DB sys.objects/sys.sql_expression_dependencies.
Parameters
| Name | Type | Output |
|---|---|---|
@uid_orgBO | varchar | no |
@ObjectKeyElement | varchar | no |
@GenProcID | varchar | no |
@uid_OrgPR | varchar | yes |
Referenced objects
| Schema | Object | Column/minor | Class |
|---|---|---|---|
| QBM_PSessionErrorAdd | OBJECT_OR_COLUMN | ||
| QBM_YParameterList | TYPE | ||
| QER_PITShopProductNodeCreate_b | OBJECT_OR_COLUMN | ||
| dbo | QBM_FGISessionErrorRethrow | OBJECT_OR_COLUMN |
Source excerpt
First extracted SQL definition lines from the exported source. Use the full source page for complete context.
1 create procedure QER_PITShopProductNodeCreate( @uid_orgBO varchar(38) , @ObjectKeyElement varchar(138) , @GenProcID varchar(38) , @uid_OrgPR 2 varchar(38) output ) AS begin declare @ObjectKeys QBM_YParameterList , @uid_OrgPR_intern varchar(38) SET XACT_ABORT OFF BEGIN TRY insert into @ObjectKeys 3 (Parameter1) select @ObjectKeyElement exec QER_PITShopProductNodeCreate_b @uid_orgBO, @ObjectKeys, @GenProcID, @uid_OrgPR_intern output END TRY BEGIN 4CATCH exec QBM_PSessionErrorAdd default declare @Rethrow varchar(1000) = dbo.QBM_FGISessionErrorRethrow() RAISERROR (@Rethrow, 18, 1) WITH NOWAIT END CATCH 5 ende: select @uid_OrgPR = @uid_OrgPR_intern return end 6
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.763
has TRY/CATCH error handling
Summary: calls QER_PITShopProductNodeCreate_b, QBM_PSessionErrorAdd; writes INSERT into
Declared parameters
| Parameter | Type | Direction |
|---|---|---|
@uid_orgBO | varchar(38) | input |
@ObjectKeyElement | varchar(138) | input |
@GenProcID | varchar(38) | input |
@uid_OrgPR | varchar(38) | OUTPUT |
DML targets
INSERT intoCalled routines
Read/join references
None extracted.
SQL dependency metadata
Config/session
Config: None extracted.
Session: None extracted.
DBQueue/tasks
None extracted.Temp tables / referenced variables
Temp: None extracted.
Variables: @uid_orgBO @ObjectKeyElement @GenProcID @uid_OrgPR @ObjectKeys @uid_OrgPR_intern @Rethrow
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_PITShopProductNodeMove | SQL expression dependency | OBJECT_OR_COLUMN |
| dbo.QER_PITShopProductNodeMove | source text reference | uses session context values, has TRY/CATCH error handling |