
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Anil SAP Gupta has Published 114 Articles

Anil SAP Gupta
354 Views
Yes, it can be done but I would request you to go through documentation available on SAP help before asking such questions as such things are well explained in documentation and help you to know the system better. You just need to set the text property to text of your ... Read More

Anil SAP Gupta
707 Views
Yes, it is feasible and I have done something similar in one of my previous projects. But you need to be little clear on what you need to export. There are two options regarding the content of export:Raw Data ( it is basically the query)Formatted Data ( it is your ... Read More

Anil SAP Gupta
594 Views
This is very simple and you can write a code as below. This code works when you only have characters fields in table:DATA: lt_options TYPE TABLE OF rfc_db_opt, lt_fields TYPE TABLE OF rfc_db_fld, lt_entries TYPE TABLE OF dpr_pha_type. CALL FUNCTION 'RFC_READ_TABLE' ... Read More

Anil SAP Gupta
278 Views
SAP HANA is an in-memory database so all data resides in memory all the time and hence all calculations and functions can happen directly and hence materialized aggregations are not required in SAP HANA database.With the use of column store, data is available vertically and hence operations on different columns ... Read More

Anil SAP Gupta
602 Views
You can use Import.. option in SAP HANA Studio to import data from a CSV file. Go to file and click on Import option.Next is to define Import properties. You can create a new table or you can also use an existing table in HANA database. You can also define ... Read More

Anil SAP Gupta
238 Views
Table mapping is last step while uploading data using an Import option in HANA Studio. This shows the data that already exist in the table and also shows the information about the schema and table to which we are going to load the data.Click on Finish to load the data.Read More

Anil SAP Gupta
247 Views
While importing data using flat file, you can use any existing table or can also create a new table in any of schema in database.You can create a new table in any of existing schema and also define table type in next window.Under target table, you can mention if you ... Read More