cancel
Showing results for 
Search instead for 
Did you mean: 

Migration from WAS 6.4 to 7.0

Former Member
0 Kudos

My project is at NW04. But i have to move on 7.0.

I have installed new developper studio 7.0 but when i build the project the is much warning message like.

1)

a) Warning The method addColumn(IWDTableColumn) from the type IWDTable is deprecated

b) The method destroy() from the type IWDWindow is deprecated

c) The method getFileName() from the type IWDModifiableBinaryType is deprecated

d) Do not navigate to Inbound Plugs with type startup. The behaviour of this plug type will change

2) And one major issue that some node attribute data from parent window to popup window is not trasfered when cliked on any link to open popup window. I have did this through context maping of node from one DC to popup DC by component controller node.

3) Is LinkToAction(event onselect) property need to change in 7.0?

Please help me to know how to solve these warning and error issuse for move on 7.0.

Also it will be great help that any one can provide me any ppt that what all dprecated class is when move into 7.0 and how to fix any old implementation.

Thanks

Arun

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hey,

I am facing the same problem....

U can do project repair and classpath, reload and build the project.

Which version of NWDS are u using ?? 7.0.9 is helpful...

Former Member
0 Kudos

I got the error message when repair the dc as.

DC definition

======>problem: DTR workspace is not modifiable

If any one can help how to remove warning and error after move from NWDS4 to 7.0

Answers (1)

Answers (1)

former_member197348
Active Contributor
0 Kudos

Welcome to SDN Arun!

I will try to give some help.

1)

a) I think this is in internal classes, you can ignore this.

b) Window.destroyInstance();

c) You need to use getResource() of IWDResource instead of getFileName() of IWDModifiableBinaryType.

d) I think you can ignore this too

2) The data must be transferred(same) if we use context mapping for all views and controllers. But if you use DC-Dc communication then the data whichever you want to transfer that must be available in the Interface controller of the used DC.

3) No need to change LinkToAction event

Check this [wiki|https://www.sdn.sap.com/irj/scn/wiki?path=/display/wdjava/deprecatedMethodsinNWDS7.0andabove] if it is useful to you.

Regards,

Siva

Edited by: Siva Rama Krushna on Jan 22, 2009 8:13 AM

Former Member
0 Kudos

Hi Siva,

Thanks for reply.

Can you please sggest that i have used

IWDLinkToAction link = (IWDLinkToAction) view.getElement("LinkToActionName");

link.mappingOfOnAction().addSourceMapping("nodeElement", "rowElement");

in wdDoModifyView()

For create link on table row.

Is it ok for 7.0 because i am getting warning like

>> LinkToAction LinkToActionName [onAction]: Action and event are not compatible <<

and i thing my data from one dc to another DC is not transfer due to this.

Can you please help more.

Thanks in advance.