radhakrishna

radhakrishna

62 Articles Published

Articles by radhakrishna

Page 7 of 7

How to access the members of a class from another class in Java?

radhakrishna
radhakrishna
Updated on 30-Jul-2019 13K+ Views

To access the members of a class from other class. First of all, import the class. Create an object of that class. Using this object access, the members of that class. Suppose there is a class in a package called myPackage with a method named display() package myPackage; public class Sample { public void display() { System.out.println("Hello"); } } You can access it as. import myPackage; public class MyClass { public static void main(String args[]) { Sample s = new Sample(); s.done(); } } Output hello

Read More

Identify the qualification and Employee relationship table in SAP system

radhakrishna
radhakrishna
Updated on 30-Jul-2019 466 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.

Read More
Showing 61–62 of 62 articles
« Prev 1 3 4 5 6 7 Next »
Advertisements