- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Getting error message: Scalar type not allowed in SAP HANA
Few points about your code to create a Stored Procedure, that you can edit and try
PROCEDURE "SLT_DELETE"."HCDW.IT.IT::TO_TIMESTAMP_CALL" (IN IN_DATE DECIMAL(15), OUT OUT_DATE TIMESTAMP) LANGUAGE SQLSCRIPT AS --DEFAULT SCHEMA <default_schema_name> --READS SQL DATA AS BEGIN select to_timestamp(IN_DATE) into OUT_DATE FROM DUMMY; END;
In Line32, you have used below:
SELECT: ORGID_ARTIKEL into
However correct syntax should be like:
SELECT "ORGID_ARTIKEL" into
- Related Articles
- Getting error message while using SAP Scripting Tool
- Getting memory error while doing UNION in SAP HANA
- Getting error while using schema in SAP HANA Modeling
- Getting an error on creating an Index in SAP HANA
- Getting an error- license key couldn’t be installed in SAP HANA
- Getting error not assigned on running SAP ABAP program
- Getting error- Hard-coded logon parameters not allowed when using a Destination Configuration while connecting to SAP server dynamically
- Remote system allowed in SAP HANA Smart Data Access
- Getting error while extracting data from SAP
- Getting age of tracefiles in SAP HANA database
- Getting License details, hardware key in SAP HANA
- Different Package type in SAP HANA
- Error while connection SAP HANA with .NET
- Getting statistics details of SAP HANA system
- Getting a syntax error unknown fields in SAP ABAP

Advertisements