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.

Open formatted source/search result

Parameters

NameTypeOutput
@uid_orgBOvarcharno
@ObjectKeyElementvarcharno
@GenProcIDvarcharno
@uid_OrgPRvarcharyes

Referenced objects

SchemaObjectColumn/minorClass
QBM_PSessionErrorAddOBJECT_OR_COLUMN
QBM_YParameterListTYPE
QER_PITShopProductNodeCreate_bOBJECT_OR_COLUMN
dboQBM_FGISessionErrorRethrowOBJECT_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

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

ParameterTypeDirection
@uid_orgBOvarchar(38)input
@ObjectKeyElementvarchar(138)input
@GenProcIDvarchar(38)input
@uid_OrgPRvarchar(38)OUTPUT

DML targets

INSERT into

Read/join references

None extracted.

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 objectRelationEvidence
dbo.QER_PITShopProductNodeMoveSQL expression dependencyOBJECT_OR_COLUMN
dbo.QER_PITShopProductNodeMovesource text referenceuses session context values, has TRY/CATCH error handling