Way to check if SAP system is ABAP based, Java or Dual stack

Rahul Sharma
Updated on 30-Jul-2019 22:30:20

2K+ Views

Using SAP GUI, you can only access ABAP or ABAP+Java based system. You can check at multiple places if it is a dual system.T-code: SMICM, you can checklist of services in transaction SMICM (Goto --> Services) - dual stack systems will have the J2EE services listed too. There will also be an AS Java menu in SMICM on ABAP+Java systems.

Can anyone help me with Eclipse configuration for SAP HANA Cloud platform? Below is schema details:

Abhinanda Shri
Updated on 30-Jul-2019 22:30:20

210 Views

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

In SAP ABAP, mapping two database table fields

Johar Ali
Updated on 30-Jul-2019 22:30:20

622 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
Updated on 30-Jul-2019 22:30:20

474 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.

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

karthikeya Boyini
Updated on 30-Jul-2019 22:30:20

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.

Exporting test variant in Transaction SE37 in SAP R/3

Amit Sharma
Updated on 30-Jul-2019 22:30:20

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.

Downloading file using SAP .NET Connector

Ramu Prasad
Updated on 30-Jul-2019 22:30:20

600 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.

Defining a variable reference in SAP ABAP

Ankitha Reddy
Updated on 30-Jul-2019 22:30:20

433 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.

What is Java API and what is its use?

mkotla
Updated on 30-Jul-2019 22:30:20

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.

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

Samual Sam
Updated on 30-Jul-2019 22:30:20

2K+ Views

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

Advertisements