cancel
Showing results for 
Search instead for 
Did you mean: 

Cant see compatibilityMode table property from NWDI DC.

former_member413959
Participant
0 Kudos

Hi ,

We have SP 14 ,

we have table problem performance...I found some great blog

(https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c092333b-0601-0010-e7af-8c227fb6d052

)

, to use the compatibilityMode table property...

When i create new WD DC and add table, i cant see this property...But when i use local WD project and add table i can see this property...

Why?????

I must use this property...what can i do ??

Thanks,

Faniel

Accepted Solutions (1)

Accepted Solutions (1)

BeGanz
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hallo Faniel,

I did not know that this non-existing compatibiltyMode property still occurs for Web Dynpro DCs in NW04 SP14. Like mentioned in SAP Note 929068 you must apply dynamic programming to use this function.

Look at the text file attached to this SAP note or look at my forum post .

Best regards, Bertram

Answers (2)

Answers (2)

Former Member
0 Kudos

This is ususal bug for NWDS

solution - is to set CompatibilityMode in method wdDoModifyView:

if (firstTime) {

IWDTable configuredTable = (IWDTable) view.getElement("table id here"); configuredTable.setCompatibilityMode(WDTableCompatibilityMode.NW04_PLUS);

}

former_member413959
Participant
0 Kudos

Hi ,

We implemented this dynamically...

But after "check in" we try to activate the request and get error on build...

:cannot resolve symbol

symbol : method bindCompatibilityMode (com.sap.tc.webdynpro.progmodel.api.IWDAttributeInfo)

location: interface com.sap.tc.webdynpro.clientserver.uielib.standard.api.IWDTable

table.bindCompatibilityMode(attributeInfo);

Former Member
0 Kudos

Check the SAP Note No 929068

Regards, Anilkumar

former_member413959
Participant
0 Kudos

We have SP14, this note relevant to SP13...also i can create local WD project and use this property ,

The problem occurs when i create project using the JDI.

Thanks.