Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
Can anyone help me with Eclipse configuration for SAP HANA Cloud platform? Below is schema details:
Note that Eclipse Neon is not compatible tih SAP HANA Cloud platform. Refer the below compatibility document: https://tools.hana.ondemand.com/#hanatools
Read MoreIn SAP ABAP, mapping two database table fields
I don’t think there is a way to perform this. The common way to do this is by extending original table and fill the new fields.T-Code: SPDD is somewhat relevant that can be used to compare all the dictionary objects- data elements, tables and structure with old system.T-Code: SPAU can also be used to compare objects –Reports, Programs, Screens, Messages, Notes, Function Modules etc. which have difference in the Latest SAP request and the previous ones. You can use SPAU just after SPDD or when SAP system upgrade is performed.Using SPDD and SPAU, you can view all the modified objects, ...
Read MoreStoring static attribute values in ABAP
Static attributes of a class and the global variables of a function pool are dealt in a similar manner. In an abstract manner, you can consider static attributes as global variables. How global variables are reinitialized with a new internal session, static attributes do get reinitialized with the new internal session- this can be verified using a recursive function call.
Read MoreWhat is the difference between Component class and Container class in Java?
The class Component is the abstract base class for the non-menu user-interface controls of AWT. A component represents an object with graphical representation. The class Container is the superclass for the containers of AWT. The container object can contain other AWT components.
Read MoreExporting test variant in Transaction SE37 in SAP R/3
Try using Table EUFUNC or also check Function Module: RS_TESTDATA_GET. When you save test data in SE37 it's going to be saved in test data directory.
Read MoreDownloading file using SAP .NET Connector
It is not possible to retrieve files using BAPI from SAP system. There should be a way to copy the file to a shared location and you can read the file from there using .NET.
Read MoreDefining a variable reference in SAP ABAP
As per my understanding, it is not feasible. You can access local class dynamically but statically referring to it in another class seems impossible. You might think about calling methods as dynamic in this case.
Read MoreWhat is Java API and what is its use?
The full form of API is Application Programming Interface. It is a document which gives you the list of all the packages, classes, and interfaces, along with their fields and methods.Using these API’s, the programmer can know how to use the methods, fields, classes, interfaces provided by Java libraries.
Read MoreCan you use both this() and super() in a constructor in Java?
No, you cannot have both this() and super() in a single constructor.
Read MoreDifference between using - "standard table of", "Hashed table of", or simply "table of" in SAP ABAP
“TYPE STANDARD TABLE OF “refers to the standard table. It refers to a normal internal table which can be accessed via table index or by key in case if you have a key defined over a table while sorting.“TYPE HASHED TABLE OF” refers to the generic hashed internal table. The table is created and data is stored using the hashing algorithm. The main advantage of the hashing algorithm is that accessing any part of the table is independent of the size of the table and hence an increase in the size of the table does not result in any delay ...
Read More