Reading an image using SAP OData v2 in UI5 application

Sravani S
Updated on 30-Jul-2019 22:30:20

644 Views

You have to use below code:img.setSrc("/path/to/my/service/UserPhotoSet('someone@gmail.com')/$value");Here you need to replace part with original path.

What is meant by Java being a dynamic language?

Giri Raju
Updated on 30-Jul-2019 22:30:20

3K+ Views

Java is considered to be more dynamic than C or C++ since it is designed to adapt to an evolving environment. Java programs can carry an extensive amount of run-time information that can be used to verify and resolve accesses to objects at run-time.

Unloading tables in SAP HANA database

Priya Pallavi
Updated on 30-Jul-2019 22:30:20

843 Views

HANA consumes lot of space in system tables/views, statistics, caches. When you unload tables, these memory areas will not be released.Check SAP Notes https://launchpad.support.sap.com/#/notes/1969700

Difference between JCoClient and JCoDestination

Priya Pallavi
Updated on 30-Jul-2019 22:30:20

850 Views

JcoDestination is the newer version (3) and JCO.client is the older version (2) of SAP Java connector Class. Along with the change of names in the classes, they have also re-written the library architecture in the new version JCoDestination. It is recommended to use the newer version JCodestination.

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

224 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

644 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

495 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

2K+ 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.

Advertisements