HDBProcedure
Overview
The information on this page will help you learn how to develop the design-time data-persistence model for an XSK application using the HDBProcedure syntax.
Reference
SAP Help Portal
For more information, see Procedures (.hdbprocedure).
Sample
PROCEDURE "MYSCHEMA"."hdb_view::OrderProcedure" ()
LANGUAGE SQLSCRIPT
SQL SECURITY INVOKER
--DEFAULT SCHEMA <default_schema_name>
READS SQL DATA AS
BEGIN
/*************************************
Write your procedure logic
*************************************/
SELECT * FROM "hdb_view::Item";
END
Caution
Reserved keywords, used as table or column names, must be escaped.