Execute Stored Procedure having Output Parameter and returning Result Set in Adeptia Server.

Slides:



Advertisements
Similar presentations
Cognos Web Services Business Intelligence. SOA SOA (Service Oriented Architecture) The SOA approach involves seven key principles: -- Coarse -grained.
Advertisements

© Tally Solutions Pvt. Ltd. All Rights Reserved Customisation of Shoper 9 October 2009.
Basic of DFD. Developing a DFD There are no FIXED rules about how a DFD should be developed… There is no such a DFD call “CORRECT DFD”… Expert SAs may.
Chapter 7 Managing Data Sources. ASP.NET 2.0, Third Edition2.
Database Updates Made Easy In WebFocus Using SQL And HTML Painter Sept 2011 Lender Processing Services 1.
Web Proxy Server. Proxy Server Introduction Returns status and error messages. Handles http CGI requests. –For more information about CGI please refer.
SEMESTER 1, 2013/2014 DB2 APPLICATION DEVELOPMENT OVERVIEW.
Web Development Challenges and How They are Solved in ps:eScript Matt Verrinder Progress Software UK Internet & Integration Technologies.
Submitted by: Madeeha Khalid Sana Nisar Ambreen Tabassum.
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
JSP Standard Tag Library
PL / SQL P rocedural L anguage / S tructured Q uery L anguage Chapter 7 in Lab Reference.
Server-side Scripting Powering the webs favourite services.
4-1 INTERNET DATABASE CONNECTOR Colorado Technical University IT420 Tim Peterson.
Database testing Prepared by Saurabh sinha. Database testing mainly focus on: Data integrity test Data integrity test Stored procedures test Stored procedures.
Chapter 16 The World Wide Web. 2 The Web An infrastructure of information combined and the network software used to access it Web page A document that.
SharePoint and Open XML Using SharePoint as a Data Source for your custom Open XML Documents Presented by Becky Bertram MCSD, MCAD, MCTS
OracleAS Reports Services. Problem Statement To simplify the process of managing, creating and execution of Oracle Reports.
9 Chapter Nine Compiled Web Server Programs. 9 Chapter Objectives Learn about Common Gateway Interface (CGI) Create CGI programs that generate dynamic.
Tom Castiglia Hershey Technologies
LLRP GUI Client User Guide
Features overview Dynamic parameters and customizable User Interface Searchable, sortable and item selectable report with a variety of output formats.
CYBORG Domain Independent Distributed Database Retrieval System Alok Khemka Kapil Assudani Kedar Fondekar Rahul Nabar.
Object-Oriented Programming (OOP). Implementing an OOD in Java Each class is stored in a separate file. All files must be stored in the same package.
The Internet and World Wide Web
Data Management Console Synonym Editor
Searching Business Data with MOSS 2007 Enterprise Search Presenter: Corey Roth Enterprise Consultant Stonebridge Blog:
Introduction to the Adapter Server Rob Mace June, 2008.
Copyright  Oracle Corporation, All rights reserved. 7 Accessing a Database Using SQLJ.
Joomla is an open source Content Management System used for publishing contents in the Web. It is the most popular Source Code for developing websites.
ASP. What is ASP? ASP stands for Active Server Pages ASP is a Microsoft Technology ASP is a program that runs inside IIS IIS stands for Internet Information.
UNIT III - JDBC JDBC Overview – JDBC implementation – Connection class – Statements - Catching Database Results, handling database Queries. Networking–
1 Java Servlets l Servlets : programs that run within the context of a server, analogous to applets that run within the context of a browser. l Used to.
OOSSE Week 8 JSP models Format of lecture: Assignment context JSP models JSPs calling other JSPs i.e. breaking up work Parameter passing JSPs with Add.
XmlBlackBox The presentation Alexander Crea June the 15st 2010 The presentation Alexander Crea June the 15st 2010
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
IT System Administration Lesson 3 Dr Jeffrey A Robinson.
CSC 2720 Building Web Applications Basic Frameworks for Building Dynamic Web Sites / Web Applications.
IS-907 Java EE Introduction to JPA. Java Persistence API A framework for using relational databases in Java programs mapping between tables and classes,
Presented By:. What is JavaHelp: Most software developers do not look forward to spending time documenting and explaining their product. JavaSoft has.
DICOMwebTM 2015 Conference & Hands-on Workshop University of Pennsylvania, Philadelphia, PA September 10-11, 2015 DICOMweb Workflow API (UPS-RS) Jonathan.
Module 5: Managing Content. Overview Publishing Content Executing Reports Creating Cached Instances Creating Snapshots and Report History Creating Subscriptions.
Configuring MQ Connections and Handlers for MQ adapter 6.5 July 2008.
JDBC.
E Copyright © 2006, Oracle. All rights reserved. Using SQL Developer.
A Presentation Presentation On JSP On JSP & Online Shopping Cart Online Shopping Cart.
USER ADOPTION TRACKER. FEATURES Monitor User Adoption of Dynamics CRM by tracking daily usage Support for tracking on OOB & Custom entities Configure.
C Copyright © 2009, Oracle. All rights reserved. Using SQL Developer.
6. Application Server Issues for the Project
Internet/Web Databases
Business rules.
Data Virtualization Tutorial: Custom Functions
Chapter 11 Designing Inputs, Outputs, and Controls.
JDBC Database Management Database connectivity
Data Virtualization Tutorial: Introduction to SQL Script
Data Virtualization Demoette… Custom Java Procedures
Web Technologies IT230 Dr Mohamed Habib.
Section 13 - Integrating with Third Party Tools
Step 1 Create Database Info activity in Adeptia Server specifying the driver, URL and user credentials information for the database in which stored.
Data Interface Tutorial
Basics and Navigation Module 2.
Searching Business Data with MOSS 2007 Enterprise Search
Introduction to Servlets
>> PHP: Update Query
Energy Customer Collaboration Documentum
Introduction of Week 11 Return assignment 9-1 Collect assignment 10-1
Lecture 5: Functions and Parameters
Information Management
PHP and JSON Topics Review JSON.
M S COLLEGE OF ART’S, COMM., SCI. & BMS Advance Web Programming
Presentation transcript:

Execute Stored Procedure having Output Parameter and returning Result Set in Adeptia Server

Step 1 Create Database Info activity in Adeptia Server specifying the driver, URL and user credentials information for the database in which stored procedure exist. You can create this activity by navigating to Administer  Connector  Database Info in workspace menu.

Step 2 Create Stored Procedure activity specifying stored procedure name to be executed along with "in", "out" and "inout" parameter(s). You can create this activity by navigating to Design > Services > Miscellaneous > Stored Procedure in workspace menu.

Step 3 Create a Custom Plugin activity with the pre- defined java code that we will provide. You need to place a custom class which will be provided by us in “ServerKernel/customClasses” folder. You need to modify the content of above java code by updating the id of “Database Info” and “Stored Procedure” activity created in last two steps. In this custom plugin activity, you can dynamically pass the input parameter(s) value(s) to the calling stored procedure.

Step 4 Use Custom Plugin activity in any Process Flow and you are ready to go. All the output parameter(s) value(s) returned from stored procedure are set in current transaction context. You can easily retrieve these value(s) in your process flow and use it anyway you want. Any result set returned from stored procedure is directed to an output stream in XML format which can be further processed in the process flow.