WMB Tutorials | Create Procedure in WMB or IBM integration Bus

Опубликовано: 15 Май 2026
на канале: ProjectsGeek
3,525
26

WMB Tutorials we will cover how to Create Procedure in WMB or IBM integration Bus. We will see how to write code for creating procedure in WMB, why it is required and other ways to write procedure based on requirement.

Our Aim in this Demo

To make the name in upper case and we will be using procedure to make string uppercase in WMB.

Basic Procedure

CREATE PROCEDURE PROC1 BEGIN
// Logic for procedure
END;

Procedure to accept and return value

CREATE PROCEDURE PROC1 (INOUT var REFERENCE) BEGIN
// Logic for procedure
END;

Calling a Procedure in ESQL

Call PROC1 ();
Call PROC1 (var);