cancel
Showing results for 
Search instead for 
Did you mean: 

IWDTabStrip cannot be resolved or is not a type

Former Member
0 Kudos

I receive the following error:

IWDTabStrip cannot be resolved or is not a type

and

IWDTab cannot be resolved or is not a type

If I choose organize imports, but nothing changes.

if (wdContext.currentAdviceElement().getRequestType().equals("TA")) {
	IWDTabStrip TabStrip = (IWDTabStrip) view.getElement("TabStrip");
	IWDTab Tab = (IWDTab) TabStrip.getTab(1);
	Tab.setVisible(true);
} else {
	IWDTabStrip TabStrip = (IWDTabStrip) view.getElement("TabStrip");
	IWDTab Tab = (IWDTab) TabStrip.getTab(1);
	Tab.setVisible(false);
}

Somebody a idea?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

As organize imports doesnt help use

Right click on the project and select Repair->Project Structure and Class Path.

Regards

Ayyapparaj

Former Member
0 Kudos

Hi all,

As mentioned in my first post, organize imports doesn't work.

WD_Runtime exists because all other parts of the code doesn't have any errors, and correct imports

Repair project, also tried => no success

Which library is responsible for the TabStrip?

Edited by: M. KUSTERS on Feb 11, 2008 11:46 AM

Former Member
0 Kudos

Hi,

com.sap.tc.webdynpro.clientserver.uielib.standard.api.IWDTabStrip

com.sap.tc.webdynpro.clientserver.uielib.standard.api.IWDTab

Regards

Ayyapparaj

Former Member
0 Kudos

Solved thanks

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi ,

check your project>properties> java buildpath-->libraries.

check is the WD_Runtime libraries exist or not.

If not exist. try to repair the project.

Regards,

Naga

Former Member
0 Kudos

Hi,

have you made a "Organize imports"?

(Right-click -> Source -> Organize Imports)