cancel
Showing results for 
Search instead for 
Did you mean: 

Public Class in Web Dynpro

former_member540174
Participant
0 Kudos

I have a little class


class OrgInfo
{
	public String McShort;
	public String Objid;
	public String Stext;

public OrgInfo(String mcShort, String objid, String stext)
{
	McShort = mcShort;
	Objid = objid;
	Stext = stext;
}
}

I'd like to call it from my views and component controller. How do I add the class?

Diane

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Define the class as public and put it under src/packages/<your_package>.

Armin

Answers (0)