cancel
Showing results for 
Search instead for 
Did you mean: 

Creating dynamic attribute of type TableCellDesign

Former Member
0 Kudos

Hi Experts,

I am trying to create a dynamic attribute of type TableCellDesign using this code

wdContext.nodePlanningLevel().getNodeInfo().addAttribute("cellEditor",
		"ddic:com.sap.ide.webdynpro.uielementdefinations.TableCellDesign");

but i am getting an error stating

com.sap.dictionary.runtime.DdException: Dictionary type com.sap.ide.webdynpro.uielementdefinations.TableCellDesign does not exist

I think this is due to "ddic".

I have three questions here:

1, How to resolve the issue?

2. What is this "ddic"?

3. What all "ddic" kind of packages are available and where can i find the list?

Regards

Pranav

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Pranav,

1. Use the following code instead. Will serve the purpose.

wdContext.nodePlanningLevel().getNodeInfo().addAttribute("cellEditor", "com.sap.ide.webdynpro.uielementdefinitions.TableCellDesign");

2. ddic is a java data(d) dictionary(dic) for various data types stored in a package.

3. Its tough for me to locate the exact location where it is store but surely it is in any one fo the folder within plugins folder.

Regards,

Tushar Sinha

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks a lot Armin and Tushar.

Former Member
0 Kudos

There is a typo, it should be "uielementdefinitions", not "uielementdefinations".

Armin