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 tablefunction
Antoaneta edited this page Sep 24, 2021
·
4 revisions
The information on how to develop the design-time data-persistence model for an XSK application using the HDBTableFunction syntax
- SAP Help
- Example Artifact Code
FUNCTION "MYSCHEMA"."hdb_view::OrderTableFunction" ()
RETURNS TABLE (
"Id" NVARCHAR(32),
"CustomerName" NVARCHAR(500)
)
LANGUAGE SQLSCRIPT
SQL SECURITY INVOKER AS
BEGIN
RETURN SELECT "Id", "CustomerName" FROM "hdb_view::Item";
END;
- Sample
https://github.com/SAP/xsk/tree/main/samples/hdb-tablefunction-simple
- Modules
- Tests