What are static members of a Java class?

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

21K+ Views

In Java, static members are those which belongs to the class and you can access these members without instantiating the class. The static keyword can be used with methods, fields, classes (inner/nested), blocks. Static Methods − You can create a static method by using the keyword static. Static methods can access only static fields, methods. To access static methods there is no need to instantiate the class, you can do it just using the class name as − Example Live Demo public class MyClass { public static void sample(){ ... Read More

Building an XCode application using Maven plugin (SAP)

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

130 Views

Note that Xcode-maven-plugin is not compatible with maven 3.1. You have to downgrade to lower version Maven 3.0.x.Try below link for more details:xcode-maven-plugin

Which all formats are compatible as input by Process Integration SAP

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

122 Views

The answer to your question is that a lot of formats are supported by process integration for processing. The basic concept is that you need to define a mapping which will parse the incoming file and then converts it to the output format. Since you are getting a file from service as an input, it will be better if it is in CSV or .xls.

How to specify the connection string in SAP NetWeaver?

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

90 Views

You got it partially correct but had something irrelevant present in the connection string. Try with the below connection string, it should work: /H/122.175.43.76/S/3266

Are the private variables and private methods of a parent class inherited by the child class in Java?

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

694 Views

No, a child class can’t inherit private members of the parent class, it can inherit only protected, default, and public members of it. If you try it gives you a compile time error as: − Example class Super{ private int data = 30; public void display(){ System.out.println("Hello this is the method of the super class"); } } public class Sub extends Super{ public void greet(){ System.out.println("Hello this is the method of the sub class"); ... Read More

What are reference data types in Java?

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

8K+ Views

Reference datatypes in java are those which contains reference/address of dynamically created objects. These are not predefined like primitive data types. Following are the reference types in Java. class types − This reference type points to an object of a class. array types − This reference type points to an array. interface types − This reference type points to an object of a class which implements an interface. Once we create a variable of these types (i.e. when we create an array or object, class or interface). These variables only store the address of these values. Default ... Read More

Using xsodata service with SAP HANA XS Engine without authentication

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

185 Views

Note that to use xsaccess file it without credentials, you have to create xssqlcc file. xsaccess file is used to define who all are authorized to access the content exposed by a SAP HANA XS application package and what content should be displayed as per access.Check out this tread for more details:xsodata service without authentication

Identify the qualification and Employee relationship table in SAP system

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

267 Views

The answer is there is no such single table where you can find everything pertaining to qualifications as they are stored in PD tables as well.Basically, they are of object type ‘Q’ and are stored under HRP1000. HRP10001 will capture the relation between the qualification and employee.  We do have qualification rating and scales which you can find in HRPAD31 and T77TP respectively. T77TS stores the text with an id of qualification.You can also go ahead with function module ‘RHPP_Q_PROFILE_READ’ which you can use.

Checking active process in SAP system and which code is running

George John
Updated on 30-Jul-2019 22:30:20

2K+ Views

There are a couple of Transactions- SM66 and SM50 that can be used for your requirement. The transaction SM66 is used to see all the active processes on the current system. You can choose a particular process you want to monitor by clicking on “process” and then click the “debugging” button. The Transaction SM50 shows only the process running on a current application server in which you are logged. To monitor your program, select “Administration”, then “program” and then debugging option. You would require finding out the process in which your program is running. This can be done by ... Read More

Difference between SAP BAPI and BAdi and Customer Enhancement vs Customer Modification?

Sai Subramanyam
Updated on 30-Jul-2019 22:30:20

770 Views

BAPI It is a short form for Business Application Programming Interface. It is a simple API used for business operations. It can be simple module function provided by SAP or it can be developed by the user as well. BAdI This is an abbreviation for Business Add-Ins. These are customer exits which are used to modify or customize existing SAP functionality. BAdI can be reused as they follow Object-oriented approach. Enhancements It is a modification of SAP functionality or adding new functionality possibly by using a BAdI class or any enhancement technique. Customer modification It is to customize existing function ... Read More

Advertisements