cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic rendering of WebDynpro Java View

Former Member
0 Kudos

Hi,

For the project work I have to render the WebDynpro Java View dynamically.

Here I need to get the UI Element. From there I need to get the

context with which UI Element like Input field, Dropdown are binded. I am able to get the UI Elements from the Root Element of View.

However I could not retrieve the context type which is binded to the input field. Could you please let me know if it is possile to

retrieve this information.

Thanks and Regards,

Sanjeev

ESS Development

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member751941
Active Contributor
0 Kudos
suresh_krishnamoorthy
Active Contributor
0 Kudos

Hi Sanjeev,

Check this following link for dynamic UI element application.

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/business_packages/a1-8...

Regards, Suresh KB

Former Member
0 Kudos

Hi Sanjeev,

If i am inline with your req

You can get the context attribute mapped to the value property of a InputField by

IWDInputField inputField= <Your InputField Element>;

String path = inputField.bindingOfValue();

Regards

Ayyapparaj