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:

Abhinanda Shri
Abhinanda Shri
Updated on 30-Jul-2019 212 Views

Note that Eclipse Neon is not compatible tih SAP HANA Cloud platform. Refer the below compatibility document: https://tools.hana.ondemand.com/#hanatools

Read More

In SAP ABAP, mapping two database table fields

Johar Ali
Johar Ali
Updated on 30-Jul-2019 623 Views

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 More

Storing static attribute values in ABAP

Srinivas Gorla
Srinivas Gorla
Updated on 30-Jul-2019 476 Views

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 More

What is the difference between Component class and Container class in Java?

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jul-2019 4K+ Views

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 More

Exporting test variant in Transaction SE37 in SAP R/3

Amit Sharma
Amit Sharma
Updated on 30-Jul-2019 1K+ Views

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 More

Downloading file using SAP .NET Connector

Ramu Prasad
Ramu Prasad
Updated on 30-Jul-2019 601 Views

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 More

Defining a variable reference in SAP ABAP

Ankitha Reddy
Ankitha Reddy
Updated on 30-Jul-2019 437 Views

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 More

What is Java API and what is its use?

mkotla
mkotla
Updated on 30-Jul-2019 7K+ Views

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 More

Can you use both this() and super() in a constructor in Java?

Samual Sam
Samual Sam
Updated on 30-Jul-2019 2K+ Views

No, you cannot have both this() and super() in a single constructor.

Read More

Difference between using - "standard table of", "Hashed table of", or simply "table of" in SAP ABAP

Abhinaya
Abhinaya
Updated on 30-Jul-2019 2K+ Views

“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
Showing 61181–61190 of 61,297 articles
Advertisements