This repository has been archived by the owner on Aug 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Parser hdprocedure
Antoaneta edited this page Sep 24, 2021
·
5 revisions
The information on how to develop the design-time data-persistence model for an XSK application using the HDBProcedure syntax
- SAP Help
- Example Artifact Code
PROCEDURE "TEST_PROCEDURE_SIMPLE"."hdb-procedure-simple.db::ItemProcedure" ()
LANGUAGE SQLSCRIPT
SQL SECURITY INVOKER
--DEFAULT SCHEMA <default_schema_name>
READS SQL DATA AS
BEGIN
/*************************************
Write your procedure logic
*************************************/
SELECT * FROM "hdb-procedure-simple.db::ItemForProcedure";
END
- Sample
https://github.com/SAP/xsk/tree/main/samples/hdb-procedure-simple
- Modules
- Tests